changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "description": "Dataset metadata and details",
+ "properties": {
+ "dataset_id": {
+ "description": "Unique dataset identifier",
+ "type": "string"
+ },
+ "description": {
+ "description": "Dataset description",
+ "type": "string"
+ },
+ "fields": {
+ "description": "List of fields/columns",
+ "items": {
+ "properties": {
+ "description": {
+ "description": "Field description",
+ "type": "string"
+ },
+ "name": {
+ "description": "Field name",
+ "type": "string"
+ },
+ "type": {
+ "description": "Field data type",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "modified": {
+ "description": "Last modification date",
+ "type": "string"
+ },
+ "name": {
+ "description": "Dataset name",
+ "type": "string"
+ },
+ "records_count": {
+ "description": "Total number of records",
+ "type": "number"
+ },
+ "theme": {
+ "description": "Dataset theme/category",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}