Microsoft Graph · Schema

webApplicationFirewallVerifiedDetails

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
dnsConfiguration object DNS-related details discovered during verification for the host, such as the DNS record name, record type, record value, whether the record is proxied through the provider, and whether the domain is v
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphwebapplicationfirewallverifieddetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.webApplicationFirewallVerifiedDetails",
  "title": "webApplicationFirewallVerifiedDetails",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "dnsConfiguration": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.webApplicationFirewallDnsConfiguration"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "DNS-related details discovered during verification for the host, such as the DNS record name, record type, record value, whether the record is proxied through the provider, and whether the domain is verified."
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "discriminator": {
    "propertyName": "@odata.type",
    "mapping": {
      "#microsoft.graph.akamaiVerifiedDetailsModel": "#/components/schemas/microsoft.graph.akamaiVerifiedDetailsModel",
      "#microsoft.graph.cloudFlareVerifiedDetailsModel": "#/components/schemas/microsoft.graph.cloudFlareVerifiedDetailsModel"
    }
  }
}