Skip to content

Instantly share code, notes, and snippets.

@AlBaker
Created December 30, 2013 16:32
Show Gist options
  • Save AlBaker/8184354 to your computer and use it in GitHub Desktop.
Save AlBaker/8184354 to your computer and use it in GitHub Desktop.
Example of Stardog Rules
PREFIX swrlb: <http://www.w3.org/2003/11/swrlb#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
IF {
?x a :Person; hasAge ?age.
FILTER (?age >= 13 && ?age <= 19)
}
THEN {
?x a :Teenager.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment