Atlassian · Schema

FieldConfiguration

Details of a field configuration.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the field configuration.
id integer The ID of the field configuration.
isDefault boolean Whether the field configuration is the default.
name string The name of the field configuration.
View JSON Schema on GitHub

JSON Schema

atlassian-fieldconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FieldConfiguration",
  "title": "FieldConfiguration",
  "additionalProperties": false,
  "description": "Details of a field configuration.",
  "properties": {
    "description": {
      "description": "The description of the field configuration.",
      "type": "string"
    },
    "id": {
      "description": "The ID of the field configuration.",
      "format": "int64",
      "type": "integer"
    },
    "isDefault": {
      "description": "Whether the field configuration is the default.",
      "type": "boolean"
    },
    "name": {
      "description": "The name of the field configuration.",
      "type": "string"
    }
  },
  "required": [
    "description",
    "id",
    "name"
  ],
  "type": "object"
}