addedOutput schema / $defs
Added value: +{
+ "DatasetAnalysis": {
+ "description": "Per-dataset slice of an analysis run.",
+ "properties": {
+ "datastore_records": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Datastore Records"
+ },
+ "fields": {
+ "anyOf": [
+ {
+ "items": {
+ "$ref": "#/$defs/FieldInfo"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Fields"
+ },
+ "formats": {
+ "items": {
+ "type": "string"
+ },
+ "title": "Formats",
+ "type": "array"
+ },
+ "id": {
+ "title": "Id",
+ "type": "string"
+ },
+ "modified": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Modified"
+ },
+ "resources": {
+ "items": {
+ "$ref": "#/$defs/ResourceInfo"
+ },
+ "title": "Resources",
+ "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": "DatasetAnalysis",
+ "type": "object"
+ },
+ "FieldInfo": {
+ "description": "A DataStore field (column) definition.",
+ "properties": {
+ "id": {
+ "title": "Id",
+ "type": "string"
+ },
+ "type": {
+ "title": "Type",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "type"
+ ],
+ "title": "FieldInfo",
+ "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"
+ }
+}