You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
553 B
15 lines
553 B
PREFIX ex: <https://example.com/>
|
|
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
|
|
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
|
|
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
|
|
|
|
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." ;
|
|
}
|
|
|