# zone.stratos.boundary.defs

> Published by [lexicon.northsky.app](https://lexicon.garden/identity/did:plc:6uxgo3ypovauub7nblwylqyv)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:6uxgo3ypovauub7nblwylqyv/zone.stratos.boundary.defs)
- [Documentation](https://lexicon.garden/lexicon/did:plc:6uxgo3ypovauub7nblwylqyv/zone.stratos.boundary.defs/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:6uxgo3ypovauub7nblwylqyv/zone.stratos.boundary.defs/examples)

## Definitions

### `zone.stratos.boundary.defs#Domain`

**Type**: `object`

A specific domain to define exposure boundary.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `value` | `string` | Yes | Service-qualified boundary identifier in the format '{serviceDid}/{domainName}', e.g. 'did:web:stratos.example.com/engineering'. |

### `zone.stratos.boundary.defs#Domains`

**Type**: `object`

A collection of domains that define the exposure boundary for a record.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `values` | `array` | Yes | List of domains that can access this record. |

## Raw Schema

```json
{
  "id": "zone.stratos.boundary.defs",
  "defs": {
    "Domain": {
      "type": "object",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "string",
          "maxLength": 253,
          "description": "Service-qualified boundary identifier in the format '{serviceDid}/{domainName}', e.g. 'did:web:stratos.example.com/engineering'."
        }
      },
      "description": "A specific domain to define exposure boundary."
    },
    "Domains": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
