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
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."
}