# org.simocracy.style

> Published by [gainforest.earth](https://lexicon.garden/identity/did:plc:qoti4acfmc5wg6zzmtix6hse)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/org.simocracy.style)
- [Documentation](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/org.simocracy.style/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/org.simocracy.style/examples)

## Definitions

### `org.simocracy.style`

**Type**: `record`

Speaking and reply style for a sim — describes how the sim communicates.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `sim` | `ref` → `com.atproto.repo.strongRef` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | Yes | A description of the sim's speaking and reply style. |
| `descriptionFacets` | `array` | No |  |

## Raw Schema

```json
{
  "id": "org.simocracy.style",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "sim",
          "description",
          "createdAt"
        ],
        "properties": {
          "sim": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 30000,
            "description": "A description of the sim's speaking and reply style.",
            "maxGraphemes": 3000
          },
          "descriptionFacets": {
            "type": "array",
            "items": {
              "ref": "app.bsky.richtext.facet",
              "type": "ref"
            }
          }
        }
      },
      "description": "Speaking and reply style for a sim — describes how the sim communicates."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
