{
	"$schema": "https://apidocs.iqrf.org/iqrf-gateway-daemon/latest/com.iqrftech.self-desc/schema/jsonschema/1-0-0#",
	"self": {
		"vendor": "com.iqrftech.self-desc",
		"name": "iqmeshNetwork_FrcParams-request",
		"format": "jsonschema",
		"version": "1-0-0"
	},
	"title": "IQMESH Network - DPA Params - FRC Params",
	"type": "object",
	"required": [
		"mType",
		"data"
	],
	"additionalProperties": false,
	"properties": {
		"mType": {
			"$id": "#/properties/mType",
			"title": "Message type",
			"description": "IQMESH Network management - DPA Params - FRC Params request.",
			"type": "string",
			"enum": ["iqmeshNetwork_FrcParams"]
		},
		"data": {
			"$id": "#/properties/data",
			"title": "Message data.",
			"description": "Message metadata and body.",
			"type": "object",
			"required": [
				"msgId",
				"req"
			],
			"additionalProperties": false,
			"properties": {
				"msgId": {
					"$id": "#/properties/data/properties/msgId",
					"title": "Message ID",
					"description": "Message ID used for pairing requests and responses.",
					"type": "string"
				},
				"req": {
					"$id": "#/properties/data/properties/req",
					"title": "Request parameters",
					"description": "Request parameters.",
					"type": "object",
					"required": [
						"action"
					],
					"additionalProperties": false,
					"properties": {
						"action": {
							"$id": "#/properties/data/properties/req/properties/action",
							"title": "Action",
							"description": "Get or Set FRC params. If action is set and type not specified, default frc params are used.",
							"type": "string",
							"enum": [
								"get",
								"set"
							]
						},
						"responseTime": {
							"$id": "#/properties/data/properties/req/properties/responseTime",
							"title": "FRC response time",
							"description": "FRC response time to set in milliseconds. [0 - 40ms, 16 - 360ms, 32 - 680ms, 48 - 1320ms, 64 - 2600ms, 80 - 5160ms, 96 - 10280ms, 112 - 20620ms].",
							"type": "integer",
							"enum": [
								0,
								16,
								32,
								48,
								64,
								80,
								96,
								112
							],
							"default": 0
						},
						"offlineFrc": {
							"$id": "#/properties/data/properites/req/properties/offlineFrc",
							"title": "Offline FRC",
							"description": "Perform offline FRC, for beaming sensors only.",
							"type": "boolean"
						}
					}
				},
				"repeat": {
					"$id": "#/properties/data/properties/repeat",
					"title": "Repeat request",
					"description": "Number of repetitions of DPA messages.",
					"type": "integer",
					"default": 1
				},
				"returnVerbose": {
					"$id": "#/properties/data/properties/returnVerbose",
					"title": "Verbose response",
					"description": "Return more verbose response.",
					"type": "boolean"
				}
			}
		}
	}
}