# coop.hypha.spores.social.takenFlower

> 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.spores.social.takenFlower)
- [Documentation](https://lexicon.garden/lexicon/did:plc:rxduhzsfgfpl2glle7vagcwl/coop.hypha.spores.social.takenFlower/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:rxduhzsfgfpl2glle7vagcwl/coop.hypha.spores.social.takenFlower/examples)

## Definitions

### `coop.hypha.spores.social.takenFlower`

**Type**: `record`

A flower taken from another user's garden, representing a bookmark or collection.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `note` | `string` | No | Optional note or reason for taking this flower |
| `subject` | `string` (did) | Yes | DID of the garden the flower was taken from. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when the flower was taken. |

## Raw Schema

```json
{
  "id": "coop.hypha.spores.social.takenFlower",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "note": {
            "type": "string",
            "maxLength": 5000,
            "description": "Optional note or reason for taking this flower",
            "maxGraphemes": 500
          },
          "subject": {
            "type": "string",
            "format": "did",
            "description": "DID of the garden the flower was taken from."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when the flower was taken."
          }
        }
      },
      "description": "A flower taken from another user's garden, representing a bookmark or collection."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
