A Record

APIs.ioEngineeringPlatform

Properties

Name Type Description
content string A valid IPv4 address.
type string Record type.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-dns-records-arecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dns-records_ARecord",
  "title": "A Record",
  "properties": {
    "content": {
      "description": "A valid IPv4 address.",
      "example": "198.51.100.4",
      "format": "ipv4",
      "type": "string"
    },
    "type": {
      "description": "Record type.",
      "enum": [
        "A"
      ],
      "example": "A",
      "type": "string"
    }
  },
  "type": "object"
}