{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"additionalProperties" : false,
	"description" : "API Path: /v1/domain/retrieve\nVersion v1, the data retriveRequest object ",
	"properties" : {
		"context" : {
			"$ref" : "/resources/schema/services/v1/Context.json",
			"description" : "the service context ."
		},

		"domain" : {
			"$ref" : "/resources/schema/data/api/v1/DataDomain.json",
			"description" : "the domain of the data will be retrieved "
		},

		"filters" : {
			"type" : "array",
			"description" : "The list of filters to apply on the data retrieved by the API.  There has to be at least one filter, as no-filter will return no data",
			"items" : {
				"$ref" : "/resources/schema/data/api/v1/Filter.json",
				"description" : "the filter information for the data retrieve"
			}
		}
	},

	"required" : 
	[
		"context"
	],

	"title" : "RetrieveRequest",
	"type" : "object"
}