Atlassian · Schema

Report Data

A key-value element that will be displayed along with the report.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string The type of data contained in the value field. If not provided, then the value will be detected as a boolean, number or string.
title string A string describing what this data field represents.
value object The value of the data element.
View JSON Schema on GitHub

JSON Schema

atlassian-report-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/report_data",
  "title": "Report Data",
  "type": "object",
  "description": "A key-value element that will be displayed along with the report.",
  "properties": {
    "type": {
      "enum": [
        "BOOLEAN",
        "DATE",
        "DURATION",
        "LINK",
        "NUMBER",
        "PERCENTAGE",
        "TEXT"
      ],
      "type": "string",
      "description": "The type of data contained in the value field. If not provided, then the value will be detected as a boolean, number or string.",
      "example": "BOOLEAN"
    },
    "title": {
      "type": "string",
      "description": "A string describing what this data field represents.",
      "example": "Example Title"
    },
    "value": {
      "type": "object",
      "description": "The value of the data element.",
      "example": "example_value"
    }
  }
}