Atlassian · Schema

CustomFieldContextUpdateDetails

Details of a custom field context.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the custom field context. The maximum length is 255 characters.
name string The name of the custom field context. The name must be unique. The maximum length is 255 characters.
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontextupdatedetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextUpdateDetails",
  "title": "CustomFieldContextUpdateDetails",
  "additionalProperties": false,
  "description": "Details of a custom field context.",
  "properties": {
    "description": {
      "description": "The description of the custom field context. The maximum length is 255 characters.",
      "type": "string",
      "writeOnly": true
    },
    "name": {
      "description": "The name of the custom field context. The name must be unique. The maximum length is 255 characters.",
      "type": "string",
      "writeOnly": true
    }
  },
  "type": "object"
}