AAAA Record

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-dns-records-aaaarecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dns-records_AAAARecord",
  "title": "AAAA Record",
  "properties": {
    "content": {
      "description": "A valid IPv6 address.",
      "example": "2400:cb00:2049::1",
      "format": "ipv6",
      "type": "string"
    },
    "type": {
      "description": "Record type.",
      "enum": [
        "AAAA"
      ],
      "example": "AAAA",
      "type": "string"
    }
  },
  "type": "object"
}