From b7500c608203858e5384fd1837353188257d38d4 Mon Sep 17 00:00:00 2001 From: abonard Date: Tue, 3 Mar 2026 16:36:11 +0100 Subject: [PATCH 1/2] Move channel to core --- schemas/entity/channel.schema.tpl.json | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 schemas/entity/channel.schema.tpl.json diff --git a/schemas/entity/channel.schema.tpl.json b/schemas/entity/channel.schema.tpl.json deleted file mode 100644 index 2817e29..0000000 --- a/schemas/entity/channel.schema.tpl.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "_type": "ephys:Channel", - "required": [ - "internalIdentifier", - "unit" - ], - "properties": { - "internalIdentifier": { - "type": "string", - "_instruction": "Enter the identifier (or label) of this channel that is used within the corresponding data files to identify this channel." - }, - "unit": { - "_instruction": "Add the unit of measurement for this channel.", - "_linkedTypes": [ - "controlledTerms:UnitOfMeasurement" - ] - } - } -} From 266729c273ba5e73d84df1f6e41d55c63114fbae Mon Sep 17 00:00:00 2001 From: abonard Date: Tue, 3 Mar 2026 16:36:25 +0100 Subject: [PATCH 2/2] Move recording to core --- schemas/entity/recording.schema.tpl.json | 57 ------------------------ 1 file changed, 57 deletions(-) delete mode 100644 schemas/entity/recording.schema.tpl.json diff --git a/schemas/entity/recording.schema.tpl.json b/schemas/entity/recording.schema.tpl.json deleted file mode 100644 index af5d8ae..0000000 --- a/schemas/entity/recording.schema.tpl.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "_type": "ephys:Recording", - "required": [ - "channel", - "dataLocation", - "recordedWith", - "samplingFrequency" - ], - "properties": { - "additionalRemarks": { - "type": "string", - "_instruction": "Enter any additional remarks concerning this recording." - }, - "channel": { - "type": "array", - "minItems": 1, - "uniqueItems": true, - "_instruction": "Enter all channels used for this recording.", - "_embeddedTypes": [ - "ephys:Channel" - ] - }, - "dataLocation": { - "_instruction": "Add the location of the file or file bundle in which the recorded data is stored.", - "_linkedTypes": [ - "core:File", - "core:FileBundle" - ] - }, - "internalIdentifier": { - "type": "string", - "_instruction": "Enter the identifier (or label) of this recording that is used within the corresponding data files to identify this recording." - }, - "name": { - "type": "string", - "_instruction": "Enter a descriptive name for this recording." - }, - "previousRecording": { - "_instruction": "If this recording is part of a sequence of recordings (e.g., multiple repetitions or sweeps), add the recording preceding this recording.", - "_linkedTypes": [ - "ephys:Recording" - ] - }, - "recordedWith": { - "_instruction": "Add the device used to generate this recording.", - "_linkedCategories": [ - "deviceUsage" - ] - }, - "samplingFrequency": { - "_instruction": "Enter the sampling frequency of this recording.", - "_embeddedTypes": [ - "core:QuantitativeValue" - ] - } - } -}