# space.highport.manage.verify

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

## Definitions

### `space.highport.manage.verify`

**Type**: `procedure`

Check a domain's DNS now instead of waiting for the poller. Limited to once every thirty seconds per domain.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `domain` | `string` | Yes | The registered hostname. |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `checks` | `array` | Yes |  |
| `status` | `ref` → `space.highport.defs#domainStatus` | Yes |  |

#### Errors

- **DomainNotFound**: No registration for that domain belongs to the caller.
- **RateLimitExceeded**: Only one verification every thirty seconds per domain.

## Raw Schema

```json
{
  "id": "space.highport.manage.verify",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "domain"
          ],
          "properties": {
            "domain": {
              "type": "string",
              "maxLength": 253,
              "description": "The registered hostname."
            }
          }
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "DomainNotFound",
          "description": "No registration for that domain belongs to the caller."
        },
        {
          "name": "RateLimitExceeded",
          "description": "Only one verification every thirty seconds per domain."
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "status",
            "checks"
          ],
          "properties": {
            "checks": {
              "type": "array",
              "items": {
                "ref": "space.highport.defs#verificationCheck",
                "type": "ref"
              }
            },
            "status": {
              "ref": "space.highport.defs#domainStatus",
              "type": "ref"
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Check a domain's DNS now instead of waiting for the poller. Limited to once every thirty seconds per domain."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
