Atlassian · Schema

WorklogIdsRequestBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
ids array A list of worklog IDs.
View JSON Schema on GitHub

JSON Schema

atlassian-worklogidsrequestbean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorklogIdsRequestBean",
  "title": "WorklogIdsRequestBean",
  "additionalProperties": false,
  "properties": {
    "ids": {
      "description": "A list of worklog IDs.",
      "items": {
        "format": "int64",
        "type": "integer"
      },
      "type": "array",
      "uniqueItems": true
    }
  },
  "required": [
    "ids"
  ],
  "type": "object"
}