Atlassian · Schema

CustomFieldContextDefaultValueFloat

Default value for a float (number) custom field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
number number The default floating-point number.
type string
View JSON Schema on GitHub

JSON Schema

atlassian-customfieldcontextdefaultvaluefloat-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomFieldContextDefaultValueFloat",
  "title": "CustomFieldContextDefaultValueFloat",
  "description": "Default value for a float (number) custom field.",
  "properties": {
    "number": {
      "description": "The default floating-point number.",
      "format": "double",
      "type": "number"
    },
    "type": {
      "type": "string"
    }
  },
  "required": [
    "number",
    "type"
  ],
  "type": "object"
}