# com.atmosphereaccount.registry.review

> Published by [atmosphereaccount.com](https://lexicon.garden/identity/did:plc:ab7uvkn4kyf7l7prl26pz4r2)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ab7uvkn4kyf7l7prl26pz4r2/com.atmosphereaccount.registry.review)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ab7uvkn4kyf7l7prl26pz4r2/com.atmosphereaccount.registry.review/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ab7uvkn4kyf7l7prl26pz4r2/com.atmosphereaccount.registry.review/examples)

## Definitions

### `com.atmosphereaccount.registry.review`

**Type**: `record`

A portable user-owned review of an Atmosphere project profile. The reviewer writes this record to their own PDS; AppViews may index and moderate their own display of it.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `body` | `string` | No | Optional short review text. |
| `rating` | `integer` | Yes | Star rating from 1 to 5. |
| `subject` | `string` (did) | Yes | DID of the project profile being reviewed. |
| `createdAt` | `string` (datetime) | Yes |  |
| `updatedAt` | `string` (datetime) | No |  |
| `subjectUri` | `string` (at-uri) | No | Optional AT URI of the reviewed project profile record. |

## Raw Schema

```json
{
  "id": "com.atmosphereaccount.registry.review",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "rating",
          "createdAt"
        ],
        "properties": {
          "body": {
            "type": "string",
            "maxLength": 300,
            "description": "Optional short review text.",
            "maxGraphemes": 300
          },
          "rating": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1,
            "description": "Star rating from 1 to 5."
          },
          "subject": {
            "type": "string",
            "format": "did",
            "maxLength": 256,
            "description": "DID of the project profile being reviewed."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "maxLength": 64
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "maxLength": 64
          },
          "subjectUri": {
            "type": "string",
            "format": "at-uri",
            "maxLength": 512,
            "description": "Optional AT URI of the reviewed project profile record."
          }
        }
      },
      "description": "A portable user-owned review of an Atmosphere project profile. The reviewer writes this record to their own PDS; AppViews may index and moderate their own display of it."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
