blob: fb86b7d7ff65fd3fa68f826668ef83734c045fb6 (
plain)
- @prefix : <http://data.biks.dk/mcisland/> .
- @prefix foaf: <http://xmlns.com/foaf/0.1/> .
- @prefix schema: <http://schema.org/> .
- @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
- :home
- a schema:Place ;
- schema:name "MC Island" ;
- schema:address :address .
- :org
- a schema:Organization ;
- schema:name "MC Island"@da ;
- foaf:Homepage <http://www.mcisland.dk/> ;
- schema:email "mcisland.oroe@gmail.com" ;
- schema:location :home .
- :address
- a schema:PostalAddress;
- schema:streetAddress "Brøndevej 49, Orø"@da;
- schema:postalCode "4300";
- schema:addressLocality "Holbæk, Danmark"@da .
|