While working on WG AI, I noticed that in the Analytics service we have
But in metadata.xsd we have
<xs:complexType name="LicensePlateInfo">
<xs:sequence>
<xs:element name="PlateNumber" type="tt:StringLikelihood">
<xs:annotation>
<xs:documentation>A string of vehicle license plate number.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="PlateType" type="tt:StringLikelihood" minOccurs="0" maxOccurs="1"> <!-- tt:PlateType lists the acceptable values" -->
<xs:annotation>
<xs:documentation>A description of the vehicle license plate, e.g., "Normal", "Police", "Diplomat"</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CountryCode" type="tt:StringLikelihood" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Describe the country of the license plate, in order to avoid the same license plate number.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="IssuingEntity" type="tt:StringLikelihood" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>State province or authority that issue the license plate.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> <!-- first ONVIF then vendor -->
</xs:sequence>
<xs:anyAttribute processContents="lax"/>
</xs:complexType>
So, there is no color in the xsd. What do we do? To we add the file to the XSD file or delete the row of the table?
While working on WG AI, I noticed that in the Analytics service we have
But in metadata.xsd we have
So, there is no color in the xsd. What do we do? To we add the file to the XSD file or delete the row of the table?