# fund.at.funding.contribute

> Published by [at.fund](https://lexicon.garden/identity/did:plc:e5sldj7avn3rinxwqtuddwpu)

✓ This is the authoritative definition for this NSID.

## Description

A single funding URL published by a steward. Points to the steward's external funding page — the human-friendly entry point. The ATProto equivalent of rel="payment" (IANA link relation).

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:e5sldj7avn3rinxwqtuddwpu/fund.at.funding.contribute)
- [Documentation](https://lexicon.garden/lexicon/did:plc:e5sldj7avn3rinxwqtuddwpu/fund.at.funding.contribute/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:e5sldj7avn3rinxwqtuddwpu/fund.at.funding.contribute/examples)

## Definitions

### `fund.at.funding.contribute`

**Type**: `record`

The steward's canonical funding entry point. A single URL where people can support this entity. Inspired by the rel="payment" microformat: a simple, unopinionated pointer to a support page.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `url` | `string` (uri) | Yes | The canonical funding page URL (e.g. GitHub Sponsors, Open Collective, ko-fi, or a custom landing page). |
| `label` | `string` | No | Human-readable description of the funding page (e.g. 'Support via GitHub Sponsors'). Inspired by rel="payment" title attribute. Optional — clients may derive a label from the URL. |
| `createdAt` | `string` (datetime) | No | When this record was created or last updated. |

## Raw Schema

```json
{
  "id": "fund.at.funding.contribute",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "url"
        ],
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "The canonical funding page URL (e.g. GitHub Sponsors, Open Collective, ko-fi, or a custom landing page)."
          },
          "label": {
            "type": "string",
            "maxLength": 128,
            "description": "Human-readable description of the funding page (e.g. 'Support via GitHub Sponsors'). Inspired by rel=\"payment\" title attribute. Optional — clients may derive a label from the URL."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this record was created or last updated."
          }
        }
      },
      "description": "The steward's canonical funding entry point. A single URL where people can support this entity. Inspired by the rel=\"payment\" microformat: a simple, unopinionated pointer to a support page."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A single funding URL published by a steward. Points to the steward's external funding page — the human-friendly entry point. The ATProto equivalent of rel=\"payment\" (IANA link relation)."
}
```
