Atlassian · Schema

CustomFieldContextDefaultValueTextArea

The default text for a text area custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
text string The default text. The maximum length is 32767 characters.
type string
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontextdefaultvaluetextarea-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueTextArea",
  "title": "CustomFieldContextDefaultValueTextArea",
  "description": "The default text for a text area custom field.",
  "properties": {
    "text": {
      "description": "The default text. The maximum length is 32767 characters.",
      "type": "string"
    },
    "type": {
      "type": "string"
    }
  },
  "required": [
    "type"
  ],
  "type": "object"
}