Skip to content

Commit 58baa48

Browse files
committed
Add REST API URLs to portals JSON-LD
1 parent 5d0bf0b commit 58baa48

2 files changed

Lines changed: 22 additions & 2 deletions

File tree

_data/portals.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"acronym": "BioPortal",
44
"name": "BioPortal",
55
"link": "https://bioportal.bioontology.org/",
6+
"api_url": "https://data.bioontology.org",
67
"logo": "/images/alliance_member_logos/bioportal.png",
78
"color": "#234979",
89
"description": "The world's most comprehensive repository of biomedical ontologies",
@@ -13,6 +14,7 @@
1314
"acronym": "SIFRBioPortal",
1415
"name": "SIFR BioPortal",
1516
"link": "https://bioportal.lirmm.fr/",
17+
"api_url": "https://data.bioportal.lirmm.fr",
1618
"logo": "/images/alliance_member_logos/sifr_bioportal.png",
1719
"color": "#74a9cb",
1820
"description": "A repository for French biomedical terminologies and ontologies",
@@ -23,6 +25,7 @@
2325
"acronym": "AgroPortal",
2426
"name": "AgroPortal",
2527
"link": "https://agroportal.eu/",
28+
"api_url": "https://data.agroportal.eu",
2629
"logo": "/images/alliance_member_logos/agroportal.png",
2730
"color": "#31b403",
2831
"description": "A vocabulary and ontology repository for agronomy and related domains",
@@ -33,6 +36,7 @@
3336
"acronym": "EcoPortal",
3437
"name": "EcoPortal",
3538
"link": "https://ecoportal.lifewatch.eu/",
39+
"api_url": "https://data.ecoportal.lifewatch.eu",
3640
"logo": "/images/alliance_member_logos/ecoportal.png",
3741
"color": "#0d508a",
3842
"description": "The LifeWatch ERIC repository of semantic resources for ecology and related domains",
@@ -43,6 +47,7 @@
4347
"acronym": "MedPortal",
4448
"name": "MedPortal",
4549
"link": "http://medportal.bmicc.cn/",
50+
"api_url": "http://data.medportal.bmicc.cn",
4651
"logo": "/images/alliance_member_logos/medportal.png",
4752
"color": "#234979",
4853
"description": "A repository for Chinese biomedical terminologies and ontologies",
@@ -53,6 +58,7 @@
5358
"acronym": "MatPortal",
5459
"name": "MatPortal",
5560
"link": "https://matportal.org/",
61+
"api_url": "http://rest.matportal.org",
5662
"logo": "/images/alliance_member_logos/matportal.png",
5763
"color": "#009574",
5864
"description": "The ontology repository for materials science",
@@ -63,6 +69,7 @@
6369
"acronym": "IndustryPortal",
6470
"name": "IndustryPortal",
6571
"link": "http://industryportal.enit.fr/",
72+
"api_url": "https://data.industryportal.enit.fr",
6673
"logo": "/images/alliance_member_logos/industryportal.png",
6774
"color": "#1c0f5d",
6875
"description": "A common ontology portal for industry and related domains",
@@ -73,6 +80,7 @@
7380
"acronym": "EarthPortal",
7481
"name": "EarthPortal",
7582
"link": "https://earthportal.eu/",
83+
"api_url": "https://data.earthportal.eu",
7684
"logo": "/images/alliance_member_logos/earthportal.png",
7785
"color": "#1e2251",
7886
"description": "A semantic artefact repository dedicated to Earth sciences",
@@ -83,6 +91,7 @@
8391
"acronym": "BiodivPortal",
8492
"name": "BiodivPortal",
8593
"link": "https://biodivportal.gfbio.org/",
94+
"api_url": "https://data.biodivportal.gfbio.org",
8695
"logo": "/images/alliance_member_logos/biodivportal.png",
8796
"color": "#33691B",
8897
"description": "A semantic artefact repository for biodiversity",
@@ -93,6 +102,7 @@
93102
"acronym": "TechnoPortal",
94103
"name": "TechnoPortal",
95104
"link": "https://technoportal.hevs.ch/",
105+
"api_url": "https://data.technoportal.hevs.ch",
96106
"logo": "/images/alliance_member_logos/technoportal.png",
97107
"color": "#9C4E81",
98108
"description": "A repository for the technology sciences domain",
@@ -103,6 +113,7 @@
103113
"acronym": "OntoPortal-Astro",
104114
"name": "Ontoportal-Astro",
105115
"link": "https://ontoportal-astro.eu/",
116+
"api_url": "https://data.ontoportal-astro.eu",
106117
"logo": "/images/alliance_member_logos/ontoportal-astro.png",
107118
"color": "#624ECF",
108119
"description": "A vocabulary and ontology repository for astronomy and related domains",

portals.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ layout: null
77
"color": "https://schema.org/color",
88
"description": "http://purl.org/dc/terms/description",
99
"status": "https://w3id.org/mod#status",
10-
"federation": "http://data.bioontology.org/metadata/federation"
10+
"federation": "http://data.bioontology.org/metadata/federation",
11+
"api_url": "http://data.bioontology.org/metadata/rest_url",
12+
"url": {
13+
"@id": "https://schema.org/url",
14+
"@type": "@id"
15+
}
1116
},
1217
"@graph": [
1318
{% for portal in site.data.portals %}
@@ -18,7 +23,11 @@ layout: null
1823
{% if portal.color %}"color": "{{ portal.color }}",
1924
{% endif %}"description": "{{ portal.description }}",
2025
"status": "{{ portal.status }}",
21-
"federation": {{ portal.federation }}
26+
"federation": {{ portal.federation }}{% if portal.api_url %},
27+
"api_url": {
28+
"@id": "{{ portal.api_url }}",
29+
"@type": "https://schema.org/WebAPI"
30+
}{% endif %}
2231
}{% unless forloop.last %},{% endunless %}
2332

2433
{% endfor %}

0 commit comments

Comments
 (0)