# com.thelexfiles.zakia.temp.tip

> Published by [protopunx.bsky.social](https://lexicon.garden/identity/did:plc:deh4u7fsoeqtrbtkf5eptizr)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:deh4u7fsoeqtrbtkf5eptizr/com.thelexfiles.zakia.temp.tip)
- [Documentation](https://lexicon.garden/lexicon/did:plc:deh4u7fsoeqtrbtkf5eptizr/com.thelexfiles.zakia.temp.tip/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:deh4u7fsoeqtrbtkf5eptizr/com.thelexfiles.zakia.temp.tip/examples)

## Definitions

### `com.thelexfiles.zakia.temp.tip`

**Type**: `record`

 A verifiable claim that one person valued another person's work by tipping them

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `amount` | `string` | Yes | Tip amount in dollars |
| `tipper` | `string` (did) | Yes | DID or handle of the person who tipped |
| `comment` | `string` | No | Reason for tipping |
| `receiver` | `string` (did) | Yes | Name or DID of the person who received the tip |
| `createdAt` | `string` (datetime) | Yes |  |
| `contentUrl` | `string` (uri) | No | URL of the content being tipped for |

## Raw Schema

```json
{
  "id": "com.thelexfiles.zakia.temp.tip",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "receiver",
          "tipper",
          "amount",
          "createdAt"
        ],
        "properties": {
          "amount": {
            "type": "string",
            "description": "Tip amount in dollars"
          },
          "tipper": {
            "type": "string",
            "format": "did",
            "description": "DID or handle of the person who tipped"
          },
          "comment": {
            "type": "string",
            "description": "Reason for tipping"
          },
          "receiver": {
            "type": "string",
            "format": "did",
            "description": "Name or DID of the person who received the tip"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "contentUrl": {
            "type": "string",
            "format": "uri",
            "description": "URL of the content being tipped for"
          }
        }
      },
      "description": " A verifiable claim that one person valued another person's work by tipping them"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
