A pullrequest task update
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/A_pullrequest_task_update", "title": "Pull Request Task Update", "type": "object", "description": "A pullrequest task update", "properties": { "content": { "type": "object", "title": "Task Raw Content", "description": "task raw content", "properties": { "raw": { "type": "string", "description": "The task contents" } }, "required": [ "raw" ], "additionalProperties": false, "example": "example_value" }, "state": { "type": "string", "enum": [ "RESOLVED", "UNRESOLVED" ], "example": "RESOLVED" } }, "additionalProperties": false }