{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/milestone", "title": "milestone", "allOf": [ { "$ref": "#/components/schemas/object" }, { "type": "object", "title": "Milestone", "description": "A milestone 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 } ] }