# blue.catbird.circle.reportRecord

> Published by [catbird.blue](https://lexicon.garden/identity/did:plc:xg4h4n7w5mh3m4uoi27me4hh)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:xg4h4n7w5mh3m4uoi27me4hh/blue.catbird.circle.reportRecord)
- [Documentation](https://lexicon.garden/lexicon/did:plc:xg4h4n7w5mh3m4uoi27me4hh/blue.catbird.circle.reportRecord/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:xg4h4n7w5mh3m4uoi27me4hh/blue.catbird.circle.reportRecord/examples)

## Definitions

### `blue.catbird.circle.reportRecord`

**Type**: `procedure`

Report a record in a Circle Space

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (at-uri) | Yes |  |
| `space` | `string` (space-ref) | Yes |  |
| `reason` | `string` | Yes |  |
| `details` | `string` | No |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `id` | `string` | Yes | Canonical lowercase hyphenated RFC 4122 UUID. |

#### Errors

- **AuthRequired**
- **AccessRemoved**
- **UnsupportedPDS**
- **ProtocolRevisionMismatch**
- **UpstreamUnavailable**

## Raw Schema

```json
{
  "id": "blue.catbird.circle.reportRecord",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "space",
            "uri",
            "reason"
          ],
          "properties": {
            "uri": {
              "type": "string",
              "format": "at-uri"
            },
            "space": {
              "type": "string",
              "format": "space-ref"
            },
            "reason": {
              "enum": [
                "spam",
                "abuse",
                "other"
              ],
              "type": "string"
            },
            "details": {
              "type": "string",
              "maxLength": 500
            }
          }
        },
        "encoding": "application/json"
      },
      "errors": [
        {
          "name": "AuthRequired"
        },
        {
          "name": "AccessRemoved"
        },
        {
          "name": "UnsupportedPDS"
        },
        {
          "name": "ProtocolRevisionMismatch"
        },
        {
          "name": "UpstreamUnavailable"
        }
      ],
      "output": {
        "schema": {
          "type": "object",
          "required": [
            "id"
          ],
          "properties": {
            "id": {
              "type": "string",
              "maxLength": 36,
              "minLength": 36,
              "description": "Canonical lowercase hyphenated RFC 4122 UUID."
            }
          }
        },
        "encoding": "application/json"
      },
      "description": "Report a record in a Circle Space"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
