JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/version",
"title": "version",
"allOf": [
{
"$ref": "#/components/schemas/object"
},
{
"type": "object",
"title": "Version",
"description": "A version as defined in a repository's issue tracker.",
"properties": {
"links": {
"type": "object",
"properties": {
"self": {
"type": "object",
"title": "Link",
"description": "A link to a resource related to this object.",
"properties": {
"href": {
"type": "string",
"format": "uri"
},
"name": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"name": {
"type": "string"
},
"id": {
"type": "integer"
}
},
"additionalProperties": true
}
]
}