# Notation2 - work in progress # Tom Morris # # Like Turtle, but single-mindedly focused only on one thing. # # I'm working on a site that uses a relational database rather # than a triple store. But sometimes, when creating a resource # I just want to be able to 'shove in' some miscellaneous data # that doesn't fit the existing model. # # Turtle is ideal here. But Turtle lets you make statements # about anything. Notation2 is just Turtle but without that. # # What shouldn't you put in the Notation2? Anything which is # stored elsewhere in your data model, or which can be # programatically inferred from your database. The idea is that # this is the data scratchpad for your resource. # It uses prefixes: @prefix foaf: . # Every subject is either <#> or <#(.*)> <#> dc:subject "cheese" .