Atlassian · Schema

CustomFieldContextDefaultValueForgeMultiStringField

The default text for a Forge collection of strings custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string
values array List of string values. The maximum length for a value is 254 characters.
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontextdefaultvalueforgemultistringfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueForgeMultiStringField",
  "title": "CustomFieldContextDefaultValueForgeMultiStringField",
  "description": "The default text for a Forge collection of strings custom field.",
  "properties": {
    "type": {
      "type": "string"
    },
    "values": {
      "description": "List of string values. The maximum length for a value is 254 characters.",
      "items": {
        "description": "List of string values. The maximum length for a value is 254 characters.",
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "type"
  ],
  "type": "object"
}