A Care Cubby partner organization record.
Record Key
tid
Timestamp-based ID
Properties
description
string
Required
Long-form description of the org and its role in the project.
maxLength: 20000 bytesmaxGraphemes: 5000 graphemesminGraphemes: 1 graphemesfocus
string
Required
Primary area of focus of the org's work with the project.
maxLength: 1000 bytesmaxGraphemes: 500 graphemesminGraphemes: 1 graphemeslogo
blob
Optional
Optional logo of the organization, uploaded as a blob to the PDS. The frontend renders it via `com.atproto.sync.getBlob`.
maxSize: 1.0 MBname
string
Required
Common name of the organization.
maxLength: 400 bytesmaxGraphemes: 200 graphemesminGraphemes: 1 graphemestype
string
Required
Organizational type. Open set — the current values are documented below; new types are allowed.
maxLength: 100 bytesKnown values:
Arts Organization, Community Organization, 501(c)(3) Nonprofit, 501(c)(4) Nonprofitwebsite
string
uri
Required
Website or social profile of the organization.
maxLength: 2048 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"description",
"website",
"type",
"focus"
],
"properties": {
"logo": {
"type": "blob",
"accept": [
"image/png",
"image/jpeg",
"image/webp"
],
"maxSize": 1000000,
"description": "Optional logo of the organization, uploaded as a blob to the PDS.\nThe frontend renders it via `com.atproto.sync.getBlob`."
},
"name": {
"type": "string",
"maxLength": 400,
"description": "Common name of the organization.",
"maxGraphemes": 200,
"minGraphemes": 1
},
"type": {
"type": "string",
"maxLength": 100,
"description": "Organizational type. Open set — the current values are documented\nbelow; new types are allowed.",
"knownValues": [
"Arts Organization",
"Community Organization",
"501(c)(3) Nonprofit",
"501(c)(4) Nonprofit"
]
},
"focus": {
"type": "string",
"maxLength": 1000,
"description": "Primary area of focus of the org's work with the project.",
"maxGraphemes": 500,
"minGraphemes": 1
},
"website": {
"type": "string",
"format": "uri",
"maxLength": 2048,
"description": "Website or social profile of the organization."
},
"description": {
"type": "string",
"maxLength": 20000,
"description": "Long-form description of the org and its role in the project.",
"maxGraphemes": 5000,
"minGraphemes": 1
}
}
},
"description": "A Care Cubby partner organization record."
}