├── .gitignore ├── DTDL ├── base_annotation.json ├── base_device.json ├── base_options.json ├── base_parameter.json ├── base_sink.json ├── base_source.json ├── base_stream.json ├── dataset.json ├── demo │ └── siemens-ie-demo.dtdl.json ├── edge.json ├── emb.json ├── emb_source.json ├── emb_stream.json ├── generic_source.json ├── generic_stream.json ├── iot_hub_sink.json ├── ml-annotation.json ├── mqtt-source.json ├── mqtt-stream.json ├── opcua_source.json ├── opcua_stream.json ├── options_persistence.json ├── options_publish.json ├── rabbitmq_source.json ├── rabbitmq_stream.json ├── replay_value_source.json ├── replay_value_stream.json ├── rest-source.json ├── rest-stream-restbase.json ├── rest-stream-restpayload.json ├── rest-stream-reststream.json ├── siemens_industrial_edge_source.json ├── siemens_industrial_edge_stream.json ├── simulated_value_source.json ├── simulated_value_stream.json ├── ssm.json ├── ssm_sink.json ├── ssm_source_air_quality.json ├── ssm_source_deviceinterfaceprotocol.json ├── ssm_source_modbus.json ├── ssm_source_xmc.json ├── ssm_stream_air_quality.json ├── ssm_stream_deviceinterfaceprotocol.json ├── ssm_stream_modbus.json ├── ssm_stream_xmc.json ├── tcads_parameter.json ├── tcads_source.json ├── tcads_stream.json └── valuechange_options.json ├── LICENCE.md ├── README.md ├── examples ├── ads-demo.json ├── battery-pack-renault-zoe.json ├── charging-station-linz.json ├── ml-replay-demo.json ├── opcua-demo.json ├── rabbit-mq-demo.json └── steel-factory-plant-line-twin.json └── vocabulary.json /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea -------------------------------------------------------------------------------- /DTDL/base_annotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/base_annotation.json -------------------------------------------------------------------------------- /DTDL/base_device.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/base_device.json -------------------------------------------------------------------------------- /DTDL/base_options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/base_options.json -------------------------------------------------------------------------------- /DTDL/base_parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/base_parameter.json -------------------------------------------------------------------------------- /DTDL/base_sink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/base_sink.json -------------------------------------------------------------------------------- /DTDL/base_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/base_source.json -------------------------------------------------------------------------------- /DTDL/base_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/base_stream.json -------------------------------------------------------------------------------- /DTDL/dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/dataset.json -------------------------------------------------------------------------------- /DTDL/demo/siemens-ie-demo.dtdl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/demo/siemens-ie-demo.dtdl.json -------------------------------------------------------------------------------- /DTDL/edge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/edge.json -------------------------------------------------------------------------------- /DTDL/emb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/emb.json -------------------------------------------------------------------------------- /DTDL/emb_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/emb_source.json -------------------------------------------------------------------------------- /DTDL/emb_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/emb_stream.json -------------------------------------------------------------------------------- /DTDL/generic_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/generic_source.json -------------------------------------------------------------------------------- /DTDL/generic_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/generic_stream.json -------------------------------------------------------------------------------- /DTDL/iot_hub_sink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/iot_hub_sink.json -------------------------------------------------------------------------------- /DTDL/ml-annotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/ml-annotation.json -------------------------------------------------------------------------------- /DTDL/mqtt-source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/mqtt-source.json -------------------------------------------------------------------------------- /DTDL/mqtt-stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/mqtt-stream.json -------------------------------------------------------------------------------- /DTDL/opcua_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/opcua_source.json -------------------------------------------------------------------------------- /DTDL/opcua_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/opcua_stream.json -------------------------------------------------------------------------------- /DTDL/options_persistence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/options_persistence.json -------------------------------------------------------------------------------- /DTDL/options_publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/options_publish.json -------------------------------------------------------------------------------- /DTDL/rabbitmq_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/rabbitmq_source.json -------------------------------------------------------------------------------- /DTDL/rabbitmq_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/rabbitmq_stream.json -------------------------------------------------------------------------------- /DTDL/replay_value_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/replay_value_source.json -------------------------------------------------------------------------------- /DTDL/replay_value_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/replay_value_stream.json -------------------------------------------------------------------------------- /DTDL/rest-source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/rest-source.json -------------------------------------------------------------------------------- /DTDL/rest-stream-restbase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/rest-stream-restbase.json -------------------------------------------------------------------------------- /DTDL/rest-stream-restpayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/rest-stream-restpayload.json -------------------------------------------------------------------------------- /DTDL/rest-stream-reststream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/rest-stream-reststream.json -------------------------------------------------------------------------------- /DTDL/siemens_industrial_edge_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/siemens_industrial_edge_source.json -------------------------------------------------------------------------------- /DTDL/siemens_industrial_edge_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/siemens_industrial_edge_stream.json -------------------------------------------------------------------------------- /DTDL/simulated_value_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/simulated_value_source.json -------------------------------------------------------------------------------- /DTDL/simulated_value_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/simulated_value_stream.json -------------------------------------------------------------------------------- /DTDL/ssm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/ssm.json -------------------------------------------------------------------------------- /DTDL/ssm_sink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/ssm_sink.json -------------------------------------------------------------------------------- /DTDL/ssm_source_air_quality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/ssm_source_air_quality.json -------------------------------------------------------------------------------- /DTDL/ssm_source_deviceinterfaceprotocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/ssm_source_deviceinterfaceprotocol.json -------------------------------------------------------------------------------- /DTDL/ssm_source_modbus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/ssm_source_modbus.json -------------------------------------------------------------------------------- /DTDL/ssm_source_xmc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/ssm_source_xmc.json -------------------------------------------------------------------------------- /DTDL/ssm_stream_air_quality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/ssm_stream_air_quality.json -------------------------------------------------------------------------------- /DTDL/ssm_stream_deviceinterfaceprotocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/ssm_stream_deviceinterfaceprotocol.json -------------------------------------------------------------------------------- /DTDL/ssm_stream_modbus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/ssm_stream_modbus.json -------------------------------------------------------------------------------- /DTDL/ssm_stream_xmc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/ssm_stream_xmc.json -------------------------------------------------------------------------------- /DTDL/tcads_parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/tcads_parameter.json -------------------------------------------------------------------------------- /DTDL/tcads_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/tcads_source.json -------------------------------------------------------------------------------- /DTDL/tcads_stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/tcads_stream.json -------------------------------------------------------------------------------- /DTDL/valuechange_options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/DTDL/valuechange_options.json -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/README.md -------------------------------------------------------------------------------- /examples/ads-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/examples/ads-demo.json -------------------------------------------------------------------------------- /examples/battery-pack-renault-zoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/examples/battery-pack-renault-zoe.json -------------------------------------------------------------------------------- /examples/charging-station-linz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/examples/charging-station-linz.json -------------------------------------------------------------------------------- /examples/ml-replay-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/examples/ml-replay-demo.json -------------------------------------------------------------------------------- /examples/opcua-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/examples/opcua-demo.json -------------------------------------------------------------------------------- /examples/rabbit-mq-demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/examples/rabbit-mq-demo.json -------------------------------------------------------------------------------- /examples/steel-factory-plant-line-twin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/examples/steel-factory-plant-line-twin.json -------------------------------------------------------------------------------- /vocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tributech-solutions/data-asset-twin/HEAD/vocabulary.json --------------------------------------------------------------------------------