# com.cultureblocs.creative.connection

> Published by [cultureblocs.com](https://lexicon.garden/identity/did:plc:l3726um33xesakwqhjkkpoet)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:l3726um33xesakwqhjkkpoet/com.cultureblocs.creative.connection)
- [Documentation](https://lexicon.garden/lexicon/did:plc:l3726um33xesakwqhjkkpoet/com.cultureblocs.creative.connection/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:l3726um33xesakwqhjkkpoet/com.cultureblocs.creative.connection/examples)

## Definitions

### `com.cultureblocs.creative.connection`

**Type**: `record`

A directional claim from this repository's holder about another party or record: 'we exhibited this', 'I performed on this', 'this is my work'. One-way and unapproved by default — the counterparty is never asked to accept anything. When two parties independently point at each other, any reader can compute a verified relationship from the closed loop; this is the mutual-mint primitive at professional scale. Pointing at a record with a CID pins the exact content attested to: if the target is silently rewritten the loop visibly breaks.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `note` | `string` | No |  |
| `role` | `string` | No | Freeform role within the relationship, e.g. 'mastering engineer', 'lighting design'. Industry role vocabularies are external layers, not core schema. |
| `subject` | `union` | Yes | Who or what this claim is about: a party by DID, or a specific record (pin the CID to make the attestation tamper-evident). |
| `createdAt` | `string` (datetime) | Yes | When this record was first stamped. The only immutable field: everything else may be revised by publishing a new commit. |
| `relationship` | `string` | Yes | Advisory vocabulary: new relationship types need no schema change. |

## Raw Schema

```json
{
  "id": "com.cultureblocs.creative.connection",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "relationship",
          "createdAt"
        ],
        "properties": {
          "note": {
            "type": "string",
            "maxGraphemes": 500
          },
          "role": {
            "type": "string",
            "description": "Freeform role within the relationship, e.g. 'mastering engineer', 'lighting design'. Industry role vocabularies are external layers, not core schema.",
            "maxGraphemes": 100
          },
          "subject": {
            "refs": [
              "com.cultureblocs.defs#didRef",
              "com.cultureblocs.defs#strongRef"
            ],
            "type": "union",
            "description": "Who or what this claim is about: a party by DID, or a specific record (pin the CID to make the attestation tamper-evident)."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this record was first stamped. The only immutable field: everything else may be revised by publishing a new commit."
          },
          "relationship": {
            "type": "string",
            "description": "Advisory vocabulary: new relationship types need no schema change.",
            "knownValues": [
              "created",
              "collaborated_on",
              "performed",
              "exhibited",
              "released",
              "represented_by",
              "attests_to",
              "references",
              "member_of"
            ],
            "maxGraphemes": 64
          }
        }
      },
      "description": "A directional claim from this repository's holder about another party or record: 'we exhibited this', 'I performed on this', 'this is my work'. One-way and unapproved by default — the counterparty is never asked to accept anything. When two parties independently point at each other, any reader can compute a verified relationship from the closed loop; this is the mutual-mint primitive at professional scale. Pointing at a record with a CID pins the exact content attested to: if the target is silently rewritten the loop visibly breaks."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
