{
	"$schema": "http://json-schema.org/draft-07/schema",
	"$id": "https://apidocs.iqrf.org/openapi/iqrf-gateway-webapp/schemas/uploaderFile.json",
	"type": "object",
	"title": "Upload utility schema",
	"additionalProperties": false,
	"required": [
		"name",
		"type"
	],
	"properties": {
		"name": {
			"$id": "#/properties/name",
			"type": "string",
			"title": "File name"
		},
		"type": {
			"$id": "#/properties/type",
			"type": "string",
			"title": "File type",
			"enum": [
				"OS",
				"DPA",
				"HEX"
			],
			"example": "OS"
		}
	}
}
