Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

AttributeDescriptionExpected valuesMandatory
datasetsarray of datasets
Yes
dataset_refthis identifies the dataset referenceAny non empty stringYes
data_objectsarray of data objects
No
data_objects.labellabel of the data objectAny non empty stringNo
data_objects.typeidtype of Common Data Class (CDC)enum Sps | Dps | Mv | Spc | Dpc | ...No
reportcontrolblockif present then read data values using reportcontrolblock 
No
reportcontrolblock.rcb_refreport control block referenceAny non empty stringNo

NB: if data_objects is not specified, then all data objects of the dataset are read.

...

Code Block
languagejs
{
   "exchanged_datasets":{
      "name":"SAMPLE",
      "version":"1.0",
      "datasets":[
         {
            "dataset_ref":"simpleIOGenericIO/LLN0.Events",
            "data_objects":[
               {
                  "label":"TS1",
                  "typeid":"SPS"
               },
               {
                  "label":"TS2",
                  "typeid":"SPS"
               }
            ],
            "reportcontrolblock":{
               "rcb_ref":"simpleIOGenericIO/LLN0.RP.EventsRCB"
            }
         },
         {
            "dataset_ref":"simpleIOGenericIO/LLN0.Events2"
         },
         {
            "dataset_ref":"simpleIOGenericIO/LLN0.Measurements"
         }
      ]
   }
}

...