Atlassian · Schema

CustomFieldContextDefaultValueForgeNumberField

Default value for a Forge number custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
contextId string The ID of the context.
number number The default floating-point number.
type string
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontextdefaultvalueforgenumberfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueForgeNumberField",
  "title": "CustomFieldContextDefaultValueForgeNumberField",
  "description": "Default value for a Forge number custom field.",
  "properties": {
    "contextId": {
      "description": "The ID of the context.",
      "type": "string"
    },
    "number": {
      "description": "The default floating-point number.",
      "format": "double",
      "type": "number"
    },
    "type": {
      "type": "string"
    }
  },
  "required": [
    "contextId",
    "number",
    "type"
  ],
  "type": "object"
}