PREFIX ex: PREFIX foaf: PREFIX rdfs: PREFIX xsd: ex:FoafProfile EXTRA a { a [ foaf:Person ] // rdfs:comment "Defines the node as a Person (from foaf)" ; foaf:name xsd:string ? // rdfs:comment "Define a person's name." ; foaf:img xsd:string ? // rdfs:comment "Photo link but in string form" ; foaf:knows @ex:FoafProfile * // rdfs:comment "A list of WebIds for all the people this user knows." ; }