{
"id": "io.atcr.tag",
"defs": {
"main": {
"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"
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1
}