linode · Schema
PaginatedVLANList
JSON Schema
{
"$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"
}
}
}
}
}
}
]
}