# coop.hypha.pollen.claim

> Published by [hypha.coop](https://lexicon.garden/identity/did:plc:rxduhzsfgfpl2glle7vagcwl)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:rxduhzsfgfpl2glle7vagcwl/coop.hypha.pollen.claim)
- [Documentation](https://lexicon.garden/lexicon/did:plc:rxduhzsfgfpl2glle7vagcwl/coop.hypha.pollen.claim/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:rxduhzsfgfpl2glle7vagcwl/coop.hypha.pollen.claim/examples)

## Definitions

### `coop.hypha.pollen.claim`

**Type**: `record`

A provenance claim linking a perceptual fingerprint (PFP) to a blob.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `cid` | `cid-link` | Yes | CID of the blob the PFP was generated from. |
| `pfp` | `ref` → `ing.dasl.pfpRef` | Yes |  |
| `content` | `union` | Yes | Content of the claim, such as text. |
| `subject` | `ref` → `com.atproto.repo.strongRef` | No | Ref to the source record containing the blob. |
| `createdAt` | `string` (datetime) | Yes | Timestamp when this claim was created. |

## Raw Schema

```json
{
  "id": "coop.hypha.pollen.claim",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "pfp",
          "cid",
          "content",
          "createdAt"
        ],
        "properties": {
          "cid": {
            "type": "cid-link",
            "description": "CID of the blob the PFP was generated from."
          },
          "pfp": {
            "ref": "ing.dasl.pfpRef",
            "type": "ref"
          },
          "content": {
            "refs": [
              "coop.hypha.pollen.embed.text"
            ],
            "type": "union",
            "description": "Content of the claim, such as text."
          },
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Ref to the source record containing the blob."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when this claim was created."
          }
        }
      },
      "description": "A provenance claim linking a perceptual fingerprint (PFP) to a blob."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
