dns-records_dns-record-response

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-dns-records-dns-record-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dns-records_dns-record-response",
  "title": "dns-records_dns-record-response",
  "allOf": [
    {
      "$ref": "#/components/schemas/dns-records_dns-record"
    },
    {
      "properties": {
        "comment_modified_on": {
          "description": "When the record comment was last modified. Omitted if there is no comment.",
          "example": "2024-01-01T05:20:00.12345Z",
          "format": "date-time",
          "readOnly": true,
          "type": "string"
        },
        "created_on": {
          "description": "When the record was created.",
          "example": "2014-01-01T05:20:00.12345Z",
          "format": "date-time",
          "readOnly": true,
          "type": "string"
        },
        "id": {
          "$ref": "#/components/schemas/dns-records_identifier"
        },
        "meta": {
          "description": "Extra Cloudflare-specific information about the record.",
          "readOnly": true,
          "type": "object"
        },
        "modified_on": {
          "description": "When the record was last modified.",
          "example": "2014-01-01T05:20:00.12345Z",
          "format": "date-time",
          "readOnly": true,
          "type": "string"
        },
        "proxiable": {
          "description": "Whether the record can be proxied by Cloudflare or not.",
          "example": true,
          "type": "boolean"
        },
        "tags_modified_on": {
          "description": "When the record tags were last modified. Omitted if there are no tags.",
          "example": "2025-01-01T05:20:00.12345Z",
          "format": "date-time",
          "readOnly": true,
          "type": "string"
        }
      },
      "required": [
        "id",
        "proxiable",
        "created_on",
        "modified_on",
        "meta"
      ],
      "type": "object"
    }
  ],
  "required": [
    "name",
    "type",
    "content",
    "data",
    "proxied",
    "ttl",
    "settings",
    "comment",
    "tags"
  ],
  "type": "object"
}