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