{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"additionalProperties" : false,
	"description" : "API Path: /v1/changeset/publish\nVersion v1, the request structure to check updates status",
	"properties" : {
		"space_id" : {
			"type" : "string",
			"description" : "Space Id is consistent and unique for each space"
		},

		"layer" : {
			"$ref" : "/resources/schema/data/api/denali/DataLayer.json",
			"description" : " data layer "
		},

		"start_utc_timestamp" : {
			"type" : "integer",
			"description" : "Start timestamp of changeSet.  This timestamp is inclusive in the interval"
		},

		"end_utc_timestamp" : {
			"type" : "integer",
			"description" : "End timestamp of changeSet.  This timestamp is inclusive in the interval"
		}
	},

	"required" : 
	[
		"space_id",
		"layer",
		"start_utc_timestamp",
		"end_utc_timestamp"
	],

	"title" : "ChangeSetPublishRequest",
	"type" : "object"
}