Lightweight RDFS Ontologies

This is another quick tutorial for those wanting to serialize data to RDF. Languages like OWL provide heavyweight description logic modeling capabilities for RDF, but most people find that lightweight RDFs modeling is the most appropriate.
I’ll cover three things in this posts: labels, classes, properties. This post assumes the following three namespaces:
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
@prefix rdfs: [...]

A Quick Tutorial on the Turtle RDF Serialization

This post was going to be an email to a project mate in my database class, but I found myself wanting to markup the text in HTML so I figured I’d put it here.
Unlike web specifications like HTML, which have only one representation on paper/disk, RDF is just an abstract model — it doesn’t matter [...]