Skip to content

Commit

Permalink
Fix issue with XSD schema and @id tag
Browse files Browse the repository at this point in the history
Fixes #135
  • Loading branch information
jmccrae committed Aug 8, 2024
1 parent 257b428 commit 712f83b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dmlex-v1.0/specification/schemas/XML/dmlex.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ It might be possible to re-write them as <assert>s using concatenation of values
<xs:selector xpath="etymonType"/>
<xs:field xpath="@type"/>
</xs:unique>
<xs:key name="entryOrSenseOrCollocateMarkerKey">
<xs:unique name="entryOrSenseOrCollocateMarkerKey">
<xs:selector xpath=".//entry | .//sense | .//collocateMarker"/>
<xs:field xpath="@id"/>
</xs:key>
</xs:unique>
<xs:keyref name="memberRef" refer="entryOrSenseOrCollocateMarkerKey">
<xs:selector xpath=".//member"/>
<xs:field xpath="@ref"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ It might be possible to re-write them as <assert>s using concatenation of values
<xs:selector xpath="etymonType"/>
<xs:field xpath="@type"/>
</xs:unique>
<xs:key name="entryOrSenseOrCollocateMarkerKey">
<xs:unique name="entryOrSenseOrCollocateMarkerKey">
<xs:selector xpath=".//entry | .//sense | .//collocateMarker"/>
<xs:field xpath="@id"/>
</xs:key>
</xs:unique>
<xs:keyref name="memberRef" refer="entryOrSenseOrCollocateMarkerKey">
<xs:selector xpath=".//member"/>
<xs:field xpath="@ref"/>
Expand Down

0 comments on commit 712f83b

Please sign in to comment.