Atlassian · Schema

ValidationOptionsForCreate

The level of validation to return from the API. If no values are provided, the default would return `WARNING` and `ERROR` level validation results.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
levels array
View JSON Schema on GitHub

JSON Schema

atlassian-validationoptionsforcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ValidationOptionsForCreate",
  "title": "ValidationOptionsForCreate",
  "additionalProperties": false,
  "description": "The level of validation to return from the API. If no values are provided, the default would return `WARNING` and `ERROR` level validation results.",
  "properties": {
    "levels": {
      "items": {
        "enum": [
          "WARNING",
          "ERROR"
        ],
        "type": "string"
      },
      "maxItems": 2,
      "type": "array"
    }
  },
  "type": "object"
}