A named tag pointing to a specific manifest digest
Record Key
any
Any valid record key
Properties
createdAt
string
datetime
Required
Tag creation timestamp
manifest
string
at-uri
Optional
AT-URI of the manifest this tag points to (e.g., 'at://did:plc:xyz/io.atcr.manifest/abc123'). Preferred over manifestDigest for new records.
manifestDigest
string
Optional
DEPRECATED: Digest of the manifest (e.g., 'sha256:...'). Kept for backward compatibility with old records. New records should use 'manifest' field instead.
maxLength: 128 bytesrepository
string
Required
Repository name (e.g., 'myapp'). Scoped to user's DID.
maxLength: 255 bytestag
string
Required
Tag name (e.g., 'latest', 'v1.0.0', '12-slim')
maxLength: 128 bytesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"repository",
"tag",
"createdAt"
],
"properties": {
"tag": {
"type": "string",
"maxLength": 128,
"description": "Tag name (e.g., 'latest', 'v1.0.0', '12-slim')"
},
"manifest": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the manifest this tag points to (e.g., 'at://did:plc:xyz/io.atcr.manifest/abc123'). Preferred over manifestDigest for new records."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Tag creation timestamp"
},
"repository": {
"type": "string",
"maxLength": 255,
"description": "Repository name (e.g., 'myapp'). Scoped to user's DID."
},
"manifestDigest": {
"type": "string",
"maxLength": 128,
"description": "DEPRECATED: Digest of the manifest (e.g., 'sha256:...'). Kept for backward compatibility with old records. New records should use 'manifest' field instead."
}
}
},
"description": "A named tag pointing to a specific manifest digest"
}