File tree Expand file tree Collapse file tree
tests/data/crates/invalid/4_data_entity_metadata/cyclic_datasets Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ {
2+ "@context" : [
3+ " https://w3id.org/ro/crate/1.1/context"
4+ ],
5+ "@graph" : [
6+ {
7+ "@id" : " ro-crate-metadata.json" ,
8+ "@type" : " CreativeWork" ,
9+ "conformsTo" : {
10+ "@id" : " https://w3id.org/ro/crate/1.1"
11+ },
12+ "about" : {
13+ "@id" : " ./"
14+ }
15+ },
16+ {
17+ "@id" : " ./" ,
18+ "@type" : " Dataset" ,
19+ "name" : " Root" ,
20+ "description" : " Root Dataset" ,
21+ "datePublished" : " 2024-05-17T01:04:52+01:00" ,
22+ "hasPart" : [
23+ ],
24+ "license" : " CC-BY-4.0"
25+ },
26+ {
27+ "@id" : " dataset1/file1.txt" ,
28+ "@type" : " File" ,
29+ "description" : " A file" ,
30+ "encodingFormat" : " text/plain" ,
31+ "name" : " file1.txt"
32+ },
33+ {
34+ "@id" : " dataset2/file2.txt" ,
35+ "@type" : " File" ,
36+ "description" : " Another file" ,
37+ "encodingFormat" : " text/plain" ,
38+ "name" : " file2.txt"
39+ },
40+ {
41+ "@id" : " dataset1/" ,
42+ "@type" : " Dataset" ,
43+ "name" : " Dataset 1" ,
44+ "description" : " First dataset" ,
45+ "hasPart" : [
46+ {
47+ "@id" : " dataset1/file1.txt"
48+ },
49+ {
50+ "@id" : " dataset2/"
51+ }
52+ ]
53+ },
54+ {
55+ "@id" : " dataset2/" ,
56+ "@type" : " Dataset" ,
57+ "name" : " Dataset 2" ,
58+ "description" : " Second dataset" ,
59+ "hasPart" : [
60+ {
61+ "@id" : " dataset2/file2.txt"
62+ },
63+ {
64+ "@id" : " dataset1/"
65+ }
66+ ]
67+ }
68+ ]
69+ }
You can’t perform that action at this time.
0 commit comments