Microsoft Graph · Schema
verifiedDomain
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| capabilities | string | For example, Email, OfficeCommunicationsOnline. |
| isDefault | boolean | true if this is the default domain associated with the tenant; otherwise, false. |
| isInitial | boolean | true if this is the initial domain associated with the tenant; otherwise, false. |
| name | string | The domain name; for example, contoso.com. |
| type | string | For example, Managed. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.verifiedDomain",
"title": "verifiedDomain",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"capabilities": {
"type": "string",
"description": "For example, Email, OfficeCommunicationsOnline.",
"nullable": true
},
"isDefault": {
"type": "boolean",
"description": "true if this is the default domain associated with the tenant; otherwise, false.",
"nullable": true
},
"isInitial": {
"type": "boolean",
"description": "true if this is the initial domain associated with the tenant; otherwise, false.",
"nullable": true
},
"name": {
"type": "string",
"description": "The domain name; for example, contoso.com.",
"nullable": true
},
"type": {
"type": "string",
"description": "For example, Managed.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}