Skip to content

Commit ce63601

Browse files
authored
Merge pull request #249 from ResearchObject/detached_test_data
Detached test data
2 parents 7588a0f + 6159d80 commit ce63601

1 file changed

Lines changed: 49 additions & 0 deletions

File tree

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"@context": "https://w3id.org/ro/crate/1.2/context",
3+
"@graph": [
4+
{
5+
"@id": "ro-crate-metadata.json",
6+
"@type": "CreativeWork",
7+
"about": {
8+
"@id": "https://raw.githubusercontent.com/ResearchObject/ro-crate-py/master/test/test-data/"
9+
},
10+
"conformsTo": {
11+
"@id": "https://w3id.org/ro/crate/1.2"
12+
}
13+
},
14+
{
15+
"@id": "https://raw.githubusercontent.com/ResearchObject/ro-crate-py/master/test/test-data/",
16+
"@type": "Dataset",
17+
"name": "Example crate",
18+
"description": "An example RO-Crate",
19+
"datePublished": "2026-01-28",
20+
"license": {
21+
"@id": "http://spdx.org/licenses/CC0-1.0"
22+
},
23+
"hasPart": [
24+
{
25+
"@id": "https://raw.githubusercontent.com/ResearchObject/ro-crate-py/master/test/test-data/sample_file.txt"
26+
},
27+
{
28+
"@id": "https://raw.githubusercontent.com/ResearchObject/ro-crate-py/master/test/test-data/test_file_galaxy.txt"
29+
}
30+
]
31+
},
32+
{
33+
"@id": "https://raw.githubusercontent.com/ResearchObject/ro-crate-py/master/test/test-data/sample_file.txt",
34+
"@type": "File",
35+
"name": "CSV data"
36+
},
37+
{
38+
"@id": "https://raw.githubusercontent.com/ResearchObject/ro-crate-py/master/test/test-data/test_file_galaxy.txt",
39+
"@type": "File",
40+
"name": "Test data",
41+
"localPath": "test-data/test_file_galaxy.txt"
42+
},
43+
{
44+
"@id": "http://spdx.org/licenses/CC0-1.0",
45+
"@type": "CreativeWork",
46+
"name": "CC0-1.0"
47+
}
48+
]
49+
}

0 commit comments

Comments
 (0)