Atlassian · Schema

BulkEditActionError

Errors of bulk edit action.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
errorMessages array The error messages.
errors object The errors.
View JSON Schema on GitHub

JSON Schema

atlassian-bulkeditactionerror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkEditActionError",
  "title": "BulkEditActionError",
  "additionalProperties": false,
  "description": "Errors of bulk edit action.",
  "properties": {
    "errorMessages": {
      "description": "The error messages.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "errors": {
      "additionalProperties": {
        "type": "string"
      },
      "description": "The errors.",
      "type": "object"
    }
  },
  "required": [
    "errorMessages",
    "errors"
  ],
  "type": "object"
}