{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Portal", "title": "Portal", "type": "object", "properties": { "id": { "type": "string", "description": "Portal organization ID" }, "name": { "type": "string" }, "description": { "type": "string" }, "url": { "type": "string", "format": "uri" }, "thumbnail": { "type": "string" }, "culture": { "type": "string", "description": "Default language/locale (e.g., \"en\")" }, "region": { "type": "string" }, "created": { "type": "integer", "description": "Creation timestamp (milliseconds since epoch)" }, "modified": { "type": "integer" } } }