From 1e54d6b9e110662ed12477bcb4214486878b46e5 Mon Sep 17 00:00:00 2001 From: cmaumet Date: Mon, 4 Sep 2023 10:56:57 +0200 Subject: [PATCH] add simple ex from spec --- .../simple_example/simple_example.prov.jsonld | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 examples/simple_example/simple_example.prov.jsonld diff --git a/examples/simple_example/simple_example.prov.jsonld b/examples/simple_example/simple_example.prov.jsonld new file mode 100644 index 000000000..fe3faaf3a --- /dev/null +++ b/examples/simple_example/simple_example.prov.jsonld @@ -0,0 +1,32 @@ +{ +"@context": "https://purl.org/nidash/bidsprov/context.json", + "BIDSProvVersion": "0.0.1", + "Records": { + "Software": [ + { + "Id": "urn:eeglab-4a586b50", + "Label": "EEGLAB", + "Version": "v2023" + } + ], + "Activities": [ + { + "Id": "urn:filter-00f3a18f", + "Label": "Filter", + "Used": "bids::sub-001/eeg/myfile_desc-filtered_eeg.set", + "AssociatedWith": "urn:eeglab-4a586b50" + } + ], + "Entities": [ + { + "Id": "bids::sub-001/eeg/myfile_desc-filtered_eeg.set", + "Label": "myfile_desc-filtered_eeg.set" + }, + { + "Id": "bids::sub-001/eeg/myfile_desc-filtered_downsampled_eeg.set", + "Label": "myfile_desc-filtered_downsampled_eeg.set", + "GeneratedBy": "urn:filter-00f3a18f" + } + ] + } +}