Atlassian · Schema

ContextualConfiguration

Details of the contextual configuration for a custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
configuration object The field configuration.
fieldContextId string The ID of the field context the configuration is associated with.
id string The ID of the configuration.
schema object The field value schema.
View JSON Schema on GitHub

JSON Schema

atlassian-contextualconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContextualConfiguration",
  "title": "ContextualConfiguration",
  "additionalProperties": false,
  "description": "Details of the contextual configuration for a custom field.",
  "properties": {
    "configuration": {
      "description": "The field configuration."
    },
    "fieldContextId": {
      "description": "The ID of the field context the configuration is associated with.",
      "readOnly": true,
      "type": "string"
    },
    "id": {
      "description": "The ID of the configuration.",
      "type": "string"
    },
    "schema": {
      "description": "The field value schema."
    }
  },
  "required": [
    "fieldContextId",
    "id"
  ],
  "type": "object"
}