Skip to content

Commit

Permalink
deploy: 0cc9e37
Browse files Browse the repository at this point in the history
  • Loading branch information
DirkMahler committed Jan 15, 2025
1 parent a08d798 commit 24c44a5
Show file tree
Hide file tree
Showing 21 changed files with 15,624 additions and 0 deletions.
Binary file added 2.6.0-M3/images/jqa.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12,241 changes: 12,241 additions & 0 deletions 2.6.0-M3/index.html

Large diffs are not rendered by default.

38 changes: 38 additions & 0 deletions 2.6.0-M3/schema/jqassistant-baseline-v2.4.xsd
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:tns="http://schema.jqassistant.org/baseline/v2.4"
targetNamespace="http://schema.jqassistant.org/baseline/v2.4"
elementFormDefault="qualified">

<xs:element name="jqassistant-baseline">
<xs:complexType>
<xs:sequence>
<xs:element name="constraint" type="tns:RuleType" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="concept" type="tns:RuleType" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>

<xs:complexType name="RuleType">
<xs:sequence>
<xs:element name="row" type="tns:RowType" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="id" type="xs:string" use="required"/>
</xs:complexType>

<xs:complexType name="RowType">
<xs:sequence>
<xs:element name="column" type="tns:ColumnType" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="key" type="xs:string" use="required"/>
</xs:complexType>

<xs:complexType name="ColumnType">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="name" type="xs:string" use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>

</xs:schema>
Loading

0 comments on commit 24c44a5

Please sign in to comment.