# A triple with all absolute IRIs . @base . . # relative IRIs, e.g. http://one.example/subject2 BASE . # relative IRIs, e.g. http://one.example/subject2 @prefix p: . p:subject3 p:predicate3 p:object3 . # prefixed name, e.g. http://two.example/subject3 PREFIX p: p:subject3 p:predicate3 p:object3 . # prefixed name, e.g. http://two.example/subject3 @prefix p: . # prefix p: now stands for http://one.example/path/ p:subject4 p:predicate4 p:object4 . # prefixed name, e.g. http://one.example/path/subject4 @prefix : . # empty prefix :subject5 :predicate5 :object5 . # prefixed name, e.g. http://another.example/subject5 :subject6 a :subject7 . # same as :subject6 :subject7 . a :subject8 . # a multi-script subject IRI .