linode · Schema

SubnetRequest

Properties

Name Type Description
label string The label for the subnet.
ipv4 string The IPv4 CIDR range for the subnet.
View JSON Schema on GitHub

JSON Schema

linode-subnetrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SubnetRequest",
  "title": "SubnetRequest",
  "type": "object",
  "required": [
    "label",
    "ipv4"
  ],
  "properties": {
    "label": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64,
      "description": "The label for the subnet."
    },
    "ipv4": {
      "type": "string",
      "description": "The IPv4 CIDR range for the subnet."
    }
  }
}