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"
+ }
+}