Properties
| Name | Type | Description |
|---|---|---|
| id | string | Portal organization ID |
| name | string | |
| description | string | |
| url | string | |
| thumbnail | string | |
| culture | string | Default language/locale (e.g., "en") |
| region | string | |
| created | integer | Creation timestamp (milliseconds since epoch) |
| modified | integer |
JSON Schema
{
"$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"
}
}
}