# fund.at.actor.declaration

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

✓ This is the authoritative definition for this NSID.

## Description

Signaling record indicating this account participates in the fund.at funding ecosystem. Its existence is the signal — all fields are optional enrichment. Maps to funding.json entity.type and entity.role.

## Links

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

## Definitions

### `fund.at.actor.declaration`

**Type**: `record`

The account's fund.at declaration. Create to join the ecosystem, delete to leave. A backfill service can enumerate all participants by scanning for this record.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `role` | `string` | No | The account's role relative to the projects it stewards. Maps to funding.json entity.role. |
| `createdAt` | `string` (datetime) | No | When this declaration was created or last updated. |
| `entityType` | `string` | No | What kind of entity this account represents. Maps to funding.json entity.type. |

## Raw Schema

```json
{
  "id": "fund.at.actor.declaration",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [],
        "properties": {
          "role": {
            "type": "string",
            "maxLength": 32,
            "description": "The account's role relative to the projects it stewards. Maps to funding.json entity.role.",
            "knownValues": [
              "owner",
              "steward",
              "maintainer",
              "contributor",
              "sponsor",
              "other"
            ]
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this declaration was created or last updated."
          },
          "entityType": {
            "type": "string",
            "maxLength": 32,
            "description": "What kind of entity this account represents. Maps to funding.json entity.type.",
            "knownValues": [
              "individual",
              "group",
              "collective",
              "organisation",
              "other"
            ]
          }
        }
      },
      "description": "The account's fund.at declaration. Create to join the ecosystem, delete to leave. A backfill service can enumerate all participants by scanning for this record."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Signaling record indicating this account participates in the fund.at funding ecosystem. Its existence is the signal — all fields are optional enrichment. Maps to funding.json entity.type and entity.role."
}
```
