linode · Schema
VPC
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The unique ID of this VPC. |
| label | string | The label for this VPC. |
| description | string | A description for this VPC. |
| region | string | The region where this VPC is located. |
| subnets | array | The subnets in this VPC. |
| created | string | When this VPC was created. |
| updated | string | When this VPC was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/VPC",
"title": "VPC",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The unique ID of this VPC."
},
"label": {
"type": "string",
"description": "The label for this VPC."
},
"description": {
"type": "string",
"description": "A description for this VPC."
},
"region": {
"type": "string",
"description": "The region where this VPC is located."
},
"subnets": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Subnet"
},
"description": "The subnets in this VPC."
},
"created": {
"type": "string",
"format": "date-time",
"description": "When this VPC was created."
},
"updated": {
"type": "string",
"format": "date-time",
"description": "When this VPC was last updated."
}
}
}