# org.simocracy.feed.like

> 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.feed.like)
- [Documentation](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/org.simocracy.feed.like/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:qoti4acfmc5wg6zzmtix6hse/org.simocracy.feed.like/examples)

## Definitions

### `org.simocracy.feed.like`

**Type**: `record`

Record declaring a 'like' of a piece of subject content. A port of app.bsky.feed.like (via app.gainforest.feed.like) into the org.simocracy.feed namespace. `subject` is a com.atproto.repo.strongRef (uri + cid), so a like can target any record in the Simocracy commons — a proposal, sim, gathering, decision, skill, post, or comment — and the Simocracy appview decides which subject types to aggregate. Unlike = delete this record.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `via` | `ref` → `com.atproto.repo.strongRef` | No | A reference to the repost (or other surfacing record) through which the actor encountered the subject. |
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "org.simocracy.feed.like",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "via": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "A reference to the repost (or other surfacing record) through which the actor encountered the subject."
          },
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "Record declaring a 'like' of a piece of subject content. A port of app.bsky.feed.like (via app.gainforest.feed.like) into the org.simocracy.feed namespace. `subject` is a com.atproto.repo.strongRef (uri + cid), so a like can target any record in the Simocracy commons — a proposal, sim, gathering, decision, skill, post, or comment — and the Simocracy appview decides which subject types to aggregate. Unlike = delete this record."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
