addedOutput schema / $defs
Added value: +{
+ "DatasetSummary": {
+ "description": "Compact, machine-readable view of a CKAN dataset.",
+ "properties": {
+ "author": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Author"
+ },
+ "groups": {
+ "items": {
+ "type": "string"
+ },
+ "title": "Groups",
+ "type": "array"
+ },
+ "id": {
+ "description": "CKAN dataset name/slug — use as dataset_id in zurich_get_dataset",
+ "title": "Id",
+ "type": "string"
+ },
+ "license": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "License"
+ },
+ "modified": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Last modified date (YYYY-MM-DD)",
+ "title": "Modified"
+ },
+ "notes": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Notes"
+ },
+ "num_resources": {
+ "default": 0,
+ "title": "Num Resources",
+ "type": "integer"
+ },
+ "resources": {
+ "items": {
+ "$ref": "#/$defs/ResourceInfo"
+ },
+ "title": "Resources",
+ "type": "array"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "title": "Tags",
+ "type": "array"
+ },
+ "title": {
+ "title": "Title",
+ "type": "string"
+ },
+ "update_interval": {
+ "items": {
+ "type": "string"
+ },
+ "title": "Update Interval",
+ "type": "array"
+ },
+ "url": {
+ "title": "Url",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "title",
+ "url"
+ ],
+ "title": "DatasetSummary",
+ "type": "object"
+ },
+ "ResourceInfo": {
+ "description": "A single downloadable resource of a dataset.",
+ "properties": {
+ "datastore_active": {
+ "default": false,
+ "description": "True if the resource is queryable via the CKAN DataStore API",
+ "title": "Datastore Active",
+ "type": "boolean"
+ },
+ "format": {
+ "title": "Format",
+ "type": "string"
+ },
+ "id": {
+ "description": "Resource UUID — use as resource_id for DataStore queries",
+ "title": "Id",
+ "type": "string"
+ },
+ "name": {
+ "title": "Name",
+ "type": "string"
+ },
+ "url": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Url"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "format"
+ ],
+ "title": "ResourceInfo",
+ "type": "object"
+ }
+}
addedOutput schema / description
Added value: +"Result of a dataset search."
addedOutput schema / properties / count
Added value: +{
+ "default": 0,
+ "description": "Number of datasets in this page",
+ "title": "Count",
+ "type": "integer"
+}
addedOutput schema / properties / datasets
Added value: +{
+ "items": {
+ "$ref": "#/$defs/DatasetSummary"
+ },
+ "title": "Datasets",
+ "type": "array"
+}
addedOutput schema / properties / error
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Error"
+}
addedOutput schema / properties / next_offset
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Offset for the next page, or null if exhausted",
+ "title": "Next Offset"
+}
addedOutput schema / properties / offset
Added value: +{
+ "default": 0,
+ "title": "Offset",
+ "type": "integer"
+}
addedOutput schema / properties / query
Added value: +{
+ "title": "Query",
+ "type": "string"
+}
removedOutput schema / properties / result
Removed value: -{
- "title": "Result",
- "type": "string"
-}
addedOutput schema / properties / total
Added value: +{
+ "default": 0,
+ "title": "Total",
+ "type": "integer"
+}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "query"
+]
changedOutput schema / title
Previous value: -"zurich_search_datasetsOutput"New value: +"SearchResult"