{
"$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"
}
}
}