# space.highport.manage.listReservations

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

## Definitions

### `space.highport.manage.listReservations`

**Type**: `query`

Names reserved under one of the caller's delegation bases, with who each is reserved for and whether it routes. The base's probe is not included.

#### Parameters

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `limit` | `integer` | No | Maximum entries to return. |
| `cursor` | `string` | No | Pagination cursor from a previous response. |
| `domain` | `string` | Yes | The base domain. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cursor` | `string` | No | Present when more entries exist. |
| `reservations` | `array` | Yes |  |

#### Errors

- **NotBaseOwner**: No verified or active registration of that domain belongs to the caller.

### `space.highport.manage.listReservations#reservationView`

**Type**: `object`

One reserved name.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `edge` | `ref` → `space.highport.defs#edgeReachability` | No | Whether the name still routes to this service's edge. A name can stop routing while its base still routes, if a record for that name in the base's zone overrides the wildcard. |
| `domain` | `ref` → `space.highport.defs#domainView` | Yes | The reservation's registration. did is the identity it is reserved for, and delegatedBase is the base. |
| `takenUpAt` | `string` (datetime) | No | When this service first saw the subject use the name as its handle (its DID document lists at://<domain> and the name resolves back). Set once, and kept even if the handle later changes or the check fails. Absent before then. Releasing the name clears it. |
| `servingDefaultTile` | `boolean` | No | Whether this name is serving the base's default tile. False when the base has set none, and false once the subject publishes a site of their own, which replaces it. |

## Raw Schema

```json
{
  "id": "space.highport.manage.listReservations",
  "defs": {
    "main": {
      "type": "query",
      "errors": [
        {
          "name": "NotBaseOwner",
          "description": "No verified or active registration of that domain belongs to the caller."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "reservations"
          ],
          "properties": {
            "cursor": {
              "type": "string",
              "description": "Present when more entries exist."
            },
            "reservations": {
              "type": "array",
              "items": {
                "ref": "#reservationView",
                "type": "ref"
              }
            }
          }
        },
        "encoding": "application/json"
      },
      "parameters": {
        "type": "params",
        "required": [
          "domain"
        ],
        "properties": {
          "limit": {
            "type": "integer",
            "default": 50,
            "maximum": 100,
            "minimum": 1,
            "description": "Maximum entries to return."
          },
          "cursor": {
            "type": "string",
            "description": "Pagination cursor from a previous response."
          },
          "domain": {
            "type": "string",
            "maxLength": 253,
            "description": "The base domain."
          }
        }
      },
      "description": "Names reserved under one of the caller's delegation bases, with who each is reserved for and whether it routes. The base's probe is not included."
    },
    "reservationView": {
      "type": "object",
      "required": [
        "domain"
      ],
      "properties": {
        "edge": {
          "ref": "space.highport.defs#edgeReachability",
          "type": "ref",
          "description": "Whether the name still routes to this service's edge. A name can stop routing while its base still routes, if a record for that name in the base's zone overrides the wildcard."
        },
        "domain": {
          "ref": "space.highport.defs#domainView",
          "type": "ref",
          "description": "The reservation's registration. did is the identity it is reserved for, and delegatedBase is the base."
        },
        "takenUpAt": {
          "type": "string",
          "format": "datetime",
          "description": "When this service first saw the subject use the name as its handle (its DID document lists at://<domain> and the name resolves back). Set once, and kept even if the handle later changes or the check fails. Absent before then. Releasing the name clears it."
        },
        "servingDefaultTile": {
          "type": "boolean",
          "description": "Whether this name is serving the base's default tile. False when the base has set none, and false once the subject publishes a site of their own, which replaces it."
        }
      },
      "description": "One reserved name."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
