Atlassian · Schema

Pull Request Task Update

A pullrequest task update

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
content object task raw content
state string
View JSON Schema on GitHub

JSON Schema

atlassian-a-pullrequest-task-update-schema.json Raw ↑
{
  "$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
}