# org.simocracy.star

> Published by [simocracy.climateai.org](https://lexicon.garden/identity/did:plc:awtx57rxuisy4sf4kzzr3uhf)

## Links

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

## Definitions

### `org.simocracy.star`

**Type**: `record`

A general-purpose star/feature marker for any ATProto record. Written by the facilitator account to curate featured content (gatherings, sims, proposals, etc.).

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes | Reference to any ATProto record being starred (gathering, sim, proposal, etc.) |
| `createdAt` | `string` (datetime) | Yes | Timestamp when the star was created |

## Raw Schema

```json
{
  "id": "org.simocracy.star",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Reference to any ATProto record being starred (gathering, sim, proposal, etc.)"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the star was created"
          }
        }
      },
      "description": "A general-purpose star/feature marker for any ATProto record. Written by the facilitator account to curate featured content (gatherings, sims, proposals, etc.)."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
