Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions _data/portals.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"acronym": "BioPortal",
"name": "BioPortal",
"link": "https://bioportal.bioontology.org/",
"api_url": "https://data.bioontology.org",
"logo": "/images/alliance_member_logos/bioportal.png",
"color": "#234979",
"description": "The world's most comprehensive repository of biomedical ontologies",
Expand All @@ -13,6 +14,7 @@
"acronym": "SIFRBioPortal",
"name": "SIFR BioPortal",
"link": "https://bioportal.lirmm.fr/",
"api_url": "https://data.bioportal.lirmm.fr",
"logo": "/images/alliance_member_logos/sifr_bioportal.png",
"color": "#74a9cb",
"description": "A repository for French biomedical terminologies and ontologies",
Expand All @@ -23,6 +25,7 @@
"acronym": "AgroPortal",
"name": "AgroPortal",
"link": "https://agroportal.eu/",
"api_url": "https://data.agroportal.eu",
"logo": "/images/alliance_member_logos/agroportal.png",
"color": "#31b403",
"description": "A vocabulary and ontology repository for agronomy and related domains",
Expand All @@ -33,6 +36,7 @@
"acronym": "EcoPortal",
"name": "EcoPortal",
"link": "https://ecoportal.lifewatch.eu/",
"api_url": "https://data.ecoportal.lifewatch.eu",
"logo": "/images/alliance_member_logos/ecoportal.png",
"color": "#0d508a",
"description": "The LifeWatch ERIC repository of semantic resources for ecology and related domains",
Expand All @@ -43,6 +47,7 @@
"acronym": "MedPortal",
"name": "MedPortal",
"link": "http://medportal.bmicc.cn/",
"api_url": "http://data.medportal.bmicc.cn",
"logo": "/images/alliance_member_logos/medportal.png",
"color": "#234979",
"description": "A repository for Chinese biomedical terminologies and ontologies",
Expand All @@ -53,6 +58,7 @@
"acronym": "MatPortal",
"name": "MatPortal",
"link": "https://matportal.org/",
"api_url": "http://rest.matportal.org",
"logo": "/images/alliance_member_logos/matportal.png",
"color": "#009574",
"description": "The ontology repository for materials science",
Expand All @@ -63,6 +69,7 @@
"acronym": "IndustryPortal",
"name": "IndustryPortal",
"link": "http://industryportal.enit.fr/",
"api_url": "https://data.industryportal.enit.fr",
"logo": "/images/alliance_member_logos/industryportal.png",
"color": "#1c0f5d",
"description": "A common ontology portal for industry and related domains",
Expand All @@ -73,6 +80,7 @@
"acronym": "EarthPortal",
"name": "EarthPortal",
"link": "https://earthportal.eu/",
"api_url": "https://data.earthportal.eu",
"logo": "/images/alliance_member_logos/earthportal.png",
"color": "#1e2251",
"description": "A semantic artefact repository dedicated to Earth sciences",
Expand All @@ -83,6 +91,7 @@
"acronym": "BiodivPortal",
"name": "BiodivPortal",
"link": "https://biodivportal.gfbio.org/",
"api_url": "https://data.biodivportal.gfbio.org",
"logo": "/images/alliance_member_logos/biodivportal.png",
"color": "#33691B",
"description": "A semantic artefact repository for biodiversity",
Expand All @@ -93,6 +102,7 @@
"acronym": "TechnoPortal",
"name": "TechnoPortal",
"link": "https://technoportal.hevs.ch/",
"api_url": "https://data.technoportal.hevs.ch",
"logo": "/images/alliance_member_logos/technoportal.png",
"color": "#9C4E81",
"description": "A repository for the technology sciences domain",
Expand All @@ -103,6 +113,7 @@
"acronym": "OntoPortal-Astro",
"name": "Ontoportal-Astro",
"link": "https://ontoportal-astro.eu/",
"api_url": "https://data.ontoportal-astro.eu",
"logo": "/images/alliance_member_logos/ontoportal-astro.png",
"color": "#624ECF",
"description": "A vocabulary and ontology repository for astronomy and related domains",
Expand Down
9 changes: 7 additions & 2 deletions portals.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ layout: null
"color": "https://schema.org/color",
"description": "http://purl.org/dc/terms/description",
"status": "https://w3id.org/mod#status",
"federation": "http://data.bioontology.org/metadata/federation"
"federation": "http://data.bioontology.org/metadata/federation",
"api_url": "http://data.bioontology.org/metadata/rest_url"
},
"@graph": [
{% for portal in site.data.portals %}
Expand All @@ -18,7 +19,11 @@ layout: null
{% if portal.color %}"color": "{{ portal.color }}",
{% endif %}"description": "{{ portal.description }}",
"status": "{{ portal.status }}",
"federation": {{ portal.federation }}
"federation": {{ portal.federation }}{% if portal.api_url %},
"api_url": {
"@id": "{{ portal.api_url }}",
"@type": "https://schema.org/WebAPI"
}{% endif %}
}{% unless forloop.last %},{% endunless %}

{% endfor %}
Expand Down