{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/roku/refs/heads/main/json-schema/nabu-cloud-organisation-region-out-schema.json", "title": "OrganisationRegionOut", "description": "OrganisationRegionOut schema from Roku Nabu Cloud", "type": "object", "properties": { "region_id": { "type": "integer", "title": "Region Id" }, "region_name": { "type": "string", "title": "Region Name" }, "aws_region": { "$ref": "#/components/schemas/AWSRegion" }, "agent_active": { "type": "boolean", "title": "Agent Active" }, "agent_stream_options": { "items": { "$ref": "#/components/schemas/AgentStreamOption" }, "type": "array", "title": "Agent Stream Options" } }, "required": [ "region_id", "region_name", "aws_region", "agent_active", "agent_stream_options" ] }