# space.highport.manage.disableDelegation

> Published by [lexicons.highport.space](https://lexicon.garden/identity/did:plc:ciygg5hma4q7ah2kxaszkyob)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ciygg5hma4q7ah2kxaszkyob/space.highport.manage.disableDelegation)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ciygg5hma4q7ah2kxaszkyob/space.highport.manage.disableDelegation/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ciygg5hma4q7ah2kxaszkyob/space.highport.manage.disableDelegation/examples)

## Definitions

### `space.highport.manage.disableDelegation`

**Type**: `procedure`

Stop a base handing out names: remove its probe and clear its delegation state. Refused while any reservation remains; release each one with releaseReservation. A certificate grant on the base is left in place.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `domain` | `string` | Yes | The base: a domain registered to the caller. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `domain` | `string` | Yes |  |
| `disabled` | `boolean` | Yes |  |

#### Errors

- **NotBaseOwner**: No verified or active registration of that domain belongs to the caller.
- **DelegationHasReservations**: Names are still reserved under the base. Release each one with releaseReservation first.

## Raw Schema

```json
{
  "id": "space.highport.manage.disableDelegation",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "domain"
          ],
          "properties": {
            "domain": {
              "type": "string",
              "maxLength": 253,
              "description": "The base: a domain registered to the caller."
            }
          }
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "NotBaseOwner",
          "description": "No verified or active registration of that domain belongs to the caller."
        },
        {
          "name": "DelegationHasReservations",
          "description": "Names are still reserved under the base. Release each one with releaseReservation first."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "domain",
            "disabled"
          ],
          "properties": {
            "domain": {
              "type": "string"
            },
            "disabled": {
              "type": "boolean"
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Stop a base handing out names: remove its probe and clear its delegation state. Refused while any reservation remains; release each one with releaseReservation. A certificate grant on the base is left in place."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
