# is.currents.graph.favourite

> Published by [currents.is](https://lexicon.garden/identity/did:plc:jaur46k6ijyfvl4lojza7eic)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.graph.favourite)
- [Documentation](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.graph.favourite/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:jaur46k6ijyfvl4lojza7eic/is.currents.graph.favourite/examples)

## Definitions

### `is.currents.graph.favourite`

**Type**: `record`

A favourite of another account's collection, so the viewer can revisit it and follow what gets added.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes | Strong reference to the collection record being favourited. Indexed by URI; the CID is informational and may go stale as the collection is edited. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "is.currents.graph.favourite",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Strong reference to the collection record being favourited. Indexed by URI; the CID is informational and may go stale as the collection is edited."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A favourite of another account's collection, so the viewer can revisit it and follow what gets added."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
