The RIF working group was chartered in late 2005. Among its goals was drawing in members of the commercial rules marketplace. The working group started with more than 50 members and two chairs drawn from industry, Christian de Sainte Marie of ILOG, and Chris Welty of IBM. The charter, to develop an interchange format between existing rule systems was influenced by a workshop in the spring of 2005 in which it was clear that one rule language would not serve the needs of all interested parties (Dr. Welty described the outcome of the workshop as Nash Equilibrium3).
RIF became a W3C Recommendation on June 22, 2010.4
A rule is perhaps one of the simplest notions in computer science: it is an IF - THEN construct. If some condition (the IF part) that is checkable in some dataset holds, then the conclusion (the THEN part) is processed. Deriving somewhat from its roots in logic, rule systems use a notion of predicates that hold or not of some data object or objects. For example, the fact that two people are married might be represented with predicates as:
MARRIED is a predicate that can be said to hold between LISA and JOHN. Adding the notion of variables, a rule could be something like:
We would expect that for every pair of ?x and ?y (e.g. LISA and JOHN) for which the MARRIED predicate holds, some computer system that could understand this rule would conclude that the LOVES predicate holds for that pair as well.
Rules are a simple way of encoding knowledge, and are a drastic simplification of first order logic, for which it is relatively easy to implement inference engines that can process the conditions and draw the right conclusions. A rule system is an implementation of a particular syntax and semantics of rules, which may extend the simple notion described above to include existential quantification, disjunction, logical conjunction, negation, functions, non monotonicity, and many other features. Rule systems have been implemented and studied since the mid-1970s and saw significant uptake in the 1980s during the height of so-called Expert Systems.
The standard RIF dialects are Core, BLD and PRD. These dialects depend on an extensive list of datatypes with builtin functions and predicates on those datatypes.
Relations of various RIF dialects are shown in the following Venn diagram.5
Datatypes and Built-Ins (DTB) specifies a list of datatypes, built-in functions and built-in predicates expected to be supported by RIF dialects. Some of the datatypes are adapted from XML Schema Datatypes,6 XPath functions7 and rdf:PlainLiteral functions.8
The Core dialect comprises a common subset of most rule dialect. RIF-Core is a subset of both RIF-BLD and RIF-PRD.
Framework for Logic Dialects (FLD) describes mechanisms for specifying the syntax and semantics of logic RIF dialects, including the RIF-BLD and RIF-Core, but not RIF-PRD which is not a logic-based RIF dialect.
The Basic Logic Dialect (BLD) adds features to the Core dialect that are not directly available such as: logic functions, equality in the then-part and named arguments. RIF BLD corresponds to positive datalogs, that is, logic programs without functions or negations.
RIF-BLD has a model-theoretic semantics.
The frame syntax of RIF BLD is based on F-logic, but RIF BLD doesn't have the non-monotonic reasoning features of F-logic.9
The Production Rules Dialect (PRD) can be used to model production rules. Features that are notably in PRD but not BLD include negation and retraction of facts (thus, PRD is not monotonic). PRD rules are order dependent, hence conflict resolution strategies are needed when multiple rules can be fired. The PRD specification defines one such resolution strategy based on forward chaining reasoning.
RIF-PRD has an operational semantics, whereas the condition formulas also have a model-theoretic semantics.
Example (Example 1.2 in 10)
Several other RIF dialects exist. None of them are officially endorsed by W3C and they are not part of the RIF specification.
The Core Answer Set Programming Dialect (CASPD)11 is based on answer set programming, that is, declarative logic programming based on the answer set semantics (stable model semantics).
Example:
The Uncertainty Rule Dialect (URD)12 supports a direct representation of uncertain knowledge.
RIF-SILK13 can be used to model default logic. It is based on declarative logic programming with the well-founded semantics. RIF-SILK also includes a number of other features present in more sophisticated declarative logic programming languages such as SILK.14
Example
Kifer, Michael (2008). "Rule Interchange Format: The Framework". in: Web Reasoning and Rule Systems. Lecture Notes in Computer Science https://doi.org/10.1007%2F978-3-540-88737-9_1 ↩
RIF Overview http://www.w3.org/TR/2010/NOTE-rif-overview-20100622/ ↩
Welty, Chris (2009). "Rule Interchange Format". Invited presentation to the NY Semantic Web Meetup. http://www.w3.org/2005/rules/wiki/images/b/b0/W3C_RIF-CW-9-09.pdf ↩
RIF Core Dialect http://www.w3.org/TR/2010/REC-rif-core-20100622/ ↩
RIF Use Cases and Requirements http://www.w3.org/TR/rif-ucr/#Structure_of_RIF ↩
XML Schema Datatypes http://www.w3.org/TR/2009/CR-xmlschema11-2-20090430/ ↩
XPath-Functions http://www.w3.org/TR/xpath-functions/ ↩
rdf:PlainLiteral: A Datatype for RDF Plain Literals http://www.w3.org/TR/rdf-plain-literal/ ↩
M. Krötzsch (October 2010). Description Logic Rules. IOS Press. p. 10. ISBN 978-1-61499-342-1. 978-1-61499-342-1 ↩
RIF-PRD specification http://www.w3.org/TR/rif-prd ↩
RIF Core Answer Set Programming Dialect http://ruleml.org/rif/RIF-CASPD.html ↩
Zhao & Boley. Uncertainty Treatment in the Rule Interchange Format: From Encoding to Extension. In The 4th International Workshop on Uncertainty Reasoning for the Semantic Web (URSW), 2008. http://c4i.gmu.edu/ursw/2008/papers/URSW2008_F9_ZhaoBoley.pdf ↩
RIF SILK dialect http://silk.semwebcentral.org/RIF-SILK.html ↩
The SILK Language, Benjamin Grosof, Michael Kifer, Mike Dean. Vulcan Inc., 2009. http://www.stanford.edu/class/cs227/Readings/20100426-SILK-specification.pdf ↩