Skip to content

Commit 329853f

Browse files
Refactor .zenodo.json metadata and access details
Updated metadata structure and added publication date.
1 parent 5fda24d commit 329853f

File tree

1 file changed

+43
-32
lines changed

1 file changed

+43
-32
lines changed

.zenodo.json

Lines changed: 43 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,45 @@
11
{
2-
"title": "ssspx: Production-grade Single-Source Shortest Paths",
3-
"creators": [
4-
{
5-
"orcid": "0009-0001-2022-7072",
6-
"given_name": "Diogo",
7-
"family_name": "Ribeiro",
8-
"affiliation": "ESMAD - Instituto Politécnico do Porto"
9-
}
10-
],
11-
"description": "A deterministic single-source shortest paths solver with an optional transform, benchmarking tools, and documentation.",
12-
"keywords": [
13-
"graphs",
14-
"shortest paths",
15-
"Python",
16-
"algorithms",
17-
"benchmarking"
18-
],
19-
"license": "MIT",
20-
"upload_type": "software",
21-
"access_right": "open",
22-
"related_identifiers": [
23-
{
24-
"scheme": "url",
25-
"identifier": "https://github.com/DiogoRibeiro7/bmssp-backhup",
26-
"relation": "isSupplementTo"
27-
}
28-
],
29-
"funding": [
30-
{
31-
"funder": "ESMAD - Instituto Politécnico do Porto"
32-
}
33-
]
2+
"metadata": {
3+
"title": "ssspx: Production-grade Single-Source Shortest Paths",
4+
"description": "A deterministic single-source shortest paths solver with an optional transform, benchmarking tools, and documentation.",
5+
"publication_date": "2025-10-17",
6+
"resource_type": { "id": "software" },
7+
"creators": [
8+
{
9+
"person_or_org": {
10+
"type": "personal",
11+
"given_name": "Diogo",
12+
"family_name": "Ribeiro",
13+
"identifiers": [
14+
{ "scheme": "orcid", "identifier": "0009-0001-2022-7072" }
15+
]
16+
},
17+
"affiliations": [
18+
{ "name": "ESMAD - Instituto Politécnico do Porto" }
19+
],
20+
"role": { "id": "cre" }
21+
}
22+
],
23+
"license": { "id": "mit-license" },
24+
"keywords": ["graphs", "shortest paths", "Python", "algorithms", "benchmarking"],
25+
"related_identifiers": [
26+
{
27+
"relation_type": { "id": "isSupplementTo" },
28+
"scheme": "url",
29+
"identifier": "https://github.com/DiogoRibeiro7/bmssp-backhup"
30+
}
31+
],
32+
"funding": [
33+
{
34+
"funder": { "name": "ESMAD - Instituto Politécnico do Porto" }
35+
}
36+
],
37+
"version": "v1.0.0",
38+
"language": "eng"
39+
},
40+
"access": {
41+
"record": "public",
42+
"files": "public"
43+
}
3444
}
45+

0 commit comments

Comments
 (0)