{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateProjectRequest", "title": "CreateProjectRequest", "type": "object", "properties": { "project": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "The name for the project." }, "description": { "type": "string", "description": "A description for the project." }, "parentProjectId": { "type": "string", "description": "The ID of the parent project. Omit for a top-level project." }, "contentPermissions": { "type": "string", "enum": [ "LockedToProject", "ManagedByOwner", "LockedToProjectWithoutNested" ] } }, "example": "example_value" } } }