# fund.at.graph.dependency

> Published by [at.fund](https://lexicon.garden/identity/did:plc:e5sldj7avn3rinxwqtuddwpu)

✓ This is the authoritative definition for this NSID.

## Description

Declares a single dependency relationship. The record author depends on the referenced entity.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:e5sldj7avn3rinxwqtuddwpu/fund.at.graph.dependency)
- [Documentation](https://lexicon.garden/lexicon/did:plc:e5sldj7avn3rinxwqtuddwpu/fund.at.graph.dependency/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:e5sldj7avn3rinxwqtuddwpu/fund.at.graph.dependency/examples)

## Definitions

### `fund.at.graph.dependency`

**Type**: `record`

A single dependency pointer. The subject is a DID identifying the upstream entity the author depends on.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `label` | `string` | No | Human-readable name for this dependency (e.g. 'Bluesky', 'AT Protocol'). |
| `subject` | `string` | Yes | The dependency identifier: a DID (did:plc:..., did:web:...). |
| `createdAt` | `string` (datetime) | No | When this dependency was declared. |

## Raw Schema

```json
{
  "id": "fund.at.graph.dependency",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject"
        ],
        "properties": {
          "label": {
            "type": "string",
            "maxLength": 128,
            "description": "Human-readable name for this dependency (e.g. 'Bluesky', 'AT Protocol')."
          },
          "subject": {
            "type": "string",
            "maxLength": 512,
            "description": "The dependency identifier: a DID (did:plc:..., did:web:...)."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this dependency was declared."
          }
        }
      },
      "description": "A single dependency pointer. The subject is a DID identifying the upstream entity the author depends on."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Declares a single dependency relationship. The record author depends on the referenced entity."
}
```
