linode · Schema
PaginatedDatabaseTypeList
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaginatedDatabaseTypeList",
"title": "PaginatedDatabaseTypeList",
"allOf": [
{
"$ref": "#/components/schemas/Pagination"
},
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"label": {
"type": "string"
},
"class": {
"type": "string"
},
"vcpus": {
"type": "integer"
},
"memory": {
"type": "integer"
},
"disk": {
"type": "integer"
}
}
}
}
}
}
]
}