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