Copyright © 2008 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C liability, trademark and document use rules apply.
This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.
This document is being published as one of a set of 8 documents:
The Rule Interchange Format (RIF) Working Group seeks public feedback on these Working Drafts. Please send your comments to public-rif-comments@w3.org (public archive). If possible, please offer specific changes to the text that would address your concern. You may also wish to check the Wiki Version of this document for internal-review comments and changes being drafted which may address your concerns.
Publication as a Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress.
This document was produced by a group operating under the 5 February 2004 W3C Patent Policy. W3C maintains a public list of any patent disclosures made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains Essential Claim(s) must disclose the information in accordance with section 6 of the W3C Patent Policy.
This document, developed by the Rule Interchange Format (RIF) Working Group, specifies a list of primitive datatypes, built-in functions and built-in predicates expected to be supported by RIF dialects such as the RIF Basic Logic Dialect. Each dialect supporting a superset or subset of the primitive datatypes, built-in functions and built-in predicates defined here shall specify these additions or restrictions. Some of the datatypes are adopted from [XML-SCHEMA2].
A large part of the definitions of the listed functions and operators are adapted from [XPath-Functions].
Each constant (that is, each non-keyword symbol) in RIF belongs to a particular symbol space. A constant in a particular RIF symbol space has the following presentation syntax:
"literal"^^<symbolSpaceIri>
where literal is called the lexical part of the symbol, and symbolSpaceIri is an (absolute or relative) IRI identifying the symbol space. Here literal is a Unicode string that must be an element in the lexical space of the symbol space identified by the IRI symbolSpaceIri.
Since IRI typically require long strings of characters, many Web languages have special provisions for abbreviating these strings. One popular technique is called compact URI [CURIE], and RIF uses a similar technique by allowing RIF documents to have the directives Base and Prefix.
The Base directive defines a syntactic shortcut for expanding relative IRIs into full IRIs.
The basic idea is that in certain contexts prefixes can be used instead of their much longer expansions, and this provides for a much more concise and simple notation. The precise way this mechanism works is explained in Section Shortcuts for Constants in RIF's Presentation Syntax.
The precise way in which these directives work is explained in Section Shortcuts for Constants in RIF's Presentation Syntax.
To avoid writing down long IRIs, this document will assume that the following Prefix directives have been specified in all the RIF documents under consideration:
Using these prefixes and the shorthand mechanism defined in Section Shortcuts for Constants in RIF's Presentation Syntax, we can, for example, abbreviate a constant such as "http://www.example.org"^^<http://www.w3.org/2007/rif#iri> into "http://www.example.org"^^rif:iri.
Formally, we define symbol spaces as follows.
Definition (Symbol space). A symbol space is a named subset of the set of all constants, Const in RIF. Each symbol in Const belongs to exactly one symbol space.
Each symbol space has an associated lexical space and a unique IRI identifying it. More precisely,
The identifiers of symbol spaces are not themselves constant symbols in RIF.
For convenience we will often use symbol space identifiers to refer to the actual symbol spaces (for instance, we may use "symbol space xs:string" instead of "symbol space identified by xs:string").
RIF dialects are expected to include the following symbol spaces. However, rule sets that are exchanged through RIF can use additional symbol spaces.
The lexical spaces of the above symbol spaces are defined in the document [XML-SCHEMA2].
These two symbol spaces represent two subtypes of the XML Schema datatype xs:duration with well-defined value spaces, since xs:duration does not have a well-defined value space (this may be corrected in later revisions of XML Schema datatypes, in which case the revised datatype would be suitable for RIF DTB). The lexical spaces of the above symbol spaces are defined in the document [XDM].
This symbol space represents XML content. The lexical space of rdf:XMLLiteral is defined in the document [RDF-CONCEPTS].
This symbol space represents text strings with a language tag attached. The lexical space of rif:text is the set of all Unicode strings of the form ...@LANG, i.e., strings that end with @LANG where LANG is a language identifier as defined in [BCP-47].
Editor's Note: rif:text (in particular, its identifying IRI) is an AT RISK feature. We expect a joint effort with the OWL WG to discuss rif:text and the equivalent OWL datatype, striving for a uniform symbol space for such text strings with a language tag.
Constants in this symbol space are intended to be used in a way similar to RDF resources [RDF-SCHEMA]. The lexical space consists of all absolute IRIs as specified in [RFC-3987]; it is unrelated to the XML primitive type anyURI. A rif:iri constant must be interpreted as a reference to one and the same object regardless of the context in which that constant occurs.
Constants in this symbol space are local to the RIF documents in which they occur. This means that occurrences of the same rif:local constant in different documents are viewed as unrelated distinct constants, but occurrences of the same rif:local constant in the same document must refer to the same object. The lexical space of rif:local is the same as the lexical space of xs:string.
Note that, by the associated lexical space, not all unicode strings are syntactically valid lexical parts for all symbol spaces. That is, for instance "1.2"^^xs:decimal and "1"^^xs:integer are syntactically valid constant because 1.2 and 1 are members of the lexical space of symbol spaces xs:decimal and xs:integer, respectively. On the other hand, "a+2"^^xs:decimal is not a syntactically valid constant, since a+2 is not part of the lexical space of xs:decimal.
We will often refer to constant symbols that come from a particular symbol space, X, as X-constants. For instance the constants in the symbol space rif:iri will be referred to as IRI constants or rif:iri constants and the constants found in the symbol space rif:local as local constants or rif:local constants.
Besides the basic notion
"literal"^^<identifier>
RIF's presentation syntax introduces several shortcuts for particular symbol spaces, in order to make the presentation syntax more readable. RIF's presentation syntax for constants is defined by the following EBNF.
ANGLEBRACKIRI::= IRI_REF SYMSPACE ::= ANGLEBRACKIRI | CURIE CURIE ::= PNAME_LN | PNAME_NS Const ::= '"' UNICODESTRING '"^^' SYMSPACE | CONSTSHORT CONSTSHORT ::= ANGLEBRACKIRI // shortcut for "..."^^rif:iri | CURIE // shortcut for "..."^^rif:iri | '"' UNICODESTRING '"' // shortcut for "..."^^xs:string | NumericLiteral // shortcut for "..."^^xs:integer,xs:decimal,xs:double | '_' LocalName // shortcut for "..."^^rif:local
The EBNF grammar relies on reuse of nonterminals defined in the following grammar productions from other documents:
In this grammar, CURIE stands for compact IRIs [CURIE], which are used to abbreviate symbol space IRIs. For instance, one can write "http://www.example.org"^^rif:iri instead of "http://www.example.org"^^<http://www.w3.org/2007/rif#iri>, where rif is a prefix defined in Section Base and Prefix Directives. <p>Apart from compact IRIs, there exist convenient shortcut notations for constants in specific symbol spaces, namely for constants in the symbol spaces rif:iri, xs:string, xs:integer, xs:decimal, xs:double, and rif:local:
Constants in the the symbol space rif:iri can be abbreviated in two ways, either by simply using an absolute or relative IRI enclosed in angle brackets, or by writing a compact IRI. The symbol space identifier is dropped in both of these alternatives. For instance <http://www.example.org/xyz> is a valid abbreviation for "http://www.example.org/xyz"^^rif:iri and , ex:xyz is a valid abbreviation for this constant, if the directive
Prefix(ex http://www.example.org/)
is present in the RIF document in question.
Editor's Note: We might introduce additional shortcuts, e.g. for rif:text in future versions of this draft.
Relative IRIs in RIF documents are resolved with respect to the base IRI. Relative IRIs are combined with base IRIs as per Uniform Resource Identifier (URI): Generic Syntax [RFC-3986] using only the basic algorithm in Section 5.2. Neither Syntax-Based Normalization nor Scheme-Based Normalization (described in sections 6.2.2 and 6.2.3 of RFC-3986) are performed. Characters additionally allowed in IRI references are treated in the same way that unreserved characters are treated in URI references, per section 6.5 of Internationalized Resource Identifiers (IRIs) [RFC-3987].
Base IRIs are specified using the Base directive described in Section Base and Prefix Directives. At most one base directive per document is allowed. In the XML syntax, base IRIs are specified using the attribute xml:base.
For instance, the constant <./xyz> or "./xyz"^^rif:iri are both valid abbreviations in RIF for the constant http://www.example.org/xyz"^^rif:iri, if the following directive is present in the document:
Base(http://www.example.org)
Datatypes in RIF are symbol spaces which have special semantics. That is, each datatype is characterized by a fixed lexical space, value space and lexical-to-value-mapping.
Definition (Primitive datatype). A primitive datatype (or just a datatype, for short) is a symbol space that has
Semantic structures are always defined with respect to a particular set of datatypes, denoted by DTS. In a concrete dialect, DTS always includes the datatypes supported by that dialect. RIF dialects are expected to support the following primitive datatypes. However, RIF dialects may include additional datatypes.
Editor's Note: rif:text (in particular, its identifying IRI) is an AT RISK feature. We expect a joint effort with the OWL WG to discuss rif:text and the equivalent OWL datatype, striving for a uniform symbol space for such text strings with a language tag.
Their value spaces and the lexical-to-value-space mappings are defined as follows:
The value space and the lexical-to-value-space mapping for rif:text defined here are compatible with RDF's semantics for strings with named tags [RDF-SEMANTICS].
A RIF built-in function or predicate is a special case of externally defined terms, which are defined in RIF Framework for Logic Dialects and also reproduced in the direct definition of RIF Basic Logic Dialect (RIF-BLD).
In RIF's presentation syntax built-in predicates and functions are syntactically represented as external terms of the form:
'External' '(' Expr ')'
where Expr is a positional term as defined in RIF Framework for Logic Dialects (see also in RIF Basic Logic Dialect). For RIF's normative syntax, see the XML Serialization Framework in RIF-FLD, or, specifically for RIF-BLD, see XML Serialization Syntax for RIF-BLD.
RIF-FLD introduces the notion of an external schema to describe both both the syntax and semantics of exernally defined terms. In the special case of a RIF built-in, external schemas have an especially simple form. A built-in named f that takes n arguments has the schema
(?X1 ...?Xn; f(?X1 ...?Xn) )
Here f(?X1 ...?Xn) is the actual term that is used to refer to the built-in (in expressions of the form External(f(?X1 ...?Xn))) and ?X1 ...?Xn is the list of all variables in that term.
For convenience, a complete definition of external schemas is reproduced in Appendix: Schemas for Externally Defined Terms.
The semantics of external terms in RIF-FLD and RIF-BLD is defined using two mappings: Iexternal and Itruth Iexternal.
If represents a built-in function, Iexternal() must be that function.
For each built-in function with external schema , the present document specifies the mapping Iexternal().
In RIF logical semantics, this mapping is used to assign truth values to formulas. In the special case of RIF built-ins, it is used to assign truth values to RIF built-in predicates. The built-in predicates can have the truth values t or f only.
For a built-in predicate with schema , RIF-FLD and RIF-BLD require that the truth-valued mapping Itruth Iexternal() must agree with the specification of the corresponding built-in predicate.
For each RIF built-in predicate with schema , the present document specifies Itruth Iexternal().
This section provides a catalogue defining the syntax and semantics of a list of built-in predicates and functions in RIF. For each built-in, the following is defined:
As explained in Section Semantics of Built-ins, this corresponds to the mapping Iexternal() in the formal semantics of RIF-FLD and RIF-BLD, where is the external schema of the built-in.
As explained in Section Semantics of Built-ins, this corresponds to the mapping Itruth Iexternal() in the formal semantics of RIF-FLD and RIF-BLD, where is the external schema of the built-in.
Typically, built-in functions and predicates are defined over the value spaces of appropriate datatypes. These are the intended domains of the arguments. When an argument falls outside of its intended domain, it is understood as an error. Since this document defines a model-theoretic semantics for RIF built-ins, which does not support the notion of an error, the definitions leave the values of the built-in predicates and functions unspecified in such cases. This means that if one or more of the arguments is not in its intended domain, the value of Iexternal()(a1 ... an) can vary from one semantic structure to another. Similarly, Itruth Iexternal()(a1 ... an) can be t in some interpretations and f in others when an argument is not in the intended domain.
This indeterminacy in case of an error implies that applications must not make any assumptions about the values of built-ins in such situations. Implementations are even allowed to abort in such cases and the only safe way to communicate rule sets that contain built-ins among RIF-compliant systems is to use datatype guards.
Many built-in functions and predicates described below are adapted from [XPath-Functions] and, when appropriate, we will refer to the definitions in that specification in order to avoid copying them.
RIF defines guard predicates for all datatypes in Section Primitive Datatypes.
(?arg1; pred:isDATATYPE (?arg1 ) )
Here, DATATYPE is the short name for a datatype. As a naming convention we use the capitalized non-prefix XML local name part of the IRI denoting the datatype, for instance we use pred:isString for the guard predicate for xs:string, or pred:isText for the guard predicate for rif:text. Parties defining their own datatypes to be used in RIF exchanged rules may define their own guard predicates for these datatypes. Labels used for such additional guard predicates for datatypes not mentioned in the present document MAY follow the same naming convention where applicable without creating ambiguities with predicate names defined in the present document.
Editor's Note: The naming convention for guard predicates, particularly whether third parties defining their own datatypes should be encouraged/discouraged to reuse the standard pred: and func: namespaces to define their own built-in predicates and functions, are still under discussion in the working group.
Guard predicates do not depend on a specific intended domain.
Itruth Iexternal(?arg1; pred:isDATATYPE (?arg1 ) )(s1) = t if and only if s1 is in the value space of DATATYPE and f otherwise.
Accordingly, the following schemas are defined.
(?arg1; pred:isInteger(?arg1 ) )
(?arg1; pred:isDecimal (?arg1 ) )
(?arg1; pred:isDouble (?arg1 ) )
(?arg1; pred:isString (?arg1 ) )
(?arg1; pred:isTime (?arg1 ) )
(?arg1; pred:isDate (?arg1 ) )
(?arg1; pred:isDateTime (?arg1 ) )
(?arg1; pred:isDayTimeDuration (?arg1 ) )
(?arg1; pred:isYearMonthDuration (?arg1 ) )
(?arg1; pred:isXMLLiteral (?arg1 ) )
(?arg1; pred:isText (?arg1 ) )
Editor's Note: It was noted in discussions of the working group, that except guard predicates, also an analogous built-in function or predicate to SPARQL's datatype function is needed. This however has some technical implications, see http://lists.w3.org/Archives/Public/public-rif-wg/2008Jul/0096.html
Likewise, RIF defines negative guard predicates for all datatypes in Section Primitive Datatypes.
(?arg1; pred:isNotDATATYPE (?arg1 ) )
Here, DATATYPE is the short name for one of the datatypes mentioned in this document. As a naming convention we use the capitalized non-prefix XML local name part of the IRI denoting the datatype, for instance we use pred:isNotString for the negative guard predicate for xs:string, or pred:isNotText for the negative guard predicate for rif:text. Parties defining their own datatypes to be used in RIF exchanged rules may define their own negative guard predicates for these datatypes. Labels used for such additional negative guard predicates for datatypes not mentioned in the present document MAY follow the same naming convention where applicable without creating ambiguities with predicate names defined in the present document.
Editor's Note: The naming convention for negative guard predicates, particularly whether third parties defining their own datatypes should be encouraged/discouraged to reuse the standard pred: and func: namespaces to define their own built-in predicates and functions, are still under discussion in the working group.
Negative guard predicates do not depend on a specific intended domain.
Itruth Iexternal(?arg1; pred:isNotDATATYPE (?arg1 ) )(s1) = f if and only if s1 is in the value space of DATATYPE and t otherwise.
Accordingly, the following schemas are defined.
(?arg1; pred:isNotInteger (?arg1 ) )
(?arg1; pred:isNotDecimal (?arg1 ) )
(?arg1; pred:isNotDouble (?arg1 ) )
(?arg1; pred:isNotString (?arg1 ) )
(?arg1; pred:isNotTime (?arg1 ) )
(?arg1; pred:isNotDate (?arg1 ) )
(?arg1; pred:isNotDateTime (?arg1 ) )
(?arg1; pred:isNotDayTimeDuration (?arg1 ) )
(?arg1; pred:isNotYearMonthDuration (?arg1 ) )
(?arg1; pred:isNotXMLLiteral (?arg1 ) )
(?arg1; pred:isNotText (?arg1 ) )
Future dialects may extend this list of guards to other datatypes, but RIF does not require guards for all datatypes.
RIF defines cast functions for all datatypes mentioned in this document, i.e. for each datatype with IRI DATATYPEIRI there is an external function with the following schema:
(?arg1; <DATATYPEIRI> (?arg1 ) )
We now discuss the intended domains and mappings for these cast functions.
Editor's Note: In the following, we adapt several cast functions from [XPath-Functions]. Due to the subtle differences in e.g. error handling between RIF and [XPath-Functions], these definitions might still need refinement in future versions of this draft.
(?arg1; xs:double (?arg1 ) )
(?arg1; xs:integer (?arg1 ) ) and accordingly for all subtypes of xs:integer
(?arg1; xs:decimal (?arg1 ) )
(?arg1; xs:time (?arg1 ) )
(?arg1; xs:date (?arg1 ) )
(?arg1; xs:dateTime (?arg1 ) )
(?arg1; xs:dayTimeDuration (?arg1 ) )
(?arg1; xs:yearMonthDuration (?arg1 ) )
The value spaces of datatypes castable to xs:DATATYPE according to Section 17.1 of [XPath-Functions].
Iexternal(?arg1; xs:DATATYPE (?arg1 ) )(s1) = s1' such that s1' is the conversion of s1 to the value space of xs:DATATYPE according to Section 17.1 of [XPath-Functions]. Note that these conversions are only partial and note further that the subtypes of xs:integer do appear in the conversion table. Conversions from and to subtypes of xs:integer follow the same considerations as xs:integer in that table, by the XPath, XQuery type hierarchy in Section 1.6 of [XPath-Functions].
If the argument value is outside of the intended domain or outside the partial conversions defined in [XPath-Functions], the value of the function is left unspecified and can vary from one semantic structure to another.
Editor's Note: We might split this subsection into separate subsections per casting function in future versions of this document, following the convention of having one separate subsection per funtcion/predicate in the rest of the document. However, it seemed convenient here to group the cast functions which purely rely on XML Schema datatype casting into one common subsection.
(?arg1; xs:string (?arg1 ) )
The union of the value space of rif:text with the value spaces of datatypes castable to xs:string according to the table in Section 17.1 of [XPath-Functions].
Iexternal(?arg1; xs:DATATYPE (?arg1 ) )(s1) = s1' such that s1' is the conversion of s1 to the value space of xs:string
If the argument is outside the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
Editor's Note: The cast from rif:text to xs:string is still under discussion, i.e. whether the lang tag should be included when casting to xs:string or not.
(?arg1; rdf:XMLLiteral (?arg1 ) )
The intersection of the value space of xs:string with the lexical space of rdf:XMLLiteral, i.e. an xs:string can be cast to rdf:XMLLiteral if and only if its value is in the lexical space of rdf:XMLLiteral as defined in Resource Description Framework (RDF): Concepts and Abstract Syntax
Iexternal(?arg1; xs:DATATYPE (?arg1 ) )(s1) = s1' such that s1' is the XMLLiteral corresponding to the given string s1.
If the argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg1; rif:text (?arg1?arg2 ) )
The value space of xs:string for ?arg1 and the intersection of the value space of xs:string with all Unicode character sequences which are language identifiers as defined by [BCP-47] for ?arg2.
Iexternal(?arg1; rif:text (?arg1?arg2 ) )(s1 s2) = s' where s1 is a Unicode string and s2 is a Unicode character sequence which is language as defined by [BCP-47]. Then s' is defined exactly as the pair (s1, lowercase(s2)).
If the argument values are outside of the intended domains, the value of the function is left unspecified and can vary from one semantic structure to another.
Editor's Note: Conversion from rif:iri to xs:string and vice versa is still under discussion in the working group since rif:iri is not a datatype. For details, we refer to Issue-61. The following is a strawman proposal which might still change in future versions of this working draft.
Conversions from rif:iri to xs:string and vice versa cannot be defined by the casting functions as above since rif:iri is not a datatype with a well-defined value space.
To this end, since conversions from IRIs (resources) to strings are a needed feature for instance for conversions between RDF formats (see example below), we add a built-in predicate which supports such conversions.
(?arg1; pred:iri-to-string (?arg1,?arg2 ) )
The first argument is not restricted by a specific domain, the second argument is the value space of xs:string.
Iexternal(?arg1?arg2; pred:iri-to-string (?arg1?arg2 ) )(iri1 str1) = t if and only if str1 is an element in the lexical space of rif:iri and iri1 is an element of the domain such that I( "str1"^^rif:iri ) = iri1 holds in the current interpretation.
Note that this definition restricts allowed RIF interpretations in such a way that the interpretation of pred:iri-to-string always needs to comply with respect to the symbols in the rif:iri symbol space for the first argument and elements of the xs:string value space for the second argument. The truth value of the predicate is left unspecified for other elements of the domain and can vary from one semantic structure to another.
This predicate could be usable for instance to map telephone numbers between an RDF Format for vCard (http://www.w3.org/TR/vcard-rdf) and FOAF (http://xmlns.com/foaf/0.1/). vCard stores telephone numbers as string literals, whereas FOAF uses resources, i.e., URIs with the tel: URI-scheme. So, a mapping from FOAF to vCard would need to convert the tel: URI to a string and then cut off the first four characters ("tel:"). Such a mapping expressed in RIF could involve e.g. a rule as follows:
... Prefix( VCard http://www.w3.org/TR/vcard-rdf#) Prefix( foaf http://xmlns.com/foaf/0.1/) ... Forall?X?foafTelIri?foafTelString ( ?X[ VCard:tel -> External( func:substring(?foafTelString 4 ) ]:- And (?X[ foaf:phone ->?foafTelIri ] External( pred:iri-to-string(?foafTelIri?foafTelString ) ) )
The following functions and predicates are adapted from the respective numeric functions and operators in [XPath-Functions].
(?arg1?arg2; func:numeric-add(?arg1?arg2))
The value spaces of xs:integer, xs:double, or xs:decimal for both arguments.
When both s1 and s2 belong to their intended domains, External(func:numeric-add(s1 s2)) evaluates to the result of op:numeric-add(s1, s2) as defined in [XPath-Functions].
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
The following numeric built-in functions func:numeric-subtract, func:numeric-multiply, func:numeric-divide, func:numeric-integer-divide, and func:numeric-mod are defined accordingly with respect to their corresponding operators in [XPath-Functions] and we will only add further explanations where needed.
(?arg1?arg2; func:numeric-subtract(?arg1?arg2) )
(?arg1?arg2; func:numeric-multiply(?arg1?arg2) )
(?arg1?arg2; func:numeric-divide(?arg1?arg2) )
The value spaces of xs:integer, xs:double, or xs:decimal for the first argument and xs:integer, xs:double, or xs:decimal without zero for the second argument.
This function backs up the "div" operator and returns the arithmetic quotient of its operands
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another, which here particularly means that RIF does not prescribe the behavior on division by zero.
(?arg1?arg2; func:numeric-integer-divide(?arg1?arg2) )
The value spaces of xs:integer, xs:double, or xs:decimal for the first argument and xs:integer, xs:double, or xs:decimal without zero for the second argument.
This function backs up the "idiv" operator and performs an integer division: that is, it divides the first argument by the second, and returns the integer obtained by truncating the fractional part of the result.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another, which here particularly means that RIF does not prescribe the behavior on division by zero.
(?arg1?arg2; func:numeric-mod(?arg1?arg2) )
The value spaces of xs:integer, xs:double, or xs:decimal for the first argument and xs:integer, xs:double, or xs:decimal without zero for the second argument.
Backs up the "mod" operator.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another, which here particularly means that RIF does not prescribe the behavior if the second argument is zero.
(?arg1?arg2; pred:numeric-equal(?arg1?arg2))
The value spaces of xs:integer, xs:double, or xs:decimal for both arguments.
When both s1 and s2 belong to their intended domains, External(pred:numeric-equal(s1 s2)) is t if and only if op:numeric-equal(s1, s2) returns true, as defined in [XPath-Functions].
If an argument value is outside of the intended domain, the truth value of the function is left unspecified and can vary from one semantic structure to another.
The following numeric built-in predicates pred:numeric-less-than and pred:numeric-greater-than are defined acordingly with respect to their corresponding operators in [XPath-Functions]. The predicate pred:numeric-not-equal has the same intended domain as pred:numeric-equal and is true whenever pred:numeric-equal is false. The predicates pred:numeric-less-than-or-equal (and pred:numeric-greater-than-or-equal, respectively) are true whenever pred:numeric-equal is true or pred:numeric-less-than (pred:numeric-greater-than-or-equal, respectively) is true.
(?arg1?arg2; pred:numeric-less-than(?arg1?arg2) )
(?arg1?arg2; pred:numeric-greater-than(?arg1?arg2) )
(?arg1?arg2; pred:numeric-not-equal(?arg1?arg2) )
(?arg1?arg2; pred:numeric-less-than-or-equal(?arg1?arg2) )
(?arg1?arg2; pred:numeric-greater-than-or-equal(?arg1?arg2) )
The following functions and predicates are adapted from the respective functions and operators on strings in [XPath-Functions].
Editor's Note: The following treatment of built-ins which may have multiple arities is a strawman proposal currently under discussion in the working group.
In the following, we encounter several versions of some built-ins with varying arity, since XPath and XQuery allow overloading, i.e. the same function or operator name occurring with different arities. We treat this likewise in RIF, by numbering the different versions of the respective built-ins and treating the unnumbered version as syntactic sugar, i.e. for instance instead of External( func:concat2( str1, str2) ) and External( func:concat3( str1 str2 str3 ) ) we allow the equivalent forms External( func:concat( str1, str2) ) and External( func:concat( str1 str2 str3 ) ). Note that this is really purely syntactic sugar, and does not mean that for external predicates and functions we lift the restriction made in BLD that each function and predicate has a unique assigned arity. Those schemata for which we allow this syntactic sugar, appear in the same box.
(?comparand1?comparand2; func:compare1(?comparand1?comparand2) )
(?comparand1 $comparand2 $collation; func:compare2(?comparand1?comparand2?collation) )
The value space of xs:string for all arguments.
Iexternal( (?comparand1?comparand2; func:compare1(?comparand1?comparand2) )(s1 s2) = res such that res = -1, 0, or 0 (from the value space of xs:integer), depending on whether the value of the s1 is respectively less than, equal to, or greater than the value of s2, according to the rules of the collation that is used.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
Editor's Note: The working group is currently discussing, whether in addition to adopting the fn:compare function from [XPath-Functions], own predicates pred:string-equal, pred:string-less-than, pred:string-greater-than, pred:string-not-equal, pred:string-less-than-or-equal, pred:string-greater-than-or-equal not defined in [XPath-Functions] shall be introduced, following the convention of having such predicates for other datatypes.
The following schemata are defined analogously with respect to their corresponding operators as defined in [XPath-Functions] and we only give informal descriptions of the respective mappings Iexternal.
(?arg1; func:concat1(?arg1 ) )
(?arg1?arg2; func:concat2(?arg1?arg2 ) )
...
(?arg1 ?arg2 ...?argn; func:concatn(?arg1?arg2 ...?argn ) )
Following the definition of fn:concat this function accepts xs:anyAtomicType arguments and casts them to xs:string. Thus, the intended domain for all arguments is the union of all value spaces castable to String xs:string as defined in Section Cast Functions and Conversion Predicates for Datatypes and rif:iri above.
Returns the xs:string that is the concatenation of the values of its arguments after conversion.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg1?arg2; func:string-join2(?arg1?arg2 ) )
(?arg1?arg2?arg3; func:string-join3(?arg1?arg2?arg3 ) )
...
(?arg1 ?arg2 ...?argn; func:string-joinn(?arg1?arg2 ...?argn ) )
The value space of xs:string for all arguments.
Returns a xs:string created by concatenating the arguments 1 to (n-1) using the nth argument as a separator.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?sourceString?startingLoc; func:substring1(?sourceString?startingLoc) )
(?sourceString?startingLoc?length; func:substring2(?sourceString?startingLoc?length) )
The value space of xs:string for ?sourceString and the union of the value spaces of xs:integer, xs:long, or xs:decimal for the remaining two arguments.
Returns the portion of the value of?sourceString beginning at the position indicated by the value of?startingLoc and continuing for the number of characters indicated by the value of?length. The characters returned do not extend beyond?sourceString. If?startingLoc is zero or negative, only those characters in positions greater than zero are returned.
If an argument value is outside of its intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
( func:string-length1() )
(?arg; func:string-length2(?arg ) )
The value space of xs:string for ?arg.
Returns an xs:integer equal to the length in characters of the argument if it is a xs:string.
If the argument value is outside of its intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:upper-case(?arg ) )
The value space of xs:string for ?arg.
Returns the value of?arg after translating every character to its upper-case correspondent as defined in the appropriate case mappings section in the Unicode standard.
If the argument value is outside of its intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:lower-case(?arg ) )
The value space of xs:string for ?arg.
Returns the value of?arg after translating every character to its lower-case correspondent as defined in the appropriate case mappings section in the Unicode standard.
If the argument value is outside of its intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:encode-for-uri(?arg ) )
The value space of xs:string for ?arg.
This function encodes reserved characters in an xs:string that is intended to be used in the path segment of a URI. It is invertible but not idempotent.
If the argument value is outside of its intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?iri; func:iri-to-uri (?iri ) )
The value space of xs:string for ?iri.
This function converts an xs:string containing an IRI into a URI according to the rules spelled out in Section 3.1 of RFC 3987. It is idempotent but not invertible.
If the argument value is outside of its intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?uri;func:escape-html-uri(?uri ) )
The value space of xs:string for ?uri.
This function escapes all characters except printable characters of the US-ASCII coded character set, specifically the octets ranging from 32 to 126 (decimal). The effect of the function is to escape a URI in the manner html user agents handle attribute values that expect URIs. Each character in $uri to be escaped is replaced by an escape sequence, which is formed by encoding the character as a sequence of octets in UTF-8, and then representing each of these octets in the form%HH, where HH is the hexadecimal representation of the octet. This function must always generate hexadecimal values using the upper-case letters A-F.
If the argument value is outside of its intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg1?arg2; func:substring-before1(?arg1?arg2 ) )
(?arg1?arg2?collation; func:substring-before2(?arg1?arg2?collation ) )
The value space of xs:string for all arguments.
Returns the substring of the value of?arg1 that precedes in the value of?arg1 the first occurrence of a sequence of collation units that provides a minimal match to the collation units of?arg2 according to the collation that is used.
If any argument value is outside of its intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg1?arg2; func:substring-after1(?arg1?arg2 ) )
(?arg1?arg2?collation; func:substring-after2(?arg1?arg2?collation ) )
The value space of xs:string for all arguments.
Returns the substring of the value of?arg1 that follows in the value of?arg1 the first occurrence of a sequence of collation units that provides a minimal match to the collation units of?arg2 according to the collation that is used.
If any argument value is outside of its intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?input?pattern?replacement; func:replace1(?input?pattern?replacement ) )
(?input?pattern?replacement?flags; func:replace2(?input?pattern?replacement?flags ) )
The value space of xs:string for all arguments.
The function returns the xs:string that is obtained by replacing each non-overlapping substring of?input that matches the given?pattern with an occurrence of the?replacement string.
If any argument value is outside of its intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg1?arg2; pred:contains1(?arg1?arg2 ) )
(?arg1?arg2?collation; pred:contains2(?arg1?arg2?collation ) )
The value space of xs:string for all arguments.
Returns true or false indicating whether or not the value of?arg1 contains (at the beginning, at the end, or anywhere within) at least one sequence of collation units that provides a minimal match to the collation units in the value of?arg2, according to the collation that is used. "Minimal match" is defined in Unicode Collation Algorithm.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg1?arg2; pred:starts-with1(?arg1?arg2 )
(?arg1?arg2?collation; pred:starts-with2(?arg1?arg2?collation)
The value space of xs:string for all arguments.
Returns true or false indicating whether or not the value of?arg1 starts with a sequence of collation units that provides a minimal match to the collation units of?arg2 according to the collation that is used.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg1?arg2; fn:ends-with1(?arg1?arg2 ) )
(?arg1?arg2?collation; fn:ends-with2(?arg1?arg2?collation) )
The value space of xs:string for all arguments.
Returns true or false indicating whether or not the value of?arg1 ends with a sequence of collation units that provides a minimal match to the collation units of?arg2 according to the collation that is used.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?input?pattern; pred:matches1(?input?pattern) )
(?input?pattern?flags; pred:matches2(?input?pattern?flags ) )
The value space of xs:string for all arguments.
Returns true if the input matches the regular expression supplied as pattern as influenced by the flags, if present; otherwise, it returns false. The effect of calling the first version of this function (omitting the flags) is the same as the effect of calling the second version with the flags argument set to a zero-length string.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
If not stated otherwise, in the following we define schemas for functions and operators defined on the date and time datatypes in [XPath-Functions].
As defined in Section 3.3.2 Dates and Times, xs:dateTime, xs:date, xs:time, xs:gYearMonth, xs:gYear, xs:gMonthDay, xs:gMonth, xs:gDay values, referred to collectively as date/time values, are represented as seven components or properties: year, month, day, hour, minute, second and timezone. The value of the first five components are xs:integers. The value of the second component is an xs:decimal and the value of the timezone component is an xs:dayTimeDuration. For all the date/time datatypes, the timezone property is optional and may or may not be present. Depending on the datatype, some of the remaining six properties must be present and some must be absent. Absent, or missing, properties are represented by the empty sequence. This value is referred to as the local value in that the value is in the given timezone. Before comparing or subtracting xs:dateTime values, this local value must be translated or normalized to UTC.
(?arg; func:year-from-dateTime(?arg ) )
The value space of xs:dateTime for?arg.
Iexternal(?arg; func:year-from-dateTime(?arg ) )(s) = res
such that res is the result of fn:year-from-dateTime(s) as defined in [XPath-Functions].
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
Note that we we slightly deviate here from the original definition of fn:year-from-dateTime which says: "If?arg is the empty sequence, returns the empty sequence." We have no terminology of "sequence". The following schemata are defined analogously with respect to their corresponding operators as defined in [XPath-Functions] and we only give informal descriptions of the respective mappings Iexternal.
(?arg; func:month-from-dateTime(?arg ) )
The value space of xs:dateTime for?arg.
Returns an xs:integer between 1 and 12, both inclusive, representing the month component in the localized value of?arg.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:day-from-dateTime(?arg ) )
The value space of xs:dateTime for?arg.
Returns an xs:integer between 1 and 31, both inclusive, representing the day component in the localized value of?arg.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:hours-from-dateTime(?arg ) )
The value space of xs:dateTime for?arg.
Returns an xs:integer between 0 and 23, both inclusive, representing the hours component in the localized value of?arg.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:minutes-from-dateTime(?arg ) )
The value space of xs:dateTime for?arg.
Returns an xs:integer between 0 and 59, both inclusive, representing the minutes component in the localized value of?arg.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:seconds-from-dateTime(?arg ) )
The value space of xs:dateTime for?arg.
Returns an xs:decimal value greater than or equal to zero and less than 60, representing the seconds and fractional seconds in the localized value of?arg.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:year-from-date(?arg ) )
The value space of xs:date for?arg.
Returns an xs:integer representing the year in the localized value of?arg. The value may be negative.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:month-from-date(?arg ) )
The value space of xs:date for?arg.
Returns an xs:integer between 1 and 12, both inclusive, representing the month component in the localized value of?arg.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:day-from-date(?arg ) )
The value space of xs:date for?arg.
Returns an xs:integer between 1 and 31, both inclusive, representing the day component in the localized value of?arg.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:hours-from-time(?arg ) )
The value space of xs:time for?arg.
Returns an xs:integer between 0 and 23, both inclusive, representing the hours component in the localized value of?arg.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:minutes-from-time(?arg ) )
The value space of xs:time for?arg.
Returns an xs:integer between 0 and 59, both inclusive, representing the minutes component in the localized value of?arg.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:seconds-from-time(?arg ) )
The value space of xs:time for?arg.
Returns an xs:decimal value greater than or equal to zero and less than 60, representing the seconds and fractional seconds in the localized value of?arg.
If an argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:years-from-duration(?arg ) )
The union of the value spaces of datatypes castable to xs:yearMonthDuration according to the table in Section 17.1 of [XPath-Functions].
Returns an xs:integer representing the years component in the value of?arg. The result is obtained by casting?arg to an xs:yearMonthDuration and then computing the years component.
If the argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:months-from-duration(?arg ) )
The union of the value spaces of datatypes castable to xs:yearMonthDuration according to the table in Section 17.1 of [XPath-Functions].
Returns an xs:integer representing the months component in the value of?arg. The result is obtained by casting?arg to an xs:yearMonthDuration and then computing the months component.
If the argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:days-from-duration(?arg ) )
The union of the value spaces of datatypes castable to xs:dayTimeDuration according to the table in Section 17.1 of [XPath-Functions].
Returns an xs:integer representing the days component in the value of?arg. The result is obtained by casting?arg to an xs:dayTimeDuration and then computing the days component.
If the argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:hours-from-duration(?arg ) )
The union of the value spaces of datatypes castable to xs:dayTimeDuration according to the table in Section 17.1 of [XPath-Functions].
Returns an xs:integer representing the hours component in the value of?arg. The result is obtained by casting?arg to an xs:dayTimeDuration and then computing the hours component.
If the argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:minutes-from-duration(?arg ) )
The union of the value spaces of datatypes castable to xs:dayTimeDuration according to the table in Section 17.1 of [XPath-Functions].
Returns an xs:integer representing the minutes component in the value of?arg. The result is obtained by casting?arg to an xs:dayTimeDuration and then computing the minutes component.
If the argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:seconds-from-duration(?arg ) )
The union of the value spaces of datatypes castable to xs:dayTimeDuration according to the table in Section 17.1 of [XPath-Functions].
Returns an xs:decimal representing the seconds component in the value of?arg. The result is obtained by casting?arg to an xs:dayTimeDuration and then computing the seconds component.
If the argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
(?arg; func:timezone-from-dateTime(?arg ) )
The value space of xs:dateTime.
Returns the timezone component of?arg if any. If $arg has a timezone component, then the result is an xs:dayTimeDuration that indicates deviation from UTC; its value may range from +14:00 to -14:00 hours, both inclusive.
If the argument value is outside of the intended domain, the value of the function is left unspecified and can vary from one semantic structure to another.
The following two functions are defined analogously for intended domains xs:date and xs:time
(?arg; func:timezone-from-date(?arg ) )
(?arg; func:timezone-from-time(?arg ) )
(?arg1?arg2; func:subtract-dateTimes(?arg1?arg2 ) )
Subtracts two xs:dateTimes. Returns an xs:xs:dayTimeDuration.
(?arg1?arg2; func:subtract-dates(?arg1?arg2 ) )
Subtracts two xs:dates. Returns an xs:xs:dayTimeDuration.
(?arg1?arg2; func:subtract-times(?arg1?arg2 ) )
Subtracts two xs:times. Returns an xs:xs:dayTimeDuration.
(?arg1?arg2; func:add-yearMonthDurations(?arg1?arg2 ) )
Adds two xs:yearMonthDurations. Returns an xs:yearMonthDuration.
(?arg1?arg2; func:subtract-yearMonthDurations(?arg1?arg2 ) )
Subtracts one xs:yearMonthDuration from another. Returns an xs:yearMonthDuration.
(?arg1?arg2; func:multiply-yearMonthDuration(?arg1?arg2 ) )
Multiplies an xs:yearMonthDuration by an xs:double. Returns an xs:yearMonthDuration.
(?arg1?arg2; func:divide-yearMonthDuration(?arg1?arg2 ) )
Divides an xs:yearMonthDuration by an xs:double. Returns an xs:yearMonthDuration.
(?arg1?arg2; func:divide-yearMonthDuration-by-yearMonthDuration(?arg1?arg2 ) )
Divides an xs:yearMonthDuration by an xs:yearMonthDuration. Returns an xs:decimal.
(?arg1?arg2; func:add-dayTimeDurations(?arg1?arg2 ) )
Adds two xs:dayTimeDurations. Returns an xs:dayTimeDuration.
(?arg1?arg2; func:subtract-dayTimeDurations(?arg1?arg2 ) )
Subtracts one xs:dayTimeDuration from another. Returns an xs:dayTimeDuration.
(?arg1?arg2; func:multiply-dayTimeDuration(?arg1?arg2 ) )
Multiplies an xs:dayTimeDuration by a xs:double. Returns an xs:dayTimeDuration.
(?arg1?arg2; func:divide-dayTimeDuration(?arg1?arg2 ) )
Divides an xs:dayTimeDuration by an xs:double. Returns an xs:dayTimeDuration.
(?arg1?arg2; func:divide-dayTimeDuration-by-dayTimeDuration(?arg1?arg2 ) )
Divides an xs:dayTimeDuration by an xs:dayTimeDuration. Returns an xs:decimal.
(?arg1?arg2; func:add-yearMonthDuration-to-dateTime(?arg1?arg2 ) )
Adds a xs:yearMonthDuration (?arg2) to a xs:dateTime (?arg1). Returns an xs:dateTime.
(?arg1?arg2; func:add-yearMonthDuration-to-date(?arg1?arg2 ) )
Adds a xs:yearMonthDuration (?arg2) to a xs:date (?arg1). Returns an xs:date.
(?arg1?arg2; func:add-dayTimeDuration-to-dateTime(?arg1?arg2 ) )
Adds a xs:dayTimeDuration (?arg2) to a xs:dateTime (?arg1). Returns an xs:dateTime.
(?arg1?arg2; func:add-dayTimeDuration-to-date(?arg1?arg2 ) )
Adds a xs:dayTimeDuration (?arg2) to a xs:date (?arg1). Returns an xs:date.
(?arg1?arg2; func:add-dayTimeDuration-to-time(?arg1?arg2 ) )
Adds a xs:dayTimeDuration (?arg2) to a xs:time (?arg1). Returns an xs:time.
(?arg1?arg2; func:subtract-yearMonthDuration-from-dateTime(?arg1?arg2 ) )
Subtracts a xs:yearMonthDuration (?arg2) from a xs:dateTime (?arg1). Returns an xs:dateTime.
(?arg1?arg2; func:subtract-yearMonthDuration-from-date(?arg1?arg2 ) )
Subtracts a xs:yearMonthDuration (?arg2) from a xs:date (?arg1). Returns an xs:date.
(?arg1?arg2; func:subtract-dayTimeDuration-from-dateTime(?arg1?arg2 ) )
Subtracts a xs:dayTimeDuration (?arg2) from a xs:dateTime (?arg1). Returns an xs:dateTime.
(?arg1?arg2; func:subtract-dayTimeDuration-from-date(?arg1?arg2 ) )
Subtracts a xs:dayTimeDuration (?arg2) from a xs:date (?arg1). Returns an xs:date.
(?arg1?arg2; func:subtract-dayTimeDuration-from-time(?arg1?arg2 ) )
Subtracts a xs:dayTimeDuration (?arg2) from a xs:time (?arg1). Returns an xs:time.
(?arg1?arg2; pred:dateTime-equal(?arg1?arg2) )
The value space of xs:dateTime for both arguments.
where Itruth Iexternal(?arg1?arg2; pred:dateTime-equal(?arg1?arg2 ) )(s1 s2) = t
if and only if op:dateTime-equal(s1, s2) returns true, as defined in [XPath-Functions], f in case false is returned.
If an argument value is outside of the intended domain, the truth value of the function is left unspecified and can vary from one semantic structure to another.
The following schemata for comparison operators are defined analogously with respect to their corresponding operators as defined in [XPath-Functions], where the intended domain for both arguments is implicit by the operator name and we only give additional details on intended domains and mapping as needed.
(?arg1?arg2; pred:dateTime-less-than(?arg1?arg2 ) )
(?arg1?arg2; pred:dateTime-greater-than(?arg1?arg2 ) )
(?arg1?arg2; pred:date-equal(?arg1?arg2) )
(?arg1?arg2; pred:date-less-than(?arg1?arg2 ) )
(?arg1?arg2; pred:date-greater-than(?arg1?arg2 ) )
(?arg1?arg2; pred:time-equal(?arg1?arg2) )
(?arg1?arg2; pred:time-less-than(?arg1?arg2 ) )
(?arg1?arg2; pred:time-greater-than(?arg1?arg2 ) )
(?arg1?arg2; pred:duration-equal(?arg1?arg2) )
The union of the value spaces of xs:dayTimeDuration and xs:yearMonthDuration for both arguments.
(?arg1?arg2; pred:dayTimeDuration-less-than(?arg1?arg2 ) )
(?arg1?arg2; pred:dayTimeDuration-greater-than(?arg1?arg2 ) )
(?arg1?arg2; pred:yearMonthDuration-less-than(?arg1?arg2 ) )
(?arg1?arg2; pred:yearMonthDuration-greater-than(?arg1?arg2 ) )
(?arg1?arg2; pred:dateTime-not-equal(?arg1?arg2) )
(?arg1?arg2; pred:dateTime-less-than-or-equal(?arg1?arg2) )
(?arg1?arg2; pred:dateTime-greater-than-or-equal(?arg1?arg2) )
(?arg1?arg2; pred:date-not-equal(?arg1?arg2) )
(?arg1?arg2; pred:date-less-than-or-equal(?arg1?arg2) )
(?arg1?arg2; pred:date-greater-than-or-equal(?arg1?arg2) )
(?arg1?arg2; pred:time-not-equal(?arg1?arg2) )
(?arg1?arg2; pred:time-less-than-or-equal(?arg1?arg2) )
(?arg1?arg2; pred:time-greater-than-or-equal(?arg1?arg2) )
(?arg1?arg2; pred:duration-not-equal(?arg1?arg2) )
Editor's Note: No less-than-or-equal or greater-than-or-equal predicates are defined in this draft for durations, since there are no separate op:dayTimeDuration-equal nor op:yearMonthDuration-equalpredicates in [XPath-Functions], but only a common predicate op:duration-equal. Future versions of this working draft may resolve this by introducing new equality predicates pred:dayTimeDuration-equal and pred:yearMonthDuration-equal with restricted intended domains.
Editor's Note: Predicates for rdf:XMLLiteral such as at least comparison predicates (equals, not-equals) are still under discussion in the working group.
The following function serves to extract the language tag from values in the rif:text value space.
(?arg; func:lang(?arg ) )
The value space of rif:text for?arg.
Iexternal(?arg; func:lang(?arg ) )(s) = res such that res is the language tag string of s, if s is in the value space of rif:text and ""^^xs:string otherwise.
Editor's Note: The current name of this function is still under disscussion in the working group. Alternative proposals include e.g. func:lang-from-text, which follows the XPath/XQuery naming convention for extraction functions from datatypes than the SPARQL naming convention.
Editor's Note: We have not yet included comparison predicates (equal, less-than, greater-than, or compare ...) for rif:text. Future versions of this document might introduce these.
This section is an edited copy of a section from RIF Framework for Logic Dialects. It is reproduced here for convenience of readers familiar with the RIF-BLD document who might not have studied RIF-FLD.
This section defines external schemas, which serve as templates for externally defined terms. These schemas determine which externally defined terms are acceptable in a RIF dialect. Externally defined terms include RIF built-ins, but are more general. They are designed to also accommodate the ideas of procedural attachments and querying of external data sources. Because of the need to accommodate many difference possibilities, the RIF logical framework supports a very general notion of an externally defined term. Such a term is not necessarily a function or a predicate -- it can be a frame, a classification term, and so on.
Definition (Schema for external term). An external schema is a statement of the form (?X1 ...?Xn;) where
The names of the variables in an external schema are immaterial, but their order is important. For instance, (?X?Y;?X[foo->?Y]) and (?V?W;?V[foo->?W]) are considered to be indistinguishable, but (?X?Y;?X[foo->?Y]) and (?Y?X;?X[foo->?Y]) are viewed as different schemas.
A term t is an instance of an external schema (?X1 ...?Xn;) iff t can be obtained from by a simultaneous substitution ?X1/s1 ...?Xn/sn of the variables ?X1 ...?Xn with terms s1 ... sn, respectively. Some of the terms si can be variables themselves. For example, ?Z[foo->f(a?P)] is an instance of (?X?Y;?X[foo->?Y]) by the substitution ?X/?Z?Y/f(a?P). ☐
Observe that a variable cannot be an instance of an external schema, since in the above definition cannot be a variable. It will be seen later that this implies that a term of the form External(?X) is not well-formed in RIF.
The intuition behind the notion of an external schema, such as (?X?Y;?X["foo"^^xs:string->?Y]) or (?V; "pred:isTime"^^rif:iri(?V)), is that ?X["foo"^^xs:string->?Y] or "pred:isTime"^^rif:iri(?V) are invocation patterns for querying external sources, and instances of those schemas correspond to concrete invocations. Thus, External("http://foo.bar.com"^^rif:iri["foo"^^xs:string->"123"^^xs:integer]) and External("pred:isTime"^^rif:iri("22:33:44"^^xs:time) are examples of invocations of external terms -- one querying an external source and another invoking a built-in.
Definition (Coherent set of external schemas).
A set of external schemas is coherent if there is no term, t, that is an instance of two distinct schemas in the set. ☐
The intuition behind this notion is to ensure that any use of an external term is associated with at most one external schema. This assumption is relied upon in the definition of the semantics of externally defined terms. Note that the coherence condition is easy to verify syntactically and that it implies that schemas like (?X?Y;?X[foo->?Y]) and (?Y?X;?X[foo->?Y]), which differ only in the order of their variables, cannot be in the same coherent set.
It is important to keep in mind that external schemas are not part of the language in RIF, since they do not appear anywhere in RIF statements. Instead, they are best thought of as part of the grammar of the language.