{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/oracle-cloud/refs/heads/main/json-structure/networking-create-vcn-details-structure.json", "name": "CreateVcnDetails", "description": "CreateVcnDetails schema from oracle-cloud-networking-openapi.yaml", "type": "object", "properties": { "compartmentId": { "type": "string", "description": "The OCID of the compartment.", "example": "ocid1.resource.oc1.iad.abcdefg123456" }, "cidrBlocks": { "type": "array", "description": "List of CIDR blocks for the VCN.", "example": "['10.0.0.0/16']", "items": { "type": "string" } }, "displayName": { "type": "string", "description": "A user-friendly name.", "example": "my-vcn" }, "dnsLabel": { "type": "string", "description": "DNS label for the VCN.", "example": "myvcn" }, "freeformTags": { "type": "object", "example": { "key1": "value1" } } }, "required": [ "compartmentId", "cidrBlocks" ] }