# Endpoint: https://rdfportal.org/bioportal/sparql
# Description: List the pairs of ID and its label
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX ncit: <http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?id ?label
FROM <http://rdf.integbio.jp/dataset/bioportal/ncit>
WHERE {
?Class a owl:Class ;
ncit:NHC0 ?id ;
rdfs:label ?label .
}
LIMIT 100