DS Record

APIs.ioEngineeringPlatform

Properties

Name Type Description
content string Formatted DS content. See 'data' to set DS properties.
data object Components of a DS record.
type string Record type.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-dns-records-dsrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dns-records_DSRecord",
  "title": "DS Record",
  "properties": {
    "content": {
      "description": "Formatted DS content. See 'data' to set DS properties.",
      "readOnly": true,
      "type": "string"
    },
    "data": {
      "description": "Components of a DS record.",
      "properties": {
        "algorithm": {
          "description": "Algorithm.",
          "example": 3,
          "maximum": 255,
          "minimum": 0,
          "type": "number"
        },
        "digest": {
          "description": "Digest.",
          "type": "string"
        },
        "digest_type": {
          "description": "Digest Type.",
          "example": 1,
          "maximum": 255,
          "minimum": 0,
          "type": "number"
        },
        "key_tag": {
          "description": "Key Tag.",
          "example": 1,
          "maximum": 65535,
          "minimum": 0,
          "type": "number"
        }
      },
      "type": "object"
    },
    "type": {
      "description": "Record type.",
      "enum": [
        "DS"
      ],
      "example": "DS",
      "type": "string"
    }
  },
  "type": "object"
}