diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 45d9d8bcb..0908384d9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -34,6 +34,7 @@ Change Log - [ADDED] option to use a second tap changer for the trafo element - [CHANGED] parameters of function merge_internal_net_and_equivalent_external_net() - [FIXED] :code:`convert_format.py`: update the attributes of the characteristic objects to match the new characteristic +- [CHANGED] cim2pp: extracted getting default classes, added generic setting datatypes from CGMES XMI schema [2.13.1] - 2023-05-12 diff --git a/pandapower/converter/cim/cim2pp/build_pp_net.py b/pandapower/converter/cim/cim2pp/build_pp_net.py index f0e50de73..cd7b94536 100644 --- a/pandapower/converter/cim/cim2pp/build_pp_net.py +++ b/pandapower/converter/cim/cim2pp/build_pp_net.py @@ -92,34 +92,51 @@ def convert_to_pp(self, convert_line_to_switch: bool = False, line_r_limit: floa sort=False, ignore_index=True)[['rdfId', 'nominalVoltage']] # --------- convert busses --------- - self.classes_dict['connectivityNodesCim16'].ConnectivityNodesCim16(cimConverter=self).convert_connectivity_nodes_cim16() + self.classes_dict['connectivityNodesCim16'].ConnectivityNodesCim16( + cimConverter=self).convert_connectivity_nodes_cim16() # --------- convert external networks --------- - self.classes_dict['externalNetworkInjectionsCim16'].ExternalNetworkInjectionsCim16(cimConverter=self).convert_external_network_injections_cim16() + self.classes_dict['externalNetworkInjectionsCim16'].ExternalNetworkInjectionsCim16( + cimConverter=self).convert_external_network_injections_cim16() # --------- convert lines --------- - self.classes_dict['acLineSegmentsCim16'].AcLineSegmentsCim16(cimConverter=self).convert_ac_line_segments_cim16(convert_line_to_switch, line_r_limit, line_x_limit) - self.classes_dict['dcLineSegmentsCim16'].DcLineSegmentsCim16(cimConverter=self).convert_dc_line_segments_cim16() + self.classes_dict['acLineSegmentsCim16'].AcLineSegmentsCim16( + cimConverter=self).convert_ac_line_segments_cim16(convert_line_to_switch, line_r_limit, line_x_limit) + self.classes_dict['dcLineSegmentsCim16'].DcLineSegmentsCim16( + cimConverter=self).convert_dc_line_segments_cim16() # --------- convert switches --------- self.classes_dict['switchesCim16'].SwitchesCim16(cimConverter=self).convert_switches_cim16() # --------- convert loads --------- - self.classes_dict['energyConcumersCim16'].EnergyConsumersCim16(cimConverter=self).convert_energy_consumers_cim16() + self.classes_dict['energyConcumersCim16'].EnergyConsumersCim16( + cimConverter=self).convert_energy_consumers_cim16() self.classes_dict['conformLoadsCim16'].ConformLoadsCim16(cimConverter=self).convert_conform_loads_cim16() - self.classes_dict['nonConformLoadsCim16'].NonConformLoadsCim16(cimConverter=self).convert_non_conform_loads_cim16() - self.classes_dict['stationSuppliesCim16'].StationSuppliesCim16(cimConverter=self).convert_station_supplies_cim16() + self.classes_dict['nonConformLoadsCim16'].NonConformLoadsCim16( + cimConverter=self).convert_non_conform_loads_cim16() + self.classes_dict['stationSuppliesCim16'].StationSuppliesCim16( + cimConverter=self).convert_station_supplies_cim16() # --------- convert generators --------- - self.classes_dict['synchronousMachinesCim16'].SynchronousMachinesCim16(cimConverter=self).convert_synchronous_machines_cim16() - self.classes_dict['asynchronousMachinesCim16'].AsynchronousMachinesCim16(cimConverter=self).convert_asynchronous_machines_cim16() - self.classes_dict['energySourcesCim16'].EnergySourceCim16(cimConverter=self).convert_energy_sources_cim16() + self.classes_dict['synchronousMachinesCim16'].SynchronousMachinesCim16( + cimConverter=self).convert_synchronous_machines_cim16() + self.classes_dict['asynchronousMachinesCim16'].AsynchronousMachinesCim16( + cimConverter=self).convert_asynchronous_machines_cim16() + self.classes_dict['energySourcesCim16'].EnergySourceCim16( + cimConverter=self).convert_energy_sources_cim16() # --------- convert shunt elements --------- - self.classes_dict['linearShuntCompensatorCim16'].LinearShuntCompensatorCim16(cimConverter=self).convert_linear_shunt_compensator_cim16() - self.classes_dict['nonLinearShuntCompensatorCim16'].NonLinearShuntCompensatorCim16(cimConverter=self).convert_nonlinear_shunt_compensator_cim16() - self.classes_dict['staticVarCompensatorCim16'].StaticVarCompensatorCim16(cimConverter=self).convert_static_var_compensator_cim16() + self.classes_dict['linearShuntCompensatorCim16'].LinearShuntCompensatorCim16( + cimConverter=self).convert_linear_shunt_compensator_cim16() + self.classes_dict['nonLinearShuntCompensatorCim16'].NonLinearShuntCompensatorCim16( + cimConverter=self).convert_nonlinear_shunt_compensator_cim16() + self.classes_dict['staticVarCompensatorCim16'].StaticVarCompensatorCim16( + cimConverter=self).convert_static_var_compensator_cim16() # --------- convert impedance elements --------- - self.classes_dict['equivalentBranchesCim16'].EquivalentBranchesCim16(cimConverter=self).convert_equivalent_branches_cim16() - self.classes_dict['seriesCompensatorsCim16'].SeriesCompensatorsCim16(cimConverter=self).convert_series_compensators_cim16() + self.classes_dict['equivalentBranchesCim16'].EquivalentBranchesCim16( + cimConverter=self).convert_equivalent_branches_cim16() + self.classes_dict['seriesCompensatorsCim16'].SeriesCompensatorsCim16( + cimConverter=self).convert_series_compensators_cim16() # --------- convert extended ward and ward elements --------- - self.classes_dict['equivalentInjectionsCim16'].EquivalentInjectionsCim16(cimConverter=self).convert_equivalent_injections_cim16() + self.classes_dict['equivalentInjectionsCim16'].EquivalentInjectionsCim16( + cimConverter=self).convert_equivalent_injections_cim16() # --------- convert transformers --------- - self.classes_dict['powerTransformersCim16'].PowerTransformersCim16(cimConverter=self).convert_power_transformers_cim16() + self.classes_dict['powerTransformersCim16'].PowerTransformersCim16( + cimConverter=self).convert_power_transformers_cim16() # create the geo coordinates gl_or_dl = str(self.kwargs.get('use_GL_or_DL_profile', 'both')).lower() @@ -135,7 +152,8 @@ def convert_to_pp(self, convert_line_to_switch: bool = False, line_r_limit: floa if self.cim['gl']['Location'].index.size > 0 and self.cim['gl']['PositionPoint'].index.size > 0 and \ use_gl_profile: try: - self.classes_dict['geoCoordinatesFromGLCim16'].GeoCoordinatesFromGLCim16(cimConverter=self).add_geo_coordinates_from_gl_cim16() + self.classes_dict['geoCoordinatesFromGLCim16'].GeoCoordinatesFromGLCim16( + cimConverter=self).add_geo_coordinates_from_gl_cim16() except Exception as e: self.logger.warning("Creating the geo coordinates failed, returning the net without geo coordinates!") self.logger.exception(e) @@ -151,7 +169,8 @@ def convert_to_pp(self, convert_line_to_switch: bool = False, line_r_limit: floa self.cim['dl']['DiagramObjectPoint'].index.size > 0 and self.net.bus_geodata.index.size == 0 and \ use_dl_profile: try: - self.classes_dict['coordinatesFromDLCim16'].CoordinatesFromDLCim16(cimConverter=self).add_coordinates_from_dl_cim16(diagram_name=kwargs.get('diagram_name', None)) + self.classes_dict['coordinatesFromDLCim16'].CoordinatesFromDLCim16( + cimConverter=self).add_coordinates_from_dl_cim16(diagram_name=kwargs.get('diagram_name', None)) except Exception as e: self.logger.warning("Creating the coordinates failed, returning the net without coordinates!") self.logger.exception(e) @@ -165,7 +184,8 @@ def convert_to_pp(self, convert_line_to_switch: bool = False, line_r_limit: floa self.net = pp_tools.set_pp_col_types(net=self.net) # create transformer tap controller - self.classes_dict['tapController'].TapController(cimConverter=self).create_tap_controller_for_power_transformers() + self.classes_dict['tapController'].TapController( + cimConverter=self).create_tap_controller_for_power_transformers() self.logger.info("Running a power flow.") self.report_container.add_log(Report( @@ -211,21 +231,6 @@ def convert_to_pp(self, convert_line_to_switch: bool = False, line_r_limit: floa self.net.measurement = self.net.measurement[0:0] if not kwargs.get('ignore_errors', True): raise e - try: - # TODO: think on whether to remove whole function - if kwargs.get('update_assets_from_sv', False): - CreateMeasurements(self.net, self.cim).update_assets_from_sv() - except Exception as e: - self.logger.warning("Updating the assets failed!") - self.logger.exception(e) - self.report_container.add_log(Report( - level=LogLevel.ERROR, code=ReportCode.ERROR_CONVERTING, - message="Updating the assets failed!")) - self.report_container.add_log(Report( - level=LogLevel.EXCEPTION, code=ReportCode.EXCEPTION_CONVERTING, - message=traceback.format_exc())) - if not kwargs.get('ignore_errors', True): - raise e # a special fix for BB and NB mixed networks: # fuse boundary ConnectivityNodes with their TopologicalNodes bus_t = self.net.bus.reset_index(level=0, drop=False) diff --git a/pandapower/converter/cim/cim2pp/convert_measurements.py b/pandapower/converter/cim/cim2pp/convert_measurements.py index e58f36e56..ab0e242f0 100644 --- a/pandapower/converter/cim/cim2pp/convert_measurements.py +++ b/pandapower/converter/cim/cim2pp/convert_measurements.py @@ -34,46 +34,6 @@ def _copy_to_measurement(self, input_df: pd.DataFrame): if one_attr in input_df.columns: self.net[pp_type][one_attr][start_index_pp_net:] = input_df[one_attr][:] - def update_assets_from_sv(self): - self.logger.info("--------------------------- Updating assets from SV ---------------------------") - time_start = time.time() - sc = cim_tools.get_pp_net_special_columns_dict() - # get the measurements from the sv profile and set the Terminal as index - sv_powerflow = self.cim['sv']['SvPowerFlow'][['Terminal', 'p', 'q']] - - # update sgen - temp = self.net.sgen[[sc['o_id'], sc['t'], 'p_mw', 'q_mvar', 'sn_mva']] - temp = pd.merge(temp, sv_powerflow, how='left', left_on=sc['t'], right_on='Terminal') - # fix load sign - temp['p'] = -temp['p'] - temp['q'] = -temp['q'] - temp['p'].fillna(temp['p_mw'], inplace=True) - temp['q'].fillna(temp['q_mvar'], inplace=True) - temp['new_sn_mva'] = (temp['p'] ** 2 + temp['q'] ** 2) ** .5 - self.net.sgen.p_mw = temp['p'][:] - self.net.sgen.q_mvar = temp['q'][:] - self.net.sgen.sn_mva = temp[["new_sn_mva", "sn_mva"]].max(axis=1) - - # update load - temp = self.net.load[[sc['o_id'], sc['t'], 'p_mw', 'q_mvar']] - temp = pd.merge(temp, sv_powerflow, how='left', left_on=sc['t'], right_on='Terminal') - temp['p'].fillna(temp['p_mw'], inplace=True) - temp['q'].fillna(temp['q_mvar'], inplace=True) - self.net.load.p_mw = temp['p'][:] - self.net.load.q_mvar = temp['q'][:] - - # update ward - temp = self.net.ward[[sc['o_id'], sc['t'], 'ps_mw', 'qs_mvar', 'pz_mw', 'qz_mvar']] - temp = pd.merge(temp, sv_powerflow, how='left', left_on=sc['t'], right_on='Terminal') - temp['p'].fillna(temp['ps_mw'], inplace=True) - temp['q'].fillna(temp['qs_mvar'], inplace=True) - self.net.ward.ps_mw = temp['p'][:] - self.net.ward.qs_mvar = temp['q'][:] - self.net.ward.pz_mw = temp['p'][:] - self.net.ward.qz_mvar = temp['q'][:] - - self.logger.info("Needed time for updating the assets: %ss" % (time.time() - time_start)) - def create_measurements_from_analog(self): self.logger.info("------------------------- Creating measurements from Analog -------------------------") time_start = time.time() diff --git a/pandapower/converter/cim/cim2pp/converter_classes/coordinates/coordinatesFromDLCim16.py b/pandapower/converter/cim/cim2pp/converter_classes/coordinates/coordinatesFromDLCim16.py index 896099915..2ab8c926f 100644 --- a/pandapower/converter/cim/cim2pp/converter_classes/coordinates/coordinatesFromDLCim16.py +++ b/pandapower/converter/cim/cim2pp/converter_classes/coordinates/coordinatesFromDLCim16.py @@ -38,6 +38,9 @@ def add_coordinates_from_dl_cim16(self, diagram_name: str = None): dl_do.rename(columns={'rdfId': 'DiagramObject'}, inplace=True) dl_data = pd.merge(dl_do, self.cimConverter.cim['dl']['DiagramObjectPoint'], how='left', on='DiagramObject') dl_data.drop(columns=['rdfId', 'Diagram', 'DiagramObject'], inplace=True) + # make sure that the columns 'xPosition' and 'yPosition' are floats + dl_data['xPosition'] = dl_data['xPosition'].astype(float) + dl_data['yPosition'] = dl_data['yPosition'].astype(float) # the coordinates for the buses buses = self.cimConverter.net.bus.reset_index() buses = buses[['index', sc['o_id']]] diff --git a/pandapower/converter/cim/cim2pp/converter_classes/coordinates/geoCoordinatesFromGLCim16.py b/pandapower/converter/cim/cim2pp/converter_classes/coordinates/geoCoordinatesFromGLCim16.py index c903f11fa..e0360856c 100644 --- a/pandapower/converter/cim/cim2pp/converter_classes/coordinates/geoCoordinatesFromGLCim16.py +++ b/pandapower/converter/cim/cim2pp/converter_classes/coordinates/geoCoordinatesFromGLCim16.py @@ -26,6 +26,9 @@ def add_geo_coordinates_from_gl_cim16(self): self.cimConverter.cim['gl']['Location'][['rdfId', 'PowerSystemResources']], how='left', left_on='Location', right_on='rdfId') gl_data.drop(columns=['Location', 'rdfId'], inplace=True) + # make sure that the columns 'xPosition' and 'yPosition' are floats + gl_data['xPosition'] = gl_data['xPosition'].astype(float) + gl_data['yPosition'] = gl_data['yPosition'].astype(float) bus_geo = gl_data.rename(columns={'PowerSystemResources': 'Substation'}) cn = self.cimConverter.cim['eq']['ConnectivityNode'][['rdfId', 'ConnectivityNodeContainer']] cn = pd.concat([cn, self.cimConverter.cim['eq_bd']['ConnectivityNode'][['rdfId', 'ConnectivityNodeContainer']]]) diff --git a/pandapower/converter/cim/cim2pp/from_cim.py b/pandapower/converter/cim/cim2pp/from_cim.py index 9ec7cfe8b..a582e4ff5 100644 --- a/pandapower/converter/cim/cim2pp/from_cim.py +++ b/pandapower/converter/cim/cim2pp/from_cim.py @@ -9,6 +9,7 @@ from . import build_pp_net from .. import cim_classes from .. import interfaces +from . import converter_classes as std_converter_classes logger = logging.getLogger('cim.cim2pp.from_cim') @@ -38,8 +39,30 @@ def from_cim_dict(cim_parser: cim_classes.CimParser, log_debug=False, convert_li :param custom_converter_classes: Dict to inject classes for different functionality. Optional, default: None :return: The pandapower net. """ - from . import converter_classes as std_converter_classes - converter_classes: dict = { + converter_classes = get_converter_classes() + if custom_converter_classes is not None: + for key in custom_converter_classes: + converter_classes[key] = custom_converter_classes.get(key) + + # repair the input CIM data + if repair_cim is not None and repair_cim_class is not None: + repair_cim = repair_cim_class().deserialize(repair_cim, report_container=cim_parser.get_report_container()) + repair_cim.repair(cim_parser.get_cim_dict(), report_container=cim_parser.get_report_container()) + + cim_converter = build_pp_net.CimConverter(cim_parser=cim_parser, converter_classes=converter_classes, **kwargs) + pp_net = cim_converter.convert_to_pp(convert_line_to_switch=convert_line_to_switch, line_r_limit=line_r_limit, + line_x_limit=line_x_limit, log_debug=log_debug, **kwargs) + + # repair the output pandapower network + if repair_pp is not None and repair_pp_class is not None: + repair_pp = repair_pp_class().deserialize(repair_pp, report_container=cim_parser.get_report_container()) + repair_pp.repair(pp_net, report_container=cim_parser.get_report_container()) + + return pp_net + + +def get_converter_classes(): + converter_classes: Dict[str,classmethod] = { 'connectivityNodesCim16': std_converter_classes.connectivitynodes.connectivityNodesCim16, 'externalNetworkInjectionsCim16': std_converter_classes.externalnetworks.externalNetworkInjectionsCim16, 'acLineSegmentsCim16': std_converter_classes.lines.acLineSegmentsCim16, @@ -63,25 +86,7 @@ def from_cim_dict(cim_parser: cim_classes.CimParser, log_debug=False, convert_li 'geoCoordinatesFromGLCim16': std_converter_classes.coordinates.geoCoordinatesFromGLCim16, 'coordinatesFromDLCim16': std_converter_classes.coordinates.coordinatesFromDLCim16, } - if custom_converter_classes is not None: - for key in custom_converter_classes: - converter_classes[key] = custom_converter_classes.get(key) - - # repair the input CIM data - if repair_cim is not None and repair_cim_class is not None: - repair_cim = repair_cim_class().deserialize(repair_cim, report_container=cim_parser.get_report_container()) - repair_cim.repair(cim_parser.get_cim_dict(), report_container=cim_parser.get_report_container()) - - cim_converter = build_pp_net.CimConverter(cim_parser=cim_parser, converter_classes=converter_classes, **kwargs) - pp_net = cim_converter.convert_to_pp(convert_line_to_switch=convert_line_to_switch, line_r_limit=line_r_limit, - line_x_limit=line_x_limit, log_debug=log_debug, **kwargs) - - # repair the output pandapower network - if repair_pp is not None and repair_pp_class is not None: - repair_pp = repair_pp_class().deserialize(repair_pp, report_container=cim_parser.get_report_container()) - repair_pp.repair(pp_net, report_container=cim_parser.get_report_container()) - - return pp_net + return converter_classes def from_cim(file_list: List[str] = None, encoding: str = 'utf-8', convert_line_to_switch: bool = False, @@ -98,8 +103,6 @@ def from_cim(file_list: List[str] = None, encoding: str = 'utf-8', convert_line_ - create_measurements (str): Set this parameter to 'SV' to create measurements for the pandapower net from the SV profile. Set it to 'Analog' to create measurements from Analogs. If the parameter is not set or is set to None, no measurements will be created. - - update_assets_from_sv (bool): Set this parameter to True to update the assets (sgens, loads, wards, ...) with - values from the SV profile. Default: False. - use_GL_or_DL_profile (str): Choose the profile to use for converting coordinates. Set it to 'GL' to use the GL profile (Usually lat and long coordinates). Set it to 'DL' to use the DL profile (Usually x, y coordinates for displaying control room schema). Set it to 'both' to let the converter choose the profile. The converter will diff --git a/pandapower/converter/cim/cim_classes.py b/pandapower/converter/cim/cim_classes.py index b651941b1..eb19c2bc7 100644 --- a/pandapower/converter/cim/cim_classes.py +++ b/pandapower/converter/cim/cim_classes.py @@ -14,6 +14,7 @@ import xml.etree.ElementTree import xml.etree.cElementTree as xmlET from .other_classes import ReportContainer, Report, LogLevel, ReportCode +from .cim_tools import get_cim16_schema class CimParser: @@ -76,60 +77,39 @@ def set_cim_data_types(self) -> CimParser: float_type = float int_type = pd.Int64Dtype() bool_type = pd.BooleanDtype() - data_types = dict({'nominalVoltage': float_type, 'r': float_type, 'x': float_type, 'r2': float_type, - 'x2': float_type, 'bch': float_type, 'v': float_type, 'p': float_type, 'q': float_type, - 'ratedUdc': float_type, 'targetUpcc': float_type, 'droop': float_type, - 'droopCompensation': float_type, 'qShare': float_type, 'targetUdc': float_type, - 'targetPpcc': float_type, 'targetQpcc': float_type, - 'minP': float_type, 'maxP': float_type, 'minQ': float_type, 'maxQ': float_type, - 'ratedPowerFactor': float_type, 'minOperatingP': float_type, 'maxOperatingP': float_type, - 'nominalP': float_type, 'initialP': float_type, 'baseS': float_type, - 'maxInitialSymShCCurrent': float_type, 'minInitialSymShCCurrent': float_type, - 'maxR1ToX1Ratio': float_type, 'minR1ToX1Ratio': float_type, 'targetValue': float_type, - 'activePower': float_type, 'reactivePower': float_type, 'b': float_type, - 'ratedS': float_type, 'ratedU': float_type, 'stepVoltageIncrement': float_type, - 'stepPhaseShiftIncrement': float_type, 'step': float_type, 'length': float_type, - 'g': float_type, 'ratio': float_type, 'regulationTarget': float_type, 'value': float_type, - 'sensorAccuracy': float_type, 'neutralU': float_type, 'voltageStepIncrement': float_type, - 'xPosition': float_type, 'yPosition': float_type, 'r21': float_type, 'x21': float_type, - 'nomU': float_type, 'gPerSection': float_type, 'bPerSection': float_type, - 'angle': float_type, 'r0': float_type, 'x0': float_type, 'b0ch': float_type, - 'gch': float_type, 'g0ch': float_type, 'shortCircuitEndTemperature': float_type, - 'targetDeadband': float_type, 'netInterchange': float_type, 'iaIrRatio': float_type, - 'voltageRegulationRange': float_type, 'rxLockedRotorRatio': float_type, - 'maxR0ToX0Ratio': float_type, 'maxZ0ToZ1Ratio': float_type, 'xground': float_type, - 'efficiency': float_type, 'ratedMechanicalPower': float_type, 'voltageSetPoint': float_type, - 'zeroR12': float_type, 'zeroR21': float_type, 'zeroX12': float_type, 'zeroX21': float_type, - 'voltageAngle': float_type, 'voltageMagnitude': float_type, - 'controlEnabled': bool_type, 'connected': bool_type, 'open': bool_type, - 'regulationStatus': bool_type, 'positiveFlowIn': bool_type, - 'isPartOfGeneratorUnit': bool_type, 'ltcFlag': bool_type, 'discrete': bool_type, - 'enabled': bool_type, 'grounded': bool_type, - 'referencePriority': int_type, 'sectionNumber': int_type, 'sections': int_type, - 'maximumSections': int_type, 'endNumber': int_type, 'sequenceNumber': int_type, - 'neutralStep': int_type, 'lowStep': int_type, 'highStep': int_type, 'normalStep': int_type, - 'phaseAngleClock': int_type, 'position': int_type}) + data_types_map = dict({'Float': float_type, 'Integer': int_type, 'Boolean': bool_type}) + cim_16_schema = get_cim16_schema() for profile in self.cim.keys(): for cim_element_type, item in self.cim[profile].items(): for col in item.columns: - if col in data_types.keys(): + # skip elements which are not available in the schema like FullModel + if cim_element_type not in cim_16_schema[profile]: + self.logger.debug("Skipping CIM element type %s from profile %s." % (cim_element_type, profile)) + continue + if col in cim_16_schema[profile][cim_element_type]['fields'].keys() and \ + 'data_type_prim' in cim_16_schema[profile][cim_element_type]['fields'][col].keys(): + data_type_col_str = cim_16_schema[profile][cim_element_type]['fields'][col]['data_type_prim'] + if data_type_col_str in data_types_map.keys(): + data_type_col = data_types_map[data_type_col_str] + else: + continue self.logger.debug("Setting data type of %s from CIM element %s as type %s" % - (col, cim_element_type, data_types[col])) - if col in default_values.keys(): + (col, cim_element_type, data_type_col_str)) + if col in default_values.keys(): # todo deprecated due to repair function? self.cim[profile][cim_element_type][col].fillna(value=default_values[col], inplace=True) - if data_types[col] == bool_type: + if data_type_col == bool_type: self.cim[profile][cim_element_type][col] = \ self.cim[profile][cim_element_type][col].map(to_bool) try: # special fix for integers: - if data_types[col] == int_type: + if data_type_col == int_type: self.cim[profile][cim_element_type][col] = \ self.cim[profile][cim_element_type][col].astype(float_type) self.cim[profile][cim_element_type][col] = \ - self.cim[profile][cim_element_type][col].astype(data_types[col]) + self.cim[profile][cim_element_type][col].astype(data_type_col) except Exception as e: self.logger.warning("Couldn't set the datatype to %s for field %s at CIM type %s in " - "profile %s!" % (data_types[col], col, cim_element_type, profile)) + "profile %s!" % (data_type_col_str, col, cim_element_type, profile)) self.logger.warning("This may be harmless if the data is not need by the converter. " "Message: %s" % e) self.logger.info("Finished setting the cim data types.") diff --git a/pandapower/converter/cim/cim_tools.py b/pandapower/converter/cim/cim_tools.py index 0cfec20d6..24f4a43c5 100644 --- a/pandapower/converter/cim/cim_tools.py +++ b/pandapower/converter/cim/cim_tools.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- - # Copyright (c) 2016-2023 by University of Kassel and Fraunhofer Institute for Energy Economics # and Energy System Technology (IEE), Kassel. All rights reserved. import logging +import os +import json from typing import Dict, List import numpy as np from pandapower.auxiliary import pandapowerNet import pandas as pd -from . import cim_classes logger = logging.getLogger(__name__) @@ -129,5 +129,19 @@ def extend_pp_net_cim(net: pandapowerNet, override: bool = True) -> pandapowerNe return net -def get_cim_data_structure() -> Dict[str, Dict[str, pd.DataFrame]]: - return cim_classes.CimParser().get_cim_data_structure() +def get_cim16_schema() -> Dict[str, Dict[str, Dict[str, str or Dict[str, Dict[str, str]]]]]: + """ + Parses the CIM 16 schema from the CIM 16 RDF schema files for the serializer from the CIM data structure used by + the cim2pp and pp2cim converters. + :return: The CIM 16 schema as dictionary. + """ + path_with_serialized_schemas = os.path.dirname(__file__) + os.sep + 'serialized_schemas' + if not os.path.isdir(path_with_serialized_schemas): + os.mkdir(path_with_serialized_schemas) + for one_file in os.listdir(path_with_serialized_schemas): + if one_file.lower().endswith('_schema.json'): + path_to_schema = path_with_serialized_schemas + os.sep + one_file + logger.info("Parsing the schema from CIM 16 from disk: %s" % path_to_schema) + with open(path_to_schema, encoding='UTF-8', mode='r') as f: + cim16_schema = json.load(f) + return cim16_schema diff --git a/pandapower/converter/cim/serialized_schemas/CIM16_4.0.8_schema.json b/pandapower/converter/cim/serialized_schemas/CIM16_4.0.8_schema.json new file mode 100644 index 000000000..765df9a5d --- /dev/null +++ b/pandapower/converter/cim/serialized_schemas/CIM16_4.0.8_schema.json @@ -0,0 +1,11344 @@ +{ + "eq": { + "ControlArea": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ControlArea", + "fields": { + "type": { + "label": "cim:ControlArea.type", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaTypeKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaTypeKind." + }, + "ControlAreaGeneratingUnit": { + "label": "cim:ControlArea.ControlAreaGeneratingUnit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaGeneratingUnit.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaGeneratingUnit." + }, + "TieFlow": { + "label": "cim:ControlArea.TieFlow", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TieFlow.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TieFlow." + }, + "EnergyArea": { + "label": "cim:ControlArea.EnergyArea", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "TieFlow": { + "rdf_type": " rdf:ID=\"", + "label": "cim:TieFlow", + "fields": { + "Terminal": { + "label": "cim:TieFlow.Terminal", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "positiveFlowIn": { + "label": "cim:TieFlow.positiveFlowIn", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "ControlArea": { + "label": "cim:TieFlow.ControlArea", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + } + } + }, + "ConnectivityNode": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ConnectivityNode", + "fields": { + "ConnectivityNodeContainer": { + "label": "cim:ConnectivityNode.ConnectivityNodeContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Terminals": { + "label": "cim:ConnectivityNode.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Bay": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Bay", + "fields": { + "VoltageLevel": { + "label": "cim:Bay.VoltageLevel", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Equipments": { + "label": "cim:EquipmentContainer.Equipments", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment." + }, + "ConnectivityNodes": { + "label": "cim:ConnectivityNodeContainer.ConnectivityNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Substation": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Substation", + "fields": { + "DCConverterUnit": { + "label": "cim:Substation.DCConverterUnit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCConverterUnit.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCConverterUnit." + }, + "Region": { + "label": "cim:Substation.Region", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "VoltageLevels": { + "label": "cim:Substation.VoltageLevels", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#VoltageLevel.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#VoltageLevel." + }, + "Equipments": { + "label": "cim:EquipmentContainer.Equipments", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment." + }, + "ConnectivityNodes": { + "label": "cim:ConnectivityNodeContainer.ConnectivityNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "GeographicalRegion": { + "rdf_type": " rdf:ID=\"", + "label": "cim:GeographicalRegion", + "fields": { + "Regions": { + "label": "cim:GeographicalRegion.Regions", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SubGeographicalRegion.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SubGeographicalRegion." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "SubGeographicalRegion": { + "rdf_type": " rdf:ID=\"", + "label": "cim:SubGeographicalRegion", + "fields": { + "DCLines": { + "label": "cim:SubGeographicalRegion.DCLines", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCLine.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCLine." + }, + "Region": { + "label": "cim:SubGeographicalRegion.Region", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Lines": { + "label": "cim:SubGeographicalRegion.Lines", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Line.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Line." + }, + "Substations": { + "label": "cim:SubGeographicalRegion.Substations", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Substation.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Substation." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "VoltageLevel": { + "rdf_type": " rdf:ID=\"", + "label": "cim:VoltageLevel", + "fields": { + "Bays": { + "label": "cim:VoltageLevel.Bays", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Bay.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Bay." + }, + "lowVoltageLimit": { + "label": "cim:VoltageLevel.lowVoltageLimit", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "highVoltageLimit": { + "label": "cim:VoltageLevel.highVoltageLimit", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "BaseVoltage": { + "label": "cim:VoltageLevel.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Substation": { + "label": "cim:VoltageLevel.Substation", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Equipments": { + "label": "cim:EquipmentContainer.Equipments", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment." + }, + "ConnectivityNodes": { + "label": "cim:ConnectivityNodeContainer.ConnectivityNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "BaseVoltage": { + "rdf_type": " rdf:ID=\"", + "label": "cim:BaseVoltage", + "fields": { + "TransformerEnds": { + "label": "cim:BaseVoltage.TransformerEnds", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TransformerEnd.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TransformerEnd." + }, + "ConductingEquipment": { + "label": "cim:BaseVoltage.ConductingEquipment", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConductingEquipment.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConductingEquipment." + }, + "VoltageLevel": { + "label": "cim:BaseVoltage.VoltageLevel", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#VoltageLevel.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#VoltageLevel." + }, + "nominalVoltage": { + "label": "cim:BaseVoltage.nominalVoltage", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ExternalNetworkInjection": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ExternalNetworkInjection", + "fields": { + "minQ": { + "label": "cim:ExternalNetworkInjection.minQ", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "maxInitialSymShCCurrent": { + "label": "cim:ExternalNetworkInjection.maxInitialSymShCCurrent", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "maxP": { + "label": "cim:ExternalNetworkInjection.maxP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "governorSCD": { + "label": "cim:ExternalNetworkInjection.governorSCD", + "data_type": "ActivePowerPerFrequency", + "data_type_prim": "Float" + }, + "maxQ": { + "label": "cim:ExternalNetworkInjection.maxQ", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "maxR1ToX1Ratio": { + "label": "cim:ExternalNetworkInjection.maxR1ToX1Ratio", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "minR1ToX1Ratio": { + "label": "cim:ExternalNetworkInjection.minR1ToX1Ratio", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "maxR0ToX0Ratio": { + "label": "cim:ExternalNetworkInjection.maxR0ToX0Ratio", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "ikSecond": { + "label": "cim:ExternalNetworkInjection.ikSecond", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "minR0ToX0Ratio": { + "label": "cim:ExternalNetworkInjection.minR0ToX0Ratio", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "minInitialSymShCCurrent": { + "label": "cim:ExternalNetworkInjection.minInitialSymShCCurrent", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "voltageFactor": { + "label": "cim:ExternalNetworkInjection.voltageFactor", + "data_type": "PU", + "data_type_prim": "Float" + }, + "minP": { + "label": "cim:ExternalNetworkInjection.minP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "minZ0ToZ1Ratio": { + "label": "cim:ExternalNetworkInjection.minZ0ToZ1Ratio", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "maxZ0ToZ1Ratio": { + "label": "cim:ExternalNetworkInjection.maxZ0ToZ1Ratio", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "RegulatingControl": { + "label": "cim:RegulatingCondEq.RegulatingControl", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ACLineSegment": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ACLineSegment", + "fields": { + "r": { + "label": "cim:ACLineSegment.r", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "shortCircuitEndTemperature": { + "label": "cim:ACLineSegment.shortCircuitEndTemperature", + "data_type": "Temperature", + "data_type_prim": "Float" + }, + "r0": { + "label": "cim:ACLineSegment.r0", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "x0": { + "label": "cim:ACLineSegment.x0", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "gch": { + "label": "cim:ACLineSegment.gch", + "data_type": "Conductance", + "data_type_prim": "Float" + }, + "b0ch": { + "label": "cim:ACLineSegment.b0ch", + "data_type": "Susceptance", + "data_type_prim": "Float" + }, + "x": { + "label": "cim:ACLineSegment.x", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "g0ch": { + "label": "cim:ACLineSegment.g0ch", + "data_type": "Conductance", + "data_type_prim": "Float" + }, + "bch": { + "label": "cim:ACLineSegment.bch", + "data_type": "Susceptance", + "data_type_prim": "Float" + }, + "length": { + "label": "cim:Conductor.length", + "data_type": "Length", + "data_type_prim": "Float" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Terminal": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Terminal", + "fields": { + "ConverterDCSides": { + "label": "cim:Terminal.ConverterDCSides", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ACDCConverter.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ACDCConverter." + }, + "RegulatingControl": { + "label": "cim:Terminal.RegulatingControl", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegulatingControl.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegulatingControl." + }, + "TieFlow": { + "label": "cim:Terminal.TieFlow", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TieFlow.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TieFlow." + }, + "phases": { + "label": "cim:Terminal.phases", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseCode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseCode." + }, + "TransformerEnd": { + "label": "cim:Terminal.TransformerEnd", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TransformerEnd.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TransformerEnd." + }, + "ConnectivityNode": { + "label": "cim:Terminal.ConnectivityNode", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "ConductingEquipment": { + "label": "cim:Terminal.ConductingEquipment", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "HasSecondMutualCoupling": { + "label": "cim:Terminal.HasSecondMutualCoupling", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#MutualCoupling.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#MutualCoupling." + }, + "HasFirstMutualCoupling": { + "label": "cim:Terminal.HasFirstMutualCoupling", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#MutualCoupling.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#MutualCoupling." + }, + "BusNameMarker": { + "label": "cim:ACDCTerminal.BusNameMarker", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "OperationalLimitSet": { + "label": "cim:ACDCTerminal.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:ACDCTerminal.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "sequenceNumber": { + "label": "cim:ACDCTerminal.sequenceNumber", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "OperationalLimitSet": { + "rdf_type": " rdf:ID=\"", + "label": "cim:OperationalLimitSet", + "fields": { + "Terminal": { + "label": "cim:OperationalLimitSet.Terminal", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "OperationalLimitValue": { + "label": "cim:OperationalLimitSet.OperationalLimitValue", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimit.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimit." + }, + "Equipment": { + "label": "cim:OperationalLimitSet.Equipment", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "OperationalLimitType": { + "rdf_type": " rdf:ID=\"", + "label": "cim:OperationalLimitType", + "fields": { + "direction": { + "label": "cim:OperationalLimitType.direction", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitDirectionKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitDirectionKind." + }, + "acceptableDuration": { + "label": "cim:OperationalLimitType.acceptableDuration", + "data_type": "Seconds", + "data_type_prim": "Float" + }, + "limitType": { + "label": "entsoe:OperationalLimitType.limitType", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#LimitTypeKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#LimitTypeKind." + }, + "OperationalLimit": { + "label": "cim:OperationalLimitType.OperationalLimit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimit.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimit." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "CurrentLimit": { + "rdf_type": " rdf:ID=\"", + "label": "cim:CurrentLimit", + "fields": { + "value": { + "label": "cim:CurrentLimit.value", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "OperationalLimitType": { + "label": "cim:OperationalLimit.OperationalLimitType", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "OperationalLimitSet": { + "label": "cim:OperationalLimit.OperationalLimitSet", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "VoltageLimit": { + "rdf_type": " rdf:ID=\"", + "label": "cim:VoltageLimit", + "fields": { + "value": { + "label": "cim:VoltageLimit.value", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "OperationalLimitType": { + "label": "cim:OperationalLimit.OperationalLimitType", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "OperationalLimitSet": { + "label": "cim:OperationalLimit.OperationalLimitSet", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCNode": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCNode", + "fields": { + "DCTerminals": { + "label": "cim:DCNode.DCTerminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCBaseTerminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCBaseTerminal." + }, + "DCEquipmentContainer": { + "label": "cim:DCNode.DCEquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCEquipmentContainer": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCEquipmentContainer", + "fields": { + "DCNodes": { + "label": "cim:DCEquipmentContainer.DCNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCNode." + }, + "Equipments": { + "label": "cim:EquipmentContainer.Equipments", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment." + }, + "ConnectivityNodes": { + "label": "cim:ConnectivityNodeContainer.ConnectivityNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCConverterUnit": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCConverterUnit", + "fields": { + "operationMode": { + "label": "cim:DCConverterUnit.operationMode", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCConverterOperatingModeKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCConverterOperatingModeKind." + }, + "Substation": { + "label": "cim:DCConverterUnit.Substation", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DCNodes": { + "label": "cim:DCEquipmentContainer.DCNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCNode." + }, + "Equipments": { + "label": "cim:EquipmentContainer.Equipments", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment." + }, + "ConnectivityNodes": { + "label": "cim:ConnectivityNodeContainer.ConnectivityNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCLineSegment": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCLineSegment", + "fields": { + "capacitance": { + "label": "cim:DCLineSegment.capacitance", + "data_type": "Capacitance", + "data_type_prim": "Float" + }, + "inductance": { + "label": "cim:DCLineSegment.inductance", + "data_type": "Inductance", + "data_type_prim": "Float" + }, + "PerLengthParameter": { + "label": "cim:DCLineSegment.PerLengthParameter", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "length": { + "label": "cim:DCLineSegment.length", + "data_type": "Length", + "data_type_prim": "Float" + }, + "resistance": { + "label": "cim:DCLineSegment.resistance", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "DCTerminals": { + "label": "cim:DCConductingEquipment.DCTerminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal." + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "CsConverter": { + "rdf_type": " rdf:ID=\"", + "label": "cim:CsConverter", + "fields": { + "minAlpha": { + "label": "cim:CsConverter.minAlpha", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "ratedIdc": { + "label": "cim:CsConverter.ratedIdc", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "minIdc": { + "label": "cim:CsConverter.minIdc", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "maxGamma": { + "label": "cim:CsConverter.maxGamma", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "minGamma": { + "label": "cim:CsConverter.minGamma", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "maxAlpha": { + "label": "cim:CsConverter.maxAlpha", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "maxIdc": { + "label": "cim:CsConverter.maxIdc", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "PccTerminal": { + "label": "cim:ACDCConverter.PccTerminal", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "maxUdc": { + "label": "cim:ACDCConverter.maxUdc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "switchingLoss": { + "label": "cim:ACDCConverter.switchingLoss", + "data_type": "ActivePowerPerCurrentFlow", + "data_type_prim": "Float" + }, + "ratedUdc": { + "label": "cim:ACDCConverter.ratedUdc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "valveU0": { + "label": "cim:ACDCConverter.valveU0", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "DCTerminals": { + "label": "cim:ACDCConverter.DCTerminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ACDCConverterDCTerminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ACDCConverterDCTerminal." + }, + "baseS": { + "label": "cim:ACDCConverter.baseS", + "data_type": "ApparentPower", + "data_type_prim": "Float" + }, + "numberOfValves": { + "label": "cim:ACDCConverter.numberOfValves", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "minUdc": { + "label": "cim:ACDCConverter.minUdc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "idleLoss": { + "label": "cim:ACDCConverter.idleLoss", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "resistiveLoss": { + "label": "cim:ACDCConverter.resistiveLoss", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "VsConverter": { + "rdf_type": " rdf:ID=\"", + "label": "cim:VsConverter", + "fields": { + "maxValveCurrent": { + "label": "cim:VsConverter.maxValveCurrent", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "maxModulationIndex": { + "label": "cim:VsConverter.maxModulationIndex", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "CapabilityCurve": { + "label": "cim:VsConverter.CapabilityCurve", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "PccTerminal": { + "label": "cim:ACDCConverter.PccTerminal", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "maxUdc": { + "label": "cim:ACDCConverter.maxUdc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "switchingLoss": { + "label": "cim:ACDCConverter.switchingLoss", + "data_type": "ActivePowerPerCurrentFlow", + "data_type_prim": "Float" + }, + "ratedUdc": { + "label": "cim:ACDCConverter.ratedUdc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "valveU0": { + "label": "cim:ACDCConverter.valveU0", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "DCTerminals": { + "label": "cim:ACDCConverter.DCTerminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ACDCConverterDCTerminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ACDCConverterDCTerminal." + }, + "baseS": { + "label": "cim:ACDCConverter.baseS", + "data_type": "ApparentPower", + "data_type_prim": "Float" + }, + "numberOfValves": { + "label": "cim:ACDCConverter.numberOfValves", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "minUdc": { + "label": "cim:ACDCConverter.minUdc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "idleLoss": { + "label": "cim:ACDCConverter.idleLoss", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "resistiveLoss": { + "label": "cim:ACDCConverter.resistiveLoss", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCTerminal": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCTerminal", + "fields": { + "DCConductingEquipment": { + "label": "cim:DCTerminal.DCConductingEquipment", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DCNode": { + "label": "cim:DCBaseTerminal.DCNode", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "BusNameMarker": { + "label": "cim:ACDCTerminal.BusNameMarker", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "OperationalLimitSet": { + "label": "cim:ACDCTerminal.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:ACDCTerminal.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "sequenceNumber": { + "label": "cim:ACDCTerminal.sequenceNumber", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ACDCConverterDCTerminal": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ACDCConverterDCTerminal", + "fields": { + "polarity": { + "label": "cim:ACDCConverterDCTerminal.polarity", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCPolarityKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCPolarityKind." + }, + "DCConductingEquipment": { + "label": "cim:ACDCConverterDCTerminal.DCConductingEquipment", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DCNode": { + "label": "cim:DCBaseTerminal.DCNode", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "BusNameMarker": { + "label": "cim:ACDCTerminal.BusNameMarker", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "OperationalLimitSet": { + "label": "cim:ACDCTerminal.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:ACDCTerminal.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "sequenceNumber": { + "label": "cim:ACDCTerminal.sequenceNumber", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Breaker": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Breaker", + "fields": { + "SwitchSchedules": { + "label": "cim:Switch.SwitchSchedules", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SwitchSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SwitchSchedule." + }, + "ratedCurrent": { + "label": "cim:Switch.ratedCurrent", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "normalOpen": { + "label": "cim:Switch.normalOpen", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "retained": { + "label": "cim:Switch.retained", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Disconnector": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Disconnector", + "fields": { + "SwitchSchedules": { + "label": "cim:Switch.SwitchSchedules", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SwitchSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SwitchSchedule." + }, + "ratedCurrent": { + "label": "cim:Switch.ratedCurrent", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "normalOpen": { + "label": "cim:Switch.normalOpen", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "retained": { + "label": "cim:Switch.retained", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Switch": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Switch", + "fields": { + "SwitchSchedules": { + "label": "cim:Switch.SwitchSchedules", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SwitchSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SwitchSchedule." + }, + "ratedCurrent": { + "label": "cim:Switch.ratedCurrent", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "normalOpen": { + "label": "cim:Switch.normalOpen", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "retained": { + "label": "cim:Switch.retained", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "LoadBreakSwitch": { + "rdf_type": " rdf:ID=\"", + "label": "cim:LoadBreakSwitch", + "fields": { + "SwitchSchedules": { + "label": "cim:Switch.SwitchSchedules", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SwitchSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SwitchSchedule." + }, + "ratedCurrent": { + "label": "cim:Switch.ratedCurrent", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "normalOpen": { + "label": "cim:Switch.normalOpen", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "retained": { + "label": "cim:Switch.retained", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "EnergyConsumer": { + "rdf_type": " rdf:ID=\"", + "label": "cim:EnergyConsumer", + "fields": { + "LoadResponse": { + "label": "cim:EnergyConsumer.LoadResponse", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "pfixedPct": { + "label": "cim:EnergyConsumer.pfixedPct", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "qfixed": { + "label": "cim:EnergyConsumer.qfixed", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "qfixedPct": { + "label": "cim:EnergyConsumer.qfixedPct", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "pfixed": { + "label": "cim:EnergyConsumer.pfixed", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ConformLoad": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ConformLoad", + "fields": { + "LoadGroup": { + "label": "cim:ConformLoad.LoadGroup", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "LoadResponse": { + "label": "cim:EnergyConsumer.LoadResponse", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "pfixedPct": { + "label": "cim:EnergyConsumer.pfixedPct", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "qfixed": { + "label": "cim:EnergyConsumer.qfixed", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "qfixedPct": { + "label": "cim:EnergyConsumer.qfixedPct", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "pfixed": { + "label": "cim:EnergyConsumer.pfixed", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "NonConformLoad": { + "rdf_type": " rdf:ID=\"", + "label": "cim:NonConformLoad", + "fields": { + "LoadGroup": { + "label": "cim:NonConformLoad.LoadGroup", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "LoadResponse": { + "label": "cim:EnergyConsumer.LoadResponse", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "pfixedPct": { + "label": "cim:EnergyConsumer.pfixedPct", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "qfixed": { + "label": "cim:EnergyConsumer.qfixed", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "qfixedPct": { + "label": "cim:EnergyConsumer.qfixedPct", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "pfixed": { + "label": "cim:EnergyConsumer.pfixed", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "StationSupply": { + "rdf_type": " rdf:ID=\"", + "label": "cim:StationSupply", + "fields": { + "LoadResponse": { + "label": "cim:EnergyConsumer.LoadResponse", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "pfixedPct": { + "label": "cim:EnergyConsumer.pfixedPct", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "qfixed": { + "label": "cim:EnergyConsumer.qfixed", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "qfixedPct": { + "label": "cim:EnergyConsumer.qfixedPct", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "pfixed": { + "label": "cim:EnergyConsumer.pfixed", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "GeneratingUnit": { + "rdf_type": " rdf:ID=\"", + "label": "cim:GeneratingUnit", + "fields": { + "RotatingMachine": { + "label": "cim:GeneratingUnit.RotatingMachine", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RotatingMachine.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RotatingMachine." + }, + "maxOperatingP": { + "label": "cim:GeneratingUnit.maxOperatingP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "longPF": { + "label": "cim:GeneratingUnit.longPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "variableCost": { + "label": "cim:GeneratingUnit.variableCost", + "data_type": "Money", + "data_type_prim": "Decimal" + }, + "minOperatingP": { + "label": "cim:GeneratingUnit.minOperatingP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "shortPF": { + "label": "cim:GeneratingUnit.shortPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "totalEfficiency": { + "label": "cim:GeneratingUnit.totalEfficiency", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "ratedGrossMinP": { + "label": "cim:GeneratingUnit.ratedGrossMinP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ControlAreaGeneratingUnit": { + "label": "cim:GeneratingUnit.ControlAreaGeneratingUnit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaGeneratingUnit.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaGeneratingUnit." + }, + "startupCost": { + "label": "cim:GeneratingUnit.startupCost", + "data_type": "Money", + "data_type_prim": "Decimal" + }, + "governorSCD": { + "label": "cim:GeneratingUnit.governorSCD", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "GrossToNetActivePowerCurves": { + "label": "cim:GeneratingUnit.GrossToNetActivePowerCurves", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GrossToNetActivePowerCurve.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GrossToNetActivePowerCurve." + }, + "maximumAllowableSpinningReserve": { + "label": "cim:GeneratingUnit.maximumAllowableSpinningReserve", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ratedGrossMaxP": { + "label": "cim:GeneratingUnit.ratedGrossMaxP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ratedNetMaxP": { + "label": "cim:GeneratingUnit.ratedNetMaxP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "genControlSource": { + "label": "cim:GeneratingUnit.genControlSource", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GeneratorControlSource.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GeneratorControlSource." + }, + "initialP": { + "label": "cim:GeneratingUnit.initialP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "nominalP": { + "label": "cim:GeneratingUnit.nominalP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "WindGeneratingUnit": { + "rdf_type": " rdf:ID=\"", + "label": "cim:WindGeneratingUnit", + "fields": { + "windGenUnitType": { + "label": "cim:WindGeneratingUnit.windGenUnitType", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#WindGenUnitKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#WindGenUnitKind." + }, + "RotatingMachine": { + "label": "cim:GeneratingUnit.RotatingMachine", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RotatingMachine.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RotatingMachine." + }, + "maxOperatingP": { + "label": "cim:GeneratingUnit.maxOperatingP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "longPF": { + "label": "cim:GeneratingUnit.longPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "variableCost": { + "label": "cim:GeneratingUnit.variableCost", + "data_type": "Money", + "data_type_prim": "Decimal" + }, + "minOperatingP": { + "label": "cim:GeneratingUnit.minOperatingP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "shortPF": { + "label": "cim:GeneratingUnit.shortPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "totalEfficiency": { + "label": "cim:GeneratingUnit.totalEfficiency", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "ratedGrossMinP": { + "label": "cim:GeneratingUnit.ratedGrossMinP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ControlAreaGeneratingUnit": { + "label": "cim:GeneratingUnit.ControlAreaGeneratingUnit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaGeneratingUnit.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaGeneratingUnit." + }, + "startupCost": { + "label": "cim:GeneratingUnit.startupCost", + "data_type": "Money", + "data_type_prim": "Decimal" + }, + "governorSCD": { + "label": "cim:GeneratingUnit.governorSCD", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "GrossToNetActivePowerCurves": { + "label": "cim:GeneratingUnit.GrossToNetActivePowerCurves", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GrossToNetActivePowerCurve.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GrossToNetActivePowerCurve." + }, + "maximumAllowableSpinningReserve": { + "label": "cim:GeneratingUnit.maximumAllowableSpinningReserve", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ratedGrossMaxP": { + "label": "cim:GeneratingUnit.ratedGrossMaxP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ratedNetMaxP": { + "label": "cim:GeneratingUnit.ratedNetMaxP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "genControlSource": { + "label": "cim:GeneratingUnit.genControlSource", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GeneratorControlSource.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GeneratorControlSource." + }, + "initialP": { + "label": "cim:GeneratingUnit.initialP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "nominalP": { + "label": "cim:GeneratingUnit.nominalP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "HydroGeneratingUnit": { + "rdf_type": " rdf:ID=\"", + "label": "cim:HydroGeneratingUnit", + "fields": { + "energyConversionCapability": { + "label": "cim:HydroGeneratingUnit.energyConversionCapability", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#HydroEnergyConversionKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#HydroEnergyConversionKind." + }, + "HydroPowerPlant": { + "label": "cim:HydroGeneratingUnit.HydroPowerPlant", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "RotatingMachine": { + "label": "cim:GeneratingUnit.RotatingMachine", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RotatingMachine.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RotatingMachine." + }, + "maxOperatingP": { + "label": "cim:GeneratingUnit.maxOperatingP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "longPF": { + "label": "cim:GeneratingUnit.longPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "variableCost": { + "label": "cim:GeneratingUnit.variableCost", + "data_type": "Money", + "data_type_prim": "Decimal" + }, + "minOperatingP": { + "label": "cim:GeneratingUnit.minOperatingP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "shortPF": { + "label": "cim:GeneratingUnit.shortPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "totalEfficiency": { + "label": "cim:GeneratingUnit.totalEfficiency", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "ratedGrossMinP": { + "label": "cim:GeneratingUnit.ratedGrossMinP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ControlAreaGeneratingUnit": { + "label": "cim:GeneratingUnit.ControlAreaGeneratingUnit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaGeneratingUnit.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaGeneratingUnit." + }, + "startupCost": { + "label": "cim:GeneratingUnit.startupCost", + "data_type": "Money", + "data_type_prim": "Decimal" + }, + "governorSCD": { + "label": "cim:GeneratingUnit.governorSCD", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "GrossToNetActivePowerCurves": { + "label": "cim:GeneratingUnit.GrossToNetActivePowerCurves", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GrossToNetActivePowerCurve.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GrossToNetActivePowerCurve." + }, + "maximumAllowableSpinningReserve": { + "label": "cim:GeneratingUnit.maximumAllowableSpinningReserve", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ratedGrossMaxP": { + "label": "cim:GeneratingUnit.ratedGrossMaxP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ratedNetMaxP": { + "label": "cim:GeneratingUnit.ratedNetMaxP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "genControlSource": { + "label": "cim:GeneratingUnit.genControlSource", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GeneratorControlSource.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GeneratorControlSource." + }, + "initialP": { + "label": "cim:GeneratingUnit.initialP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "nominalP": { + "label": "cim:GeneratingUnit.nominalP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "SolarGeneratingUnit": { + "rdf_type": " rdf:ID=\"", + "label": "cim:SolarGeneratingUnit", + "fields": { + "RotatingMachine": { + "label": "cim:GeneratingUnit.RotatingMachine", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RotatingMachine.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RotatingMachine." + }, + "maxOperatingP": { + "label": "cim:GeneratingUnit.maxOperatingP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "longPF": { + "label": "cim:GeneratingUnit.longPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "variableCost": { + "label": "cim:GeneratingUnit.variableCost", + "data_type": "Money", + "data_type_prim": "Decimal" + }, + "minOperatingP": { + "label": "cim:GeneratingUnit.minOperatingP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "shortPF": { + "label": "cim:GeneratingUnit.shortPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "totalEfficiency": { + "label": "cim:GeneratingUnit.totalEfficiency", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "ratedGrossMinP": { + "label": "cim:GeneratingUnit.ratedGrossMinP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ControlAreaGeneratingUnit": { + "label": "cim:GeneratingUnit.ControlAreaGeneratingUnit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaGeneratingUnit.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaGeneratingUnit." + }, + "startupCost": { + "label": "cim:GeneratingUnit.startupCost", + "data_type": "Money", + "data_type_prim": "Decimal" + }, + "governorSCD": { + "label": "cim:GeneratingUnit.governorSCD", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "GrossToNetActivePowerCurves": { + "label": "cim:GeneratingUnit.GrossToNetActivePowerCurves", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GrossToNetActivePowerCurve.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GrossToNetActivePowerCurve." + }, + "maximumAllowableSpinningReserve": { + "label": "cim:GeneratingUnit.maximumAllowableSpinningReserve", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ratedGrossMaxP": { + "label": "cim:GeneratingUnit.ratedGrossMaxP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ratedNetMaxP": { + "label": "cim:GeneratingUnit.ratedNetMaxP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "genControlSource": { + "label": "cim:GeneratingUnit.genControlSource", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GeneratorControlSource.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GeneratorControlSource." + }, + "initialP": { + "label": "cim:GeneratingUnit.initialP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "nominalP": { + "label": "cim:GeneratingUnit.nominalP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ThermalGeneratingUnit": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ThermalGeneratingUnit", + "fields": { + "FossilFuels": { + "label": "cim:ThermalGeneratingUnit.FossilFuels", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#FossilFuel.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#FossilFuel." + }, + "RotatingMachine": { + "label": "cim:GeneratingUnit.RotatingMachine", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RotatingMachine.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RotatingMachine." + }, + "maxOperatingP": { + "label": "cim:GeneratingUnit.maxOperatingP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "longPF": { + "label": "cim:GeneratingUnit.longPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "variableCost": { + "label": "cim:GeneratingUnit.variableCost", + "data_type": "Money", + "data_type_prim": "Decimal" + }, + "minOperatingP": { + "label": "cim:GeneratingUnit.minOperatingP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "shortPF": { + "label": "cim:GeneratingUnit.shortPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "totalEfficiency": { + "label": "cim:GeneratingUnit.totalEfficiency", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "ratedGrossMinP": { + "label": "cim:GeneratingUnit.ratedGrossMinP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ControlAreaGeneratingUnit": { + "label": "cim:GeneratingUnit.ControlAreaGeneratingUnit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaGeneratingUnit.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaGeneratingUnit." + }, + "startupCost": { + "label": "cim:GeneratingUnit.startupCost", + "data_type": "Money", + "data_type_prim": "Decimal" + }, + "governorSCD": { + "label": "cim:GeneratingUnit.governorSCD", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "GrossToNetActivePowerCurves": { + "label": "cim:GeneratingUnit.GrossToNetActivePowerCurves", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GrossToNetActivePowerCurve.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GrossToNetActivePowerCurve." + }, + "maximumAllowableSpinningReserve": { + "label": "cim:GeneratingUnit.maximumAllowableSpinningReserve", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ratedGrossMaxP": { + "label": "cim:GeneratingUnit.ratedGrossMaxP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ratedNetMaxP": { + "label": "cim:GeneratingUnit.ratedNetMaxP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "genControlSource": { + "label": "cim:GeneratingUnit.genControlSource", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GeneratorControlSource.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GeneratorControlSource." + }, + "initialP": { + "label": "cim:GeneratingUnit.initialP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "nominalP": { + "label": "cim:GeneratingUnit.nominalP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "NuclearGeneratingUnit": { + "rdf_type": " rdf:ID=\"", + "label": "cim:NuclearGeneratingUnit", + "fields": { + "RotatingMachine": { + "label": "cim:GeneratingUnit.RotatingMachine", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RotatingMachine.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RotatingMachine." + }, + "maxOperatingP": { + "label": "cim:GeneratingUnit.maxOperatingP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "longPF": { + "label": "cim:GeneratingUnit.longPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "variableCost": { + "label": "cim:GeneratingUnit.variableCost", + "data_type": "Money", + "data_type_prim": "Decimal" + }, + "minOperatingP": { + "label": "cim:GeneratingUnit.minOperatingP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "shortPF": { + "label": "cim:GeneratingUnit.shortPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "totalEfficiency": { + "label": "cim:GeneratingUnit.totalEfficiency", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "ratedGrossMinP": { + "label": "cim:GeneratingUnit.ratedGrossMinP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ControlAreaGeneratingUnit": { + "label": "cim:GeneratingUnit.ControlAreaGeneratingUnit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaGeneratingUnit.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlAreaGeneratingUnit." + }, + "startupCost": { + "label": "cim:GeneratingUnit.startupCost", + "data_type": "Money", + "data_type_prim": "Decimal" + }, + "governorSCD": { + "label": "cim:GeneratingUnit.governorSCD", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "GrossToNetActivePowerCurves": { + "label": "cim:GeneratingUnit.GrossToNetActivePowerCurves", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GrossToNetActivePowerCurve.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GrossToNetActivePowerCurve." + }, + "maximumAllowableSpinningReserve": { + "label": "cim:GeneratingUnit.maximumAllowableSpinningReserve", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ratedGrossMaxP": { + "label": "cim:GeneratingUnit.ratedGrossMaxP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "ratedNetMaxP": { + "label": "cim:GeneratingUnit.ratedNetMaxP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "genControlSource": { + "label": "cim:GeneratingUnit.genControlSource", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GeneratorControlSource.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#GeneratorControlSource." + }, + "initialP": { + "label": "cim:GeneratingUnit.initialP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "nominalP": { + "label": "cim:GeneratingUnit.nominalP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "RegulatingControl": { + "rdf_type": " rdf:ID=\"", + "label": "cim:RegulatingControl", + "fields": { + "RegulatingCondEq": { + "label": "cim:RegulatingControl.RegulatingCondEq", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegulatingCondEq.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegulatingCondEq." + }, + "Terminal": { + "label": "cim:RegulatingControl.Terminal", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "RegulationSchedule": { + "label": "cim:RegulatingControl.RegulationSchedule", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegulationSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegulationSchedule." + }, + "mode": { + "label": "cim:RegulatingControl.mode", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegulatingControlModeKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegulatingControlModeKind." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "SynchronousMachine": { + "rdf_type": " rdf:ID=\"", + "label": "cim:SynchronousMachine", + "fields": { + "voltageRegulationRange": { + "label": "cim:SynchronousMachine.voltageRegulationRange", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "shortCircuitRotorType": { + "label": "cim:SynchronousMachine.shortCircuitRotorType", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ShortCircuitRotorKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ShortCircuitRotorKind." + }, + "ikk": { + "label": "cim:SynchronousMachine.ikk", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "x2": { + "label": "cim:SynchronousMachine.x2", + "data_type": "PU", + "data_type_prim": "Float" + }, + "minQ": { + "label": "cim:SynchronousMachine.minQ", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "mu": { + "label": "cim:SynchronousMachine.mu", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "r2": { + "label": "cim:SynchronousMachine.r2", + "data_type": "PU", + "data_type_prim": "Float" + }, + "InitialReactiveCapabilityCurve": { + "label": "cim:SynchronousMachine.InitialReactiveCapabilityCurve", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "type": { + "label": "cim:SynchronousMachine.type", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SynchronousMachineKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SynchronousMachineKind." + }, + "earthingStarPointX": { + "label": "cim:SynchronousMachine.earthingStarPointX", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "satDirectSyncX": { + "label": "cim:SynchronousMachine.satDirectSyncX", + "data_type": "PU", + "data_type_prim": "Float" + }, + "r": { + "label": "cim:SynchronousMachine.r", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "maxQ": { + "label": "cim:SynchronousMachine.maxQ", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "satDirectTransX": { + "label": "cim:SynchronousMachine.satDirectTransX", + "data_type": "PU", + "data_type_prim": "Float" + }, + "r0": { + "label": "cim:SynchronousMachine.r0", + "data_type": "PU", + "data_type_prim": "Float" + }, + "satDirectSubtransX": { + "label": "cim:SynchronousMachine.satDirectSubtransX", + "data_type": "PU", + "data_type_prim": "Float" + }, + "qPercent": { + "label": "cim:SynchronousMachine.qPercent", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "earthingStarPointR": { + "label": "cim:SynchronousMachine.earthingStarPointR", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "earthing": { + "label": "cim:SynchronousMachine.earthing", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "x0": { + "label": "cim:SynchronousMachine.x0", + "data_type": "PU", + "data_type_prim": "Float" + }, + "ratedS": { + "label": "cim:RotatingMachine.ratedS", + "data_type": "ApparentPower", + "data_type_prim": "Float" + }, + "HydroPump": { + "label": "cim:RotatingMachine.HydroPump", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#HydroPump.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#HydroPump." + }, + "ratedU": { + "label": "cim:RotatingMachine.ratedU", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "GeneratingUnit": { + "label": "cim:RotatingMachine.GeneratingUnit", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "ratedPowerFactor": { + "label": "cim:RotatingMachine.ratedPowerFactor", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "RegulatingControl": { + "label": "cim:RegulatingCondEq.RegulatingControl", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "AsynchronousMachine": { + "rdf_type": " rdf:ID=\"", + "label": "cim:AsynchronousMachine", + "fields": { + "polePairNumber": { + "label": "cim:AsynchronousMachine.polePairNumber", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "ratedMechanicalPower": { + "label": "cim:AsynchronousMachine.ratedMechanicalPower", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "efficiency": { + "label": "cim:AsynchronousMachine.efficiency", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "reversible": { + "label": "cim:AsynchronousMachine.reversible", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "rxLockedRotorRatio": { + "label": "cim:AsynchronousMachine.rxLockedRotorRatio", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "nominalSpeed": { + "label": "cim:AsynchronousMachine.nominalSpeed", + "data_type": "RotationSpeed", + "data_type_prim": "Float" + }, + "nominalFrequency": { + "label": "cim:AsynchronousMachine.nominalFrequency", + "data_type": "Frequency", + "data_type_prim": "Float" + }, + "iaIrRatio": { + "label": "cim:AsynchronousMachine.iaIrRatio", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "converterFedDrive": { + "label": "cim:AsynchronousMachine.converterFedDrive", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "ratedS": { + "label": "cim:RotatingMachine.ratedS", + "data_type": "ApparentPower", + "data_type_prim": "Float" + }, + "HydroPump": { + "label": "cim:RotatingMachine.HydroPump", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#HydroPump.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#HydroPump." + }, + "ratedU": { + "label": "cim:RotatingMachine.ratedU", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "GeneratingUnit": { + "label": "cim:RotatingMachine.GeneratingUnit", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "ratedPowerFactor": { + "label": "cim:RotatingMachine.ratedPowerFactor", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "RegulatingControl": { + "label": "cim:RegulatingCondEq.RegulatingControl", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "EnergySource": { + "rdf_type": " rdf:ID=\"", + "label": "cim:EnergySource", + "fields": { + "EnergySchedulingType": { + "label": "cim:EnergySource.EnergySchedulingType", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "rn": { + "label": "cim:EnergySource.rn", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "x": { + "label": "cim:EnergySource.x", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "x0": { + "label": "cim:EnergySource.x0", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "voltageAngle": { + "label": "cim:EnergySource.voltageAngle", + "data_type": "AngleRadians", + "data_type_prim": "Float" + }, + "r": { + "label": "cim:EnergySource.r", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "nominalVoltage": { + "label": "cim:EnergySource.nominalVoltage", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "voltageMagnitude": { + "label": "cim:EnergySource.voltageMagnitude", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "r0": { + "label": "cim:EnergySource.r0", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "xn": { + "label": "cim:EnergySource.xn", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "EnergySchedulingType": { + "rdf_type": " rdf:ID=\"", + "label": "entsoe:EnergySchedulingType", + "fields": { + "EnergySource": { + "label": "cim:EnergySchedulingType.EnergySource", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#EnergySource.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#EnergySource." + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "StaticVarCompensator": { + "rdf_type": " rdf:ID=\"", + "label": "cim:StaticVarCompensator", + "fields": { + "inductiveRating": { + "label": "cim:StaticVarCompensator.inductiveRating", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "sVCControlMode": { + "label": "cim:StaticVarCompensator.sVCControlMode", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SVCControlMode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SVCControlMode." + }, + "slope": { + "label": "cim:StaticVarCompensator.slope", + "data_type": "VoltagePerReactivePower", + "data_type_prim": "Float" + }, + "voltageSetPoint": { + "label": "cim:StaticVarCompensator.voltageSetPoint", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "capacitiveRating": { + "label": "cim:StaticVarCompensator.capacitiveRating", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "RegulatingControl": { + "label": "cim:RegulatingCondEq.RegulatingControl", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "PowerTransformer": { + "rdf_type": " rdf:ID=\"", + "label": "cim:PowerTransformer", + "fields": { + "operationalValuesConsidered": { + "label": "cim:PowerTransformer.operationalValuesConsidered", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "beforeShCircuitHighestOperatingCurrent": { + "label": "cim:PowerTransformer.beforeShCircuitHighestOperatingCurrent", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "highSideMinOperatingU": { + "label": "cim:PowerTransformer.highSideMinOperatingU", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "PowerTransformerEnd": { + "label": "cim:PowerTransformer.PowerTransformerEnd", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PowerTransformerEnd.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PowerTransformerEnd." + }, + "beforeShCircuitHighestOperatingVoltage": { + "label": "cim:PowerTransformer.beforeShCircuitHighestOperatingVoltage", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "isPartOfGeneratorUnit": { + "label": "cim:PowerTransformer.isPartOfGeneratorUnit", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "beforeShortCircuitAnglePf": { + "label": "cim:PowerTransformer.beforeShortCircuitAnglePf", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "PowerTransformerEnd": { + "rdf_type": " rdf:ID=\"", + "label": "cim:PowerTransformerEnd", + "fields": { + "g": { + "label": "cim:PowerTransformerEnd.g", + "data_type": "Conductance", + "data_type_prim": "Float" + }, + "phaseAngleClock": { + "label": "cim:PowerTransformerEnd.phaseAngleClock", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "r": { + "label": "cim:PowerTransformerEnd.r", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "PowerTransformer": { + "label": "cim:PowerTransformerEnd.PowerTransformer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "g0": { + "label": "cim:PowerTransformerEnd.g0", + "data_type": "Conductance", + "data_type_prim": "Float" + }, + "x": { + "label": "cim:PowerTransformerEnd.x", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "b": { + "label": "cim:PowerTransformerEnd.b", + "data_type": "Susceptance", + "data_type_prim": "Float" + }, + "ratedU": { + "label": "cim:PowerTransformerEnd.ratedU", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "x0": { + "label": "cim:PowerTransformerEnd.x0", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "ratedS": { + "label": "cim:PowerTransformerEnd.ratedS", + "data_type": "ApparentPower", + "data_type_prim": "Float" + }, + "connectionKind": { + "label": "cim:PowerTransformerEnd.connectionKind", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#WindingConnection.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#WindingConnection." + }, + "b0": { + "label": "cim:PowerTransformerEnd.b0", + "data_type": "Susceptance", + "data_type_prim": "Float" + }, + "r0": { + "label": "cim:PowerTransformerEnd.r0", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "rground": { + "label": "cim:TransformerEnd.rground", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "BaseVoltage": { + "label": "cim:TransformerEnd.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "PhaseTapChanger": { + "label": "cim:TransformerEnd.PhaseTapChanger", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseTapChanger.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseTapChanger." + }, + "endNumber": { + "label": "cim:TransformerEnd.endNumber", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "grounded": { + "label": "cim:TransformerEnd.grounded", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "xground": { + "label": "cim:TransformerEnd.xground", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "RatioTapChanger": { + "label": "cim:TransformerEnd.RatioTapChanger", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RatioTapChanger.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RatioTapChanger." + }, + "Terminal": { + "label": "cim:TransformerEnd.Terminal", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "TapChangerControl": { + "rdf_type": " rdf:ID=\"", + "label": "cim:TapChangerControl", + "fields": { + "TapChanger": { + "label": "cim:TapChangerControl.TapChanger", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TapChanger.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TapChanger." + }, + "RegulatingCondEq": { + "label": "cim:RegulatingControl.RegulatingCondEq", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegulatingCondEq.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegulatingCondEq." + }, + "Terminal": { + "label": "cim:RegulatingControl.Terminal", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "RegulationSchedule": { + "label": "cim:RegulatingControl.RegulationSchedule", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegulationSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegulationSchedule." + }, + "mode": { + "label": "cim:RegulatingControl.mode", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegulatingControlModeKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegulatingControlModeKind." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "RatioTapChanger": { + "rdf_type": " rdf:ID=\"", + "label": "cim:RatioTapChanger", + "fields": { + "stepVoltageIncrement": { + "label": "cim:RatioTapChanger.stepVoltageIncrement", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "TransformerEnd": { + "label": "cim:RatioTapChanger.TransformerEnd", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "tculControlMode": { + "label": "cim:RatioTapChanger.tculControlMode", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TransformerControlMode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TransformerControlMode." + }, + "RatioTapChangerTable": { + "label": "cim:RatioTapChanger.RatioTapChangerTable", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "neutralU": { + "label": "cim:TapChanger.neutralU", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "normalStep": { + "label": "cim:TapChanger.normalStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "neutralStep": { + "label": "cim:TapChanger.neutralStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "TapChangerControl": { + "label": "cim:TapChanger.TapChangerControl", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "highStep": { + "label": "cim:TapChanger.highStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "ltcFlag": { + "label": "cim:TapChanger.ltcFlag", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "lowStep": { + "label": "cim:TapChanger.lowStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "TapSchedules": { + "label": "cim:TapChanger.TapSchedules", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TapSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TapSchedule." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "PhaseTapChangerLinear": { + "rdf_type": " rdf:ID=\"", + "label": "cim:PhaseTapChangerLinear", + "fields": { + "xMax": { + "label": "cim:PhaseTapChangerLinear.xMax", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "xMin": { + "label": "cim:PhaseTapChangerLinear.xMin", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "stepPhaseShiftIncrement": { + "label": "cim:PhaseTapChangerLinear.stepPhaseShiftIncrement", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "TransformerEnd": { + "label": "cim:PhaseTapChanger.TransformerEnd", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "neutralU": { + "label": "cim:TapChanger.neutralU", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "normalStep": { + "label": "cim:TapChanger.normalStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "neutralStep": { + "label": "cim:TapChanger.neutralStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "TapChangerControl": { + "label": "cim:TapChanger.TapChangerControl", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "highStep": { + "label": "cim:TapChanger.highStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "ltcFlag": { + "label": "cim:TapChanger.ltcFlag", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "lowStep": { + "label": "cim:TapChanger.lowStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "TapSchedules": { + "label": "cim:TapChanger.TapSchedules", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TapSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TapSchedule." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "PhaseTapChangerAsymmetrical": { + "rdf_type": " rdf:ID=\"", + "label": "cim:PhaseTapChangerAsymmetrical", + "fields": { + "windingConnectionAngle": { + "label": "cim:PhaseTapChangerAsymmetrical.windingConnectionAngle", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "xMin": { + "label": "cim:PhaseTapChangerNonLinear.xMin", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "xMax": { + "label": "cim:PhaseTapChangerNonLinear.xMax", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "voltageStepIncrement": { + "label": "cim:PhaseTapChangerNonLinear.voltageStepIncrement", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "TransformerEnd": { + "label": "cim:PhaseTapChanger.TransformerEnd", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "neutralU": { + "label": "cim:TapChanger.neutralU", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "normalStep": { + "label": "cim:TapChanger.normalStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "neutralStep": { + "label": "cim:TapChanger.neutralStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "TapChangerControl": { + "label": "cim:TapChanger.TapChangerControl", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "highStep": { + "label": "cim:TapChanger.highStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "ltcFlag": { + "label": "cim:TapChanger.ltcFlag", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "lowStep": { + "label": "cim:TapChanger.lowStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "TapSchedules": { + "label": "cim:TapChanger.TapSchedules", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TapSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TapSchedule." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "PhaseTapChangerSymmetrical": { + "rdf_type": " rdf:ID=\"", + "label": "cim:PhaseTapChangerSymmetrical", + "fields": { + "xMin": { + "label": "cim:PhaseTapChangerNonLinear.xMin", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "xMax": { + "label": "cim:PhaseTapChangerNonLinear.xMax", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "voltageStepIncrement": { + "label": "cim:PhaseTapChangerNonLinear.voltageStepIncrement", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "TransformerEnd": { + "label": "cim:PhaseTapChanger.TransformerEnd", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "neutralU": { + "label": "cim:TapChanger.neutralU", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "normalStep": { + "label": "cim:TapChanger.normalStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "neutralStep": { + "label": "cim:TapChanger.neutralStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "TapChangerControl": { + "label": "cim:TapChanger.TapChangerControl", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "highStep": { + "label": "cim:TapChanger.highStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "ltcFlag": { + "label": "cim:TapChanger.ltcFlag", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "lowStep": { + "label": "cim:TapChanger.lowStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "TapSchedules": { + "label": "cim:TapChanger.TapSchedules", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TapSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TapSchedule." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "PhaseTapChangerTabular": { + "rdf_type": " rdf:ID=\"", + "label": "cim:PhaseTapChangerTabular", + "fields": { + "PhaseTapChangerTable": { + "label": "cim:PhaseTapChangerTabular.PhaseTapChangerTable", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "TransformerEnd": { + "label": "cim:PhaseTapChanger.TransformerEnd", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "neutralU": { + "label": "cim:TapChanger.neutralU", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "normalStep": { + "label": "cim:TapChanger.normalStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "neutralStep": { + "label": "cim:TapChanger.neutralStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "TapChangerControl": { + "label": "cim:TapChanger.TapChangerControl", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "highStep": { + "label": "cim:TapChanger.highStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "ltcFlag": { + "label": "cim:TapChanger.ltcFlag", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "lowStep": { + "label": "cim:TapChanger.lowStep", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "TapSchedules": { + "label": "cim:TapChanger.TapSchedules", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TapSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#TapSchedule." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "PhaseTapChangerTablePoint": { + "rdf_type": " rdf:ID=\"", + "label": "cim:PhaseTapChangerTablePoint", + "fields": { + "PhaseTapChangerTable": { + "label": "cim:PhaseTapChangerTablePoint.PhaseTapChangerTable", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "angle": { + "label": "cim:PhaseTapChangerTablePoint.angle", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "r": { + "label": "cim:TapChangerTablePoint.r", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "g": { + "label": "cim:TapChangerTablePoint.g", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "b": { + "label": "cim:TapChangerTablePoint.b", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "ratio": { + "label": "cim:TapChangerTablePoint.ratio", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "step": { + "label": "cim:TapChangerTablePoint.step", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "x": { + "label": "cim:TapChangerTablePoint.x", + "data_type": "PerCent", + "data_type_prim": "Float" + } + } + }, + "RatioTapChangerTable": { + "rdf_type": " rdf:ID=\"", + "label": "cim:RatioTapChangerTable", + "fields": { + "RatioTapChangerTablePoint": { + "label": "cim:RatioTapChangerTable.RatioTapChangerTablePoint", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RatioTapChangerTablePoint.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RatioTapChangerTablePoint." + }, + "RatioTapChanger": { + "label": "cim:RatioTapChangerTable.RatioTapChanger", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RatioTapChanger.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RatioTapChanger." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "RatioTapChangerTablePoint": { + "rdf_type": " rdf:ID=\"", + "label": "cim:RatioTapChangerTablePoint", + "fields": { + "RatioTapChangerTable": { + "label": "cim:RatioTapChangerTablePoint.RatioTapChangerTable", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "r": { + "label": "cim:TapChangerTablePoint.r", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "g": { + "label": "cim:TapChangerTablePoint.g", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "b": { + "label": "cim:TapChangerTablePoint.b", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "ratio": { + "label": "cim:TapChangerTablePoint.ratio", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "step": { + "label": "cim:TapChangerTablePoint.step", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "x": { + "label": "cim:TapChangerTablePoint.x", + "data_type": "PerCent", + "data_type_prim": "Float" + } + } + }, + "LinearShuntCompensator": { + "rdf_type": " rdf:ID=\"", + "label": "cim:LinearShuntCompensator", + "fields": { + "b0PerSection": { + "label": "cim:LinearShuntCompensator.b0PerSection", + "data_type": "Susceptance", + "data_type_prim": "Float" + }, + "bPerSection": { + "label": "cim:LinearShuntCompensator.bPerSection", + "data_type": "Susceptance", + "data_type_prim": "Float" + }, + "gPerSection": { + "label": "cim:LinearShuntCompensator.gPerSection", + "data_type": "Conductance", + "data_type_prim": "Float" + }, + "g0PerSection": { + "label": "cim:LinearShuntCompensator.g0PerSection", + "data_type": "Conductance", + "data_type_prim": "Float" + }, + "maximumSections": { + "label": "cim:ShuntCompensator.maximumSections", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "switchOnCount": { + "label": "cim:ShuntCompensator.switchOnCount", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "aVRDelay": { + "label": "cim:ShuntCompensator.aVRDelay", + "data_type": "Seconds", + "data_type_prim": "Float" + }, + "normalSections": { + "label": "cim:ShuntCompensator.normalSections", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "voltageSensitivity": { + "label": "cim:ShuntCompensator.voltageSensitivity", + "data_type": "VoltagePerReactivePower", + "data_type_prim": "Float" + }, + "nomU": { + "label": "cim:ShuntCompensator.nomU", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "switchOnDate": { + "label": "cim:ShuntCompensator.switchOnDate", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "grounded": { + "label": "cim:ShuntCompensator.grounded", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "RegulatingControl": { + "label": "cim:RegulatingCondEq.RegulatingControl", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "NonlinearShuntCompensator": { + "rdf_type": " rdf:ID=\"", + "label": "cim:NonlinearShuntCompensator", + "fields": { + "NonlinearShuntCompensatorPoints": { + "label": "cim:NonlinearShuntCompensator.NonlinearShuntCompensatorPoints", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#NonlinearShuntCompensatorPoint.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#NonlinearShuntCompensatorPoint." + }, + "maximumSections": { + "label": "cim:ShuntCompensator.maximumSections", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "switchOnCount": { + "label": "cim:ShuntCompensator.switchOnCount", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "aVRDelay": { + "label": "cim:ShuntCompensator.aVRDelay", + "data_type": "Seconds", + "data_type_prim": "Float" + }, + "normalSections": { + "label": "cim:ShuntCompensator.normalSections", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "voltageSensitivity": { + "label": "cim:ShuntCompensator.voltageSensitivity", + "data_type": "VoltagePerReactivePower", + "data_type_prim": "Float" + }, + "nomU": { + "label": "cim:ShuntCompensator.nomU", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "switchOnDate": { + "label": "cim:ShuntCompensator.switchOnDate", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "grounded": { + "label": "cim:ShuntCompensator.grounded", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "RegulatingControl": { + "label": "cim:RegulatingCondEq.RegulatingControl", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "NonlinearShuntCompensatorPoint": { + "rdf_type": " rdf:ID=\"", + "label": "cim:NonlinearShuntCompensatorPoint", + "fields": { + "sectionNumber": { + "label": "cim:NonlinearShuntCompensatorPoint.sectionNumber", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "g": { + "label": "cim:NonlinearShuntCompensatorPoint.g", + "data_type": "Conductance", + "data_type_prim": "Float" + }, + "b0": { + "label": "cim:NonlinearShuntCompensatorPoint.b0", + "data_type": "Susceptance", + "data_type_prim": "Float" + }, + "b": { + "label": "cim:NonlinearShuntCompensatorPoint.b", + "data_type": "Susceptance", + "data_type_prim": "Float" + }, + "g0": { + "label": "cim:NonlinearShuntCompensatorPoint.g0", + "data_type": "Conductance", + "data_type_prim": "Float" + }, + "NonlinearShuntCompensator": { + "label": "cim:NonlinearShuntCompensatorPoint.NonlinearShuntCompensator", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + } + } + }, + "EquivalentBranch": { + "rdf_type": " rdf:ID=\"", + "label": "cim:EquivalentBranch", + "fields": { + "x21": { + "label": "cim:EquivalentBranch.x21", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "r21": { + "label": "cim:EquivalentBranch.r21", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "positiveX12": { + "label": "cim:EquivalentBranch.positiveX12", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "x": { + "label": "cim:EquivalentBranch.x", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "r": { + "label": "cim:EquivalentBranch.r", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "positiveR12": { + "label": "cim:EquivalentBranch.positiveR12", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "negativeR12": { + "label": "cim:EquivalentBranch.negativeR12", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "zeroR21": { + "label": "cim:EquivalentBranch.zeroR21", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "zeroR12": { + "label": "cim:EquivalentBranch.zeroR12", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "positiveX21": { + "label": "cim:EquivalentBranch.positiveX21", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "zeroX21": { + "label": "cim:EquivalentBranch.zeroX21", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "zeroX12": { + "label": "cim:EquivalentBranch.zeroX12", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "negativeX12": { + "label": "cim:EquivalentBranch.negativeX12", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "negativeR21": { + "label": "cim:EquivalentBranch.negativeR21", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "negativeX21": { + "label": "cim:EquivalentBranch.negativeX21", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "positiveR21": { + "label": "cim:EquivalentBranch.positiveR21", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "EquivalentNetwork": { + "label": "cim:EquivalentEquipment.EquivalentNetwork", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "EquivalentInjection": { + "rdf_type": " rdf:ID=\"", + "label": "cim:EquivalentInjection", + "fields": { + "minP": { + "label": "cim:EquivalentInjection.minP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "r0": { + "label": "cim:EquivalentInjection.r0", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "x": { + "label": "cim:EquivalentInjection.x", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "maxP": { + "label": "cim:EquivalentInjection.maxP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "x2": { + "label": "cim:EquivalentInjection.x2", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "r": { + "label": "cim:EquivalentInjection.r", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "ReactiveCapabilityCurve": { + "label": "cim:EquivalentInjection.ReactiveCapabilityCurve", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "regulationCapability": { + "label": "cim:EquivalentInjection.regulationCapability", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "r2": { + "label": "cim:EquivalentInjection.r2", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "maxQ": { + "label": "cim:EquivalentInjection.maxQ", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "x0": { + "label": "cim:EquivalentInjection.x0", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "minQ": { + "label": "cim:EquivalentInjection.minQ", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "EquivalentNetwork": { + "label": "cim:EquivalentEquipment.EquivalentNetwork", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "SeriesCompensator": { + "rdf_type": " rdf:ID=\"", + "label": "cim:SeriesCompensator", + "fields": { + "varistorVoltageThreshold": { + "label": "cim:SeriesCompensator.varistorVoltageThreshold", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "x0": { + "label": "cim:SeriesCompensator.x0", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "r": { + "label": "cim:SeriesCompensator.r", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "r0": { + "label": "cim:SeriesCompensator.r0", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "x": { + "label": "cim:SeriesCompensator.x", + "data_type": "Reactance", + "data_type_prim": "Float" + }, + "varistorPresent": { + "label": "cim:SeriesCompensator.varistorPresent", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "varistorRatedCurrent": { + "label": "cim:SeriesCompensator.varistorRatedCurrent", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Analog": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Analog", + "fields": { + "AnalogValues": { + "label": "cim:Analog.AnalogValues", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AnalogValue.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AnalogValue." + }, + "positiveFlowIn": { + "label": "cim:Analog.positiveFlowIn", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "LimitSets": { + "label": "cim:Analog.LimitSets", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AnalogLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AnalogLimitSet." + }, + "unitSymbol": { + "label": "cim:Measurement.unitSymbol", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "phases": { + "label": "cim:Measurement.phases", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseCode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseCode." + }, + "Terminal": { + "label": "cim:Measurement.Terminal", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "measurementType": { + "label": "cim:Measurement.measurementType", + "data_type": "String", + "data_type_prim": "String" + }, + "unitMultiplier": { + "label": "cim:Measurement.unitMultiplier", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier." + }, + "PowerSystemResource": { + "label": "cim:Measurement.PowerSystemResource", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "AnalogValue": { + "rdf_type": " rdf:ID=\"", + "label": "cim:AnalogValue", + "fields": { + "AnalogControl": { + "label": "cim:AnalogValue.AnalogControl", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AnalogControl.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AnalogControl." + }, + "value": { + "label": "cim:AnalogValue.value", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "Analog": { + "label": "cim:AnalogValue.Analog", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "MeasurementValueQuality": { + "label": "cim:MeasurementValue.MeasurementValueQuality", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#MeasurementValueQuality.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#MeasurementValueQuality." + }, + "MeasurementValueSource": { + "label": "cim:MeasurementValue.MeasurementValueSource", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "sensorAccuracy": { + "label": "cim:MeasurementValue.sensorAccuracy", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "timeStamp": { + "label": "cim:MeasurementValue.timeStamp", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "MeasurementValueSource": { + "rdf_type": " rdf:ID=\"", + "label": "cim:MeasurementValueSource", + "fields": { + "MeasurementValues": { + "label": "cim:MeasurementValueSource.MeasurementValues", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#MeasurementValue.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#MeasurementValue." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "FullModel": { + "rdf_type": " rdf:ID=\"", + "label": "cim:FullModel", + "fields": {} + }, + "Accumulator": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Accumulator", + "fields": { + "AccumulatorValues": { + "label": "cim:Accumulator.AccumulatorValues", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AccumulatorValue.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AccumulatorValue." + }, + "LimitSets": { + "label": "cim:Accumulator.LimitSets", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AccumulatorLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AccumulatorLimitSet." + }, + "unitSymbol": { + "label": "cim:Measurement.unitSymbol", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "phases": { + "label": "cim:Measurement.phases", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseCode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseCode." + }, + "Terminal": { + "label": "cim:Measurement.Terminal", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "measurementType": { + "label": "cim:Measurement.measurementType", + "data_type": "String", + "data_type_prim": "String" + }, + "unitMultiplier": { + "label": "cim:Measurement.unitMultiplier", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier." + }, + "PowerSystemResource": { + "label": "cim:Measurement.PowerSystemResource", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "AccumulatorLimit": { + "rdf_type": " rdf:ID=\"", + "label": "cim:AccumulatorLimit", + "fields": { + "LimitSet": { + "label": "cim:AccumulatorLimit.LimitSet", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "value": { + "label": "cim:AccumulatorLimit.value", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "AccumulatorLimitSet": { + "rdf_type": " rdf:ID=\"", + "label": "cim:AccumulatorLimitSet", + "fields": { + "Measurements": { + "label": "cim:AccumulatorLimitSet.Measurements", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Limits": { + "label": "cim:AccumulatorLimitSet.Limits", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AccumulatorLimit.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AccumulatorLimit." + }, + "isPercentageLimits": { + "label": "cim:LimitSet.isPercentageLimits", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "AccumulatorReset": { + "rdf_type": " rdf:ID=\"", + "label": "cim:AccumulatorReset", + "fields": { + "AccumulatorValue": { + "label": "cim:AccumulatorReset.AccumulatorValue", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "unitSymbol": { + "label": "cim:Control.unitSymbol", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "controlType": { + "label": "cim:Control.controlType", + "data_type": "String", + "data_type_prim": "String" + }, + "timeStamp": { + "label": "cim:Control.timeStamp", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "operationInProgress": { + "label": "cim:Control.operationInProgress", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "unitMultiplier": { + "label": "cim:Control.unitMultiplier", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier." + }, + "PowerSystemResource": { + "label": "cim:Control.PowerSystemResource", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "AccumulatorValue": { + "rdf_type": " rdf:ID=\"", + "label": "cim:AccumulatorValue", + "fields": { + "Accumulator": { + "label": "cim:AccumulatorValue.Accumulator", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "AccumulatorReset": { + "label": "cim:AccumulatorValue.AccumulatorReset", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AccumulatorReset.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AccumulatorReset." + }, + "value": { + "label": "cim:AccumulatorValue.value", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "MeasurementValueQuality": { + "label": "cim:MeasurementValue.MeasurementValueQuality", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#MeasurementValueQuality.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#MeasurementValueQuality." + }, + "MeasurementValueSource": { + "label": "cim:MeasurementValue.MeasurementValueSource", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "sensorAccuracy": { + "label": "cim:MeasurementValue.sensorAccuracy", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "timeStamp": { + "label": "cim:MeasurementValue.timeStamp", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ActivePowerLimit": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ActivePowerLimit", + "fields": { + "value": { + "label": "cim:ActivePowerLimit.value", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "OperationalLimitType": { + "label": "cim:OperationalLimit.OperationalLimitType", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "OperationalLimitSet": { + "label": "cim:OperationalLimit.OperationalLimitSet", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "AnalogLimit": { + "rdf_type": " rdf:ID=\"", + "label": "cim:AnalogLimit", + "fields": { + "LimitSet": { + "label": "cim:AnalogLimit.LimitSet", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "value": { + "label": "cim:AnalogLimit.value", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "AnalogLimitSet": { + "rdf_type": " rdf:ID=\"", + "label": "cim:AnalogLimitSet", + "fields": { + "Measurements": { + "label": "cim:AnalogLimitSet.Measurements", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Limits": { + "label": "cim:AnalogLimitSet.Limits", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AnalogLimit.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AnalogLimit." + }, + "isPercentageLimits": { + "label": "cim:LimitSet.isPercentageLimits", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ApparentPowerLimit": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ApparentPowerLimit", + "fields": { + "value": { + "label": "cim:ApparentPowerLimit.value", + "data_type": "ApparentPower", + "data_type_prim": "Float" + }, + "OperationalLimitType": { + "label": "cim:OperationalLimit.OperationalLimitType", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "OperationalLimitSet": { + "label": "cim:OperationalLimit.OperationalLimitSet", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "BusNameMarker": { + "rdf_type": " rdf:ID=\"", + "label": "cim:BusNameMarker", + "fields": { + "Terminal": { + "label": "cim:BusNameMarker.Terminal", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ACDCTerminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ACDCTerminal." + }, + "ReportingGroup": { + "label": "cim:BusNameMarker.ReportingGroup", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "priority": { + "label": "cim:BusNameMarker.priority", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "BusbarSection": { + "rdf_type": " rdf:ID=\"", + "label": "cim:BusbarSection", + "fields": { + "ipMax": { + "label": "cim:BusbarSection.ipMax", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Command": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Command", + "fields": { + "value": { + "label": "cim:Command.value", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "ValueAliasSet": { + "label": "cim:Command.ValueAliasSet", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DiscreteValue": { + "label": "cim:Command.DiscreteValue", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "normalValue": { + "label": "cim:Command.normalValue", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "unitSymbol": { + "label": "cim:Control.unitSymbol", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "controlType": { + "label": "cim:Control.controlType", + "data_type": "String", + "data_type_prim": "String" + }, + "timeStamp": { + "label": "cim:Control.timeStamp", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "operationInProgress": { + "label": "cim:Control.operationInProgress", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "unitMultiplier": { + "label": "cim:Control.unitMultiplier", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier." + }, + "PowerSystemResource": { + "label": "cim:Control.PowerSystemResource", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ConformLoadGroup": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ConformLoadGroup", + "fields": { + "EnergyConsumers": { + "label": "cim:ConformLoadGroup.EnergyConsumers", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConformLoad.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConformLoad." + }, + "ConformLoadSchedules": { + "label": "cim:ConformLoadGroup.ConformLoadSchedules", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConformLoadSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConformLoadSchedule." + }, + "SubLoadArea": { + "label": "cim:LoadGroup.SubLoadArea", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ConformLoadSchedule": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ConformLoadSchedule", + "fields": { + "ConformLoadGroup": { + "label": "cim:ConformLoadSchedule.ConformLoadGroup", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Season": { + "label": "cim:SeasonDayTypeSchedule.Season", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DayType": { + "label": "cim:SeasonDayTypeSchedule.DayType", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "TimePoints": { + "label": "cim:RegularIntervalSchedule.TimePoints", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegularTimePoint.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegularTimePoint." + }, + "timeStep": { + "label": "cim:RegularIntervalSchedule.timeStep", + "data_type": "Seconds", + "data_type_prim": "Float" + }, + "endTime": { + "label": "cim:RegularIntervalSchedule.endTime", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "value1Unit": { + "label": "cim:BasicIntervalSchedule.value1Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "startTime": { + "label": "cim:BasicIntervalSchedule.startTime", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "value2Unit": { + "label": "cim:BasicIntervalSchedule.value2Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ControlAreaGeneratingUnit": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ControlAreaGeneratingUnit", + "fields": { + "ControlArea": { + "label": "cim:ControlAreaGeneratingUnit.ControlArea", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "GeneratingUnit": { + "label": "cim:ControlAreaGeneratingUnit.GeneratingUnit", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "CurveData": { + "rdf_type": " rdf:ID=\"", + "label": "cim:CurveData", + "fields": { + "Curve": { + "label": "cim:CurveData.Curve", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "xvalue": { + "label": "cim:CurveData.xvalue", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "y2value": { + "label": "cim:CurveData.y2value", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "y1value": { + "label": "cim:CurveData.y1value", + "data_type": "Simple_Float", + "data_type_prim": "Float" + } + } + }, + "DCBreaker": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCBreaker", + "fields": { + "DCTerminals": { + "label": "cim:DCConductingEquipment.DCTerminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal." + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCBusbar": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCBusbar", + "fields": { + "DCTerminals": { + "label": "cim:DCConductingEquipment.DCTerminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal." + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCChopper": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCChopper", + "fields": { + "DCTerminals": { + "label": "cim:DCConductingEquipment.DCTerminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal." + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCDisconnector": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCDisconnector", + "fields": { + "DCTerminals": { + "label": "cim:DCConductingEquipment.DCTerminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal." + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCGround": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCGround", + "fields": { + "r": { + "label": "cim:DCGround.r", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "inductance": { + "label": "cim:DCGround.inductance", + "data_type": "Inductance", + "data_type_prim": "Float" + }, + "DCTerminals": { + "label": "cim:DCConductingEquipment.DCTerminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal." + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCLine": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCLine", + "fields": { + "Region": { + "label": "cim:DCLine.Region", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DCNodes": { + "label": "cim:DCEquipmentContainer.DCNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCNode." + }, + "Equipments": { + "label": "cim:EquipmentContainer.Equipments", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment." + }, + "ConnectivityNodes": { + "label": "cim:ConnectivityNodeContainer.ConnectivityNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCSeriesDevice": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCSeriesDevice", + "fields": { + "ratedUdc": { + "label": "cim:DCSeriesDevice.ratedUdc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "resistance": { + "label": "cim:DCSeriesDevice.resistance", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "inductance": { + "label": "cim:DCSeriesDevice.inductance", + "data_type": "Inductance", + "data_type_prim": "Float" + }, + "DCTerminals": { + "label": "cim:DCConductingEquipment.DCTerminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal." + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCShunt": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCShunt", + "fields": { + "capacitance": { + "label": "cim:DCShunt.capacitance", + "data_type": "Capacitance", + "data_type_prim": "Float" + }, + "resistance": { + "label": "cim:DCShunt.resistance", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "ratedUdc": { + "label": "cim:DCShunt.ratedUdc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "DCTerminals": { + "label": "cim:DCConductingEquipment.DCTerminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal." + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCSwitch": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCSwitch", + "fields": { + "DCTerminals": { + "label": "cim:DCConductingEquipment.DCTerminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCTerminal." + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DayType": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DayType", + "fields": { + "SeasonDayTypeSchedules": { + "label": "cim:DayType.SeasonDayTypeSchedules", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SeasonDayTypeSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SeasonDayTypeSchedule." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Discrete": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Discrete", + "fields": { + "ValueAliasSet": { + "label": "cim:Discrete.ValueAliasSet", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DiscreteValues": { + "label": "cim:Discrete.DiscreteValues", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DiscreteValue.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DiscreteValue." + }, + "unitSymbol": { + "label": "cim:Measurement.unitSymbol", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "phases": { + "label": "cim:Measurement.phases", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseCode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseCode." + }, + "Terminal": { + "label": "cim:Measurement.Terminal", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "measurementType": { + "label": "cim:Measurement.measurementType", + "data_type": "String", + "data_type_prim": "String" + }, + "unitMultiplier": { + "label": "cim:Measurement.unitMultiplier", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier." + }, + "PowerSystemResource": { + "label": "cim:Measurement.PowerSystemResource", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DiscreteValue": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DiscreteValue", + "fields": { + "Discrete": { + "label": "cim:DiscreteValue.Discrete", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "value": { + "label": "cim:DiscreteValue.value", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "Command": { + "label": "cim:DiscreteValue.Command", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Command.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Command." + }, + "MeasurementValueQuality": { + "label": "cim:MeasurementValue.MeasurementValueQuality", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#MeasurementValueQuality.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#MeasurementValueQuality." + }, + "MeasurementValueSource": { + "label": "cim:MeasurementValue.MeasurementValueSource", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "sensorAccuracy": { + "label": "cim:MeasurementValue.sensorAccuracy", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "timeStamp": { + "label": "cim:MeasurementValue.timeStamp", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "EquivalentNetwork": { + "rdf_type": " rdf:ID=\"", + "label": "cim:EquivalentNetwork", + "fields": { + "EquivalentEquipments": { + "label": "cim:EquivalentNetwork.EquivalentEquipments", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#EquivalentEquipment.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#EquivalentEquipment." + }, + "ConnectivityNodes": { + "label": "cim:ConnectivityNodeContainer.ConnectivityNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "EquivalentShunt": { + "rdf_type": " rdf:ID=\"", + "label": "cim:EquivalentShunt", + "fields": { + "g": { + "label": "cim:EquivalentShunt.g", + "data_type": "Conductance", + "data_type_prim": "Float" + }, + "b": { + "label": "cim:EquivalentShunt.b", + "data_type": "Susceptance", + "data_type_prim": "Float" + }, + "EquivalentNetwork": { + "label": "cim:EquivalentEquipment.EquivalentNetwork", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "FossilFuel": { + "rdf_type": " rdf:ID=\"", + "label": "cim:FossilFuel", + "fields": { + "fossilFuelType": { + "label": "cim:FossilFuel.fossilFuelType", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#FuelType.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#FuelType." + }, + "ThermalGeneratingUnit": { + "label": "cim:FossilFuel.ThermalGeneratingUnit", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "GrossToNetActivePowerCurve": { + "rdf_type": " rdf:ID=\"", + "label": "cim:GrossToNetActivePowerCurve", + "fields": { + "GeneratingUnit": { + "label": "cim:GrossToNetActivePowerCurve.GeneratingUnit", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "CurveDatas": { + "label": "cim:Curve.CurveDatas", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CurveData.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CurveData." + }, + "xUnit": { + "label": "cim:Curve.xUnit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "y2Unit": { + "label": "cim:Curve.y2Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "curveStyle": { + "label": "cim:Curve.curveStyle", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CurveStyle.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CurveStyle." + }, + "y1Unit": { + "label": "cim:Curve.y1Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "HydroPowerPlant": { + "rdf_type": " rdf:ID=\"", + "label": "cim:HydroPowerPlant", + "fields": { + "hydroPlantStorageType": { + "label": "cim:HydroPowerPlant.hydroPlantStorageType", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#HydroPlantStorageKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#HydroPlantStorageKind." + }, + "HydroPumps": { + "label": "cim:HydroPowerPlant.HydroPumps", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#HydroPump.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#HydroPump." + }, + "HydroGeneratingUnits": { + "label": "cim:HydroPowerPlant.HydroGeneratingUnits", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#HydroGeneratingUnit.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#HydroGeneratingUnit." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "HydroPump": { + "rdf_type": " rdf:ID=\"", + "label": "cim:HydroPump", + "fields": { + "RotatingMachine": { + "label": "cim:HydroPump.RotatingMachine", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "HydroPowerPlant": { + "label": "cim:HydroPump.HydroPowerPlant", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Junction": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Junction", + "fields": { + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "BaseVoltage": { + "label": "cim:ConductingEquipment.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "aggregate": { + "label": "cim:Equipment.aggregate", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "OperationalLimitSet": { + "label": "cim:Equipment.OperationalLimitSet", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OperationalLimitSet." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Line": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Line", + "fields": { + "Region": { + "label": "cim:Line.Region", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Equipments": { + "label": "cim:EquipmentContainer.Equipments", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment." + }, + "ConnectivityNodes": { + "label": "cim:ConnectivityNodeContainer.ConnectivityNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode." + }, + "Measurements": { + "label": "cim:PowerSystemResource.Measurements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Measurement." + }, + "Controls": { + "label": "cim:PowerSystemResource.Controls", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Control." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "LoadArea": { + "rdf_type": " rdf:ID=\"", + "label": "cim:LoadArea", + "fields": { + "SubLoadAreas": { + "label": "cim:LoadArea.SubLoadAreas", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SubLoadArea.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SubLoadArea." + }, + "ControlArea": { + "label": "cim:EnergyArea.ControlArea", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlArea.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlArea." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "LoadResponseCharacteristic": { + "rdf_type": " rdf:ID=\"", + "label": "cim:LoadResponseCharacteristic", + "fields": { + "EnergyConsumer": { + "label": "cim:LoadResponseCharacteristic.EnergyConsumer", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#EnergyConsumer.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#EnergyConsumer." + }, + "qFrequencyExponent": { + "label": "cim:LoadResponseCharacteristic.qFrequencyExponent", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "qConstantCurrent": { + "label": "cim:LoadResponseCharacteristic.qConstantCurrent", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "exponentModel": { + "label": "cim:LoadResponseCharacteristic.exponentModel", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "pConstantPower": { + "label": "cim:LoadResponseCharacteristic.pConstantPower", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "pFrequencyExponent": { + "label": "cim:LoadResponseCharacteristic.pFrequencyExponent", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "pConstantCurrent": { + "label": "cim:LoadResponseCharacteristic.pConstantCurrent", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "pVoltageExponent": { + "label": "cim:LoadResponseCharacteristic.pVoltageExponent", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "qConstantPower": { + "label": "cim:LoadResponseCharacteristic.qConstantPower", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "qVoltageExponent": { + "label": "cim:LoadResponseCharacteristic.qVoltageExponent", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "pConstantImpedance": { + "label": "cim:LoadResponseCharacteristic.pConstantImpedance", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "qConstantImpedance": { + "label": "cim:LoadResponseCharacteristic.qConstantImpedance", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "MeasurementValueQuality": { + "rdf_type": " rdf:ID=\"", + "label": "cim:MeasurementValueQuality", + "fields": { + "MeasurementValue": { + "label": "cim:MeasurementValueQuality.MeasurementValue", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "badReference": { + "label": "cim:Quality61850.badReference", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "validity": { + "label": "cim:Quality61850.validity", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Validity.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Validity." + }, + "outOfRange": { + "label": "cim:Quality61850.outOfRange", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "operatorBlocked": { + "label": "cim:Quality61850.operatorBlocked", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "estimatorReplaced": { + "label": "cim:Quality61850.estimatorReplaced", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "failure": { + "label": "cim:Quality61850.failure", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "oldData": { + "label": "cim:Quality61850.oldData", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "test": { + "label": "cim:Quality61850.test", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "overFlow": { + "label": "cim:Quality61850.overFlow", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "source": { + "label": "cim:Quality61850.source", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Source.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Source." + }, + "suspect": { + "label": "cim:Quality61850.suspect", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "oscillatory": { + "label": "cim:Quality61850.oscillatory", + "data_type": "Boolean", + "data_type_prim": "Boolean" + } + } + }, + "NonConformLoadGroup": { + "rdf_type": " rdf:ID=\"", + "label": "cim:NonConformLoadGroup", + "fields": { + "NonConformLoadSchedules": { + "label": "cim:NonConformLoadGroup.NonConformLoadSchedules", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#NonConformLoadSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#NonConformLoadSchedule." + }, + "EnergyConsumers": { + "label": "cim:NonConformLoadGroup.EnergyConsumers", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#NonConformLoad.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#NonConformLoad." + }, + "SubLoadArea": { + "label": "cim:LoadGroup.SubLoadArea", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "NonConformLoadSchedule": { + "rdf_type": " rdf:ID=\"", + "label": "cim:NonConformLoadSchedule", + "fields": { + "NonConformLoadGroup": { + "label": "cim:NonConformLoadSchedule.NonConformLoadGroup", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Season": { + "label": "cim:SeasonDayTypeSchedule.Season", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DayType": { + "label": "cim:SeasonDayTypeSchedule.DayType", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "TimePoints": { + "label": "cim:RegularIntervalSchedule.TimePoints", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegularTimePoint.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegularTimePoint." + }, + "timeStep": { + "label": "cim:RegularIntervalSchedule.timeStep", + "data_type": "Seconds", + "data_type_prim": "Float" + }, + "endTime": { + "label": "cim:RegularIntervalSchedule.endTime", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "value1Unit": { + "label": "cim:BasicIntervalSchedule.value1Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "startTime": { + "label": "cim:BasicIntervalSchedule.startTime", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "value2Unit": { + "label": "cim:BasicIntervalSchedule.value2Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "PerLengthDCLineParameter": { + "rdf_type": " rdf:ID=\"", + "label": "cim:PerLengthDCLineParameter", + "fields": { + "resistance": { + "label": "cim:PerLengthDCLineParameter.resistance", + "data_type": "ResistancePerLength", + "data_type_prim": "Float" + }, + "DCLineSegments": { + "label": "cim:PerLengthDCLineParameter.DCLineSegments", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCLineSegment.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCLineSegment." + }, + "capacitance": { + "label": "cim:PerLengthDCLineParameter.capacitance", + "data_type": "CapacitancePerLength", + "data_type_prim": "Float" + }, + "inductance": { + "label": "cim:PerLengthDCLineParameter.inductance", + "data_type": "InductancePerLength", + "data_type_prim": "Float" + } + } + }, + "PhaseTapChangerTable": { + "rdf_type": " rdf:ID=\"", + "label": "cim:PhaseTapChangerTable", + "fields": { + "PhaseTapChangerTablePoint": { + "label": "cim:PhaseTapChangerTable.PhaseTapChangerTablePoint", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseTapChangerTablePoint.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseTapChangerTablePoint." + }, + "PhaseTapChangerTabular": { + "label": "cim:PhaseTapChangerTable.PhaseTapChangerTabular", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseTapChangerTabular.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseTapChangerTabular." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "RaiseLowerCommand": { + "rdf_type": " rdf:ID=\"", + "label": "cim:RaiseLowerCommand", + "fields": { + "ValueAliasSet": { + "label": "cim:RaiseLowerCommand.ValueAliasSet", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "AnalogValue": { + "label": "cim:AnalogControl.AnalogValue", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "minValue": { + "label": "cim:AnalogControl.minValue", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "maxValue": { + "label": "cim:AnalogControl.maxValue", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "unitSymbol": { + "label": "cim:Control.unitSymbol", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "controlType": { + "label": "cim:Control.controlType", + "data_type": "String", + "data_type_prim": "String" + }, + "timeStamp": { + "label": "cim:Control.timeStamp", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "operationInProgress": { + "label": "cim:Control.operationInProgress", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "unitMultiplier": { + "label": "cim:Control.unitMultiplier", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier." + }, + "PowerSystemResource": { + "label": "cim:Control.PowerSystemResource", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ReactiveCapabilityCurve": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ReactiveCapabilityCurve", + "fields": { + "InitiallyUsedBySynchronousMachines": { + "label": "cim:ReactiveCapabilityCurve.InitiallyUsedBySynchronousMachines", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SynchronousMachine.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SynchronousMachine." + }, + "EquivalentInjection": { + "label": "cim:ReactiveCapabilityCurve.EquivalentInjection", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#EquivalentInjection.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#EquivalentInjection." + }, + "CurveDatas": { + "label": "cim:Curve.CurveDatas", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CurveData.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CurveData." + }, + "xUnit": { + "label": "cim:Curve.xUnit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "y2Unit": { + "label": "cim:Curve.y2Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "curveStyle": { + "label": "cim:Curve.curveStyle", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CurveStyle.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CurveStyle." + }, + "y1Unit": { + "label": "cim:Curve.y1Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "RegularTimePoint": { + "rdf_type": " rdf:ID=\"", + "label": "cim:RegularTimePoint", + "fields": { + "value1": { + "label": "cim:RegularTimePoint.value1", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "sequenceNumber": { + "label": "cim:RegularTimePoint.sequenceNumber", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "value2": { + "label": "cim:RegularTimePoint.value2", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "IntervalSchedule": { + "label": "cim:RegularTimePoint.IntervalSchedule", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + } + } + }, + "RegulationSchedule": { + "rdf_type": " rdf:ID=\"", + "label": "cim:RegulationSchedule", + "fields": { + "RegulatingControl": { + "label": "cim:RegulationSchedule.RegulatingControl", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Season": { + "label": "cim:SeasonDayTypeSchedule.Season", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DayType": { + "label": "cim:SeasonDayTypeSchedule.DayType", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "TimePoints": { + "label": "cim:RegularIntervalSchedule.TimePoints", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegularTimePoint.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegularTimePoint." + }, + "timeStep": { + "label": "cim:RegularIntervalSchedule.timeStep", + "data_type": "Seconds", + "data_type_prim": "Float" + }, + "endTime": { + "label": "cim:RegularIntervalSchedule.endTime", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "value1Unit": { + "label": "cim:BasicIntervalSchedule.value1Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "startTime": { + "label": "cim:BasicIntervalSchedule.startTime", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "value2Unit": { + "label": "cim:BasicIntervalSchedule.value2Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ReportingGroup": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ReportingGroup", + "fields": { + "BusNameMarker": { + "label": "cim:ReportingGroup.BusNameMarker", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#BusNameMarker.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#BusNameMarker." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Season": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Season", + "fields": { + "startDate": { + "label": "cim:Season.startDate", + "data_type": "MonthDay", + "data_type_prim": "MonthDay" + }, + "endDate": { + "label": "cim:Season.endDate", + "data_type": "MonthDay", + "data_type_prim": "MonthDay" + }, + "SeasonDayTypeSchedules": { + "label": "cim:Season.SeasonDayTypeSchedules", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SeasonDayTypeSchedule.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SeasonDayTypeSchedule." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "SetPoint": { + "rdf_type": " rdf:ID=\"", + "label": "cim:SetPoint", + "fields": { + "value": { + "label": "cim:SetPoint.value", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "normalValue": { + "label": "cim:SetPoint.normalValue", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "AnalogValue": { + "label": "cim:AnalogControl.AnalogValue", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "minValue": { + "label": "cim:AnalogControl.minValue", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "maxValue": { + "label": "cim:AnalogControl.maxValue", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "unitSymbol": { + "label": "cim:Control.unitSymbol", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "controlType": { + "label": "cim:Control.controlType", + "data_type": "String", + "data_type_prim": "String" + }, + "timeStamp": { + "label": "cim:Control.timeStamp", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "operationInProgress": { + "label": "cim:Control.operationInProgress", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "unitMultiplier": { + "label": "cim:Control.unitMultiplier", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier." + }, + "PowerSystemResource": { + "label": "cim:Control.PowerSystemResource", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "StringMeasurement": { + "rdf_type": " rdf:ID=\"", + "label": "cim:StringMeasurement", + "fields": { + "StringMeasurementValues": { + "label": "cim:StringMeasurement.StringMeasurementValues", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#StringMeasurementValue.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#StringMeasurementValue." + }, + "unitSymbol": { + "label": "cim:Measurement.unitSymbol", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "phases": { + "label": "cim:Measurement.phases", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseCode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PhaseCode." + }, + "Terminal": { + "label": "cim:Measurement.Terminal", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "measurementType": { + "label": "cim:Measurement.measurementType", + "data_type": "String", + "data_type_prim": "String" + }, + "unitMultiplier": { + "label": "cim:Measurement.unitMultiplier", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier." + }, + "PowerSystemResource": { + "label": "cim:Measurement.PowerSystemResource", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "StringMeasurementValue": { + "rdf_type": " rdf:ID=\"", + "label": "cim:StringMeasurementValue", + "fields": { + "value": { + "label": "cim:StringMeasurementValue.value", + "data_type": "String", + "data_type_prim": "String" + }, + "StringMeasurement": { + "label": "cim:StringMeasurementValue.StringMeasurement", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "MeasurementValueQuality": { + "label": "cim:MeasurementValue.MeasurementValueQuality", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#MeasurementValueQuality.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#MeasurementValueQuality." + }, + "MeasurementValueSource": { + "label": "cim:MeasurementValue.MeasurementValueSource", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "sensorAccuracy": { + "label": "cim:MeasurementValue.sensorAccuracy", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "timeStamp": { + "label": "cim:MeasurementValue.timeStamp", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "SubLoadArea": { + "rdf_type": " rdf:ID=\"", + "label": "cim:SubLoadArea", + "fields": { + "LoadArea": { + "label": "cim:SubLoadArea.LoadArea", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "LoadGroups": { + "label": "cim:SubLoadArea.LoadGroups", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#LoadGroup.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#LoadGroup." + }, + "ControlArea": { + "label": "cim:EnergyArea.ControlArea", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlArea.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ControlArea." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "SwitchSchedule": { + "rdf_type": " rdf:ID=\"", + "label": "cim:SwitchSchedule", + "fields": { + "Switch": { + "label": "cim:SwitchSchedule.Switch", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Season": { + "label": "cim:SeasonDayTypeSchedule.Season", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DayType": { + "label": "cim:SeasonDayTypeSchedule.DayType", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "TimePoints": { + "label": "cim:RegularIntervalSchedule.TimePoints", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegularTimePoint.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegularTimePoint." + }, + "timeStep": { + "label": "cim:RegularIntervalSchedule.timeStep", + "data_type": "Seconds", + "data_type_prim": "Float" + }, + "endTime": { + "label": "cim:RegularIntervalSchedule.endTime", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "value1Unit": { + "label": "cim:BasicIntervalSchedule.value1Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "startTime": { + "label": "cim:BasicIntervalSchedule.startTime", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "value2Unit": { + "label": "cim:BasicIntervalSchedule.value2Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "TapSchedule": { + "rdf_type": " rdf:ID=\"", + "label": "cim:TapSchedule", + "fields": { + "TapChanger": { + "label": "cim:TapSchedule.TapChanger", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Season": { + "label": "cim:SeasonDayTypeSchedule.Season", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DayType": { + "label": "cim:SeasonDayTypeSchedule.DayType", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "TimePoints": { + "label": "cim:RegularIntervalSchedule.TimePoints", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegularTimePoint.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RegularTimePoint." + }, + "timeStep": { + "label": "cim:RegularIntervalSchedule.timeStep", + "data_type": "Seconds", + "data_type_prim": "Float" + }, + "endTime": { + "label": "cim:RegularIntervalSchedule.endTime", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "value1Unit": { + "label": "cim:BasicIntervalSchedule.value1Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "startTime": { + "label": "cim:BasicIntervalSchedule.startTime", + "data_type": "DateTime", + "data_type_prim": "DateTime" + }, + "value2Unit": { + "label": "cim:BasicIntervalSchedule.value2Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ValueAliasSet": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ValueAliasSet", + "fields": { + "Values": { + "label": "cim:ValueAliasSet.Values", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ValueToAlias.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ValueToAlias." + }, + "Discretes": { + "label": "cim:ValueAliasSet.Discretes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Discrete.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Discrete." + }, + "Commands": { + "label": "cim:ValueAliasSet.Commands", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Command.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Command." + }, + "RaiseLowerCommands": { + "label": "cim:ValueAliasSet.RaiseLowerCommands", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RaiseLowerCommand.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#RaiseLowerCommand." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ValueToAlias": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ValueToAlias", + "fields": { + "value": { + "label": "cim:ValueToAlias.value", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "ValueAliasSet": { + "label": "cim:ValueToAlias.ValueAliasSet", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "VsCapabilityCurve": { + "rdf_type": " rdf:ID=\"", + "label": "cim:VsCapabilityCurve", + "fields": { + "VsConverterDCSides": { + "label": "cim:VsCapabilityCurve.VsConverterDCSides", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#VsConverter.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#VsConverter." + }, + "CurveDatas": { + "label": "cim:Curve.CurveDatas", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CurveData.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CurveData." + }, + "xUnit": { + "label": "cim:Curve.xUnit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "y2Unit": { + "label": "cim:Curve.y2Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "curveStyle": { + "label": "cim:Curve.curveStyle", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CurveStyle.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CurveStyle." + }, + "y1Unit": { + "label": "cim:Curve.y1Unit", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitSymbol." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + } + }, + "eq_bd": { + "ConnectivityNode": { + "rdf_type": " rdf:ID=\"", + "label": "cim:ConnectivityNode", + "fields": { + "boundaryPoint": { + "label": "entsoe:ConnectivityNode.boundaryPoint", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "fromEndIsoCode": { + "label": "entsoe:ConnectivityNode.fromEndIsoCode", + "data_type": "String", + "data_type_prim": "String" + }, + "fromEndName": { + "label": "entsoe:ConnectivityNode.fromEndName", + "data_type": "String", + "data_type_prim": "String" + }, + "fromEndNameTso": { + "label": "entsoe:ConnectivityNode.fromEndNameTso", + "data_type": "String", + "data_type_prim": "String" + }, + "toEndIsoCode": { + "label": "entsoe:ConnectivityNode.toEndIsoCode", + "data_type": "String", + "data_type_prim": "String" + }, + "toEndName": { + "label": "entsoe:ConnectivityNode.toEndName", + "data_type": "String", + "data_type_prim": "String" + }, + "toEndNameTso": { + "label": "entsoe:ConnectivityNode.toEndNameTso", + "data_type": "String", + "data_type_prim": "String" + }, + "ConnectivityNodeContainer": { + "label": "cim:ConnectivityNode.ConnectivityNodeContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "BaseVoltage": { + "rdf_type": " rdf:ID=\"", + "label": "cim:BaseVoltage", + "fields": { + "nominalVoltage": { + "label": "cim:BaseVoltage.nominalVoltage", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Terminal": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Terminal", + "fields": { + "ConductingEquipment": { + "label": "cim:Terminal.ConductingEquipment", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + } + } + }, + "EnergySource": { + "rdf_type": " rdf:ID=\"", + "label": "cim:EnergySource", + "fields": { + "EnergySchedulingType": { + "label": "cim:EnergySource.EnergySchedulingType", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "EnergySchedulingType": { + "rdf_type": " rdf:ID=\"", + "label": "entsoe:EnergySchedulingType", + "fields": { + "EnergySource": { + "label": "cim:EnergySchedulingType.EnergySource", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#EnergySource.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#EnergySource." + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "FullModel": { + "rdf_type": " rdf:ID=\"", + "label": "cim:FullModel", + "fields": {} + }, + "GeographicalRegion": { + "rdf_type": " rdf:ID=\"", + "label": "cim:GeographicalRegion", + "fields": { + "Regions": { + "label": "cim:GeographicalRegion.Regions", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SubGeographicalRegion.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SubGeographicalRegion." + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Junction": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Junction", + "fields": { + "Terminals": { + "label": "cim:ConductingEquipment.Terminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "EquipmentContainer": { + "label": "cim:Equipment.EquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Line": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Line", + "fields": { + "Region": { + "label": "cim:Line.Region", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Equipments": { + "label": "cim:EquipmentContainer.Equipments", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Equipment." + }, + "ConnectivityNodes": { + "label": "cim:ConnectivityNodeContainer.ConnectivityNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode." + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "SubGeographicalRegion": { + "rdf_type": " rdf:ID=\"", + "label": "cim:SubGeographicalRegion", + "fields": { + "Region": { + "label": "cim:SubGeographicalRegion.Region", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Lines": { + "label": "cim:SubGeographicalRegion.Lines", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Line.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Line." + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + } + }, + "ssh": { + "ControlArea": { + "rdf_type": " rdf:about=\"#", + "label": "cim:ControlArea", + "fields": { + "netInterchange": { + "label": "cim:ControlArea.netInterchange", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "pTolerance": { + "label": "cim:ControlArea.pTolerance", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ExternalNetworkInjection": { + "rdf_type": " rdf:about=\"#", + "label": "cim:ExternalNetworkInjection", + "fields": { + "referencePriority": { + "label": "cim:ExternalNetworkInjection.referencePriority", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "p": { + "label": "cim:ExternalNetworkInjection.p", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "q": { + "label": "cim:ExternalNetworkInjection.q", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "controlEnabled": { + "label": "cim:RegulatingCondEq.controlEnabled", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Terminal": { + "rdf_type": " rdf:about=\"#", + "label": "cim:Terminal", + "fields": { + "connected": { + "label": "cim:ACDCTerminal.connected", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCTerminal": { + "rdf_type": " rdf:about=\"#", + "label": "cim:DCTerminal", + "fields": { + "connected": { + "label": "cim:ACDCTerminal.connected", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ACDCConverterDCTerminal": { + "rdf_type": " rdf:about=\"#", + "label": "cim:ACDCConverterDCTerminal", + "fields": { + "connected": { + "label": "cim:ACDCTerminal.connected", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "CsConverter": { + "rdf_type": " rdf:about=\"#", + "label": "cim:CsConverter", + "fields": { + "operatingMode": { + "label": "cim:CsConverter.operatingMode", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CsOperatingModeKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CsOperatingModeKind." + }, + "pPccControl": { + "label": "cim:CsConverter.pPccControl", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CsPpccControlKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#CsPpccControlKind." + }, + "targetAlpha": { + "label": "cim:CsConverter.targetAlpha", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "targetGamma": { + "label": "cim:CsConverter.targetGamma", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "targetIdc": { + "label": "cim:CsConverter.targetIdc", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "p": { + "label": "cim:ACDCConverter.p", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "q": { + "label": "cim:ACDCConverter.q", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "targetPpcc": { + "label": "cim:ACDCConverter.targetPpcc", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "targetUdc": { + "label": "cim:ACDCConverter.targetUdc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "VsConverter": { + "rdf_type": " rdf:about=\"#", + "label": "cim:VsConverter", + "fields": { + "droop": { + "label": "cim:VsConverter.droop", + "data_type": "PU", + "data_type_prim": "Float" + }, + "droopCompensation": { + "label": "cim:VsConverter.droopCompensation", + "data_type": "Resistance", + "data_type_prim": "Float" + }, + "pPccControl": { + "label": "cim:VsConverter.pPccControl", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#VsPpccControlKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#VsPpccControlKind." + }, + "qPccControl": { + "label": "cim:VsConverter.qPccControl", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#VsQpccControlKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#VsQpccControlKind." + }, + "qShare": { + "label": "cim:VsConverter.qShare", + "data_type": "PerCent", + "data_type_prim": "Float" + }, + "targetQpcc": { + "label": "cim:VsConverter.targetQpcc", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "targetUpcc": { + "label": "cim:VsConverter.targetUpcc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "p": { + "label": "cim:ACDCConverter.p", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "q": { + "label": "cim:ACDCConverter.q", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "targetPpcc": { + "label": "cim:ACDCConverter.targetPpcc", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "targetUdc": { + "label": "cim:ACDCConverter.targetUdc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Breaker": { + "rdf_type": " rdf:about=\"#", + "label": "cim:Breaker", + "fields": { + "open": { + "label": "cim:Switch.open", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Disconnector": { + "rdf_type": " rdf:about=\"#", + "label": "cim:Disconnector", + "fields": { + "open": { + "label": "cim:Switch.open", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Switch": { + "rdf_type": " rdf:about=\"#", + "label": "cim:Switch", + "fields": { + "open": { + "label": "cim:Switch.open", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "LoadBreakSwitch": { + "rdf_type": " rdf:about=\"#", + "label": "cim:LoadBreakSwitch", + "fields": { + "open": { + "label": "cim:Switch.open", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "EnergyConsumer": { + "rdf_type": " rdf:about=\"#", + "label": "cim:EnergyConsumer", + "fields": { + "p": { + "label": "cim:EnergyConsumer.p", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "q": { + "label": "cim:EnergyConsumer.q", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ConformLoad": { + "rdf_type": " rdf:about=\"#", + "label": "cim:ConformLoad", + "fields": { + "p": { + "label": "cim:EnergyConsumer.p", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "q": { + "label": "cim:EnergyConsumer.q", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "NonConformLoad": { + "rdf_type": " rdf:about=\"#", + "label": "cim:NonConformLoad", + "fields": { + "p": { + "label": "cim:EnergyConsumer.p", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "q": { + "label": "cim:EnergyConsumer.q", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "StationSupply": { + "rdf_type": " rdf:about=\"#", + "label": "cim:StationSupply", + "fields": { + "p": { + "label": "cim:EnergyConsumer.p", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "q": { + "label": "cim:EnergyConsumer.q", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "RegulatingControl": { + "rdf_type": " rdf:about=\"#", + "label": "cim:RegulatingControl", + "fields": { + "discrete": { + "label": "cim:RegulatingControl.discrete", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "enabled": { + "label": "cim:RegulatingControl.enabled", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "targetDeadband": { + "label": "cim:RegulatingControl.targetDeadband", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "targetValue": { + "label": "cim:RegulatingControl.targetValue", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "targetValueUnitMultiplier": { + "label": "cim:RegulatingControl.targetValueUnitMultiplier", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "SynchronousMachine": { + "rdf_type": " rdf:about=\"#", + "label": "cim:SynchronousMachine", + "fields": { + "operatingMode": { + "label": "cim:SynchronousMachine.operatingMode", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SynchronousMachineOperatingMode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SynchronousMachineOperatingMode." + }, + "referencePriority": { + "label": "cim:SynchronousMachine.referencePriority", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "p": { + "label": "cim:RotatingMachine.p", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "q": { + "label": "cim:RotatingMachine.q", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "controlEnabled": { + "label": "cim:RegulatingCondEq.controlEnabled", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "AsynchronousMachine": { + "rdf_type": " rdf:about=\"#", + "label": "cim:AsynchronousMachine", + "fields": { + "asynchronousMachineType": { + "label": "cim:AsynchronousMachine.asynchronousMachineType", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AsynchronousMachineKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#AsynchronousMachineKind." + }, + "p": { + "label": "cim:RotatingMachine.p", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "q": { + "label": "cim:RotatingMachine.q", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "controlEnabled": { + "label": "cim:RegulatingCondEq.controlEnabled", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "EnergySource": { + "rdf_type": " rdf:about=\"#", + "label": "cim:EnergySource", + "fields": { + "activePower": { + "label": "cim:EnergySource.activePower", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "reactivePower": { + "label": "cim:EnergySource.reactivePower", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "StaticVarCompensator": { + "rdf_type": " rdf:about=\"#", + "label": "cim:StaticVarCompensator", + "fields": { + "q": { + "label": "cim:StaticVarCompensator.q", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "controlEnabled": { + "label": "cim:RegulatingCondEq.controlEnabled", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "TapChangerControl": { + "rdf_type": " rdf:about=\"#", + "label": "cim:TapChangerControl", + "fields": { + "discrete": { + "label": "cim:RegulatingControl.discrete", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "enabled": { + "label": "cim:RegulatingControl.enabled", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "targetDeadband": { + "label": "cim:RegulatingControl.targetDeadband", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "targetValue": { + "label": "cim:RegulatingControl.targetValue", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "targetValueUnitMultiplier": { + "label": "cim:RegulatingControl.targetValueUnitMultiplier", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#UnitMultiplier." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "RatioTapChanger": { + "rdf_type": " rdf:about=\"#", + "label": "cim:RatioTapChanger", + "fields": { + "controlEnabled": { + "label": "cim:TapChanger.controlEnabled", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "step": { + "label": "cim:TapChanger.step", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "PhaseTapChangerLinear": { + "rdf_type": " rdf:about=\"#", + "label": "cim:PhaseTapChangerLinear", + "fields": { + "controlEnabled": { + "label": "cim:TapChanger.controlEnabled", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "step": { + "label": "cim:TapChanger.step", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "PhaseTapChangerAsymmetrical": { + "rdf_type": " rdf:about=\"#", + "label": "cim:PhaseTapChangerAsymmetrical", + "fields": { + "controlEnabled": { + "label": "cim:TapChanger.controlEnabled", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "step": { + "label": "cim:TapChanger.step", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "PhaseTapChangerSymmetrical": { + "rdf_type": " rdf:about=\"#", + "label": "cim:PhaseTapChangerSymmetrical", + "fields": { + "controlEnabled": { + "label": "cim:TapChanger.controlEnabled", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "step": { + "label": "cim:TapChanger.step", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "PhaseTapChangerTabular": { + "rdf_type": " rdf:about=\"#", + "label": "cim:PhaseTapChangerTabular", + "fields": { + "controlEnabled": { + "label": "cim:TapChanger.controlEnabled", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "step": { + "label": "cim:TapChanger.step", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "LinearShuntCompensator": { + "rdf_type": " rdf:about=\"#", + "label": "cim:LinearShuntCompensator", + "fields": { + "sections": { + "label": "cim:ShuntCompensator.sections", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "controlEnabled": { + "label": "cim:RegulatingCondEq.controlEnabled", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "NonlinearShuntCompensator": { + "rdf_type": " rdf:about=\"#", + "label": "cim:NonlinearShuntCompensator", + "fields": { + "sections": { + "label": "cim:ShuntCompensator.sections", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "controlEnabled": { + "label": "cim:RegulatingCondEq.controlEnabled", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "EquivalentInjection": { + "rdf_type": " rdf:about=\"#", + "label": "cim:EquivalentInjection", + "fields": { + "regulationStatus": { + "label": "cim:EquivalentInjection.regulationStatus", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "regulationTarget": { + "label": "cim:EquivalentInjection.regulationTarget", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "p": { + "label": "cim:EquivalentInjection.p", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "q": { + "label": "cim:EquivalentInjection.q", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "FullModel": { + "rdf_type": " rdf:ID=\"", + "label": "cim:FullModel", + "fields": {} + }, + "GeneratingUnit": { + "rdf_type": " rdf:about=\"#", + "label": "cim:GeneratingUnit", + "fields": { + "normalPF": { + "label": "cim:GeneratingUnit.normalPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "HydroGeneratingUnit": { + "rdf_type": " rdf:about=\"#", + "label": "cim:HydroGeneratingUnit", + "fields": { + "normalPF": { + "label": "cim:GeneratingUnit.normalPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "NuclearGeneratingUnit": { + "rdf_type": " rdf:about=\"#", + "label": "cim:NuclearGeneratingUnit", + "fields": { + "normalPF": { + "label": "cim:GeneratingUnit.normalPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "SolarGeneratingUnit": { + "rdf_type": " rdf:about=\"#", + "label": "cim:SolarGeneratingUnit", + "fields": { + "normalPF": { + "label": "cim:GeneratingUnit.normalPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ThermalGeneratingUnit": { + "rdf_type": " rdf:about=\"#", + "label": "cim:ThermalGeneratingUnit", + "fields": { + "normalPF": { + "label": "cim:GeneratingUnit.normalPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "WindGeneratingUnit": { + "rdf_type": " rdf:about=\"#", + "label": "cim:WindGeneratingUnit", + "fields": { + "normalPF": { + "label": "cim:GeneratingUnit.normalPF", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + } + }, + "sv": { + "SvVoltage": { + "rdf_type": " rdf:ID=\"", + "label": "cim:SvVoltage", + "fields": { + "angle": { + "label": "cim:SvVoltage.angle", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "v": { + "label": "cim:SvVoltage.v", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "TopologicalNode": { + "label": "cim:SvVoltage.TopologicalNode", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + } + } + }, + "SvPowerFlow": { + "rdf_type": " rdf:ID=\"", + "label": "cim:SvPowerFlow", + "fields": { + "Terminal": { + "label": "cim:SvPowerFlow.Terminal", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "p": { + "label": "cim:SvPowerFlow.p", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "q": { + "label": "cim:SvPowerFlow.q", + "data_type": "ReactivePower", + "data_type_prim": "Float" + } + } + }, + "SvShuntCompensatorSections": { + "rdf_type": " rdf:ID=\"", + "label": "cim:SvShuntCompensatorSections", + "fields": { + "sections": { + "label": "cim:SvShuntCompensatorSections.sections", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "ShuntCompensator": { + "label": "cim:SvShuntCompensatorSections.ShuntCompensator", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + } + } + }, + "SvTapStep": { + "rdf_type": " rdf:ID=\"", + "label": "cim:SvTapStep", + "fields": { + "position": { + "label": "cim:SvTapStep.position", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "TapChanger": { + "label": "cim:SvTapStep.TapChanger", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + } + } + }, + "FullModel": { + "rdf_type": " rdf:ID=\"", + "label": "cim:FullModel", + "fields": {} + }, + "CsConverter": { + "rdf_type": " rdf:about=\"#", + "label": "cim:CsConverter", + "fields": { + "alpha": { + "label": "cim:CsConverter.alpha", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "gamma": { + "label": "cim:CsConverter.gamma", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "idc": { + "label": "cim:ACDCConverter.idc", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "poleLossP": { + "label": "cim:ACDCConverter.poleLossP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "uc": { + "label": "cim:ACDCConverter.uc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "udc": { + "label": "cim:ACDCConverter.udc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "SvStatus": { + "label": "cim:ConductingEquipment.SvStatus", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SvStatus.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SvStatus." + } + } + }, + "DCTopologicalIsland": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCTopologicalIsland", + "fields": { + "DCTopologicalNodes": { + "label": "cim:DCTopologicalIsland.DCTopologicalNodes", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "SvInjection": { + "rdf_type": " rdf:ID=\"", + "label": "cim:SvInjection", + "fields": { + "pInjection": { + "label": "cim:SvInjection.pInjection", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "qInjection": { + "label": "cim:SvInjection.qInjection", + "data_type": "ReactivePower", + "data_type_prim": "Float" + }, + "TopologicalNode": { + "label": "cim:SvInjection.TopologicalNode", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + } + } + }, + "SvStatus": { + "rdf_type": " rdf:ID=\"", + "label": "cim:SvStatus", + "fields": { + "ConductingEquipment": { + "label": "cim:SvStatus.ConductingEquipment", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "inService": { + "label": "cim:SvStatus.inService", + "data_type": "Boolean", + "data_type_prim": "Boolean" + } + } + }, + "TopologicalIsland": { + "rdf_type": " rdf:ID=\"", + "label": "cim:TopologicalIsland", + "fields": { + "AngleRefTopologicalNode": { + "label": "cim:TopologicalIsland.AngleRefTopologicalNode", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "TopologicalNodes": { + "label": "cim:TopologicalIsland.TopologicalNodes", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "VsConverter": { + "rdf_type": " rdf:about=\"#", + "label": "cim:VsConverter", + "fields": { + "delta": { + "label": "cim:VsConverter.delta", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "uf": { + "label": "cim:VsConverter.uf", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "idc": { + "label": "cim:ACDCConverter.idc", + "data_type": "CurrentFlow", + "data_type_prim": "Float" + }, + "poleLossP": { + "label": "cim:ACDCConverter.poleLossP", + "data_type": "ActivePower", + "data_type_prim": "Float" + }, + "uc": { + "label": "cim:ACDCConverter.uc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "udc": { + "label": "cim:ACDCConverter.udc", + "data_type": "Voltage", + "data_type_prim": "Float" + }, + "SvStatus": { + "label": "cim:ConductingEquipment.SvStatus", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SvStatus.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#SvStatus." + } + } + } + }, + "tp": { + "TopologicalNode": { + "rdf_type": " rdf:ID=\"", + "label": "cim:TopologicalNode", + "fields": { + "BaseVoltage": { + "label": "cim:TopologicalNode.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "ConnectivityNodes": { + "label": "cim:TopologicalNode.ConnectivityNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode." + }, + "ConnectivityNodeContainer": { + "label": "cim:TopologicalNode.ConnectivityNodeContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "ReportingGroup": { + "label": "cim:TopologicalNode.ReportingGroup", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "Terminal": { + "label": "cim:TopologicalNode.Terminal", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Terminal." + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCTopologicalNode": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DCTopologicalNode", + "fields": { + "DCTerminals": { + "label": "cim:DCTopologicalNode.DCTerminals", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCBaseTerminal.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCBaseTerminal." + }, + "DCEquipmentContainer": { + "label": "cim:DCTopologicalNode.DCEquipmentContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DCNodes": { + "label": "cim:DCTopologicalNode.DCNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DCNode." + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ConnectivityNode": { + "rdf_type": " rdf:about=\"#", + "label": "cim:ConnectivityNode", + "fields": { + "TopologicalNode": { + "label": "cim:ConnectivityNode.TopologicalNode", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + } + } + }, + "Terminal": { + "rdf_type": " rdf:about=\"#", + "label": "cim:Terminal", + "fields": { + "TopologicalNode": { + "label": "cim:Terminal.TopologicalNode", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DCTerminal": { + "rdf_type": " rdf:about=\"#", + "label": "cim:DCTerminal", + "fields": { + "DCTopologicalNode": { + "label": "cim:DCBaseTerminal.DCTopologicalNode", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ACDCConverterDCTerminal": { + "rdf_type": " rdf:about=\"#", + "label": "cim:ACDCConverterDCTerminal", + "fields": { + "DCTopologicalNode": { + "label": "cim:DCBaseTerminal.DCTopologicalNode", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "FullModel": { + "rdf_type": " rdf:ID=\"", + "label": "cim:FullModel", + "fields": {} + }, + "DCNode": { + "rdf_type": " rdf:about=\"#", + "label": "cim:DCNode", + "fields": { + "DCTopologicalNode": { + "label": "cim:DCNode.DCTopologicalNode", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + } + }, + "tp_bd": { + "TopologicalNode": { + "rdf_type": " rdf:ID=\"", + "label": "cim:TopologicalNode", + "fields": { + "BaseVoltage": { + "label": "cim:TopologicalNode.BaseVoltage", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "ConnectivityNodes": { + "label": "cim:TopologicalNode.ConnectivityNodes", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#ConnectivityNode." + }, + "ConnectivityNodeContainer": { + "label": "cim:TopologicalNode.ConnectivityNodeContainer", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "boundaryPoint": { + "label": "entsoe:TopologicalNode.boundaryPoint", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "fromEndIsoCode": { + "label": "entsoe:TopologicalNode.fromEndIsoCode", + "data_type": "String", + "data_type_prim": "String" + }, + "fromEndName": { + "label": "entsoe:TopologicalNode.fromEndName", + "data_type": "String", + "data_type_prim": "String" + }, + "fromEndNameTso": { + "label": "entsoe:TopologicalNode.fromEndNameTso", + "data_type": "String", + "data_type_prim": "String" + }, + "toEndIsoCode": { + "label": "entsoe:TopologicalNode.toEndIsoCode", + "data_type": "String", + "data_type_prim": "String" + }, + "toEndName": { + "label": "entsoe:TopologicalNode.toEndName", + "data_type": "String", + "data_type_prim": "String" + }, + "toEndNameTso": { + "label": "entsoe:TopologicalNode.toEndNameTso", + "data_type": "String", + "data_type_prim": "String" + }, + "description": { + "label": "cim:IdentifiedObject.description", + "data_type": "String", + "data_type_prim": "String" + }, + "energyIdentCodeEic": { + "label": "entsoe:IdentifiedObject.energyIdentCodeEic", + "data_type": "String", + "data_type_prim": "String" + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + }, + "shortName": { + "label": "entsoe:IdentifiedObject.shortName", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "ConnectivityNode": { + "rdf_type": " rdf:about=\"#", + "label": "cim:ConnectivityNode", + "fields": { + "TopologicalNode": { + "label": "cim:ConnectivityNode.TopologicalNode", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + } + } + }, + "FullModel": { + "rdf_type": " rdf:ID=\"", + "label": "cim:FullModel", + "fields": {} + } + }, + "dl": { + "Diagram": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Diagram", + "fields": { + "DiagramStyle": { + "label": "cim:Diagram.DiagramStyle", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "orientation": { + "label": "cim:Diagram.orientation", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OrientationKind.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#OrientationKind." + }, + "x1InitialView": { + "label": "cim:Diagram.x1InitialView", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "x2InitialView": { + "label": "cim:Diagram.x2InitialView", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "y1InitialView": { + "label": "cim:Diagram.y1InitialView", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "y2InitialView": { + "label": "cim:Diagram.y2InitialView", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "DiagramElements": { + "label": "cim:Diagram.DiagramElements", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DiagramObject.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DiagramObject." + }, + "DiagramObjects": { + "label": "cim:IdentifiedObject.DiagramObjects", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DiagramObject.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DiagramObject." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DiagramObject": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DiagramObject", + "fields": { + "Diagram": { + "label": "cim:DiagramObject.Diagram", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "drawingOrder": { + "label": "cim:DiagramObject.drawingOrder", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "isPolygon": { + "label": "cim:DiagramObject.isPolygon", + "data_type": "Boolean", + "data_type_prim": "Boolean" + }, + "offsetX": { + "label": "cim:DiagramObject.offsetX", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "offsetY": { + "label": "cim:DiagramObject.offsetY", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "rotation": { + "label": "cim:DiagramObject.rotation", + "data_type": "AngleDegrees", + "data_type_prim": "Float" + }, + "IdentifiedObject": { + "label": "cim:DiagramObject.IdentifiedObject", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DiagramObjectPoints": { + "label": "cim:DiagramObject.DiagramObjectPoints", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DiagramObjectPoint.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DiagramObjectPoint." + }, + "VisibilityLayers": { + "label": "cim:DiagramObject.VisibilityLayers", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#VisibilityLayer.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#VisibilityLayer." + }, + "DiagramObjectStyle": { + "label": "cim:DiagramObject.DiagramObjectStyle", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DiagramObjects": { + "label": "cim:IdentifiedObject.DiagramObjects", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DiagramObject.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#DiagramObject." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "DiagramObjectPoint": { + "rdf_type": " rdf:ID=\"", + "label": "cim:DiagramObjectPoint", + "fields": { + "DiagramObject": { + "label": "cim:DiagramObjectPoint.DiagramObject", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "DiagramObjectGluePoint": { + "label": "cim:DiagramObjectPoint.DiagramObjectGluePoint", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "sequenceNumber": { + "label": "cim:DiagramObjectPoint.sequenceNumber", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "xPosition": { + "label": "cim:DiagramObjectPoint.xPosition", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "yPosition": { + "label": "cim:DiagramObjectPoint.yPosition", + "data_type": "Simple_Float", + "data_type_prim": "Float" + }, + "zPosition": { + "label": "cim:DiagramObjectPoint.zPosition", + "data_type": "Simple_Float", + "data_type_prim": "Float" + } + } + } + }, + "gl": { + "CoordinateSystem": { + "rdf_type": " rdf:ID=\"", + "label": "cim:CoordinateSystem", + "fields": { + "crsUrn": { + "label": "cim:CoordinateSystem.crsUrn", + "data_type": "String", + "data_type_prim": "String" + }, + "Location": { + "label": "cim:CoordinateSystem.Location", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Location.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#Location." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "Location": { + "rdf_type": " rdf:ID=\"", + "label": "cim:Location", + "fields": { + "CoordinateSystem": { + "label": "cim:Location.CoordinateSystem", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "PowerSystemResources": { + "label": "cim:Location.PowerSystemResources", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "PositionPoints": { + "label": "cim:Location.PositionPoints", + "data_type": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PositionPoint.", + "data_type_prim": " rdf:resource=\"http://iec.ch/TC57/2013/CIM-schema-cim16#PositionPoint." + }, + "mRID": { + "label": "cim:IdentifiedObject.mRID", + "data_type": "String", + "data_type_prim": "String" + }, + "name": { + "label": "cim:IdentifiedObject.name", + "data_type": "String", + "data_type_prim": "String" + } + } + }, + "PositionPoint": { + "rdf_type": " rdf:ID=\"", + "label": "cim:PositionPoint", + "fields": { + "Location": { + "label": "cim:PositionPoint.Location", + "data_type": " rdf:resource=\"#", + "data_type_prim": " rdf:resource=\"#" + }, + "sequenceNumber": { + "label": "cim:PositionPoint.sequenceNumber", + "data_type": "Integer", + "data_type_prim": "Integer" + }, + "xPosition": { + "label": "cim:PositionPoint.xPosition", + "data_type": "String", + "data_type_prim": "String" + }, + "yPosition": { + "label": "cim:PositionPoint.yPosition", + "data_type": "String", + "data_type_prim": "String" + }, + "zPosition": { + "label": "cim:PositionPoint.zPosition", + "data_type": "String", + "data_type_prim": "String" + } + } + } + } +} \ No newline at end of file