Microsoft Graph · Schema

microsoft.graph.domainDnsSrvRecord

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdomaindnssrvrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.domainDnsSrvRecord",
  "title": "microsoft.graph.domainDnsSrvRecord",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord"
    },
    {
      "title": "domainDnsSrvRecord",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "nameTarget": {
          "type": "string",
          "description": "Value to use when configuring the Target property of the SRV record at the DNS host.",
          "nullable": true
        },
        "port": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "description": "Value to use when configuring the port property of the SRV record at the DNS host.",
          "format": "int32",
          "nullable": true
        },
        "priority": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "description": "Value to use when configuring the priority property of the SRV record at the DNS host.",
          "format": "int32",
          "nullable": true
        },
        "protocol": {
          "type": "string",
          "description": "Value to use when configuring the protocol property of the SRV record at the DNS host.",
          "nullable": true
        },
        "service": {
          "type": "string",
          "description": "Value to use when configuring the service property of the SRV record at the DNS host.",
          "nullable": true
        },
        "weight": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "description": "Value to use when configuring the weight property of the SRV record at the DNS host.",
          "format": "int32",
          "nullable": true
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.domainDnsSrvRecord"
}