From 3a04ab56e80126a7d2ad19a620ddf5ebc8b4d783 Mon Sep 17 00:00:00 2001 From: Shawn Silverman Date: Thu, 19 May 2022 11:14:25 -0700 Subject: [PATCH] Add device_model_id and software_version_id properties Also capitalize "Manufacturer" in the manufacturer_id description for consistency. --- rdm-schema.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/rdm-schema.json b/rdm-schema.json index 259fd5f..4318449 100644 --- a/rdm-schema.json +++ b/rdm-schema.json @@ -9,11 +9,27 @@ "manufacturer_id": { "$comment": "Manufacturer IDs are assigned by ESTA and are commonly expressed in hexadecimal. Users may expect to see these values in the UI as hexadecimal.", "title": "Manufacturer ID", - "description": "The manufacturer ID.", + "description": "The Manufacturer ID.", "type": "integer", "minimum": 0, "maximum": 65535 }, + "device_model_id": { + "$comment": "The Device Model ID is a 16-bit value determined by the manufacturer. Users may expect to see these values in the UI as hexadecimal.", + "title": "Device Model ID", + "description": "The Device Model ID.", + "type": "integer", + "minimum": 0, + "maximum": 65535 + }, + "software_version_id": { + "$comment": "The Software Version ID is a 32-bit value determined by the manufacturer.", + "title": "Software Version ID", + "description": "The Software Version ID.", + "type": "integer", + "minimum": 0, + "maximum": 4294967295 + }, "pid": { "title": "PID", "description": "The parameter ID.",