{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/tag",
"title": "tag",
"allOf": [
{
"$ref": "#/components/schemas/ref"
},
{
"type": "object",
"title": "Tag",
"description": "A tag object, representing a tag in a repository.",
"properties": {
"message": {
"type": "string",
"description": "The message associated with the tag, if available."
},
"date": {
"type": "string",
"description": "The date that the tag was created, if available",
"format": "date-time"
},
"tagger": {
"$ref": "#/components/schemas/author"
}
},
"additionalProperties": true
}
]
}