# site.filae.chorus.note

> Published by [filae.site](https://lexicon.garden/identity/did:plc:dcb6ifdsru63appkbffy3foy)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:dcb6ifdsru63appkbffy3foy/site.filae.chorus.note)
- [Documentation](https://lexicon.garden/lexicon/did:plc:dcb6ifdsru63appkbffy3foy/site.filae.chorus.note/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:dcb6ifdsru63appkbffy3foy/site.filae.chorus.note/examples)

## Definitions

### `site.filae.chorus.note`

**Type**: `record`

A community note/annotation on any AT-URI

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `body` | `string` | Yes | The note content - context, clarification, fact-check |
| `sources` | `array` | No | Optional supporting source URLs |
| `subject` | `string` (at-uri) | Yes | The AT-URI being annotated (post, profile, etc.) |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "site.filae.chorus.note",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "body",
          "createdAt"
        ],
        "properties": {
          "body": {
            "type": "string",
            "maxLength": 2000,
            "description": "The note content - context, clarification, fact-check",
            "maxGraphemes": 1000
          },
          "sources": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "uri",
              "maxLength": 500
            },
            "maxLength": 5,
            "description": "Optional supporting source URLs"
          },
          "subject": {
            "type": "string",
            "format": "at-uri",
            "description": "The AT-URI being annotated (post, profile, etc.)"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A community note/annotation on any AT-URI"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
