# net.carecubby.partnerOrg

> Published by [carecubby.net](https://lexicon.garden/identity/did:plc:ebir5e5h3dmvms3j2ulkukhj)

✓ This is the authoritative definition for this NSID.

## Description

A partner organization of Care Cubby.

Care Cubby is run in partnership with local grassroots orgs,
businesses, and nonprofits. This record is the AT Protocol form of
one entry in `location-frontend/src/data/partnerOrgs.json`; the
fields map 1:1 to the JSON (plus `$type` on each record).

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ebir5e5h3dmvms3j2ulkukhj/net.carecubby.partnerOrg)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ebir5e5h3dmvms3j2ulkukhj/net.carecubby.partnerOrg/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ebir5e5h3dmvms3j2ulkukhj/net.carecubby.partnerOrg/examples)

## Definitions

### `net.carecubby.partnerOrg`

**Type**: `record`

A Care Cubby partner organization record.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `logo` | `blob` | No | Optional logo of the organization, uploaded as a blob to the PDS. The frontend renders it via `com.atproto.sync.getBlob`. |
| `name` | `string` | Yes | Common name of the organization. |
| `type` | `string` | Yes | Organizational type. Open set — the current values are documented below; new types are allowed. |
| `focus` | `string` | Yes | Primary area of focus of the org's work with the project. |
| `website` | `string` (uri) | Yes | Website or social profile of the organization. |
| `description` | `string` | Yes | Long-form description of the org and its role in the project. |

## Raw Schema

```json
{
  "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)."
}
```
