{ "$schema": "http://json-schema.org/schema#", "$schemaVersion": "0.0.1", "$id": "https://smart-data-models.github.io/dataModels.CIMEnergyClasses/LoadAggregate/schema.json", "title": " Smart Data Models - LoadAggregate", "description": "Adapted from CIM data models. Standard aggregate load model comprised of static and/or dynamic components. A static load model represents the sensitivity of the real and reactive power consumed by the load to the amplitude and frequency of the bus voltage. A dynamic load model can used to represent the aggregate response of the motor components of the load.", "type": "object", "allOf": [ { "$ref": "https://smart-data-models.github.io/data-models/common-schema.json#/definitions/GSMA-Commons" }, { "$ref": "https://smart-data-models.github.io/data-models/common-schema.json#/definitions/Location-Commons" }, { "properties": { "type": { "type": "string", "enum": [ "LoadAggregate" ], "description": "Property. NGSI type. It has to be LoadAggregate" }, "LoadMotor": { "description": "Property. Model:'https://schema.org/Number'. Aggregate motor (dynamic) load associated with this aggregate load. Default: None", "type": "number" }, "LoadStatic": { "description": "Property. Model:'https://schema.org/Number'. Aggregate static load associated with this aggregate load. Default: None", "type": "number" } } } ] }