{
"id": "net.carecubby.partnerOrg",
"defs": {
"main": {
"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."
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1,
"description": "A partner organization of Care Cubby.\n\nCare Cubby is run in partnership with local grassroots orgs,\nbusinesses, and nonprofits. This record is the AT Protocol form of\none entry in `location-frontend/src/data/partnerOrgs.json`; the\nfields map 1:1 to the JSON (plus `$type` on each record)."
}