tech.lenooby09.didgit.ref

lexicon.store View official

Documentation

A did-git ref stored in an AT Protocol repository. Each record maps a repository name and ref name (e.g. refs/heads/main) to the hex SHA-256 object ID it points to.

main record

A did-git ref stored in an AT Protocol repository. Each record maps a repository name and ref name (e.g. refs/heads/main) to the hex SHA-256 object ID it points to.

Record Key any Any valid record key

Properties

objectId string Required

The hex SHA-256 object ID this ref points to.

maxLength: 64 bytes
refName string Required

The full ref name, e.g. refs/heads/main.

maxLength: 512 bytes
repo string Required

The repository name (path) on this DID account.

maxLength: 512 bytes
View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "repo",
      "refName",
      "objectId"
    ],
    "properties": {
      "repo": {
        "type": "string",
        "maxLength": 512,
        "description": "The repository name (path) on this DID account."
      },
      "refName": {
        "type": "string",
        "maxLength": 512,
        "description": "The full ref name, e.g. refs/heads/main."
      },
      "objectId": {
        "type": "string",
        "maxLength": 64,
        "description": "The hex SHA-256 object ID this ref points to."
      }
    }
  },
  "description": "A did-git ref stored in an AT Protocol repository. Each record maps a repository name and ref name (e.g. refs/heads/main) to the hex SHA-256 object ID it points to."
}

Lexicon Garden

@