> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Projects # Type: Project Object # Link: https://dev.wix.com/docs/api-reference/business-solutions/portfolio/projects/project-object.md ## Schema: ```json Type: Project Object | type: Project - name: id | type: string | description: Project ID. - name: value | type: string | description: - name: revision | type: string | description: Revision number, which increments by 1 each time the project is updated. To prevent conflicting changes, the existing revision must be passed when updating the project object. - name: value | type: number | description: - name: title | type: string | description: Project title. - name: description | type: string | description: Project description. - name: hidden | type: boolean | description: Whether the project is hidden from the portfolio. Default: `false` - name: value | type: boolean | description: - name: collectionIds | type: Array | description: IDs of the collections that include the project. - name: details | type: Array | description: Project details. - name: label | type: string | description: Project label. - name: slug | type: string | description: Project slug. - name: createdDate | type: string | description: Date and time the project was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the project was updated. - name: url | type: PageUrlV2 | description: Project page URL and relative path. Returned when `includePageUrl` is `true` in the request. - name: relativePath | type: string | description: The relative path for the page within the site. For example, `/product-page/a-product`. - name: url | type: string | description: The page's full URL. For example, `https://mysite.com/product-page/a-product`. - name: seoData | type: SeoSchema | description: Project SEO data. - name: tags | type: Array | description: SEO tag information. - name: type | type: string | description: SEO tag type. Supported values: `title`, `meta`, `script`, `link`. - name: props | type: Struct | description: A `{"key": "value"}` pair object where each SEO tag property (`"name"`, `"content"`, `"rel"`, `"href"`) contains a value. For example: `{"name": "description", "content": "the description itself"}`. - name: meta | type: Struct | description: SEO tag metadata. For example, `{"height": 300, "width": 240}`. - name: children | type: string | description: SEO tag inner content. For example, ` inner content `. - name: custom | type: boolean | description: Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). - name: disabled | type: boolean | description: Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. - name: settings | type: Settings | description: SEO general settings. - name: preventAutoRedirect | type: boolean | description: Whether the [automatical redirect visits](https://support.wix.com/en/article/customizing-your-pages-seo-settings-in-the-seo-panel) from the old URL to the new one is enabled. Default: `false` (automatical redirect is enabled). - name: keywords | type: Array | description: User-selected keyword terms for a specific page. - name: watermark | type: Watermark | description: Optional watermark that can be applied to all project's images. - name: position | type: string | description: Position of the watermark on the image. enum: NORTH_WEST, NORTH, NORTH_EAST, WEST, CENTER, EAST, SOUTH_WEST, SOUTH, SOUTH_EAST - name: size | type: number | description: Size of the watermark, from 0 to 100. - name: opacity | type: number | description: Opacity of the watermark. - name: imageUrl | type: string | description: Image ID of the Watermark as saved in Media Platform. - name: enabled | type: boolean | description: Whether the watermark is to be displayed on Items & Cover Photos. ```