# at.locale.review

> Published by [locale.at](https://lexicon.garden/identity/did:plc:uwynodlfvaieqcisgh5zvdwx)

✓ This is the authoritative definition for this NSID.

## Description

Approve / reject / request-changes on a specific translation revision. Reviewer-owned. The merge gate.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:uwynodlfvaieqcisgh5zvdwx/at.locale.review)
- [Documentation](https://lexicon.garden/lexicon/did:plc:uwynodlfvaieqcisgh5zvdwx/at.locale.review/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:uwynodlfvaieqcisgh5zvdwx/at.locale.review/examples)

## Definitions

### `at.locale.review`

**Type**: `record`

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `comment` | `string` | No |  |
| `project` | `string` (at-uri) | Yes |  |
| `verdict` | `string` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `translation` | `string` (at-uri) | Yes | AT-URI of the specific at.locale.translation revision being reviewed. |

## Raw Schema

```json
{
  "id": "at.locale.review",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "translation",
          "project",
          "verdict",
          "createdAt"
        ],
        "properties": {
          "comment": {
            "type": "string",
            "maxLength": 6000,
            "maxGraphemes": 2000
          },
          "project": {
            "type": "string",
            "format": "at-uri"
          },
          "verdict": {
            "type": "string",
            "knownValues": [
              "approved",
              "rejected",
              "changes-requested"
            ]
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "translation": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the specific at.locale.translation revision being reviewed."
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Approve / reject / request-changes on a specific translation revision. Reviewer-owned. The merge gate."
}
```
