HTTPS Record

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-dns-records-httpsrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dns-records_HTTPSRecord",
  "title": "HTTPS Record",
  "properties": {
    "content": {
      "description": "Formatted HTTPS content. See 'data' to set HTTPS properties.",
      "readOnly": true,
      "type": "string"
    },
    "data": {
      "description": "Components of a HTTPS record.",
      "properties": {
        "priority": {
          "description": "priority.",
          "example": 1,
          "maximum": 65535,
          "minimum": 0,
          "type": "number"
        },
        "target": {
          "description": "target.",
          "example": ".",
          "type": "string"
        },
        "value": {
          "description": "value.",
          "example": "alpn=\"h3,h2\" ipv4hint=\"127.0.0.1\" ipv6hint=\"::1\"",
          "type": "string"
        }
      },
      "type": "object"
    },
    "type": {
      "description": "Record type.",
      "enum": [
        "HTTPS"
      ],
      "example": "HTTPS",
      "type": "string"
    }
  },
  "type": "object"
}