changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of flows matching the filter",
+ "type": "number"
+ },
+ "flows": {
+ "description": "Curated dataflow objects",
+ "items": {
+ "properties": {
+ "flow_ref": {
+ "description": "SDMX dataflow reference",
+ "type": "string"
+ },
+ "title": {
+ "description": "Human-readable flow title",
+ "type": "string"
+ },
+ "topic": {
+ "description": "Topic category",
+ "type": "string"
+ }
+ },
+ "required": [
+ "flow_ref",
+ "topic",
+ "title"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "note": {
+ "description": "Additional information about full catalog",
+ "type": "string"
+ },
+ "topics": {
+ "description": "All available topics in the curated catalog",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "topics",
+ "flows",
+ "note"
+ ],
+ "type": "object"
+}