Atlassian · Schema

FieldConfigurationScheme

Details of a field configuration scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the field configuration scheme.
id string The ID of the field configuration scheme.
name string The name of the field configuration scheme.
View JSON Schema on GitHub

JSON Schema

atlassian-fieldconfigurationscheme-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FieldConfigurationScheme",
  "title": "FieldConfigurationScheme",
  "additionalProperties": false,
  "description": "Details of a field configuration scheme.",
  "properties": {
    "description": {
      "description": "The description of the field configuration scheme.",
      "type": "string"
    },
    "id": {
      "description": "The ID of the field configuration scheme.",
      "type": "string"
    },
    "name": {
      "description": "The name of the field configuration scheme.",
      "type": "string"
    }
  },
  "required": [
    "id",
    "name"
  ],
  "type": "object"
}