# net.alternativeproto.review

> Published by [alternativeproto.net](https://lexicon.garden/identity/did:plc:zj3ek5g7p4gxvg6mcnxazar5)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:zj3ek5g7p4gxvg6mcnxazar5/net.alternativeproto.review)
- [Documentation](https://lexicon.garden/lexicon/did:plc:zj3ek5g7p4gxvg6mcnxazar5/net.alternativeproto.review/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:zj3ek5g7p4gxvg6mcnxazar5/net.alternativeproto.review/examples)

## Definitions

### `net.alternativeproto.review`

**Type**: `record`

A user review of an AlternativeProto project

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | The review text describing thoughts on the project |
| `rating` | `integer` | Yes | Rating value from 1-5 stars |
| `createdAt` | `string` (datetime) | Yes | Timestamp when the review was created |
| `projectId` | `string` | Yes | The project ID being reviewed (matches id field from project data) |

## Raw Schema

```json
{
  "id": "net.alternativeproto.review",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "projectId",
          "rating",
          "text",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 3000,
            "description": "The review text describing thoughts on the project",
            "maxGraphemes": 1000
          },
          "rating": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1,
            "description": "Rating value from 1-5 stars"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the review was created"
          },
          "projectId": {
            "type": "string",
            "description": "The project ID being reviewed (matches id field from project data)"
          }
        }
      },
      "description": "A user review of an AlternativeProto project"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
