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.
Record Key
literal:self
Fixed literal value
Properties
createdAt
string
datetime
Optional
When this declaration was created or last updated.
entityType
string
Optional
What kind of entity this account represents. Maps to funding.json entity.type.
maxLength: 32 bytesKnown values:
individual, group, collective, organisation, otherrole
string
Optional
The account's role relative to the projects it stewards. Maps to funding.json entity.role.
maxLength: 32 bytesKnown values:
owner, steward, maintainer, contributor, sponsor, otherView raw schema
{
"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."
}