Gist History
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/gist-history", "title": "Gist History", "description": "Gist History", "type": "object", "properties": { "user": { "$ref": "#/components/schemas/nullable-simple-user" }, "version": { "type": "string" }, "committed_at": { "type": "string", "format": "date-time" }, "change_status": { "type": "object", "properties": { "total": { "type": "integer" }, "additions": { "type": "integer" }, "deletions": { "type": "integer" } } }, "url": { "type": "string", "format": "uri" } } }