Skip to content

Instantly share code, notes, and snippets.

@Industrial
Created October 28, 2013 01:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Industrial/26a45ea87959d440d58a to your computer and use it in GitHub Desktop.
Save Industrial/26a45ea87959d440d58a to your computer and use it in GitHub Desktop.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ind: <http://my.org/rdf#>.
ind:BlogPost rdf:type rdfs:Class;
rdfs:label "Blog Post".
ind:Comment rdf:type rdfs:Class;
rdfs:label "Comment".
ind:title rdf:type rdf:Property;
rdfs:label "Title";
rdfs:domain ind:BlogPost;
rdfs:range rdfs:Literal.
ind:body rdf:type rdf:Property;
rdfs:label "title";
rdfs:domain ind:BlogPost,
ind:Comment;
rdfs:range rdfs:Literal.
ind:postedAt rdf:type rdf:Property;
rdfs:label "posted at";
rdfs:domain ind:BlogPost,
ind:Comment;
rdfs:range ind:DateTime.
ind:updatedAt rdf:type rdf:Property;
rdfs:label "posted at";
rdfs:domain ind:BlogPost;
rdfs:range ind:DateTime.
ind:comments rdf:type rdf:Property;
rdfs:label "comments";
rdfs:domain ind:BlogPost;
rdfs:range ind:Comment.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment