Hello @Anonymous ,
I was able to find the models and load them into an ADT environment:
As you can see, I'm able to construct relationships, including multiple thermostats in the same room.
Notice I found four models.
I then checked the models themselves, in Visual Code and it puzzles me how these are related.
There are no direct (typed) relationships between the different models...
I suggest your next steps are building new models with relationships that make sense like:
{
"@id": "dtmi:com:adt:flightintoint:airliner;5",
"@type": "Interface",
"displayName": "Airliner - Flight Into IoT - Interface Model",
"@context": "dtmi:dtdl:context;2",
"contents": [
{
"@type": "Property",
"name": "companyName",
"description": "Name of company",
"schema": "string"
},
{
"@type": "Property",
"name": "abbreviation",
"description": "Abbreviation",
"schema": "string"
},
{
"@type": "Relationship",
"@id": "dtmi:com:adt:flightintoiot:airliner_has_airplane;5",
"name": "rel_has_airplanes",
"displayName": "Has airplanes",
"target": "dtmi:com:adt:flightintoiot:airplane;5"
}
]
}
If the response helped, do "Accept Answer". If it doesn't work, please let us know the progress. All community members with similar issues will benefit by doing so. Your contribution is highly appreciated.