Variable

Base definition

{
	"kind": "variable",
	"uri": string,
	"url": string,
	"name": string,
	"type": string("boolean","integer","float","string","date","dateTime","geography"),
	"isFileId": bool,
	"index": integer,
	"label": string,
}

Get definition

In addition to the base definition, any variable resource returned by a get request will contain the following properties:

{
	"description": string,
	"valueLabels": [
		{ "value": string, "label": string }
	],
	"statistics": {
		"status": string("queued","running","completed","failed"),
		"count": integer,
		"numDistinct": integer,
		"min": number,
		"max": number,
		"mean": number,
		"approxMedian": number,
		"geoBBox": {
		  "westLongitude": number,
		  "eastLongitude": number,
		  "northLatitude": number,
		  "southLatitude": number
		}
	}
}

Documentation

Last updated