Atlassian · Schema

UpdateFieldConfigurationSchemeDetails

The details of the field configuration scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the field configuration scheme.
name string The name of the field configuration scheme. The name must be unique.
View JSON Schema on GitHub

JSON Schema

atlassian-updatefieldconfigurationschemedetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateFieldConfigurationSchemeDetails",
  "title": "UpdateFieldConfigurationSchemeDetails",
  "additionalProperties": false,
  "description": "The details of the field configuration scheme.",
  "properties": {
    "description": {
      "description": "The description of the field configuration scheme.",
      "maxLength": 1024,
      "type": "string",
      "writeOnly": true
    },
    "name": {
      "description": "The name of the field configuration scheme. The name must be unique.",
      "maxLength": 255,
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}