{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloud-wan/refs/heads/main/json-schema/cloud-wan-create-core-network-request-schema.json",
"title": "CreateCoreNetworkRequest",
"description": "Request body for creating a core network.",
"type": "object",
"properties": {
"GlobalNetworkId": {
"type": "string",
"description": "The ID of the global network that a core network will be a part of.",
"example": "global-network-abc12345"
},
"Description": {
"type": "string",
"description": "The description of a core network."
},
"Tags": {
"type": "array",
"items": {
"type": "object"
},
"description": "Key-value tags for the core network."
}
},
"required": [
"GlobalNetworkId"
]
}