NAPTR Record

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-dns-records-naptrrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dns-records_NAPTRRecord",
  "title": "NAPTR Record",
  "properties": {
    "content": {
      "description": "Formatted NAPTR content. See 'data' to set NAPTR properties.",
      "readOnly": true,
      "type": "string"
    },
    "data": {
      "description": "Components of a NAPTR record.",
      "properties": {
        "flags": {
          "description": "Flags.",
          "type": "string"
        },
        "order": {
          "description": "Order.",
          "example": 100,
          "maximum": 65535,
          "minimum": 0,
          "type": "number"
        },
        "preference": {
          "description": "Preference.",
          "example": 10,
          "maximum": 65535,
          "minimum": 0,
          "type": "number"
        },
        "regex": {
          "description": "Regex.",
          "type": "string"
        },
        "replacement": {
          "description": "Replacement.",
          "type": "string"
        },
        "service": {
          "description": "Service.",
          "type": "string"
        }
      },
      "type": "object"
    },
    "type": {
      "description": "Record type.",
      "enum": [
        "NAPTR"
      ],
      "example": "NAPTR",
      "type": "string"
    }
  },
  "type": "object"
}