# social.arabica.alpha.roaster

> Published by [arabica.social](https://lexicon.garden/identity/did:plc:chqc2ockzmyvlrasfb66x64a)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:chqc2ockzmyvlrasfb66x64a/social.arabica.alpha.roaster)
- [Documentation](https://lexicon.garden/lexicon/did:plc:chqc2ockzmyvlrasfb66x64a/social.arabica.alpha.roaster/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:chqc2ockzmyvlrasfb66x64a/social.arabica.alpha.roaster/examples)

## Definitions

### `social.arabica.alpha.roaster`

**Type**: `record`

A coffee roaster company

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes | Name of the roaster (e.g., 'Black & White', 'Red Rooster') |
| `website` | `string` (uri) | No | Roaster's website URL |
| `location` | `string` | No | Location of the roaster (e.g., 'Raleigh, NC', 'Floyd, VA') |
| `createdAt` | `string` (datetime) | Yes | Timestamp when the roaster record was created |
| `sourceRef` | `string` (at-uri) | No | AT-URI of the record this entity was sourced from |

## Raw Schema

```json
{
  "id": "social.arabica.alpha.roaster",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 200,
            "description": "Name of the roaster (e.g., 'Black & White', 'Red Rooster')"
          },
          "website": {
            "type": "string",
            "format": "uri",
            "maxLength": 500,
            "description": "Roaster's website URL"
          },
          "location": {
            "type": "string",
            "maxLength": 200,
            "description": "Location of the roaster (e.g., 'Raleigh, NC', 'Floyd, VA')"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the roaster record was created"
          },
          "sourceRef": {
            "type": "string",
            "format": "at-uri",
            "description": "AT-URI of the record this entity was sourced from"
          }
        }
      },
      "description": "A coffee roaster company"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
