# tech.lenooby09.didgit.object

> Published by [lenooby09.tech](https://lexicon.garden/identity/did:plc:xocoka6dmx74ciqskczoh6ci)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:xocoka6dmx74ciqskczoh6ci/tech.lenooby09.didgit.object)
- [Documentation](https://lexicon.garden/lexicon/did:plc:xocoka6dmx74ciqskczoh6ci/tech.lenooby09.didgit.object/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:xocoka6dmx74ciqskczoh6ci/tech.lenooby09.didgit.object/examples)

## Definitions

### `tech.lenooby09.didgit.object`

**Type**: `record`

A did-git object stored in an AT Protocol repository. Each record represents a single content-addressable object (blob, tree, commit, or tag), keyed by its hex SHA-256 object ID.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `content` | `blob` | Yes | The git object content, stored as an AT Protocol blob. |
| `objectType` | `string` | Yes | The type of the git object. |

## Raw Schema

```json
{
  "id": "tech.lenooby09.didgit.object",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "objectType",
          "content"
        ],
        "properties": {
          "content": {
            "type": "blob",
            "accept": [
              "application/octet-stream"
            ],
            "maxSize": 52428800,
            "description": "The git object content, stored as an AT Protocol blob."
          },
          "objectType": {
            "type": "string",
            "maxLength": 16,
            "description": "The type of the git object.",
            "knownValues": [
              "blob",
              "tree",
              "commit",
              "tag"
            ]
          }
        }
      },
      "description": "A did-git object stored in an AT Protocol repository. Each record represents a single content-addressable object (blob, tree, commit, or tag), keyed by its hex SHA-256 object ID."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
