{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconnect/refs/heads/main/json-schema/mediaconnect-api-gateway-network-schema.json",
"title": "GatewayNetwork",
"description": "The network settings for a gateway.",
"type": "object",
"properties": {
"CidrBlock": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "cidrBlock"
},
"description": "A unique IP address range to use for this network. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16."
}
]
},
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "name"
},
"description": "The name of the network. This name is used to reference the network and must be unique among networks in this gateway."
}
]
}
},
"required": [
"CidrBlock",
"Name"
]
}