A specific domain to define exposure boundary.
Properties
Domain identifier for boundary. Must be a valid domain name.
maxLength: 253 bytes
View raw schema
{
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "string",
"maxLength": 253,
"description": "Domain identifier for boundary. Must be a valid domain name."
}
},
"description": "A specific domain to define exposure boundary."
}
A collection of domains that define the exposure boundary for a record.
Properties
List of domains that can access this record.
maxLength: 10 items
View raw schema
{
"type": "object",
"required": [
"values"
],
"properties": {
"values": {
"type": "array",
"items": {
"ref": "#Domain",
"type": "ref"
},
"maxLength": 10,
"description": "List of domains that can access this record."
}
},
"description": "A collection of domains that define the exposure boundary for a record."
}