# Endpoint: https://rdfportal.org/bioportal/sparql
# Description: List the pairs of MP ID and its label
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX oboinowl: <http://www.geneontology.org/formats/oboInOwl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?id ?label
FROM <http://rdf.integbio.jp/dataset/bioportal/mp>
WHERE {
?Class a owl:Class ;
oboinowl:id ?id ;
rdfs:label ?label .
}
LIMIT 100