{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Weight from IPC Weighing of PPM", "description": "JSON Schema for a IPC weighing using a scale", "type": "object", "allOf": [ { "$ref": "https://aausmartproductionlab.github.io/AP2030-UNS/MQTTSchemas/data.schema.json" }, { "type": "object", "properties": { "Weight": { "type": "number", "description": "The weight of the liquid during IPC" } }, "required": ["Weight"] } ] }