NS Record

APIs.ioEngineeringPlatform

Properties

Name Type Description
content string A valid name server host name.
type string Record type.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-dns-records-nsrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dns-records_NSRecord",
  "title": "NS Record",
  "properties": {
    "content": {
      "description": "A valid name server host name.",
      "example": "ns1.example.com",
      "type": "string"
    },
    "type": {
      "description": "Record type.",
      "enum": [
        "NS"
      ],
      "example": "NS",
      "type": "string"
    }
  },
  "type": "object"
}