Properties
| Name | Type | Description |
|---|---|---|
| description | string | A description of the fallback domain, displayed in the client UI. |
| dns_server | array | A list of IP addresses to handle domain resolution. |
| suffix | string | The domain suffix to match when resolving locally. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/teams-devices_fallback_domain",
"title": "teams-devices_fallback_domain",
"properties": {
"description": {
"description": "A description of the fallback domain, displayed in the client UI.",
"example": "Domain bypass for local development",
"maxLength": 100,
"type": "string"
},
"dns_server": {
"description": "A list of IP addresses to handle domain resolution.",
"items": {
"$ref": "#/components/schemas/teams-devices_ip"
},
"type": "array"
},
"suffix": {
"description": "The domain suffix to match when resolving locally.",
"example": "example.com",
"type": "string"
}
},
"required": [
"suffix"
],
"type": "object"
}