{
    "$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": "mngMetaData_ExportNadrMidMap-response",
        "format": "jsonschema",
        "version": "1-0-0"
    },
    "type": "object",
    "properties": {
        "mType": {
            "type": "string",
            "description": "Daemon metadata - Export NADR-MID metadata.",
            "enum": [
                "mngMetaData_ExportNadrMidMap"
            ]
        },
        "data": {
            "type": "object",
            "properties": {
                "msgId": {
                    "type": "string",
                    "description": "Message identification for binding request with response."
                },
                "rsp": {
                    "type": "object",
                    "properties": {
                        "nadrMidMap": {
                            "type": "array",
                            "description": "NADR-MID map.",                    
                            "properties": {
                                "nAdr": {
                                    "type":"integer",
                                    "description": "Network Address."
                                },
                                "mid": {
                                    "type":"string",
                                    "description": "Module ID."
                                }
                            }
                        }
                    },
                    "required": [
                        "nadrMidMap"                    
                    ]
                },
                "insId": {
					"type": "string",
					"description": "IQRF GW daemon instance identification."
				},
                "status": {
                    "type": "integer",
                    "description": "Status of operation."
                },
                "statusStr": {
                    "type": "string",
                    "description": "IQRF GW daemon API (general or mType) status in string form."
                }
            },
            "required": [
                "msgId",
                "rsp",
                "status"
            ]
        }
    },
    "required": [
        "mType",
        "data"
    ]
}
