You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The RELAX NG grammar in Annex D defines the content model of svrl:property-reference as follows:
property-reference = element property-reference { attribute property { xsd:NMTOKEN }, attribute role { text }?, attribute scheme { text }?, human-text }
human-text = element text { attribute xml:space { text }?, attribute xml:lang { text }?, attribute see { text }?, attribute icon { text }?, attribute fpi { text }?, rich-text }
rich-text = (foreign | dir | span | emph | text)*
That is: It must contain exactly one svrl:text child element that may contain text or foreign elements.
The example in Annex N (N.9) shows a SVRL property reference with the foreign elements as children of the svrl:property-reference element.
The text was updated successfully, but these errors were encountered:
Maybe
property-reference = element property-reference { attribute property {
xsd:NMTOKEN }, attribute role { text }?, attribute scheme { text }?,
(foreign | human-text)+}
Would be better
Or
property-reference = element property-reference { attribute property {
xsd:NMTOKEN }, attribute role { text }?, attribute scheme { text }?,
foreign*, (human-text, foreign*)?}
On Fri, 20 Dec 2024, 11:05 pm David Maus, ***@***.***> wrote:
The RELAX NG grammar in Annex D defines the content model of
svrl:property-reference as follows:
property-reference = element property-reference { attribute property { xsd:NMTOKEN }, attribute role { text }?, attribute scheme { text }?, human-text }
human-text = element text { attribute xml:space { text }?, attribute xml:lang { text }?, attribute see { text }?, attribute icon { text }?, attribute fpi { text }?, rich-text }
rich-text = (foreign | dir | span | emph | text)*
That is: It must contain exactly one svrl:text child element that may
contain text or foreign elements.
The example in Annex N (N.9) shows a SVRL property reference with the
foreign elements as children of the svrl:property-reference element.
—
Reply to this email directly, view it on GitHub
<#79>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AF65KKJQUL6LV3IIS4MQQB32GQBYNAVCNFSM6AAAAABT677DXGVHI2DSMVQWIX3LMV43ASLTON2WKOZSG42TENRQGEZTCMY>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
The RELAX NG grammar in Annex D defines the content model of
svrl:property-reference
as follows:That is: It must contain exactly one
svrl:text
child element that may contain text or foreign elements.The example in Annex N (N.9) shows a SVRL property reference with the foreign elements as children of the
svrl:property-reference
element.The text was updated successfully, but these errors were encountered: