Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier for the project. |
| name | string | The name of the project. |
| description | string | A description of the project. |
| parentProjectId | ['string', 'null'] | The ID of the parent project. If null, this is a top-level project. |
| contentPermissions | string | The permissions model for the project. |
| createdAt | string | The date and time the project was created. |
| updatedAt | string | The date and time the project was last updated. |
| owner | object | |
| topLevelProject | boolean | Whether this is a top-level project. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Project",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier for the project."
},
"name": {
"type": "string",
"description": "The name of the project."
},
"description": {
"type": "string",
"description": "A description of the project."
},
"parentProjectId": {
"type": "['string', 'null']",
"description": "The ID of the parent project. If null, this is a top-level project."
},
"contentPermissions": {
"type": "string",
"description": "The permissions model for the project."
},
"createdAt": {
"type": "string",
"description": "The date and time the project was created."
},
"updatedAt": {
"type": "string",
"description": "The date and time the project was last updated."
},
"owner": {
"type": "object"
},
"topLevelProject": {
"type": "boolean",
"description": "Whether this is a top-level project."
}
}
}