(More Shawarma)
|
(→SCM Change Log Schema)
|
Line 293: | |||
</xsd:schema> </pre> | </xsd:schema> </pre> | ||
+ | == Source-analytics Schema == | ||
+ | </pre><xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||
+ | <xsd:complexType name="SourceAnalytics"> | ||
+ | <xsd:sequence> | ||
+ | <xsd:element name="finding" type="Finding" minOccurs="0" maxOccurs="unbounded"/> | ||
+ | </xsd:sequence> | ||
+ | <xsd:attribute name="name" type="xsd:string" use="required"/> | ||
+ | <xsd:attribute name="type" type="xsd:string" use="required"/> | ||
+ | <xsd:attribute name="buildLifeId" type="xsd:long" use="required"/> | ||
+ | <xsd:attribute name="urlLink" type="xsd:string" use="optional"/> | ||
+ | <xsd:attribute name="findingUrlLink" type="xsd:string" use="optional"/> | ||
+ | </xsd:complexType> | ||
+ | <xsd:complexType name="Finding"> | ||
+ | <xsd:sequence> | ||
+ | <xsd:element name="id" type="xsd:string" minOccurs="0" maxOccurs="1"/> | ||
+ | <xsd:element name="file" type="xsd:string" minOccurs="0" maxOccurs="1"/> | ||
+ | <xsd:element name="line" type="xsd:long" minOccurs="0" maxOccurs="1"/> | ||
+ | <xsd:element name="name" type="xsd:string" minOccurs="0" maxOccurs="1"/> | ||
+ | <xsd:element name="severity" type="xsd:string" minOccurs="0" maxOccurs="1"/> | ||
+ | <xsd:element name="description" type="xsd:string" minOccurs="0" maxOccurs="1"/> | ||
+ | <xsd:element name="status" type="xsd:string" minOccurs="0" maxOccurs="1"/> | ||
+ | </xsd:sequence> | ||
+ | </xsd:complexType> | ||
+ | <xsd:element name="analytics" type="SourceAnalytics"/> | ||
+ | </xsd:schema> </pre> |