# fund.at.funding.channel

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

✓ This is the authoritative definition for this NSID.

## Description

A single payment channel where contributions can be made. Each channel is an individual record keyed by its slug ID. Maps to a funding.json channel entry.

## Links

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

## Definitions

### `fund.at.funding.channel`

**Type**: `record`

A payment channel — a specific place where contributions can be received (e.g. a GitHub Sponsors page, an Open Collective profile, a bank account). Each channel is an independent record, individually addressable by its AT URI.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `uri` | `string` (uri) | No | The payment URL for this channel (e.g. https://github.com/sponsors/you). Optional for channels without a public URL (e.g. bank transfers). Maps to funding.json channel.address. |
| `createdAt` | `string` (datetime) | No | When this record was created or last updated. |
| `channelType` | `string` | Yes | Channel category. Maps to funding.json channel.type. |
| `description` | `string` | No | Human-readable description of this channel. |

## Raw Schema

```json
{
  "id": "fund.at.funding.channel",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "channelType"
        ],
        "properties": {
          "uri": {
            "type": "string",
            "format": "uri",
            "description": "The payment URL for this channel (e.g. https://github.com/sponsors/you). Optional for channels without a public URL (e.g. bank transfers). Maps to funding.json channel.address."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this record was created or last updated."
          },
          "channelType": {
            "type": "string",
            "maxLength": 32,
            "description": "Channel category. Maps to funding.json channel.type.",
            "knownValues": [
              "payment-provider",
              "bank",
              "cheque",
              "cash",
              "other"
            ]
          },
          "description": {
            "type": "string",
            "maxLength": 500,
            "description": "Human-readable description of this channel."
          }
        }
      },
      "description": "A payment channel — a specific place where contributions can be received (e.g. a GitHub Sponsors page, an Open Collective profile, a bank account). Each channel is an independent record, individually addressable by its AT URI."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A single payment channel where contributions can be made. Each channel is an individual record keyed by its slug ID. Maps to a funding.json channel entry."
}
```
