Skip to content

Commit 72dd11d

Browse files
Add JSON-LD for Ketcher landing to improve metadata provision for AI Agents. Based on https://bioschemas.org/tutorials/howto/howto_add_github
1 parent 059fb12 commit 72dd11d

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

rst/themes/lifescience-theme/head.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@
5757
<script src="{{ pathto('_static/js/index-tiles.js', 1) }}"></script>
5858
{% endif %}
5959

60-
60+
{% if pagename == "ketcher/index" %}
61+
<!-- Ketcher JSON-LD -->
62+
{% include "json-ld_ketcher.html" %}
63+
{% endif %}
6164

6265
</head>
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<script type="application/ld+json">
2+
{
3+
"@context": "https://schema.org",
4+
"@type": "SoftwareApplication",
5+
"@id": "https://lifescience.opensource.epam.com/ketcher",
6+
"http://purl.org/dc/terms/conformsTo": {
7+
"@id": "https://bioschemas.org/profiles/ComputationalTool/1.0-RELEASE",
8+
"@type": "CreativeWork"
9+
},
10+
"name": "Ketcher",
11+
"alternateName": "Ketcher Chemical Structure Editor",
12+
"applicationCategory": "WebApplication",
13+
"description": "Ketcher is an open-source, web-based chemical structure editor developed by EPAM. It allows users to sketch and edit chemical structures, seamlessly integrate with cheminformatics platforms, and export to various formats.",
14+
"license": "https://opensource.org/licenses/MIT",
15+
"downloadUrl": "https://github.com/epam/ketcher",
16+
"url": "https://github.com/epam/ketcher",
17+
"demo": "https://github.com/epam/ketcher/tree/release/3.5/demo",
18+
"codeRepository": "https://github.com/epam/ketcher",
19+
"documentation": "https://github.com/epam/ketcher/wiki",
20+
"keywords": "open source, chemical editor, chemistry, web app, AI agent, REST API, cheminformatics, MIT License, EPAM",
21+
"featureList": ["http://edamontology.org/operation_2430", "http://edamontology.org/operation_3429", "http://edamontology.org/operation_0337"],
22+
"isAccessibleForFree": true,
23+
"publisher": {
24+
"@type": "Organization",
25+
"name": "EPAM Systems",
26+
"url": "https://www.epam.com/"
27+
},
28+
"programmingLanguage": [
29+
"JavaScript",
30+
"TypeScript"
31+
],
32+
"softwareVersion": "3.5.0",
33+
"operatingSystem": "All",
34+
"applicationSuite": "Cheminformatics"
35+
}
36+
</script>

0 commit comments

Comments
 (0)