addedInput schema / examples
Added value: +[
+ {
+ "dataset_id": "cpih01",
+ "dimensions": {
+ "geography": "K02000001",
+ "time": "2023"
+ },
+ "edition": "time-series",
+ "version": "1"
+ },
+ {
+ "dataset_id": "ashe-table-1",
+ "dimensions": {
+ "geography": "*",
+ "time": "2023"
+ },
+ "edition": "annual",
+ "version": "2"
+ }
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "dataset_id": {
+ "description": "Dataset ID",
+ "type": "string"
+ },
+ "edition": {
+ "description": "Edition label",
+ "type": "string"
+ },
+ "notes": {
+ "description": "Usage notes",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "observations": {
+ "description": "Observation rows",
+ "items": {
+ "properties": {
+ "dimensions": {
+ "additionalProperties": {
+ "properties": {
+ "id": {
+ "description": "Dimension value ID",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "label": {
+ "description": "Dimension value label",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "description": "Dimension codes and labels for this observation",
+ "type": "object"
+ },
+ "value": {
+ "description": "Observation value",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_observations": {
+ "description": "Total number of observations",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "unit_of_measure": {
+ "description": "Unit of measurement",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "version": {
+ "description": "Version",
+ "type": "string"
+ }
+ },
+ "required": [
+ "dataset_id",
+ "edition",
+ "version",
+ "total_observations",
+ "unit_of_measure",
+ "notes",
+ "observations"
+ ],
+ "type": "object"
+}