Render · Schema

cidrBlockAndDescription

CloudPlatformDeploymentInfrastructureDevOpsWeb ServicesDatabasesHosting

Properties

Name Type Description
cidrBlock string
description string User-provided description of the CIDR block
View JSON Schema on GitHub

JSON Schema

render-cidrblockanddescription-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/cidrBlockAndDescription",
  "title": "cidrBlockAndDescription",
  "type": "object",
  "required": [
    "cidrBlock",
    "description"
  ],
  "properties": {
    "cidrBlock": {
      "type": "string"
    },
    "description": {
      "description": "User-provided description of the CIDR block",
      "type": "string"
    }
  }
}