{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProjectDetail", "title": "ProjectDetail", "type": "object", "properties": { "id": { "type": "string" }, "slug": { "type": "string" }, "name": { "type": "string" }, "platform": { "type": "string", "nullable": true }, "dateCreated": { "type": "string", "format": "date-time" }, "isBookmarked": { "type": "boolean" }, "isMember": { "type": "boolean" }, "features": { "type": "array", "items": { "type": "string" } }, "firstEvent": { "type": "string", "format": "date-time", "nullable": true }, "firstTransactionEvent": { "type": "boolean" }, "hasAccess": { "type": "boolean" }, "team": { "type": "object", "properties": { "id": { "type": "string" }, "slug": { "type": "string" }, "name": { "type": "string" } } }, "teams": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "slug": { "type": "string" }, "name": { "type": "string" } } } }, "organization": { "type": "object", "properties": { "id": { "type": "string" }, "slug": { "type": "string" }, "name": { "type": "string" } } } }, "required": [ "id", "slug", "name" ] }