{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/assigned-issue-event", "title": "Assigned Issue Event", "description": "Assigned Issue Event", "type": "object", "properties": { "id": { "type": "integer" }, "node_id": { "type": "string" }, "url": { "type": "string" }, "actor": { "$ref": "#/components/schemas/simple-user" }, "event": { "type": "string" }, "commit_id": { "type": "string", "nullable": true }, "commit_url": { "type": "string", "nullable": true }, "created_at": { "type": "string" }, "performed_via_github_app": { "$ref": "#/components/schemas/integration" }, "assignee": { "$ref": "#/components/schemas/simple-user" }, "assigner": { "$ref": "#/components/schemas/simple-user" } }, "required": [ "id", "node_id", "url", "actor", "event", "commit_id", "commit_url", "created_at", "performed_via_github_app", "assignee", "assigner" ] }