Atlassian · Schema

BulkCustomFieldOptionCreateRequest

Details of the options to create for a custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
options array Details of options to create.
View JSON Schema on GitHub

JSON Schema

atlassian-bulkcustomfieldoptioncreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkCustomFieldOptionCreateRequest",
  "title": "BulkCustomFieldOptionCreateRequest",
  "additionalProperties": false,
  "description": "Details of the options to create for a custom field.",
  "properties": {
    "options": {
      "description": "Details of options to create.",
      "items": {
        "$ref": "#/components/schemas/CustomFieldOptionCreate"
      },
      "type": "array"
    }
  },
  "type": "object",
  "writeOnly": true
}