# space.highport.manage.releaseReservation

> 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.releaseReservation)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ciygg5hma4q7ah2kxaszkyob/space.highport.manage.releaseReservation/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ciygg5hma4q7ah2kxaszkyob/space.highport.manage.releaseReservation/examples)

## Definitions

### `space.highport.manage.releaseReservation`

**Type**: `procedure`

Release a name reserved under one of the caller's delegation bases. Bard stops answering for it and stops authorizing it for TLS, and any site the subject published there stops serving.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `hostname` | `string` | Yes | The reserved name. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `released` | `boolean` | Yes |  |

#### Errors

- **NotBaseOwner**: The name is not under a base with a verified or active registration owned by the caller.
- **ReservationNotFound**: No reservation exists for that hostname. Ordinary registrations and the base's probe are not reservations.

## Raw Schema

```json
{
  "id": "space.highport.manage.releaseReservation",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "hostname"
          ],
          "properties": {
            "hostname": {
              "type": "string",
              "maxLength": 253,
              "description": "The reserved name."
            }
          }
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "NotBaseOwner",
          "description": "The name is not under a base with a verified or active registration owned by the caller."
        },
        {
          "name": "ReservationNotFound",
          "description": "No reservation exists for that hostname. Ordinary registrations and the base's probe are not reservations."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "released"
          ],
          "properties": {
            "released": {
              "type": "boolean"
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Release a name reserved under one of the caller's delegation bases. Bard stops answering for it and stops authorizing it for TLS, and any site the subject published there stops serving."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
