Atlassian · Schema

FieldConfigurationDetails

Details of a field configuration.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

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