{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PortalPageResponse", "title": "PortalPageResponse", "description": "Details about a page in a portal.", "type": "object", "properties": { "id": { "$ref": "#/components/schemas/UUID" }, "slug": { "$ref": "#/components/schemas/PageSlug" }, "title": { "$ref": "#/components/schemas/PageTitle" }, "content": { "$ref": "#/components/schemas/PageContent" }, "visibility": { "$ref": "#/components/schemas/VisibilityStatus" }, "status": { "$ref": "#/components/schemas/PublishedStatus" }, "description": { "$ref": "#/components/schemas/Description" }, "created_at": { "$ref": "#/components/schemas/CreatedAt" }, "updated_at": { "$ref": "#/components/schemas/UpdatedAt" }, "parent_page_id": { "$ref": "#/components/schemas/ParentPageId" } }, "additionalProperties": false, "required": [ "id", "slug", "title", "content", "visibility", "status", "created_at", "updated_at", "parent_page_id" ] }