bp-template.json 1.8 KB

12345678910111213141516171819202122232425262728293031
  1. { "@context": {
  2. "created": { "@id": "http://purl.org/dc/terms/1.1/created", "@type": "http://www.w3.org/2001/XMLSchema#date" },
  3. "sfWithin": { "@id": "http://www.opengis.net/ont/geosparql#sfWithin", "@type": "@id" },
  4. "publisher": { "@id": "http://purl.org/dc/elements/1.1/publisher" },
  5. "asWKT": { "@id": "http://www.opengis.net/ont/geosparql#asWKT", "@type": "http://www.openlinksw.com/schemas/virtrdf#Geometry" },
  6. "source": { "@id": "http://purl.org/dc/elements/1.1/source", "@type": "@id" },
  7. "identifier": { "@id": "http://purl.org/dc/elements/1.1/identifier", "@type": "@id" },
  8. "homepage": { "@id": "http://xmlns.com/foaf/0.1/homepage", "@type": "@id" },
  9. "title": { "@id": "http://purl.org/dc/elements/1.1/title" },
  10. "label": { "@id": "http://www.w3.org/2000/01/rdf-schema#label" },
  11. "comment": { "@id": "http://www.w3.org/2000/01/rdf-schema#comment" },
  12. "rights": { "@id": "http://purl.org/dc/elements/1.1/rights", "@type": "@id" }
  13. },
  14. "@graph": [
  15. { "@id": "http://www.sdi4apps.eu/poi/#{{SOME_ID}}",
  16. "@type": [ "http://gis.zcu.cz/SPOI/Ontology#bestPracticesAtlasExample",
  17. "http://gis.zcu.cz/SPOI/Ontology#{{SOME_CATEGORY}}" ],
  18. "label": "{{SOME_NAME}}",
  19. "title": "{{SOME_NAME}}",
  20. "comment": {"@value": "{{SOME_DESCRIPTION}}", "@language": "en"},
  21. "homepage": "{{SOME_WEBPAGE}}",
  22. "sfWithin": [ "http://dbpedia.org/resource/{{SOME_DBPEDIA_ID}}",
  23. "http://www.geonames.org/{{SOME_GEONAMES_ID}}/",
  24. "https://www.wikidata.org/entity/{{SOME_WIKIDATA QID}}" ],
  25. "asWKT": "POINT({{SOME_LON}} {{SOME_LAT}})",
  26. "created": "{{SOME_YYY-MM-DD_DATE}}",
  27. "identifier": "http://www.sdi4apps.eu/poi/#{{SOME_ID}}",
  28. "publisher": "SPOI (http://sdi4apps.eu/spoi)",
  29. "rights": "http://opendatacommons.org/licenses/odbl/1.0/",
  30. "source": "https://atlasbestpractices.com"}
  31. ] }