{ "$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" }