# community.buynothing.interest

> Published by [buynothing.community](https://lexicon.garden/identity/did:plc:7prvtl4j6wsfmkrfrnwknuxj)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7prvtl4j6wsfmkrfrnwknuxj/community.buynothing.interest)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7prvtl4j6wsfmkrfrnwknuxj/community.buynothing.interest/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7prvtl4j6wsfmkrfrnwknuxj/community.buynothing.interest/examples)

## Definitions

### `community.buynothing.interest`

**Type**: `record`

A public expression of interest in a listing. Coordination of pickup happens off-app via direct message.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `message` | `string` | No | Optional short public note (e.g. 'still available?'). Pickup details belong in direct messages, not here. |
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes | Strong reference (URI + CID) to the listing this interest refers to. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "community.buynothing.interest",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "message": {
            "type": "string",
            "maxLength": 600,
            "description": "Optional short public note (e.g. 'still available?'). Pickup details belong in direct messages, not here.",
            "maxGraphemes": 300
          },
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Strong reference (URI + CID) to the listing this interest refers to."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A public expression of interest in a listing. Coordination of pickup happens off-app via direct message."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
