{
  "title": "parameters",
  "description": "JSON schema for Zoapp's Parameters description collections",
	"$schema": "http://json-schema.org/draft-06/schema#",
	"type": "object",
  "definitions": {
    "Id": {
      "type": "string"
    },
    "DateTime": {
      "type": "string"
    },
    "Timestamp": {
      "type": "integer"
    },
    "Link": {
      "type": "string"
    },
    "Map": {
      "type": "object"
    }
  },
  "properties": {
        "parameters": {
            "title": "Parameters",
            "properties": {
                "id": {
                    "type": "#Id"
                },
                "name": {
                    "type": "string"
                },
                "value": {
                    "type": "object"
                },
                "type": {
                    "type": "string"
                }
            }
        }
    }
}