# build.clovernight.creation.feedback

> Published by [studio.pds.clovernight.build](https://lexicon.garden/identity/did:plc:eylr5g42jkpwyputz3xbgynj)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.creation.feedback)
- [Documentation](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.creation.feedback/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:eylr5g42jkpwyputz3xbgynj/build.clovernight.creation.feedback/examples)

## Definitions

### `build.clovernight.creation.feedback`

**Type**: `record`

Public, community feedback on a creation (like a review). PRIVATE bug reports from the FAB closed-loop stay in fab-api/D1 — they are NOT records, because federated repo records are world-readable.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `body` | `string` | No | The feedback text. |
| `type` | `string` | Yes | Kind of feedback. |
| `rating` | `integer` | No | Optional 1-5 star rating. |
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes | strongRef to the build.clovernight.creation.app the feedback is about. |
| `createdAt` | `string` (datetime) | Yes | ISO 8601 timestamp of the feedback. |

## Raw Schema

```json
{
  "id": "build.clovernight.creation.feedback",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "type",
          "createdAt"
        ],
        "properties": {
          "body": {
            "type": "string",
            "maxLength": 4096,
            "description": "The feedback text."
          },
          "type": {
            "type": "string",
            "description": "Kind of feedback.",
            "knownValues": [
              "praise",
              "feature",
              "bug",
              "design"
            ]
          },
          "rating": {
            "type": "integer",
            "maximum": 5,
            "minimum": 1,
            "description": "Optional 1-5 star rating."
          },
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "strongRef to the build.clovernight.creation.app the feedback is about."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "ISO 8601 timestamp of the feedback."
          }
        }
      },
      "description": "Public, community feedback on a creation (like a review). PRIVATE bug reports from the FAB closed-loop stay in fab-api/D1 — they are NOT records, because federated repo records are world-readable."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
