Roku · Schema

OrganisationRegionOut

OrganisationRegionOut schema from Roku Nabu Cloud

StreamingTelevisionMediaEntertainmentConnected TVConsumer Electronics

Properties

Name Type Description
region_id integer
region_name string
aws_region object
agent_active boolean
agent_stream_options array
View JSON Schema on GitHub

JSON Schema

nabu-cloud-organisation-region-out-schema.json Raw ↑
{
  "$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"
  ]
}