# net.carecubby.location

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

✓ This is the authoritative definition for this NSID.

## Description

A Care Cubby location.

Care Cubby is a supply-based mutual aid system run by queer grassroots
orgs in the Chicago area. Each host location has a small free/trade
shelf ("cubby") categorized by a letter:

A — Art Supplies
B — Books
C — Care (first-aid, Narcan, drug-test strips, masks, COVID tests)
D — Decompression (stress-relief tools)
F — Food (non-perishables)

This record is the AT Protocol form of one entry in
`location-frontend/src/data/locations.json`. See `lexicons/README.md`
for the exact source-field mapping.

## Links

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

## Definitions

### `net.carecubby.location`

**Type**: `record`

A Care Cubby location record.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Display name of the host location, e.g. "Center on Halsted". |
| `type` | `string` | Yes | Supply category letter for this cubby. |
| `address` | `ref` → `community.lexicon.location.address` | No | Optional street address, per community.lexicon.location.address. Not yet present in locations.json, but available for future data. |
| `website` | `string` (uri) | Yes | Website of the host organization. Was `link` in locations.json. |
| `coordinates` | `ref` → `community.lexicon.location.geo` | Yes | WGS84 coordinates, per community.lexicon.location.geo. The source `latitude` / `longitude` floats are serialized as strings. |
| `description` | `string` | Yes | Where the cubby is inside the location, plus any notes about access, hours, or what's on the shelf. Was `description` in locations.json. |
| `locationLink` | `string` (uri) | Yes | Link to the location on Google Maps. Was `location_link` in locations.json. |

## Raw Schema

```json
{
  "id": "net.carecubby.location",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "website",
          "locationLink",
          "description",
          "coordinates",
          "type"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 400,
            "description": "Display name of the host location, e.g. \"Center on Halsted\".",
            "maxGraphemes": 200,
            "minGraphemes": 1
          },
          "type": {
            "enum": [
              "A",
              "B",
              "C",
              "D",
              "F"
            ],
            "type": "string",
            "maxLength": 1,
            "description": "Supply category letter for this cubby."
          },
          "address": {
            "ref": "community.lexicon.location.address",
            "type": "ref",
            "description": "Optional street address, per community.lexicon.location.address.\nNot yet present in locations.json, but available for future data."
          },
          "website": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "Website of the host organization. Was `link` in locations.json."
          },
          "coordinates": {
            "ref": "community.lexicon.location.geo",
            "type": "ref",
            "description": "WGS84 coordinates, per community.lexicon.location.geo. The\nsource `latitude` / `longitude` floats are serialized as strings."
          },
          "description": {
            "type": "string",
            "maxLength": 4000,
            "description": "Where the cubby is inside the location, plus any notes about\naccess, hours, or what's on the shelf. Was `description` in\nlocations.json.",
            "maxGraphemes": 2000,
            "minGraphemes": 1
          },
          "locationLink": {
            "type": "string",
            "format": "uri",
            "maxLength": 2048,
            "description": "Link to the location on Google Maps. Was `location_link` in\nlocations.json."
          }
        }
      },
      "description": "A Care Cubby location record."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A Care Cubby location.\n\nCare Cubby is a supply-based mutual aid system run by queer grassroots\norgs in the Chicago area. Each host location has a small free/trade\nshelf (\"cubby\") categorized by a letter:\n\nA — Art Supplies\nB — Books\nC — Care (first-aid, Narcan, drug-test strips, masks, COVID tests)\nD — Decompression (stress-relief tools)\nF — Food (non-perishables)\n\nThis record is the AT Protocol form of one entry in\n`location-frontend/src/data/locations.json`. See `lexicons/README.md`\nfor the exact source-field mapping."
}
```
