Regions.json 1.13 KB
{
  "type": "object",
  "title": "regions",
  "required": [
    "regions"
  ],
  "properties": {
    "regions": {
      "type": "array",
      "xml": {
        "name": "regions",
        "wrapped": true
      },
      "items": {
        "type": "object",
        "title": "region",
        "required": [
          "id",
          "name",
          "type",
          "masters"
        ],
        "properties": {
          "id": {
            "type": "string",
            "example": "1"
          },
          "name": {
            "type": "string",
            "example": "region"
          },
          "type": {
            "type": "string",
            "example": "ROOM"
          },
          "masters": {
            "type": "array",
            "xml": {
              "name": "masters",
              "wrapped": true
            },
            "items": {
              "type": "array",
              "xml": {
                "name": "masters",
                "wrapped": true
              },
              "items": {
                "type": "string",
                "example": "1"
              }
            }
          }
        }
      }
    }
  }
}