Atlassian · Schema
ContentStateBulkSetTaskUpdate
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| set | array | |
| failed | array | |
| percentage | integer | |
| message | string | |
| state | object | |
| success | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ContentStateBulkSetTaskUpdate",
"title": "ContentStateBulkSetTaskUpdate",
"required": [
"set",
"failed",
"success",
"percentage"
],
"properties": {
"set": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ContentId"
},
"example": []
},
"failed": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ContentStateFailure"
},
"example": []
},
"percentage": {
"type": "integer",
"format": "int64",
"example": 10
},
"message": {
"type": "string",
"example": "example_value"
},
"state": {
"$ref": "#/components/schemas/ContentState"
},
"success": {
"type": "boolean",
"example": true
}
},
"type": "object"
}