The ModelParser
class is used to determine whether one or more DTDL models are valid, to identify specific modeling errors, and to enable inspection of model contents.
This tutorial walks through the second of these uses: how to identify and fix modeling errors.
An asynchronous version of this tutorial is also available.
To parse a DTDL model, you need to instantiate a ModelParser
.
No arguments are required.
var modelParser = new ModelParser();
The DTDL language is syntactically JSON.
The ModelParser
expects a single string or an enumeration of strings.
The single string or each value in the enumeration is JSON text of a DTDL model.
The following model contains several errors.
string jsonText =
@"{
""@context"": ""dtmi:dtdl:context;3"",
""@id"": ""dtmi:example:anInterface;1"",
""@type"": ""Interface"",
""content"": [
{
""@type"": ""Telemtry"",
""name"": ""currentDistance""
}
]
}";
The main synchronous method on the ModelParser
is Parse()
.
One argument is required, which can be either a string or an enumeration of strings containing the JSON text to parse as DTDL.
If the submitted model is invalid, a ParsingException
will be thrown.
try
{
var objectModel = modelParser.Parse(jsonText);
Console.WriteLine($"DTDL model is valid!");
}
catch (ResolutionException ex)
{
Console.WriteLine($"DTDL model is referentially incomplete: {ex}");
}
catch (ParsingException ex)
{
Console.WriteLine("DTDL model is invalid:");
foreach (ParsingError err in ex.Errors)
{
Console.WriteLine(err);
}
}
The ParsingException
has a property named Errors
that is a collection of ParsingError
objects, each of which provides details about one error in the submitted model.
The ParsingError
class has several properties that can be programatically inspected to obtain details of the error.
This class also overrides the ToString()
method to provide a human-readable description of the error.
The Errors
property is a collection because the ModelParser
report as many errors as it can identify, instead of stopping the parse at the first error.
However, certain errors will prevent other errors from being observed, as this tutorial will illustrate.
For the JSON text above, the code snippet above will display a single error:
DTDL model is invalid:
dtmi:example:anInterface;1's property 'content' is an undefined term in DTDL v3. Replace property 'content' with a string that is either a defined term in DTDL v3 or a valid DTMI -- see aka.ms/dtmi.
Looking at the JSON text, we see that element whose @id
is dtmi:example:anInterface;1
has a property named content
, which is not a valid property for an Interface
.
The property should be named contents
.
This is corrected as follows:
jsonText =
@"{
""@context"": ""dtmi:dtdl:context;3"",
""@id"": ""dtmi:example:anInterface;1"",
""@type"": ""Interface"",
""contents"": [
{
""@type"": ""Telemtry"",
""name"": ""currentDistance""
}
]
}";
When this JSON text is submitted to the code snippet above, it displays:
DTDL model is invalid:
dtmi:example:anInterface;1 has 'contents' value with name 'currentDistance' which has @type that specifies type Telemtry that is an undefined term in DTDL v3. Remove @type Telemtry or replace with an appropriate DTDL v3 type -- see aka.ms/dtdl.
Previously, when the property named contents
was misnamed content
, the above error was hidden, because this error reflects a restriction on the allowed values of contents
.
Looking at the JSON text above, we see that the value of contents
is a JSON object whose @type
is "Telemtry"
, which is a misspelling of "Telemetry"
.
This is corrected as follows:
jsonText =
@"{
""@context"": ""dtmi:dtdl:context;3"",
""@id"": ""dtmi:example:anInterface;1"",
""@type"": ""Interface"",
""contents"": [
{
""@type"": ""Telemetry"",
""name"": ""currentDistance""
}
]
}";
When this JSON text is submitted to the code snippet above, it displays:
DTDL model is invalid:
dtmi:example:anInterface;1 has 'contents' value with name 'currentDistance' which requires property 'schema'; however, this property is not present. Add a property 'schema' to the element.
Previously, when the @type
of the contents
value was misspelled as Telemtry
, the above error was hidden, because this error reflects a restriction on the allowed values of elements that have type Telemetry
.
The missing schema
property can be corrected as follows:
jsonText =
@"{
""@context"": ""dtmi:dtdl:context;3"",
""@id"": ""dtmi:example:anInterface;1"",
""@type"": ""Interface"",
""contents"": [
{
""@type"": ""Telemetry"",
""name"": ""currentDistance"",
""schema"": ""double""
}
]
}";
The JSON text above is valid DTDL, so the code snippet above will display:
DTDL model is valid!