โก RDFS Inference Engine
Add RDFS triples and watch the engine derive new facts. Implements rules rdfs2, rdfs3, rdfs5, rdfs7, rdfs9, rdfs11.
Chapter 4 Interactive Learning Companion
Load a class hierarchy, then run inference to see all derived triples from rdfs:subClassOf and rdf:type.
๐ Select an example, then click "Run Inference"
Add RDFS triples and watch the engine derive new facts. Implements rules rdfs2, rdfs3, rdfs5, rdfs7, rdfs9, rdfs11.
Experiment with domain and range. See how they INFER types, not validate!
โ ๏ธ RDFS infers types โ it does NOT validate!
Build a complete RDFS vocabulary interactively and see the generated Turtle.
Given an RDFS graph, find ALL inferred triples. Type them to score points!
Press "Start" to begin the challenge!
Test your understanding of RDFS concepts!
Your quick reference for all things RDFS.
rdfs:Resource # Class of everything
rdfs:Class # Class of all classes
rdfs:Literal # Class of literal values
rdfs:Datatype # Class of datatypes
rdfs:Container # Superclass of Bag/Seq/Alt
rdf:Property # Class of all propertiesrdfs:subClassOf # Class hierarchy
rdfs:subPropertyOf # Property hierarchy
rdfs:domain # Subject type (infers!)
rdfs:range # Object type (infers!)
rdfs:label # Human-readable name
rdfs:comment # Human description
rdfs:seeAlso # Related resource
rdfs:isDefinedBy # Defining vocabulary@prefix ex: <http://example.org/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
ex:Person a rdfs:Class ;
rdfs:label "Person"@en .
ex:Student rdfs:subClassOf ex:Person .
ex:enrolledIn a rdf:Property ;
rdfs:domain ex:Student ;
rdfs:range ex:Course .Validate and visualize RDF
Query real RDFS data with SPARQL
Official W3C standard
Formal model-theoretic semantics