net.carecubby.partnerOrg

carecubby.net

Documentation

A Care Cubby partner organization record.

main record

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 graphemes
focus string Required

Primary area of focus of the org's work with the project.

maxLength: 1000 bytesmaxGraphemes: 500 graphemesminGraphemes: 1 graphemes
name string Required

Common name of the organization.

maxLength: 400 bytesmaxGraphemes: 200 graphemesminGraphemes: 1 graphemes
type string Required

Organizational type. Open set — the current values are documented below; new types are allowed.

maxLength: 100 bytes
Known values: Arts Organization, Community Organization, 501(c)(3) Nonprofit, 501(c)(4) Nonprofit
website string uri Required

Website or social profile of the organization.

maxLength: 2048 bytes
View 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."
}

Lexicon Garden

@