tech.lenooby09.didgit.object

lexicon.store View official

Documentation

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.

main 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.

Record Key any Any valid record key

Properties

content blob Required

The git object content, stored as an AT Protocol blob.

maxSize: 52.4 MB
objectType string Required

The type of the git object.

maxLength: 16 bytes
Known values: blob, tree, commit, tag
View raw schema
{
  "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."
}

Lexicon Garden

@