repository
stringclasses 528
values | commit
stringlengths 40
40
| commitDate
timestamp[s] | path
stringlengths 11
149
| repoStars
int64 5
94.9k
| repoLastFetched
stringclasses 528
values | content
stringlengths 48
736k
| license
stringclasses 14
values | language
stringclasses 7
values |
---|---|---|---|---|---|---|---|---|
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/FRBC.Instruction.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/FRBC.Instruction.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition": {
"description": "Indicates if this is an instruction during an abnormal condition.",
"type": "boolean"
},
"actuator_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the actuator this instruction belongs to."
},
"execution_time": {
"description": "Time when instruction should be executed.",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the instruction. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "FRBC.Instruction",
"type": "string"
},
"operation_mode": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the FRBC.OperationMode that should be activated."
},
"operation_mode_factor": {
"description": "The number indicates the factor with which the FRBC.OperationMode should be configured. The factor should be greater than or equal to 0 and less or equal to 1.",
"type": "number"
}
},
"required": [
"message_type",
"message_id",
"id",
"actuator_id",
"operation_mode",
"operation_mode_factor",
"execution_time",
"abnormal_condition"
],
"title": "FRBC_Instruction"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/PEBC.AllowedLimitRange.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PEBC.AllowedLimitRange.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition_only": {
"description": "Indicates if this PEBC.AllowedLimitRange may only be used during an abnormal condition",
"type": "boolean"
},
"commodity_quantity": {
"$ref": "../schemas/CommodityQuantity.schema.json",
"description": "Type of power quantity this PEBC.AllowedLimitRange applies to"
},
"limit_type": {
"$ref": "../schemas/PEBC.PowerEnvelopeLimitType.schema.json",
"description": "Indicates if this ranges applies to the upper limit or the lower limit"
},
"range_boundary": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "Boundaries of the power range of this PEBC.AllowedLimitRange. The CEM is allowed to choose values within this range for the power envelope for the limit as described in limit_type. The start of the range shall be smaller or equal than the end of the range. "
}
},
"required": [
"commodity_quantity",
"limit_type",
"range_boundary",
"abnormal_condition_only"
],
"title": "PEBC_AllowedLimitRange"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/PPBC.PowerSequence.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PPBC.PowerSequence.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition_only": {
"description": "Indicates if this PPBC.PowerSequence may only be used during an abnormal condition",
"type": "boolean"
},
"elements": {
"description": "List of PPBC.PowerSequenceElements. Shall contain at least one element. Elements must be placed in chronological order.",
"items": {
"$ref": "../schemas/PPBC.PowerSequenceElement.schema.json"
},
"maxItems": 288,
"minItems": 1,
"type": "array"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerSequence. Must be unique in the scope of the PPBC.PowerSequnceContainer in which it is used."
},
"is_interruptible": {
"description": "Indicates whether the option of pausing a sequence is available.",
"type": "boolean"
},
"max_pause_before": {
"$ref": "../schemas/Duration.schema.json",
"description": "The maximum duration for which a device can be paused between the end of the previous running sequence and the start of this one"
}
},
"required": [
"id",
"elements",
"is_interruptible",
"abnormal_condition_only"
],
"title": "PPBC_PowerSequence"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/OMBC.OperationMode.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/OMBC.OperationMode.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition_only": {
"description": "Indicates if this OMBC.OperationMode may only be used during an abnormal condition.",
"type": "boolean"
},
"diagnostic_label": {
"description": "Human readable name/description of the OMBC.OperationMode. This element is only intended for diagnostic purposes and not for HMI applications.",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the OBMC.OperationMode. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"power_ranges": {
"description": "The power produced or consumed by this operation mode. The start of each PowerRange is associated with an operation_mode_factor of 0, the end is associated with an operation_mode_factor of 1. In the array there must be at least one PowerRange, and at most one PowerRange per CommodityQuantity.",
"items": {
"$ref": "../schemas/PowerRange.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"running_costs": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "Additional costs per second (e.g. wear, services) associated with this operation mode in the currency defined by the ResourceManagerDetails , excluding the commodity cost. The range is expressing uncertainty and is not linked to the operation_mode_factor."
}
},
"required": [
"id",
"power_ranges",
"abnormal_condition_only"
],
"title": "OMBC_OperationMode"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/FRBC.SystemDescription.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/FRBC.SystemDescription.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"actuators": {
"description": "Details of all Actuators.",
"items": {
"$ref": "../schemas/FRBC.ActuatorDescription.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "FRBC.SystemDescription",
"type": "string"
},
"storage": {
"$ref": "../schemas/FRBC.StorageDescription.schema.json",
"description": "Details of the storage."
},
"valid_from": {
"description": "Moment this FRBC.SystemDescription starts to be valid. If the system description is immediately valid, the DateTimeStamp should be now or in the past.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"valid_from",
"actuators",
"storage"
],
"title": "FRBC_SystemDescription"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b831b6f1f19f824f32269ecd6ac6a6e250e7af80 | 2023-09-21T12:56:11 | s2-json-schema/schemas/FRBC.LeakageBehaviourElement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/FRBC.LeakageBehaviourElement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"fill_level_range": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "The fill level range for which this FRBC.LeakageBehaviourElement applies. The start of the range must be less than the end of the range."
},
"leakage_rate": {
"description": "Indicates how fast the momentary fill level will decrease per second due to leakage within the given range of the fill level. A positive value indicates that the fill level decreases over time due to leakage.",
"type": "number"
}
},
"required": [
"fill_level_range",
"leakage_rate"
],
"title": "FRBC_LeakageBehaviourElement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/FRBC.Instruction.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/FRBC.Instruction.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition": {
"description": "Indicates if this is an instruction during an abnormal condition.",
"type": "boolean"
},
"actuator_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the actuator this instruction belongs to."
},
"execution_time": {
"description": "Time when instruction should be executed.",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the instruction. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "FRBC.Instruction",
"type": "string"
},
"operation_mode": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the FRBC.OperationMode that should be activated."
},
"operation_mode_factor": {
"description": "The number indicates the factor with which the FRBC.OperationMode should be configured. The factor should be greater than or equal to 0 and less or equal to 1.",
"type": "number"
}
},
"required": [
"message_type",
"message_id",
"id",
"actuator_id",
"operation_mode",
"operation_mode_factor",
"execution_time",
"abnormal_condition"
],
"title": "FRBC_Instruction"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/OMBC.SystemDescription.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/OMBC.SystemDescription.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "OMBC.SystemDescription",
"type": "string"
},
"operation_modes": {
"description": "OMBC.OperationModes available for the CEM in order to coordinate the device behaviour.",
"items": {
"$ref": "../schemas/OMBC.OperationMode.schema.json"
},
"maxItems": 100,
"minItems": 1,
"type": "array"
},
"timers": {
"description": "Timers that control when certain transitions can be made.",
"items": {
"$ref": "../schemas/Timer.schema.json"
},
"maxItems": 1000,
"minItems": 0,
"type": "array"
},
"transitions": {
"description": "Possible transitions to switch from one OMBC.OperationMode to another.",
"items": {
"$ref": "../schemas/Transition.schema.json"
},
"maxItems": 1000,
"minItems": 1,
"type": "array"
},
"valid_from": {
"description": "Moment this OMBC.SystemDescription starts to be valid. If the system description is immediately valid, the DateTimeStamp should be now or in the past.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"valid_from",
"operation_modes",
"transitions",
"timers"
],
"title": "OMBC_SystemDescription"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 5ab1232df3cdb0cd619fe97fafaa269323a9d6ac | 2023-03-07T14:10:37 | s2-json-schema/messages/DDBC.ActuatorStatus.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/DDBC.ActuatorStatus.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"active_operation_mode_id": {
"$ref": "../schemas/ID.schema.json",
"description": "The operation mode that is presently active for this actuator."
},
"actuator_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the actuator this messages refers to"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "DDBC.ActuatorStatus",
"type": "string"
},
"operation_mode_factor": {
"description": "The number indicates the factor with which the DDBC.OperationMode is configured. The factor should be greater than or equal to 0 and less or equal to 1.",
"type": "number"
},
"previous_operation_mode_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the DDBC,OperationMode that was active before the present one. This value shall always be provided, unless the active DDBC.OperationMode is the first DDBC.OperationMode the Resource Manager is aware of."
},
"transition_timestamp": {
"description": "Time at which the transition from the previous DDBC.OperationMode to the active DDBC.OperationMode was initiated. This value shall always be provided, unless the active DDBC.OperationMode is the first DDBC.OperationMode the Resource Manager is aware of.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"actuator_id",
"active_operation_mode_id",
"operation_mode_factor"
],
"title": "DDBC_ActuatorStatus"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b831b6f1f19f824f32269ecd6ac6a6e250e7af80 | 2023-09-21T12:56:11 | s2-json-schema/messages/PEBC.EnergyConstraint.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PEBC.EnergyConstraint.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"commodity_quantity": {
"$ref": "../schemas/CommodityQuantity.schema.json",
"description": "Type of power quantity which applies to upper_average_power and lower_average_power"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "Identifier of this PEBC.EnergyConstraints. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"lower_average_power": {
"description": "Lower average power within the time period given by valid_from and valid_until. If the duration is multiplied with this power value, then the associated lower energy content can be derived. This is the lowest amount of energy the resource will consume during that period of time. The Power Envelope created by the CEM must allow at least this much energy production (in case the number is negative). Must be greater than or equal to lower_average_power, and can be negative in case of energy production.",
"type": "number"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PEBC.EnergyConstraint",
"type": "string"
},
"upper_average_power": {
"description": "Upper average power within the time period given by valid_from and valid_until. If the duration is multiplied with this power value, then the associated upper energy content can be derived. This is the highest amount of energy the resource will consume during that period of time. The Power Envelope created by the CEM must allow at least this much energy consumption (in case the number is positive). Must be greater than or equal to lower_average_power, and can be negative in case of energy production.",
"type": "number"
},
"valid_from": {
"description": "Moment this PEBC.EnergyConstraints information starts to be valid",
"format": "date-time",
"type": "string"
},
"valid_until": {
"description": "Moment until this PEBC.EnergyConstraints information is valid.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"id",
"valid_from",
"valid_until",
"upper_average_power",
"lower_average_power",
"commodity_quantity"
],
"title": "PEBC_EnergyConstraint"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/PowerMeasurement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PowerMeasurement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"measurement_timestamp": {
"description": "Timestamp when PowerValues were measured.",
"format": "date-time",
"type": "string"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PowerMeasurement",
"type": "string"
},
"values": {
"description": "Array of measured PowerValues. Must contain at least one item and at most one item per \u2018commodity_quantity\u2019 (defined inside the PowerValue).",
"items": {
"$ref": "../schemas/PowerValue.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
}
},
"required": [
"message_type",
"message_id",
"measurement_timestamp",
"values"
],
"title": "PowerMeasurement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/DDBC.OperationMode.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/DDBC.OperationMode.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"Id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this operation mode. Must be unique in the scope of the DDBC.ActuatorDescription in which it is used."
},
"abnormal_condition_only": {
"description": "Indicates if this DDBC.OperationMode may only be used during an abnormal condition.",
"type": "boolean"
},
"diagnostic_label": {
"description": "Human readable name/description of the DDBC.OperationMode. This element is only intended for diagnostic purposes and not for HMI applications.",
"type": "string"
},
"power_ranges": {
"description": "The power produced or consumed by this operation mode. The start of each PowerRange is associated with an operation_mode_factor of 0, the end is associated with an operation_mode_factor of 1. In the array there must be at least one PowerRange, and at most one PowerRange per CommodityQuantity.",
"items": {
"$ref": "../schemas/PowerRange.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"running_costs": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "Additional costs per second (e.g. wear, services) associated with this operation mode in the currency defined by the ResourceManagerDetails, excluding the commodity cost. The range is expressing uncertainty and is not linked to the operation_mode_factor."
},
"supply_range": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "The supply rate this DDBC.OperationMode can deliver for the CEM to match the demand rate. The start of the NumberRange is associated with an operation_mode_factor of 0, the end is associated with an operation_mode_factor of 1."
}
},
"required": [
"Id",
"power_ranges",
"supply_range",
"abnormal_condition_only"
],
"title": "DDBC_OperationMode"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/PEBC.Instruction.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PEBC.Instruction.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition": {
"description": "Indicates if this is an instruction during an abnormal condition.",
"type": "boolean"
},
"execution_time": {
"description": "Indicates the moment the execution of the instruction shall start.",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "Identifier of this PEBC.Instruction. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PEBC.Instruction",
"type": "string"
},
"power_constraints_id": {
"$ref": "../schemas/ID.schema.json",
"description": "Identifier of the PEBC.PowerConstraints this PEBC.Instruction was based on."
},
"power_envelopes": {
"description": "The PEBC.PowerEnvelope(s) that should be followed by the Resource Manager. There shall be at least one PEBC.PowerEnvelope, but at most one PEBC.PowerEnvelope for each CommodityQuantity.",
"items": {
"$ref": "../schemas/PEBC.PowerEnvelope.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
}
},
"required": [
"message_type",
"message_id",
"id",
"execution_time",
"abnormal_condition",
"power_constraints_id",
"power_envelopes"
],
"title": "PEBC_Instruction"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b831b6f1f19f824f32269ecd6ac6a6e250e7af80 | 2023-09-21T12:56:11 | s2-json-schema/schemas/FRBC.UsageForecastElement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/FRBC.UsageForecastElement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"duration": {
"$ref": "../schemas/Duration.schema.json",
"description": "Indicator for how long the given usage_rate is valid."
},
"usage_rate_expected": {
"description": "The most likely value for the usage rate; the expected increase or decrease of the fill_level per second. A positive value indicates that the fill level will decrease due to usage.",
"type": "number"
},
"usage_rate_lower_68PPR": {
"description": "The lower limit of the range with a 68 % probability that the usage rate is within that range. A positive value indicates that the fill level will decrease due to usage.",
"type": "number"
},
"usage_rate_lower_95PPR": {
"description": "The lower limit of the range with a 95 % probability that the usage rate is within that range. A positive value indicates that the fill level will decrease due to usage.",
"type": "number"
},
"usage_rate_lower_limit": {
"description": "The lower limit of the range with a 100 % probability that the usage rate is within that range. A positive value indicates that the fill level will decrease due to usage.",
"type": "number"
},
"usage_rate_upper_68PPR": {
"description": "The upper limit of the range with a 68 % probability that the usage rate is within that range. A positive value indicates that the fill level will decrease due to usage.",
"type": "number"
},
"usage_rate_upper_95PPR": {
"description": "The upper limit of the range with a 95 % probability that the usage rate is within that range. A positive value indicates that the fill level will decrease due to usage.",
"type": "number"
},
"usage_rate_upper_limit": {
"description": "The upper limit of the range with a 100 % probability that the usage rate is within that range. A positive value indicates that the fill level will decrease due to usage.",
"type": "number"
}
},
"required": [
"duration",
"usage_rate_expected"
],
"title": "FRBC_UsageForecastElement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/PPBC.ScheduleInstruction.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PPBC.ScheduleInstruction.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition": {
"description": "Indicates if this is an instruction during an abnormal condition",
"type": "boolean"
},
"execution_time": {
"description": "Start time of the PPBC.PowerSequence.",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the Instruction. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PPBC.ScheduleInstruction",
"type": "string"
},
"power_profile_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerProfileDefinition of which the PPBC.PowerSequence is being selected and scheduled by the CEM."
},
"power_sequence_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerSequence that is being selected and scheduled by the CEM."
},
"sequence_container_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerSequnceContainer of which the PPBC.PowerSequence is being selected and scheduled by the CEM."
}
},
"required": [
"message_type",
"message_id",
"id",
"power_profile_id",
"sequence_container_id",
"power_sequence_id",
"execution_time",
"abnormal_condition"
],
"title": "PPBC_ScheduleInstruction"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/Commodity.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/Commodity.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "GAS: Identifier for Commodity GAS\nHEAT: Identifier for Commodity HEAT\nELECTRICITY: Identifier for Commodity ELECTRICITY\nOIL: Identifier for Commodity OIL",
"enum": [
"GAS",
"HEAT",
"ELECTRICITY",
"OIL"
],
"title": "Commodity"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/PPBC.PowerSequenceStatus.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PPBC.PowerSequenceStatus.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "NOT_SCHEDULED: No PPBC.PowerSequence within the PPBC.PowerSequenceContainer is scheduled\nSCHEDULED: The selected PPBC.PowerSequence is scheduled to be executed in the future\nEXECUTING: The selected PPBC.PowerSequence is currently being executed\nINTERRUPTED: The selected PPBC.PowerSequence is being executed, but is currently interrupted and will continue afterwards\nFINISHED: The selected PPBC.PowerSequence was executed and finished successfully\nABORTED: The selected PPBC.PowerSequence was aborted by the device and will not continue",
"enum": [
"NOT_SCHEDULED",
"SCHEDULED",
"EXECUTING",
"INTERRUPTED",
"FINISHED",
"ABORTED"
],
"title": "PPBC_PowerSequenceStatus"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/FRBC.FillLevelTargetProfile.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/FRBC.FillLevelTargetProfile.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"elements": {
"description": "List of different fill levels that have to be targeted within a given duration. There shall be at least one element. Elements must be placed in chronological order.",
"items": {
"$ref": "../schemas/FRBC.FillLevelTargetProfileElement.schema.json"
},
"maxItems": 288,
"minItems": 1,
"type": "array"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "FRBC.FillLevelTargetProfile",
"type": "string"
},
"start_time": {
"description": "Time at which the FRBC.FillLevelTargetProfile starts.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"start_time",
"elements"
],
"title": "FRBC_FillLevelTargetProfile"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/DDBC.ActuatorStatus.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/DDBC.ActuatorStatus.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"active_operation_mode_id": {
"$ref": "../schemas/ID.schema.json",
"description": "The operation mode that is presently active for this actuator."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "DDBC.ActuatorStatus",
"type": "string"
},
"operation_mode_factor": {
"description": "The number indicates the factor with which the DDBC.OperationMode is configured. The factor should be greater than or equal to 0 and less or equal to 1.",
"type": "number"
},
"previous_operation_mode_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the DDBC,OperationMode that was active before the present one. This value shall always be provided, unless the active DDBC.OperationMode is the first DDBC.OperationMode the Resource Manager is aware of."
},
"transition_timestamp": {
"description": "Time at which the transition from the previous DDBC.OperationMode to the active DDBC.OperationMode was initiated. This value shall always be provided, unless the active DDBC.OperationMode is the first DDBC.OperationMode the Resource Manager is aware of.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"active_operation_mode_id",
"operation_mode_factor"
],
"title": "DDBC_ActuatorStatus"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 6c1da161d94dfb424dc761958ca16a0a68f7cf42 | 2023-04-03T13:40:44 | s2-json-schema/messages/OMBC.SystemDescription.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/OMBC.SystemDescription.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "OMBC.SystemDescription",
"type": "string"
},
"operation_modes": {
"description": "OMBC.OperationModes available for the CEM in order to coordinate the device behaviour.",
"items": {
"$ref": "../schemas/OMBC.OperationMode.schema.json"
},
"maxItems": 100,
"minItems": 1,
"type": "array"
},
"timers": {
"description": "Timers that control when certain transitions can be made.",
"items": {
"$ref": "../schemas/Timer.schema.json"
},
"maxItems": 1000,
"minItems": 0,
"type": "array"
},
"transitions": {
"description": "Possible transitions to switch from one OMBC.OperationMode to another.",
"items": {
"$ref": "../schemas/Transition.schema.json"
},
"maxItems": 1000,
"minItems": 0,
"type": "array"
},
"valid_from": {
"description": "Moment this OMBC.SystemDescription starts to be valid. If the system description is immediately valid, the DateTimeStamp should be now or in the past.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"valid_from",
"operation_modes",
"transitions",
"timers"
],
"title": "OMBC_SystemDescription"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/EnergyManagementRole.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/EnergyManagementRole.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "CEM: Customer Energy Manager\nRM: Resource Manager",
"enum": [
"CEM",
"RM"
],
"title": "EnergyManagementRole"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/CommodityQuantity.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/CommodityQuantity.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "ELECTRIC.POWER.L1: Electric power described in Watt on phase 1. If a device utilizes only one phase it should always use L1.\nELECTRIC.POWER.L2: Electric power described in Watt on phase 2. Only applicable for 3 phase devices.\nELECTRIC.POWER.L3: Electric power described in Watt on phase 3. Only applicable for 3 phase devices.\nELECTRIC.POWER.3_PHASE_SYMMETRIC: Electric power described in Watt on when power is equally shared among the three phases. Only applicable for 3 phase devices.\nNATURAL_GAS.FLOW_RATE: Gas flow rate described in liters per second\nHYDROGEN.FLOW_RATE: Gas flow rate described in grams per second\nHEAT.TEMPERATURE: Heat described in degrees Celsius\nHEAT.FLOW_RATE: Flow rate of heat carrying gas or liquid in liters per second\nHEAT.THERMAL_POWER: Thermal power in Watt\nOIL.FLOW_RATE: Oil flow rate described in liters per hour",
"enum": [
"ELECTRIC.POWER.L1",
"ELECTRIC.POWER.L2",
"ELECTRIC.POWER.L3",
"ELECTRIC.POWER.3_PHASE_SYMMETRIC",
"NATURAL_GAS.FLOW_RATE",
"HYDROGEN.FLOW_RATE",
"HEAT.TEMPERATURE",
"HEAT.FLOW_RATE",
"HEAT.THERMAL_POWER",
"OIL.FLOW_RATE"
],
"title": "CommodityQuantity"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/InstructionStatus.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/InstructionStatus.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "NEW: Instruction was newly created\nACCEPTED: Instruction has been accepted\nREJECTED: Instruction was rejected\nREVOKED: Instruction was revoked\nSTARTED: Instruction was executed\nSUCCEEDED: Instruction finished successfully\nABORTED: Instruction was aborted.",
"enum": [
"NEW",
"ACCEPTED",
"REJECTED",
"REVOKED",
"STARTED",
"SUCCEEDED",
"ABORTED"
],
"title": "InstructionStatus"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b831b6f1f19f824f32269ecd6ac6a6e250e7af80 | 2023-09-21T12:56:11 | s2-json-schema/messages/FRBC.Instruction.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/FRBC.Instruction.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition": {
"description": "Indicates if this is an instruction during an abnormal condition.",
"type": "boolean"
},
"actuator_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the actuator this instruction belongs to."
},
"execution_time": {
"description": "Indicates the moment the execution of the instruction shall start. When the specified execution time is in the past, execution must start as soon as possible.",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the instruction. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "FRBC.Instruction",
"type": "string"
},
"operation_mode": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the FRBC.OperationMode that should be activated."
},
"operation_mode_factor": {
"description": "The number indicates the factor with which the FRBC.OperationMode should be configured. The factor should be greater than or equal to 0 and less or equal to 1.",
"type": "number"
}
},
"required": [
"message_type",
"message_id",
"id",
"actuator_id",
"operation_mode",
"operation_mode_factor",
"execution_time",
"abnormal_condition"
],
"title": "FRBC_Instruction"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 6c1da161d94dfb424dc761958ca16a0a68f7cf42 | 2023-04-03T13:40:44 | s2-json-schema/schemas/FRBC.ActuatorDescription.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/FRBC.ActuatorDescription.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"diagnostic_label": {
"description": "Human readable name/description for the actuator. This element is only intended for diagnostic purposes and not for HMI applications.",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the Actuator. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"operation_modes": {
"description": "Provided FRBC.OperationModes associated with this actuator",
"items": {
"$ref": "../schemas/FRBC.OperationMode.schema.json"
},
"maxItems": 100,
"minItems": 1,
"type": "array"
},
"supported_commodities": {
"description": "List of all supported Commodities.",
"items": {
"$ref": "../schemas/Commodity.schema.json"
},
"maxItems": 4,
"minItems": 1,
"type": "array"
},
"timers": {
"description": "List of Timers associated with this actuator",
"items": {
"$ref": "../schemas/Timer.schema.json"
},
"maxItems": 1000,
"minItems": 0,
"type": "array"
},
"transitions": {
"description": "Possible transitions between FRBC.OperationModes associated with this actuator.",
"items": {
"$ref": "../schemas/Transition.schema.json"
},
"maxItems": 1000,
"minItems": 0,
"type": "array"
}
},
"required": [
"id",
"supported_commodities",
"operation_modes",
"transitions",
"timers"
],
"title": "FRBC_ActuatorDescription"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/PEBC.PowerEnvelope.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PEBC.PowerEnvelope.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"commodity_quantity": {
"$ref": "../schemas/CommodityQuantity.schema.json",
"description": "Type of power quantity this PEBC.PowerEnvelope applies to"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "Identifier of this PEBC.PowerEnvelope. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"power_envelope_elements": {
"description": "The elements of this PEBC.PowerEnvelope. Shall contain at least one element. Elements must be placed in chronological order.",
"items": {
"$ref": "../schemas/PEBC.PowerEnvelopeElement.schema.json"
},
"maxItems": 288,
"minItems": 1,
"type": "array"
}
},
"required": [
"id",
"commodity_quantity",
"power_envelope_elements"
],
"title": "PEBC_PowerEnvelope"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/PEBC.Instruction.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PEBC.Instruction.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition": {
"description": "Indicates if this is an instruction during an abnormal condition.",
"type": "boolean"
},
"execution_time": {
"description": "Indicates the moment the execution of the instruction shall start.",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "Identifier of this PEBC.Instruction. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PEBC.Instruction",
"type": "string"
},
"power_constraints_id": {
"$ref": "../schemas/ID.schema.json",
"description": "Identifier of the PEBC.PowerConstraints this PEBC.Instruction was based on."
},
"power_envelopes": {
"description": "The PEBC.PowerEnvelope(s) that should be followed by the Resource Manager. There shall be at least one PEBC.PowerEnvelope, but at most one PEBC.PowerEnvelope for each CommodityQuantity.",
"items": {
"$ref": "../schemas/PEBC.PowerEnvelope.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
}
},
"required": [
"message_type",
"message_id",
"id",
"execution_time",
"abnormal_condition",
"power_constraints_id",
"power_envelopes"
],
"title": "PEBC_Instruction"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/DDBC.AverageDemandRateForecast.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/DDBC.AverageDemandRateForecast.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"elements": {
"description": "Elements of the profile. Elements must be placed in chronological order.",
"items": {
"$ref": "../schemas/DDBC.AverageDemandRateForecastElement.schema.json"
},
"maxItems": 288,
"minItems": 1,
"type": "array"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "DDBC.AverageDemandRateForecast",
"type": "string"
},
"start_time": {
"description": "Start time of the profile.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"start_time",
"elements"
],
"title": "DDBC_AverageDemandRateForecast"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/PowerForecastValue.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PowerForecastValue.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"commodity_quantity": {
"$ref": "../schemas/CommodityQuantity.schema.json",
"description": "The power quantity the value refers to"
},
"value_expected": {
"description": "The expected power value.",
"type": "number"
},
"value_lower_68PPR": {
"description": "The lower boundary of the range with 68\u00a0% certainty the power value is in it",
"type": "number"
},
"value_lower_95PPR": {
"description": "The lower boundary of the range with 95\u00a0% certainty the power value is in it",
"type": "number"
},
"value_lower_limit": {
"description": "The lower boundary of the range with 100\u00a0% certainty the power value is in it",
"type": "number"
},
"value_upper_68PPR": {
"description": "The upper boundary of the range with 68\u00a0% certainty the power value is in it",
"type": "number"
},
"value_upper_95PPR": {
"description": "The upper boundary of the range with 95\u00a0% certainty the power value is in it",
"type": "number"
},
"value_upper_limit": {
"description": "The upper boundary of the range with 100\u00a0% certainty the power value is in it",
"type": "number"
}
},
"required": [
"value_expected",
"commodity_quantity"
],
"title": "PowerForecastValue"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 6c1da161d94dfb424dc761958ca16a0a68f7cf42 | 2023-04-03T13:40:44 | s2-json-schema/messages/OMBC.TimerStatus.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/OMBC.TimerStatus.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"finished_at": {
"description": "Indicates when the Timer will be finished. If the DateTimeStamp is in the future, the timer is not yet finished. If the DateTimeStamp is in the past, the timer is finished. If the timer was never started, the value can be an arbitrary DateTimeStamp in the past.",
"format": "date-time",
"type": "string"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "OMBC.TimerStatus",
"type": "string"
},
"timer_id": {
"$ref": "../schemas/ID.schema.json",
"description": "The ID of the timer this message refers to"
}
},
"required": [
"message_type",
"message_id",
"timer_id",
"finished_at"
],
"title": "OMBC_TimerStatus"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b831b6f1f19f824f32269ecd6ac6a6e250e7af80 | 2023-09-21T12:56:11 | s2-json-schema/messages/PPBC.ScheduleInstruction.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PPBC.ScheduleInstruction.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition": {
"description": "Indicates if this is an instruction during an abnormal condition",
"type": "boolean"
},
"execution_time": {
"description": "Indicates the moment the PPBC.PowerSequence shall start. When the specified execution time is in the past, execution must start as soon as possible.",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the Instruction. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PPBC.ScheduleInstruction",
"type": "string"
},
"power_profile_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerProfileDefinition of which the PPBC.PowerSequence is being selected and scheduled by the CEM."
},
"power_sequence_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerSequence that is being selected and scheduled by the CEM."
},
"sequence_container_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerSequnceContainer of which the PPBC.PowerSequence is being selected and scheduled by the CEM."
}
},
"required": [
"message_type",
"message_id",
"id",
"power_profile_id",
"sequence_container_id",
"power_sequence_id",
"execution_time",
"abnormal_condition"
],
"title": "PPBC_ScheduleInstruction"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b831b6f1f19f824f32269ecd6ac6a6e250e7af80 | 2023-09-21T12:56:11 | s2-json-schema/messages/PEBC.Instruction.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PEBC.Instruction.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition": {
"description": "Indicates if this is an instruction during an abnormal condition.",
"type": "boolean"
},
"execution_time": {
"description": "Indicates the moment the execution of the instruction shall start. When the specified execution time is in the past, execution must start as soon as possible.",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "Identifier of this PEBC.Instruction. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PEBC.Instruction",
"type": "string"
},
"power_constraints_id": {
"$ref": "../schemas/ID.schema.json",
"description": "Identifier of the PEBC.PowerConstraints this PEBC.Instruction was based on."
},
"power_envelopes": {
"description": "The PEBC.PowerEnvelope(s) that should be followed by the Resource Manager. There shall be at least one PEBC.PowerEnvelope, but at most one PEBC.PowerEnvelope for each CommodityQuantity.",
"items": {
"$ref": "../schemas/PEBC.PowerEnvelope.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
}
},
"required": [
"message_type",
"message_id",
"id",
"execution_time",
"abnormal_condition",
"power_constraints_id",
"power_envelopes"
],
"title": "PEBC_Instruction"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/PPBC.StartInterruptionInstruction.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PPBC.StartInterruptionInstruction.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition": {
"description": "Indicates if this is an instruction during an abnormal condition",
"type": "boolean"
},
"execution_time": {
"description": "Start time of the interruption of the PPBC.PowerSequence.",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the Instruction. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PPBC.StartInterruptionInstruction",
"type": "string"
},
"power_profile_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerProfileDefinition of which the PPBC.PowerSequence is being interrupted by the CEM."
},
"power_sequence_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerSequence that the CEM wants to interrupt."
},
"sequence_container_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerSequnceContainer of which the PPBC.PowerSequence is being interrupted by the CEM."
}
},
"required": [
"message_type",
"message_id",
"id",
"power_profile_id",
"sequence_container_id",
"power_sequence_id",
"execution_time",
"abnormal_condition"
],
"title": "PPBC_StartInterruptionInstruction"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/FRBC.FillLevelTargetProfileElement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/FRBC.FillLevelTargetProfileElement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"duration": {
"$ref": "../schemas/Duration.schema.json",
"description": "The duration of the element."
},
"fill_level_range": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "The target range in which the fill_level must be for the time period during which the element is active. The start of the range must be smaller or equal to the end of the range. The CEM must take best-effort actions to proactively achieve this target."
}
},
"required": [
"duration",
"fill_level_range"
],
"title": "FRBC_FillLevelTargetProfileElement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/FRBC.StorageDescription.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/FRBC.StorageDescription.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"diagnostic_label": {
"description": "Human readable name/description of the storage (e.g. hot water buffer or battery). This element is only intended for diagnostic purposes and not for HMI applications.",
"type": "string"
},
"fill_level_label": {
"description": "Human readable description of the (physical) units associated with the fill_level (e.g. degrees Celsius or percentage state of charge). This element is only intended for diagnostic purposes and not for HMI applications.",
"type": "string"
},
"fill_level_range": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "The range in which the fill_level should remain. It is expected of the CEM to keep the fill_level within this range. When the fill_level is not within this range, the Resource Manager can ignore instructions from the CEM (except during abnormal conditions). "
},
"provides_fill_level_target_profile": {
"description": "Indicates whether the Storage could provide a target profile for the fill level through the FRBC.FillLevelTargetProfile.",
"type": "boolean"
},
"provides_leakage_behaviour": {
"description": "Indicates whether the Storage could provide details of power leakage behaviour through the FRBC.LeakageBehaviour.",
"type": "boolean"
},
"provides_usage_forecast": {
"description": "Indicates whether the Storage could provide a UsageForecast through the FRBC.UsageForecast.",
"type": "boolean"
}
},
"required": [
"provides_leakage_behaviour",
"provides_fill_level_target_profile",
"provides_usage_forecast",
"fill_level_range"
],
"title": "FRBC_StorageDescription"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/Handshake.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/Handshake.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "Handshake",
"type": "string"
},
"role": {
"$ref": "../schemas/EnergyManagementRole.schema.json",
"description": "The role of the sender of this message"
},
"supported_protocol_versions": {
"description": "Protocol versions supported by the sender of this message. This field is mandatory for the RM, but optional for the CEM.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"message_type",
"message_id",
"role"
],
"title": "Handshake"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/ID.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/ID.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "An identifier exapressed as a UUID",
"pattern": "[a-zA-Z0-9\\-_:]{2,64}",
"type": "string"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/FRBC.LeakageBehaviourElement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/FRBC.LeakageBehaviourElement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"fill_level_range": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "The fill level range for which this FRBC.LeakageBehaviourElement applies. The start of the range must be less than the end of the range."
},
"leakage_rate": {
"description": "Indicates how fast the momentary fill level will decrease per second due to leakage within the given range of the fill level.",
"type": "number"
}
},
"required": [
"fill_level_range",
"leakage_rate"
],
"title": "FRBC_LeakageBehaviourElement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/PEBC.PowerEnvelopeElement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PEBC.PowerEnvelopeElement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"duration": {
"$ref": "../schemas/Duration.schema.json",
"description": "The duration of the element"
},
"lower_limit": {
"description": "Lower power limit according to the commodity_quantity of the containing PEBC.PowerEnvelope. The lower_limit must be smaller or equal to the upper_limit. The Resource Manager is requested to keep the power values for the given commodity quantity equal to or above the lower_limit. The lower_limit shall be in accordance with the constraints provided by the Resource Manager through any PEBC.AllowedLimitRange with limit_type LOWER_LIMIT.",
"type": "number"
},
"upper_limit": {
"description": "Upper power limit according to the commodity_quantity of the containing PEBC.PowerEnvelope. The lower_limit must be smaller or equal to the upper_limit. The Resource Manager is requested to keep the power values for the given commodity quantity equal to or below the upper_limit. The upper_limit shall be in accordance with the constraints provided by the Resource Manager through any PEBC.AllowedLimitRange with limit_type UPPER_LIMIT.",
"type": "number"
}
},
"required": [
"duration",
"upper_limit",
"lower_limit"
],
"title": "PEBC_PowerEnvelopeElement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/FRBC.OperationModeElement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/FRBC.OperationModeElement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"fill_level_range": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "The range of the fill level for which this FRBC.OperationModeElement applies. The start of the NumberRange shall be smaller than the end of the NumberRange."
},
"fill_rate": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "Indicates the change in fill_level per second. The lower_boundary of the NumberRange is associated with an operation_mode_factor of 0, the upper_boundary is associated with an operation_mode_factor of 1. "
},
"power_ranges": {
"description": "The power produced or consumed by this operation mode. The start of each PowerRange is associated with an operation_mode_factor of 0, the end is associated with an operation_mode_factor of 1. In the array there must be at least one PowerRange, and at most one PowerRange per CommodityQuantity.",
"items": {
"$ref": "../schemas/PowerRange.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"running_costs": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "Additional costs per second (e.g. wear, services) associated with this operation mode in the currency defined by the ResourceManagerDetails, excluding the commodity cost. The range is expressing uncertainty and is not linked to the operation_mode_factor."
}
},
"required": [
"fill_level_range",
"fill_rate",
"power_ranges"
],
"title": "FRBC_OperationModeElement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/InstructionStatusUpdate.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/InstructionStatusUpdate.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"instruction_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this instruction (as provided by the CEM) "
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "InstructionStatusUpdate",
"type": "string"
},
"status_type": {
"$ref": "../schemas/InstructionStatus.schema.json",
"description": "Present status of this instruction."
},
"timestamp": {
"description": "Timestamp when status_type has changed the last time.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"instruction_id",
"status_type",
"timestamp"
],
"title": "InstructionStatusUpdate"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/DDBC.AverageDemandRateForecast.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/DDBC.AverageDemandRateForecast.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"elements": {
"description": "Elements of the profile. Elements must be placed in chronological order.",
"items": {
"$ref": "../schemas/DDBC.AverageDemandRateForecastElement.schema.json"
},
"maxItems": 288,
"minItems": 1,
"type": "array"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "DDBC.AverageDemandRateForecast",
"type": "string"
},
"start_time": {
"description": "Start time of the profile.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"start_time",
"elements"
],
"title": "DDBC_AverageDemandRateForecast"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/PPBC.EndInterruptionInstruction.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PPBC.EndInterruptionInstruction.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition": {
"description": "Indicates if this is an instruction during an abnormal condition",
"type": "boolean"
},
"execution_time": {
"description": "End time of Interruption of the PPBC.PowerSequence.",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the Instruction. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PPBC.EndInterruptionInstruction",
"type": "string"
},
"power_profile_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerProfileDefinition of which the PPBC.PowerSequence interruption is being ended by the CEM."
},
"power_sequence_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerSequence for which the CEM wants to end the interruption."
},
"sequence_container_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerSequnceContainer of which the PPBC.PowerSequence interruption is being ended by the CEM."
}
},
"required": [
"message_type",
"message_id",
"id",
"power_profile_id",
"sequence_container_id",
"power_sequence_id",
"execution_time",
"abnormal_condition"
],
"title": "PPBC_EndInterruptionInstruction"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/ResourceManagerDetails.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/ResourceManagerDetails.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"available_control_types": {
"description": "The control types supported by this Resource Manager.",
"items": {
"$ref": "../schemas/ControlType.schema.json"
},
"maxItems": 5,
"minItems": 1,
"type": "array"
},
"currency": {
"$ref": "../schemas/Currency.schema.json",
"description": "Currency to be used for all information regarding costs. Mandatory if cost information is published."
},
"firmware_version": {
"description": "Version identifier of the firmware used in the device (provided by the manufacturer)",
"type": "string"
},
"instruction_processing_delay": {
"$ref": "../schemas/Duration.schema.json",
"description": "The average time the combination of Resource Manager and HBES/BACS/SASS or (Smart) device needs to process and execute an instruction"
},
"manufacturer": {
"description": "Name of Manufacturer",
"type": "string"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "ResourceManagerDetails",
"type": "string"
},
"model": {
"description": "Name of the model of the device (provided by the manufacturer)",
"type": "string"
},
"name": {
"description": "Human readable name given by user",
"type": "string"
},
"provides_forecast": {
"description": "Indicates whether the ResourceManager is able to provide PowerForecasts",
"type": "boolean"
},
"provides_power_measurement_types": {
"description": "Array of all CommodityQuantities that this Resource Manager can provide measurements for. ",
"items": {
"$ref": "../schemas/CommodityQuantity.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"resource_id": {
"$ref": "../schemas/ID.schema.json",
"description": "Identifier of the Resource Manager. Must be unique within the scope of the CEM."
},
"roles": {
"description": "Each Resource Manager provides one or more energy Roles",
"items": {
"$ref": "../schemas/Role.schema.json"
},
"maxItems": 3,
"minItems": 1,
"type": "array"
},
"serial_number": {
"description": "Serial number of the device (provided by the manufacturer)",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"resource_id",
"roles",
"instruction_processing_delay",
"available_control_types",
"provides_forecast",
"provides_power_measurement_types"
],
"title": "ResourceManagerDetails"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 6c1da161d94dfb424dc761958ca16a0a68f7cf42 | 2023-04-03T13:40:44 | s2-json-schema/messages/DDBC.TimerStatus.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/DDBC.TimerStatus.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"actuator_id": {
"$ref": "../schemas/ID.schema.json",
"description": "The ID of the actuator the timer belongs to"
},
"finished_at": {
"description": "Indicates when the Timer will be finished. If the DateTimeStamp is in the future, the timer is not yet finished. If the DateTimeStamp is in the past, the timer is finished. If the timer was never started, the value can be an arbitrary DateTimeStamp in the past.",
"format": "date-time",
"type": "string"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "DDBC.TimerStatus",
"type": "string"
},
"timer_id": {
"$ref": "../schemas/ID.schema.json",
"description": "The ID of the timer this message refers to"
}
},
"required": [
"message_type",
"message_id",
"timer_id",
"actuator_id",
"finished_at"
],
"title": "DDBC_TimerStatus"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/Currency.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/Currency.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Currency used when this resource gives cost information",
"enum": [
"AED",
"ANG",
"AUD",
"CHE",
"CHF",
"CHW",
"EUR",
"GBP",
"LBP",
"LKR",
"LRD",
"LSL",
"LYD",
"MAD",
"MDL",
"MGA",
"MKD",
"MMK",
"MNT",
"MOP",
"MRO",
"MUR",
"MVR",
"MWK",
"MXN",
"MXV",
"MYR",
"MZN",
"NAD",
"NGN",
"NIO",
"NOK",
"NPR",
"NZD",
"OMR",
"PAB",
"PEN",
"PGK",
"PHP",
"PKR",
"PLN",
"PYG",
"QAR",
"RON",
"RSD",
"RUB",
"RWF",
"SAR",
"SBD",
"SCR",
"SDG",
"SEK",
"SGD",
"SHP",
"SLL",
"SOS",
"SRD",
"SSP",
"STD",
"SYP",
"SZL",
"THB",
"TJS",
"TMT",
"TND",
"TOP",
"TRY",
"TTD",
"TWD",
"TZS",
"UAH",
"UGX",
"USD",
"USN",
"UYI",
"UYU",
"UZS",
"VEF",
"VND",
"VUV",
"WST",
"XAG",
"XAU",
"XBA",
"XBB",
"XBC",
"XBD",
"XCD",
"XOF",
"XPD",
"XPF",
"XPT",
"XSU",
"XTS",
"XUA",
"XXX",
"YER",
"ZAR",
"ZMW",
"ZWL"
],
"type": "string"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/PowerRange.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PowerRange.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"commodity_quantity": {
"$ref": "../schemas/CommodityQuantity.schema.json",
"description": "The power quantity the values refer to"
},
"end_of_range": {
"description": "Power value that defines the end of the range.",
"type": "number"
},
"start_of_range": {
"description": "Power value that defines the start of the range.",
"type": "number"
}
},
"required": [
"start_of_range",
"end_of_range",
"commodity_quantity"
],
"title": "PowerRange"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/PPBC.PowerSequenceElement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PPBC.PowerSequenceElement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"duration": {
"$ref": "../schemas/Duration.schema.json",
"description": "Duration of the PPBC.PowerSequenceElement."
},
"power_values": {
"description": "The value of power and deviations for the given duration. The array should contain at least one PowerForecastValue and at most one PowerForecastValue per CommodityQuantity.",
"items": {
"$ref": "../schemas/PowerForecastValue.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
}
},
"required": [
"duration",
"power_values"
],
"title": "PPBC_PowerSequenceElement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/Transition.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/Transition.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition_only": {
"description": "Indicates if this Transition may only be used during an abnormal condition (see Clause )",
"type": "boolean"
},
"blocking_timers": {
"description": "List of IDs of Timers that block this Transition from initiating while at least one of these Timers is not yet finished",
"items": {
"$ref": "../schemas/ID.schema.json"
},
"maxItems": 1000,
"minItems": 0,
"type": "array"
},
"from": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the OperationMode (exact type differs per ControlType) that should be switched from."
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the Transition. Must be unique in the scope of the OMBC.SystemDescription, FRBC.ActuatorDescription or DDBC.ActuatorDescription in which it is used."
},
"start_timers": {
"description": "List of IDs of Timers that will be (re)started when this transition is initiated",
"items": {
"$ref": "../schemas/ID.schema.json"
},
"maxItems": 1000,
"minItems": 0,
"type": "array"
},
"to": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the OperationMode (exact type differs per ControlType) that will be switched to."
},
"transition_costs": {
"description": "Absolute costs for going through this Transition in the currency as described in the ResourceManagerDetails.",
"type": "number"
},
"transition_duration": {
"$ref": "../schemas/Duration.schema.json",
"description": "Indicates the time between the initiation of this Transition, and the time at which the device behaves according to the Operation Mode which is defined in the \u2018to\u2019 data element. When no value is provided it is assumed the transition duration is negligible."
}
},
"required": [
"id",
"from",
"to",
"start_timers",
"blocking_timers",
"abnormal_condition_only"
],
"title": "Transition"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/PPBC.PowerSequence.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PPBC.PowerSequence.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition_only": {
"description": "Indicates if this PPBC.PowerSequence may only be used during an abnormal condition",
"type": "boolean"
},
"elements": {
"description": "List of PPBC.PowerSequenceElements. Shall contain at least one element. Elements must be placed in chronological order.",
"items": {
"$ref": "../schemas/PPBC.PowerSequenceElement.schema.json"
},
"maxItems": 288,
"minItems": 1,
"type": "array"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerSequence. Must be unique in the scope of the PPBC.PowerSequnceContainer in which it is used."
},
"is_interruptible": {
"description": "Indicates whether the option of pausing a sequence is available.",
"type": "boolean"
},
"max_pause_before": {
"$ref": "../schemas/Duration.schema.json",
"description": "The maximum duration for which a device can be paused between the end of the previous running sequence and the start of this one"
}
},
"required": [
"id",
"elements",
"is_interruptible",
"abnormal_condition_only"
],
"title": "PPBC_PowerSequence"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/FRBC.ActuatorStatus.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/FRBC.ActuatorStatus.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"active_operation_mode_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the FRBC.OperationMode that is presently active."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "FRBC.ActuatorStatus",
"type": "string"
},
"operation_mode_factor": {
"description": "The number indicates the factor with which the FRBC.OperationMode is configured. The factor should be greater than or equal than 0 and less or equal to 1.",
"type": "number"
},
"previous_operation_mode_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the FRBC.OperationMode that was active before the present one. This value shall always be provided, unless the active FRBC.OperationMode is the first FRBC.OperationMode the Resource Manager is aware of."
},
"transition_timestamp": {
"description": "Time at which the transition from the previous FRBC.OperationMode to the active FRBC.OperationMode was initiated. This value shall always be provided, unless the active FRBC.OperationMode is the first FRBC.OperationMode the Resource Manager is aware of.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"active_operation_mode_id",
"operation_mode_factor"
],
"title": "FRBC_ActuatorStatus"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/Currency.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/Currency.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Currency used when this resource gives cost information",
"enum": [
"AED",
"ANG",
"AUD",
"CHE",
"CHF",
"CHW",
"EUR",
"GBP",
"LBP",
"LKR",
"LRD",
"LSL",
"LYD",
"MAD",
"MDL",
"MGA",
"MKD",
"MMK",
"MNT",
"MOP",
"MRO",
"MUR",
"MVR",
"MWK",
"MXN",
"MXV",
"MYR",
"MZN",
"NAD",
"NGN",
"NIO",
"NOK",
"NPR",
"NZD",
"OMR",
"PAB",
"PEN",
"PGK",
"PHP",
"PKR",
"PLN",
"PYG",
"QAR",
"RON",
"RSD",
"RUB",
"RWF",
"SAR",
"SBD",
"SCR",
"SDG",
"SEK",
"SGD",
"SHP",
"SLL",
"SOS",
"SRD",
"SSP",
"STD",
"SYP",
"SZL",
"THB",
"TJS",
"TMT",
"TND",
"TOP",
"TRY",
"TTD",
"TWD",
"TZS",
"UAH",
"UGX",
"USD",
"USN",
"UYI",
"UYU",
"UZS",
"VEF",
"VND",
"VUV",
"WST",
"XAG",
"XAU",
"XBA",
"XBB",
"XBC",
"XBD",
"XCD",
"XOF",
"XPD",
"XPF",
"XPT",
"XSU",
"XTS",
"XUA",
"XXX",
"YER",
"ZAR",
"ZMW",
"ZWL"
],
"type": "string"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/ResourceManagerDetails.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/ResourceManagerDetails.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"available_control_types": {
"description": "The control types supported by this Resource Manager.",
"items": {
"$ref": "../schemas/ControlType.schema.json"
},
"maxItems": 5,
"minItems": 1,
"type": "array"
},
"currency": {
"$ref": "../schemas/Currency.schema.json",
"description": "Currency to be used for all information regarding costs. Mandatory if cost information is published."
},
"firmware_version": {
"description": "Version identifier of the firmware used in the device (provided by the manufacturer)",
"type": "string"
},
"instruction_processing_delay": {
"$ref": "../schemas/Duration.schema.json",
"description": "The average time the combination of Resource Manager and HBES/BACS/SASS or (Smart) device needs to process and execute an instruction"
},
"manufacturer": {
"description": "Name of Manufacturer",
"type": "string"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "ResourceManagerDetails",
"type": "string"
},
"model": {
"description": "Name of the model of the device (provided by the manufacturer)",
"type": "string"
},
"name": {
"description": "Human readable name given by user",
"type": "string"
},
"provides_forecast": {
"description": "Indicates whether the ResourceManager is able to provide PowerForecasts",
"type": "boolean"
},
"provides_power_measurement_types": {
"description": "Array of all CommodityQuantities that this Resource Manager can provide measurements for. ",
"items": {
"$ref": "../schemas/CommodityQuantity.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"resource_id": {
"$ref": "../schemas/ID.schema.json",
"description": "Identifier of the Resource Manager. Must be unique within the scope of the CEM."
},
"roles": {
"description": "Each Resource Manager provides one or more energy Roles",
"items": {
"$ref": "../schemas/Role.schema.json"
},
"maxItems": 3,
"minItems": 1,
"type": "array"
},
"serial_number": {
"description": "Serial number of the device (provided by the manufacturer)",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"resource_id",
"roles",
"instruction_processing_delay",
"available_control_types",
"provides_forecast",
"provides_power_measurement_types"
],
"title": "ResourceManagerDetails"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/FRBC.StorageStatus.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/FRBC.StorageStatus.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "FRBC.StorageStatus",
"type": "string"
},
"present_fill_level": {
"description": "Present fill level of the Storage",
"type": "number"
}
},
"required": [
"message_type",
"message_id",
"present_fill_level"
],
"title": "FRBC_StorageStatus"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/Handshake.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/Handshake.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "Handshake",
"type": "string"
},
"role": {
"$ref": "../schemas/EnergyManagementRole.schema.json",
"description": "The role of the sender of this message"
},
"supported_protocol_versions": {
"description": "Protocol versions supported by the sender of this message. This field is mandatory for the RM, but optional for the CEM.",
"items": {
"type": "string"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"message_type",
"message_id",
"role"
],
"title": "Handshake"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/FRBC.OperationMode.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/FRBC.OperationMode.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition_only": {
"description": "Indicates if this FRBC.OperationMode may only be used during an abnormal condition",
"type": "boolean"
},
"diagnostic_label": {
"description": "Human readable name/description of the FRBC.OperationMode. This element is only intended for diagnostic purposes and not for HMI applications.",
"type": "string"
},
"elements": {
"description": "List of FRBC.OperationModeElements, which describe the properties of this FRBC.OperationMode depending on the fill_level. The fill_level_ranges of the items in the Array must be contiguous.",
"items": {
"$ref": "../schemas/FRBC.OperationModeElement.schema.json"
},
"maxItems": 100,
"minItems": 1,
"type": "array"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the FRBC.OperationMode. Must be unique in the scope of the FRBC.ActuatorDescription in which it is used."
}
},
"required": [
"id",
"elements",
"abnormal_condition_only"
],
"title": "FRBC_OperationMode"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/FRBC.OperationModeElement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/FRBC.OperationModeElement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"fill_level_range": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "The range of the fill level for which this FRBC.OperationModeElement applies. The start of the NumberRange shall be smaller than the end of the NumberRange."
},
"fill_rate": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "Indicates the change in fill_level per second. The lower_boundary of the NumberRange is associated with an operation_mode_factor of 0, the upper_boundary is associated with an operation_mode_factor of 1. "
},
"power_ranges": {
"description": "The power produced or consumed by this operation mode. The start of each PowerRange is associated with an operation_mode_factor of 0, the end is associated with an operation_mode_factor of 1. In the array there must be at least one PowerRange, and at most one PowerRange per CommodityQuantity.",
"items": {
"$ref": "../schemas/PowerRange.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"running_costs": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "Additional costs per second (e.g. wear, services) associated with this operation mode in the currency defined by the ResourceManagerDetails, excluding the commodity cost. The range is expressing uncertainty and is not linked to the operation_mode_factor."
}
},
"required": [
"fill_level_range",
"fill_rate",
"power_ranges"
],
"title": "FRBC_OperationModeElement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/PowerForecast.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PowerForecast.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"elements": {
"description": "Elements of which this forecast consists. Contains at least one element. Elements must be placed in chronological order.",
"items": {
"$ref": "../schemas/PowerForecastElement.schema.json"
},
"maxItems": 288,
"minItems": 1,
"type": "array"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PowerForecast",
"type": "string"
},
"start_time": {
"description": "Start time of time period that is covered by the profile.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"start_time",
"elements"
],
"title": "PowerForecast"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/DDBC.SystemDescription.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/DDBC.SystemDescription.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"actuators": {
"description": "List of all available actuators in the system. Must contain at least one DDBC.ActuatorAggregated.",
"items": {
"$ref": "../schemas/DDBC.ActuatorDescription.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "DDBC.SystemDescription",
"type": "string"
},
"present_demand_rate": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "Present demand rate that needs to be satisfied by the system"
},
"provides_average_demand_rate_forecast": {
"description": "Indicates whether the Resource Manager could provide a demand rate forecast through the DDBC.AverageDemandRateForecast.",
"type": "boolean"
},
"valid_from": {
"description": "Moment this DDBC.SystemDescription starts to be valid. If the system description is immediately valid, the DateTimeStamp should be now or in the past.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"valid_from",
"actuators",
"present_demand_rate",
"provides_average_demand_rate_forecast"
],
"title": "DDBC_SystemDescription"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/InstructionStatus.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/InstructionStatus.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "NEW: Instruction was newly created\nACCEPTED: Instruction has been accepted\nREJECTED: Instruction was rejected\nREVOKED: Instruction was revoked\nSTARTED: Instruction was executed\nSUCCEEDED: Instruction finished successfully\nABORTED: Instruction was aborted.",
"enum": [
"NEW",
"ACCEPTED",
"REJECTED",
"REVOKED",
"STARTED",
"SUCCEEDED",
"ABORTED"
],
"title": "InstructionStatus"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/PPBC.PowerSequenceElement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PPBC.PowerSequenceElement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"duration": {
"$ref": "../schemas/Duration.schema.json",
"description": "Duration of the PPBC.PowerSequenceElement."
},
"power_values": {
"description": "The value of power and deviations for the given duration. The array should contain at least one PowerForecastValue and at most one PowerForecastValue per CommodityQuantity.",
"items": {
"$ref": "../schemas/PowerForecastValue.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
}
},
"required": [
"duration",
"power_values"
],
"title": "PPBC_PowerSequenceElement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/FRBC.ActuatorStatus.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/FRBC.ActuatorStatus.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"active_operation_mode_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the FRBC.OperationMode that is presently active."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "FRBC.ActuatorStatus",
"type": "string"
},
"operation_mode_factor": {
"description": "The number indicates the factor with which the FRBC.OperationMode is configured. The factor should be greater than or equal than 0 and less or equal to 1.",
"type": "number"
},
"previous_operation_mode_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the FRBC.OperationMode that was active before the present one. This value shall always be provided, unless the active FRBC.OperationMode is the first FRBC.OperationMode the Resource Manager is aware of."
},
"transition_timestamp": {
"description": "Time at which the transition from the previous FRBC.OperationMode to the active FRBC.OperationMode was initiated. This value shall always be provided, unless the active FRBC.OperationMode is the first FRBC.OperationMode the Resource Manager is aware of.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"active_operation_mode_id",
"operation_mode_factor"
],
"title": "FRBC_ActuatorStatus"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/Timer.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/Timer.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"diagnostic_label": {
"description": "Human readable name/description of the Timer. This element is only intended for diagnostic purposes and not for HMI applications.",
"type": "string"
},
"duration": {
"$ref": "../schemas/Duration.schema.json",
"description": "The time it takes for the Timer to finish after it has been started"
},
"finished_at": {
"description": "Indicates when the Timer will be finished. If the DateTimeStamp is in the future, the timer is not yet finished. If the DateTimeStamp is in the past, the timer is finished. If the timer was never started, the value can be an arbitrary DateTimeStamp in the past.",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the Timer. Must be unique in the scope of the OMBC.SystemDescription, FRBC.ActuatorDescription or DDBC.ActuatorDescription in which it is used."
}
},
"required": [
"id",
"duration",
"finished_at"
],
"title": "Timer"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/EnergyManagementRole.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/EnergyManagementRole.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "CEM: Customer Energy Manager\nRM: Resource Manager",
"enum": [
"CEM",
"RM"
],
"title": "EnergyManagementRole"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/FRBC.UsageForecast.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/FRBC.UsageForecast.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"elements": {
"description": "Further elements that model the profile. There shall be at least one element. Elements must be placed in chronological order.",
"items": {
"$ref": "../schemas/FRBC.UsageForecastElement.schema.json"
},
"maxItems": 288,
"minItems": 1,
"type": "array"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "FRBC.UsageForecast",
"type": "string"
},
"start_time": {
"description": "Time at which the FRBC.UsageForecast starts.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"start_time",
"elements"
],
"title": "FRBC_UsageForecast"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/PEBC.PowerEnvelopeLimitType.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PEBC.PowerEnvelopeLimitType.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "UPPER_LIMIT: Indicating the upper limit of a PEBC.PowerEnvelope (see Clause\u00a07.6.2)\nLOWER_LIMIT: Indicating the lower limit of a PEBC.PowerEnvelope (see Clause\u00a07.6.2)",
"enum": [
"UPPER_LIMIT",
"LOWER_LIMIT"
],
"title": "PEBC_PowerEnvelopeLimitType"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/FRBC.LeakageBehaviour.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/FRBC.LeakageBehaviour.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"elements": {
"description": "List of elements that model the leakage behaviour of the buffer. The fill_level_ranges of the elements must be contiguous.",
"items": {
"$ref": "../schemas/FRBC.LeakageBehaviourElement.schema.json"
},
"maxItems": 288,
"minItems": 1,
"type": "array"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "FRBC.LeakageBehaviour",
"type": "string"
},
"valid_from": {
"description": "Moment this FRBC.LeakageBehaviour starts to be valid. If the FRBC.LeakageBehaviour is immediately valid, the DateTimeStamp should be now or in the past.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"valid_from",
"elements"
],
"title": "FRBC_LeakageBehaviour"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/PPBC.PowerProfileDefinition.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PPBC.PowerProfileDefinition.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"end_time": {
"description": "Indicates when the last PPBC.PowerSequence shall be finished at the latest",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerProfileDefinition. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PPBC.PowerProfileDefinition",
"type": "string"
},
"power_sequences_containers": {
"description": "The PPBC.PowerSequenceContainers that make up this PPBC.PowerProfileDefinition. There shall be at least one PPBC.PowerSequenceContainer that includes at least one PPBC.PowerSequence. PPBC.PowerSequenceContainers must be placed in chronological order.",
"items": {
"$ref": "../schemas/PPBC.PowerSequenceContainer.schema.json"
},
"maxItems": 1000,
"minItems": 1,
"type": "array"
},
"start_time": {
"description": "Indicates the first possible time the first PPBC.PowerSequence could start",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"id",
"start_time",
"end_time",
"power_sequences_containers"
],
"title": "PPBC_PowerProfileDefinition"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 5ab1232df3cdb0cd619fe97fafaa269323a9d6ac | 2023-03-07T14:10:37 | s2-json-schema/messages/FRBC.ActuatorStatus.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/FRBC.ActuatorStatus.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"active_operation_mode_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the FRBC.OperationMode that is presently active."
},
"actuator_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the actuator this messages refers to"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "FRBC.ActuatorStatus",
"type": "string"
},
"operation_mode_factor": {
"description": "The number indicates the factor with which the FRBC.OperationMode is configured. The factor should be greater than or equal than 0 and less or equal to 1.",
"type": "number"
},
"previous_operation_mode_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the FRBC.OperationMode that was active before the present one. This value shall always be provided, unless the active FRBC.OperationMode is the first FRBC.OperationMode the Resource Manager is aware of."
},
"transition_timestamp": {
"description": "Time at which the transition from the previous FRBC.OperationMode to the active FRBC.OperationMode was initiated. This value shall always be provided, unless the active FRBC.OperationMode is the first FRBC.OperationMode the Resource Manager is aware of.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"actuator_id",
"active_operation_mode_id",
"operation_mode_factor"
],
"title": "FRBC_ActuatorStatus"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/NumberRange.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/NumberRange.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"end_of_range": {
"description": "Number that defines the end of the range",
"type": "number"
},
"start_of_range": {
"description": "Number that defines the start of the range",
"type": "number"
}
},
"required": [
"start_of_range",
"end_of_range"
],
"title": "NumberRange"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/InstructionStatusUpdate.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/InstructionStatusUpdate.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"instruction_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this instruction (as provided by the CEM) "
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "InstructionStatusUpdate",
"type": "string"
},
"status_type": {
"$ref": "../schemas/InstructionStatus.schema.json",
"description": "Present status of this instruction."
},
"timestamp": {
"description": "Timestamp when status_type has changed the last time.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"instruction_id",
"status_type",
"timestamp"
],
"title": "InstructionStatusUpdate"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/DDBC.Instruction.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/DDBC.Instruction.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition": {
"description": "Indicates if this is an instruction during an abnormal condition",
"type": "boolean"
},
"actuator_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the actuator this Instruction belongs to."
},
"execution_time": {
"description": "Indicates the moment the execution of the instruction shall start",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "Identifier of this DDBC.Instruction. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "DDBC.Instruction",
"type": "string"
},
"operation_mode_factor": {
"description": "The number indicates the factor with which the OMBC.OperationMode should be configured. The factor should be greater than or equal to 0 and less or equal to 1.",
"type": "number"
},
"operation_mode_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the DDBC.OperationMode"
}
},
"required": [
"message_type",
"message_id",
"id",
"execution_time",
"abnormal_condition",
"actuator_id",
"operation_mode_id",
"operation_mode_factor"
],
"title": "DDBC_Instruction"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/ReceptionStatusValues.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/ReceptionStatusValues.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "INVALID_DATA: Message not understood (e.g. not valid JSON, no message_id found). Consequence: Message is ignored, proceed if possible\nINVALID_MESSAGE: Message was not according to schema. Consequence: Message is ignored, proceed if possible\nINVALID_CONTENT: Message contents is invalid (e.g. contains a non-existing ID). Somewhat equivalent to BAD_REQUEST in HTTP.. Consequence: Message is ignored, proceed if possible.\nTEMPORARY_ERROR: Receiver encountered an error. Consequence: Try to send to message again\nPERMANENT_ERROR: Receiver encountered an error which it cannot recover from. Consequence: Disconnect.\nOK: Message processed normally. Consequence: Proceed normally.",
"enum": [
"INVALID_DATA",
"INVALID_MESSAGE",
"INVALID_CONTENT",
"TEMPORARY_ERROR",
"PERMANENT_ERROR",
"OK"
],
"title": "ReceptionStatusValues"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 62654ecf429ba5b8acaf4ea6adab0334c2047d09 | 2023-03-16T13:53:39 | s2-json-schema/schemas/ID.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/ID.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "An identifier expressed as a UUID",
"pattern": "[a-zA-Z0-9\\-_:]{2,64}",
"title": "ID",
"type": "string"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/SessionRequest.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/SessionRequest.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"diagnostic_label": {
"description": "Optional field for a human readible descirption for debugging purposes",
"type": "string"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "SessionRequest",
"type": "string"
},
"request": {
"$ref": "../schemas/SessionRequestType.schema.json",
"description": "The type of request"
}
},
"required": [
"message_type",
"message_id",
"request"
],
"title": "SessionRequest"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/PEBC.EnergyConstraint.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PEBC.EnergyConstraint.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"commodity_quantity": {
"$ref": "../schemas/CommodityQuantity.schema.json",
"description": "Type of power quantity which applies to upper_average_power and lower_average_power"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "Identifier of this PEBC.EnergyConstraints. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"lower_average_power": {
"description": "Lower average power within the time period given by valid_from and valid_until. If the duration is multiplied with this power value, then the associated lower energy content can be derived. This is the lowest amount of energy the resource will consume during that period of time. ",
"type": "number"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PEBC.EnergyConstraint",
"type": "string"
},
"upper_average_power": {
"description": "Upper average power within the time period given by valid_from and valid_until. If the duration is multiplied with this power value, then the associated upper energy content can be derived. This is the highest amount of energy the resource will consume during that period of time.",
"type": "number"
},
"valid_from": {
"description": "Moment this PEBC.EnergyConstraints information starts to be valid",
"format": "date-time",
"type": "string"
},
"valid_until": {
"description": "Moment until this PEBC.EnergyConstraints information is valid.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"id",
"valid_from",
"valid_until",
"upper_average_power",
"lower_average_power",
"commodity_quantity"
],
"title": "PEBC_EnergyConstraint"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/FRBC.FillLevelTargetProfile.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/FRBC.FillLevelTargetProfile.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"elements": {
"description": "List of different fill levels that have to be targeted within a given duration. There shall be at least one element. Elements must be placed in chronological order.",
"items": {
"$ref": "../schemas/FRBC.FillLevelTargetProfileElement.schema.json"
},
"maxItems": 288,
"minItems": 1,
"type": "array"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "FRBC.FillLevelTargetProfile",
"type": "string"
},
"start_time": {
"description": "Time at which the FRBC.FillLevelTargetProfile starts.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"start_time",
"elements"
],
"title": "FRBC_FillLevelTargetProfile"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/FRBC.UsageForecastElement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/FRBC.UsageForecastElement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"duration": {
"$ref": "../schemas/Duration.schema.json",
"description": "Indicator for how long the given usage_rate is valid."
},
"usage_rate_expected": {
"description": "The most likely value for the usage rate; the expected increase or decrease of the fill_level per second",
"type": "number"
},
"usage_rate_lower_68PPR": {
"description": "The lower limit of the range with a 68\u00a0% probability that the usage rate is within that range",
"type": "number"
},
"usage_rate_lower_95PPR": {
"description": "The lower limit of the range with a 95\u00a0% probability that the usage rate is within that range",
"type": "number"
},
"usage_rate_lower_limit": {
"description": "The lower limit of the range with a 100\u00a0% probability that the usage rate is within that range",
"type": "number"
},
"usage_rate_upper_68PPR": {
"description": "The upper limit of the range with a 68\u00a0% probability that the usage rate is within that range",
"type": "number"
},
"usage_rate_upper_95PPR": {
"description": "The upper limit of the range with a 95\u00a0% probability that the usage rate is within that range. ",
"type": "number"
},
"usage_rate_upper_limit": {
"description": "The upper limit of the range with a 100\u00a0% probability that the usage rate is within that range.",
"type": "number"
}
},
"required": [
"duration",
"usage_rate_expected"
],
"title": "FRBC_UsageForecastElement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/HandshakeResponse.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/HandshakeResponse.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "HandshakeResponse",
"type": "string"
},
"selected_protocol_version": {
"description": "The protocol version the CEM selected for this session",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"selected_protocol_version"
],
"title": "HandshakeResponse"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/RoleType.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/RoleType.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "ENERGY_PRODUCER: Identifier for RoleType Producer\nENERGY_CONSUMER: Identifier for RoleType Consumer\nENERGY_STORAGE: Identifier for RoleType Storage",
"enum": [
"ENERGY_PRODUCER",
"ENERGY_CONSUMER",
"ENERGY_STORAGE"
],
"title": "RoleType"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/PowerMeasurement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PowerMeasurement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"measurement_timestamp": {
"description": "Timestamp when PowerValues were measured.",
"format": "date-time",
"type": "string"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PowerMeasurement",
"type": "string"
},
"values": {
"description": "Array of measured PowerValues. Must contain at least one item and at most one item per \u2018commodity_quantity\u2019 (defined inside the PowerValue).",
"items": {
"$ref": "../schemas/PowerValue.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
}
},
"required": [
"message_type",
"message_id",
"measurement_timestamp",
"values"
],
"title": "PowerMeasurement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/DDBC.AverageDemandRateForecastElement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/DDBC.AverageDemandRateForecastElement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"demand_rate_expected": {
"description": "The most likely value for the demand rate; the expected increase or decrease of the fill_level per second",
"type": "number"
},
"demand_rate_lower_68PPR": {
"description": "The lower limit of the range with a 68\u00a0% probability that the demand rate is within that range",
"type": "number"
},
"demand_rate_lower_95PPR": {
"description": "The lower limit of the range with a 95\u00a0% probability that the demand rate is within that range",
"type": "number"
},
"demand_rate_lower_limit": {
"description": "The lower limit of the range with a 100\u00a0% probability that the demand rate is within that range",
"type": "number"
},
"demand_rate_upper_68PPR": {
"description": "The upper limit of the range with a 68\u00a0% probability that the demand rate is within that range",
"type": "number"
},
"demand_rate_upper_95PPR": {
"description": "The upper limit of the range with a 95\u00a0% probability that the demand rate is within that range",
"type": "number"
},
"demand_rate_upper_limit": {
"description": "The upper limit of the range with a 100\u00a0% probability that the demand rate is within that range",
"type": "number"
},
"duration": {
"$ref": "../schemas/Duration.schema.json",
"description": "Duration of the element"
}
},
"required": [
"duration",
"demand_rate_expected"
],
"title": "DDBC_AverageDemandRateForecastElement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/OMBC.SystemDescription.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/OMBC.SystemDescription.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "OMBC.SystemDescription",
"type": "string"
},
"operation_modes": {
"description": "OMBC.OperationModes available for the CEM in order to coordinate the device behaviour.",
"items": {
"$ref": "../schemas/OMBC.OperationMode.schema.json"
},
"maxItems": 100,
"minItems": 1,
"type": "array"
},
"timers": {
"description": "Timers that control when certain transitions can be made.",
"items": {
"$ref": "../schemas/Timer.schema.json"
},
"maxItems": 1000,
"minItems": 0,
"type": "array"
},
"transitions": {
"description": "Possible transitions to switch from one OMBC.OperationMode to another.",
"items": {
"$ref": "../schemas/Transition.schema.json"
},
"maxItems": 1000,
"minItems": 1,
"type": "array"
},
"valid_from": {
"description": "Moment this OMBC.SystemDescription starts to be valid. If the system description is immediately valid, the DateTimeStamp should be now or in the past.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"valid_from",
"operation_modes",
"transitions",
"timers"
],
"title": "OMBC_SystemDescription"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/PPBC.PowerProfileStatus.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PPBC.PowerProfileStatus.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PPBC.PowerProfileStatus",
"type": "string"
},
"sequence_container_status": {
"description": "Array with status information for all PPBC.PowerSequenceContainers in the PPBC.PowerProfileDefinition.",
"items": {
"$ref": "../schemas/PPBC.PowerSequenceContainerStatus.schema.json"
},
"maxItems": 1000,
"minItems": 1,
"type": "array"
}
},
"required": [
"message_type",
"message_id",
"sequence_container_status"
],
"title": "PPBC_PowerProfileStatus"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/Role.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/Role.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"commodity": {
"$ref": "../schemas/Commodity.schema.json",
"description": "Commodity the role refers to."
},
"role": {
"$ref": "../schemas/RoleType.schema.json",
"description": "Role type of the Resource Manager for the given commodity"
}
},
"required": [
"role",
"commodity"
],
"title": "Role"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/PPBC.PowerProfileDefinition.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/PPBC.PowerProfileDefinition.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"end_time": {
"description": "Indicates when the last PPBC.PowerSequence shall be finished at the latest",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the PPBC.PowerProfileDefinition. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "PPBC.PowerProfileDefinition",
"type": "string"
},
"power_sequences_containers": {
"description": "The PPBC.PowerSequenceContainers that make up this PPBC.PowerProfileDefinition. There shall be at least one PPBC.PowerSequenceContainer that includes at least one PPBC.PowerSequence. PPBC.PowerSequenceContainers must be placed in chronological order.",
"items": {
"$ref": "../schemas/PPBC.PowerSequenceContainer.schema.json"
},
"maxItems": 1000,
"minItems": 1,
"type": "array"
},
"start_time": {
"description": "Indicates the first possible time the first PPBC.PowerSequence could start",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"id",
"start_time",
"end_time",
"power_sequences_containers"
],
"title": "PPBC_PowerProfileDefinition"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/Role.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/Role.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"commodity": {
"$ref": "../schemas/Commodity.schema.json",
"description": "Commodity the role refers to."
},
"role": {
"$ref": "../schemas/RoleType.schema.json",
"description": "Role type of the Resource Manager for the given commodity"
}
},
"required": [
"role",
"commodity"
],
"title": "Role"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | ff653adeabd75ba404a9bc37da04c170ba140fd2 | 2023-03-16T13:31:15 | s2-json-schema/schemas/Duration.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/Duration.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Duration in milliseconds",
"minimum": 0,
"title": "Duration",
"type": "integer"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/PowerForecastElement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PowerForecastElement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"duration": {
"$ref": "../schemas/Duration.schema.json",
"description": "Duration of the PowerForecastElement"
},
"power_values": {
"description": "The values of power that are expected for the given period of time. There shall be at least one PowerForecastValue, and at most one PowerForecastValue per CommodityQuantity.",
"items": {
"$ref": "../schemas/PowerForecastValue.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
}
},
"required": [
"duration",
"power_values"
],
"title": "PowerForecastElement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/PEBC.AllowedLimitRange.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PEBC.AllowedLimitRange.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition_only": {
"description": "Indicates if this PEBC.AllowedLimitRange may only be used during an abnormal condition",
"type": "boolean"
},
"commodity_quantity": {
"$ref": "../schemas/CommodityQuantity.schema.json",
"description": "Type of power quantity this PEBC.AllowedLimitRange applies to"
},
"limit_type": {
"$ref": "../schemas/PEBC.PowerEnvelopeLimitType.schema.json",
"description": "Indicates if this ranges applies to the upper limit or the lower limit"
},
"range_boundary": {
"$ref": "../schemas/NumberRange.schema.json",
"description": "Boundaries of the power range of this PEBC.AllowedLimitRange. The CEM is allowed to choose values within this range for the power envelope for the limit as described in limit_type. The start of the range shall be smaller or equal than the end of the range. "
}
},
"required": [
"commodity_quantity",
"limit_type",
"range_boundary",
"abnormal_condition_only"
],
"title": "PEBC_AllowedLimitRange"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/FRBC.ActuatorDescription.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/FRBC.ActuatorDescription.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"diagnostic_label": {
"description": "Human readable name/description for the actuator. This element is only intended for diagnostic purposes and not for HMI applications.",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the Actuator. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"operation_modes": {
"description": "Provided FRBC.OperationModes associated with this actuator",
"items": {
"$ref": "../schemas/FRBC.OperationMode.schema.json"
},
"maxItems": 100,
"minItems": 1,
"type": "array"
},
"supported_commodities": {
"description": "List of all supported Commodities.",
"items": {
"$ref": "../schemas/Commodity.schema.json"
},
"maxItems": 4,
"minItems": 1,
"type": "array"
},
"timers": {
"description": "List of Timers associated with this actuator",
"items": {
"$ref": "../schemas/Timer.schema.json"
},
"maxItems": 1000,
"minItems": 0,
"type": "array"
},
"transitions": {
"description": "Possible transitions between FRBC.OperationModes associated with this actuator.",
"items": {
"$ref": "../schemas/Transition.schema.json"
},
"maxItems": 1000,
"minItems": 1,
"type": "array"
}
},
"required": [
"id",
"supported_commodities",
"operation_modes",
"transitions",
"timers"
],
"title": "FRBC_ActuatorDescription"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/FRBC.SystemDescription.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/FRBC.SystemDescription.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"actuators": {
"description": "Details of all Actuators.",
"items": {
"$ref": "../schemas/FRBC.ActuatorDescription.schema.json"
},
"maxItems": 10,
"minItems": 1,
"type": "array"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "FRBC.SystemDescription",
"type": "string"
},
"storage": {
"$ref": "../schemas/FRBC.StorageDescription.schema.json",
"description": "Details of the storage."
},
"valid_from": {
"description": "Moment this FRBC.SystemDescription starts to be valid. If the system description is immediately valid, the DateTimeStamp should be now or in the past.",
"format": "date-time",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"valid_from",
"actuators",
"storage"
],
"title": "FRBC_SystemDescription"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/PEBC.PowerEnvelopeConsequenceType.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PEBC.PowerEnvelopeConsequenceType.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "VANISH: Indicating that the limited load or generated will be lost and not reappear in the future (see Clause\u00a07.6.2)\nDEFER: Indicating that the limited load or generation will be postponed to a later moment (see Clause\u00a07.6.2)",
"enum": [
"VANISH",
"DEFER"
],
"title": "PEBC_PowerEnvelopeConsequenceType"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/messages/OMBC.Instruction.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/OMBC.Instruction.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition": {
"description": "Indicates if this is an instruction during an abnormal condition",
"type": "boolean"
},
"execution_time": {
"description": "Time when instruction should be executed.",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the instruction. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "OMBC.Instruction",
"type": "string"
},
"operation_mode_factor": {
"description": "The number indicates the factor with which the OMBC.OperationMode should be configured. The factor should be greater than or equal than 0 and less or equal to 1.",
"type": "number"
},
"operation_mode_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the OMBC.OperationMode that should be activated"
}
},
"required": [
"message_type",
"message_id",
"id",
"execution_time",
"operation_mode_id",
"operation_mode_factor",
"abnormal_condition"
],
"title": "OMBC_Instruction"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/OMBC.Instruction.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/OMBC.Instruction.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"abnormal_condition": {
"description": "Indicates if this is an instruction during an abnormal condition",
"type": "boolean"
},
"execution_time": {
"description": "Time when instruction should be executed.",
"format": "date-time",
"type": "string"
},
"id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the instruction. Must be unique in the scope of the Resource Manager, for at least the duration of the session between Resource Manager and CEM."
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "OMBC.Instruction",
"type": "string"
},
"operation_mode_factor": {
"description": "The number indicates the factor with which the OMBC.OperationMode should be configured. The factor should be greater than or equal than 0 and less or equal to 1.",
"type": "number"
},
"operation_mode_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of the OMBC.OperationMode that should be activated"
}
},
"required": [
"message_type",
"message_id",
"id",
"execution_time",
"operation_mode_id",
"operation_mode_factor",
"abnormal_condition"
],
"title": "OMBC_Instruction"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/PowerRange.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PowerRange.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"commodity_quantity": {
"$ref": "../schemas/CommodityQuantity.schema.json",
"description": "The power quantity the values refer to"
},
"end_of_range": {
"description": "Power value that defines the end of the range.",
"type": "number"
},
"start_of_range": {
"description": "Power value that defines the start of the range.",
"type": "number"
}
},
"required": [
"start_of_range",
"end_of_range",
"commodity_quantity"
],
"title": "PowerRange"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/PEBC.PowerEnvelopeElement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PEBC.PowerEnvelopeElement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"duration": {
"$ref": "../schemas/Duration.schema.json",
"description": "The duration of the element"
},
"lower_limit": {
"description": "Lower power limit according to the commodity_quantity of the containing PEBC.PowerEnvelope. The lower_limit must be smaller or equal to the upper_limit. The Resource Manager is requested to keep the power values for the given commodity quantity equal to or above the lower_limit. The lower_limit shall be in accordance with the constraints provided by the Resource Manager through any PEBC.AllowedLimitRange with limit_type LOWER_LIMIT.",
"type": "number"
},
"upper_limit": {
"description": "Upper power limit according to the commodity_quantity of the containing PEBC.PowerEnvelope. The lower_limit must be smaller or equal to the upper_limit. The Resource Manager is requested to keep the power values for the given commodity quantity equal to or below the upper_limit. The upper_limit shall be in accordance with the constraints provided by the Resource Manager through any PEBC.AllowedLimitRange with limit_type UPPER_LIMIT.",
"type": "number"
}
},
"required": [
"duration",
"upper_limit",
"lower_limit"
],
"title": "PEBC_PowerEnvelopeElement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/schemas/FRBC.UsageForecastElement.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/FRBC.UsageForecastElement.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"duration": {
"$ref": "../schemas/Duration.schema.json",
"description": "Indicator for how long the given usage_rate is valid."
},
"usage_rate_expected": {
"description": "The most likely value for the usage rate; the expected increase or decrease of the fill_level per second",
"type": "number"
},
"usage_rate_lower_68PPR": {
"description": "The lower limit of the range with a 68\u00a0% probability that the usage rate is within that range",
"type": "number"
},
"usage_rate_lower_95PPR": {
"description": "The lower limit of the range with a 95\u00a0% probability that the usage rate is within that range",
"type": "number"
},
"usage_rate_lower_limit": {
"description": "The lower limit of the range with a 100\u00a0% probability that the usage rate is within that range",
"type": "number"
},
"usage_rate_upper_68PPR": {
"description": "The upper limit of the range with a 68\u00a0% probability that the usage rate is within that range",
"type": "number"
},
"usage_rate_upper_95PPR": {
"description": "The upper limit of the range with a 95\u00a0% probability that the usage rate is within that range. ",
"type": "number"
},
"usage_rate_upper_limit": {
"description": "The upper limit of the range with a 100\u00a0% probability that the usage rate is within that range.",
"type": "number"
}
},
"required": [
"duration",
"usage_rate_expected"
],
"title": "FRBC_UsageForecastElement"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | 116f0c987110733bd7d35e95715cc53916958c53 | 2022-10-10T10:14:42 | s2-json-schema/schemas/PEBC.PowerEnvelopeConsequenceType.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/schemas/PEBC.PowerEnvelopeConsequenceType.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "VANISH: Indicating that the limited load or generated will be lost and not reappear in the future (see Clause\u00a07.6.2)\nDEFER: Indicating that the limited load or generation will be postponed to a later moment (see Clause\u00a07.6.2)",
"enum": [
"VANISH",
"DEFER"
],
"title": "PEBC_PowerEnvelopeConsequenceType"
} | Apache-2.0 | en |
flexiblepower/s2-ws-json | b41a8ced359056a53175ca84d0b7696b368e3afd | 2022-10-13T08:29:57 | s2-json-schema/messages/SelectControlType.schema.json | 13 | 2024-05-27T07:07:30.948369Z | {
"$id": "https://raw.githubusercontent.com/flexiblepower/s2-ws-json/main/s2-json-schema/messages/SelectControlType.schema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"control_type": {
"$ref": "../schemas/ControlType.schema.json",
"description": "The ControlType to activate. Must be one of the available ControlTypes as defined in the ResourceManagerDetails"
},
"message_id": {
"$ref": "../schemas/ID.schema.json",
"description": "ID of this message"
},
"message_type": {
"const": "SelectControlType",
"type": "string"
}
},
"required": [
"message_type",
"message_id",
"control_type"
],
"title": "SelectControlType"
} | Apache-2.0 | en |
Subsets and Splits