Atlassian · Schema

CustomFieldContextDefaultValueForgeStringField

The default text for a Forge string custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
contextId string The ID of the context.
text string The default text. The maximum length is 254 characters.
type string
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontextdefaultvalueforgestringfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueForgeStringField",
  "title": "CustomFieldContextDefaultValueForgeStringField",
  "description": "The default text for a Forge string custom field.",
  "properties": {
    "contextId": {
      "description": "The ID of the context.",
      "type": "string"
    },
    "text": {
      "description": "The default text. The maximum length is 254 characters.",
      "type": "string"
    },
    "type": {
      "type": "string"
    }
  },
  "required": [
    "contextId",
    "type"
  ],
  "type": "object"
}