linode · Schema

PaginatedVLANList

View JSON Schema on GitHub

JSON Schema

linode-paginatedvlanlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginatedVLANList",
  "title": "PaginatedVLANList",
  "allOf": [
    {
      "$ref": "#/components/schemas/Pagination"
    },
    {
      "type": "object",
      "properties": {
        "data": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "label": {
                "type": "string"
              },
              "linodes": {
                "type": "array",
                "items": {
                  "type": "integer"
                }
              },
              "region": {
                "type": "string"
              },
              "created": {
                "type": "string",
                "format": "date-time"
              }
            }
          }
        }
      }
    }
  ]
}