teamdigitale / dati-semantic-backend

Backend for the NDC semantic repository
GNU Affero General Public License v3.0
4 stars 5 forks source link

[Optional] Rendering in ontology details page the content like https://schema.org/Person #29

Open SrinivasanTarget opened 2 years ago

SrinivasanTarget commented 2 years ago

A query SPARQL which extracts the content from every ontology and dynamically render it in the details page.

ioggstream commented 6 months ago

When

  1. I open an ontology page https://schema.gov.it/semantic-assets/details?uri=https%3A%2F%2Fw3id.org%2Fitalia%2Fonto%2FCPV
  2. I select one of the admsapit:hasKeyClass (e.g., CPV:Person )

I expect

prefix CPV: <https://w3id.org/italia/onto/CPV/>

select distinct * where {
        ?property rdfs:domain CPV:Person .
        ?property rdfs:range ?range .
        ?property rdfs:label ?label .
      }

Instead

Notes