{ "$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." } } }