linode · Schema
VPCRequest
Properties
| Name | Type | Description |
|---|---|---|
| label | string | The label for the new VPC. |
| description | string | A description for the new VPC. |
| region | string | The region for the new VPC. |
| subnets | array | Initial subnets to create. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/VPCRequest",
"title": "VPCRequest",
"type": "object",
"required": [
"label",
"region"
],
"properties": {
"label": {
"type": "string",
"minLength": 1,
"maxLength": 64,
"description": "The label for the new VPC."
},
"description": {
"type": "string",
"maxLength": 255,
"description": "A description for the new VPC."
},
"region": {
"type": "string",
"description": "The region for the new VPC."
},
"subnets": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SubnetRequest"
},
"description": "Initial subnets to create."
}
}
}