Skip to content

Commit 10ee61d

Browse files
V2: Removal of namespace in schema files. (#15)
* Removal of former namespace. * Removal of submodule name in paths. * Keep the module prefix. --------- Co-authored-by: raphaelgazzotti <raphael.gazzotti@ebrains.eu>
1 parent a50bebf commit 10ee61d

7 files changed

+39
-39
lines changed

schemas/activity/cranialWindowPreparation.schema.tpl.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_type": "https://openminds.ebrains.eu/specimenPrep/CranialWindowPreparation",
2+
"_type": "specimenPrep:CranialWindowPreparation",
33
"_extends": "/core/schemas/research/experimentalActivity.schema.tpl.json",
44
"required": [
55
"constructionType"
@@ -8,7 +8,7 @@
88
"constructionType": {
99
"_instruction": "Add the construction type of the cranial window.",
1010
"_linkedTypes": [
11-
"https://openminds.ebrains.eu/controlledTerms/CranialWindowConstructionType"
11+
"controlledTerms:CranialWindowConstructionType"
1212
]
1313
},
1414
"dimension": {
@@ -20,19 +20,19 @@
2020
"input": {
2121
"_instruction": "Add the state of the subject which received the cranial window before this activity.",
2222
"_linkedTypes": [
23-
"https://openminds.ebrains.eu/core/SubjectState"
23+
"core:SubjectState"
2424
]
2525
},
2626
"output": {
2727
"_instruction": "Add the state of the subject which received the cranial window as a result of this activity.",
2828
"_linkedTypes": [
29-
"https://openminds.ebrains.eu/core/SubjectState"
29+
"core:SubjectState"
3030
]
3131
},
3232
"reinforcementType": {
3333
"_instruction": "Add the reinforcement type of the cranial window.",
3434
"_linkedTypes": [
35-
"https://openminds.ebrains.eu/controlledTerms/CranialWindowReinforcementType"
35+
"controlledTerms:CranialWindowReinforcementType"
3636
]
3737
}
3838
}

schemas/activity/devicePlacement.schema.tpl.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"input": {
1717
"_instruction": "Add the state of the specimen that the device is being placed in or on during this activity.",
1818
"_linkedTypes": [
19-
"https://openminds.ebrains.eu/core/TissueSampleState",
20-
"https://openminds.ebrains.eu/core/SubjectState"
19+
"core:TissueSampleState",
20+
"core:SubjectState"
2121
]
2222
},
2323
"output": {
@@ -26,8 +26,8 @@
2626
"uniqueItems": true,
2727
"_instruction": "Add all states of the specimen(s) that the device was placed in or on as a result of this activity.",
2828
"_linkedTypes": [
29-
"https://openminds.ebrains.eu/core/TissueSampleState",
30-
"https://openminds.ebrains.eu/core/SubjectState"
29+
"core:TissueSampleState",
30+
"core:SubjectState"
3131
]
3232
},
3333
"targetPosition": {

schemas/activity/tissueCulturePreparation.schema.tpl.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_type": "https://openminds.ebrains.eu/specimenPrep/TissueCulturePreparation",
2+
"_type": "specimenPrep:TissueCulturePreparation",
33
"_extends": "/core/schemas/research/experimentalActivity.schema.tpl.json",
44
"required": [
55
"cultureMedium",
@@ -9,28 +9,28 @@
99
"cultureMedium": {
1010
"_instruction": "Add the culture medium used during this tissue culture preparation.",
1111
"_linkedTypes": [
12-
"https://openminds.ebrains.eu/chemicals/ChemicalMixture"
12+
"chemicals:ChemicalMixture"
1313
]
1414
},
1515
"cultureType": {
1616
"_instruction": "Add the cell culture type of the resulting tissue cell culture.",
1717
"_linkedTypes": [
18-
"https://openminds.ebrains.eu/controlledTerms/CellCultureType"
18+
"controlledTerms:CellCultureType"
1919
]
2020
},
2121
"input": {
2222
"_instruction": "Add the state of the specimen before it was prepared as culture in this activity.",
2323
"_linkedTypes": [
24-
"https://openminds.ebrains.eu/core/TissueSampleState",
25-
"https://openminds.ebrains.eu/core/TissueSampleCollectionState",
26-
"https://openminds.ebrains.eu/core/SubjectGroupState",
27-
"https://openminds.ebrains.eu/core/SubjectState"
24+
"core:TissueSampleState",
25+
"core:TissueSampleCollectionState",
26+
"core:SubjectGroupState",
27+
"core:SubjectState"
2828
]
2929
},
3030
"output": {
3131
"_instruction": "Add the state of the prepared tissue sample culture that resulted from this activity.",
3232
"_linkedTypes": [
33-
"https://openminds.ebrains.eu/core/TissueSampleState"
33+
"core:TissueSampleState"
3434
]
3535
}
3636
}

schemas/activity/tissueSampleSlicing.schema.tpl.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_type": "https://openminds.ebrains.eu/specimenPrep/TissueSampleSlicing",
2+
"_type": "specimenPrep:TissueSampleSlicing",
33
"_extends": "/core/schemas/research/experimentalActivity.schema.tpl.json",
44
"required": [
55
"device"
@@ -8,15 +8,15 @@
88
"device": {
99
"_instruction": "Add the device used to slice the tissue sample.",
1010
"_linkedTypes": [
11-
"https://openminds.ebrains.eu/specimenPrep/SlicingDeviceUsage"
11+
"specimenPrep:SlicingDeviceUsage"
1212
]
1313
},
1414
"input": {
1515
"_instruction": "Add the state of the specimen that was sliced during this activity.",
1616
"_linkedTypes": [
17-
"https://openminds.ebrains.eu/core/SubjectState",
18-
"https://openminds.ebrains.eu/core/TissueSampleCollectionState",
19-
"https://openminds.ebrains.eu/core/TissueSampleState"
17+
"core:SubjectState",
18+
"core:TissueSampleCollectionState",
19+
"core:TissueSampleState"
2020
]
2121
},
2222
"output": {
@@ -25,21 +25,21 @@
2525
"minItems": 1,
2626
"uniqueItems": true,
2727
"_linkedTypes": [
28-
"https://openminds.ebrains.eu/core/TissueSampleCollectionState",
29-
"https://openminds.ebrains.eu/core/TissueSampleState"
28+
"core:TissueSampleCollectionState",
29+
"core:TissueSampleState"
3030
]
3131
},
3232
"temperature": {
3333
"_instruction": "Enter the temperature at which the tissue sample was sliced during the activity.",
3434
"_embeddedTypes": [
35-
"https://openminds.ebrains.eu/core/QuantitativeValue",
36-
"https://openminds.ebrains.eu/core/QuantitativeValueRange"
35+
"core:QuantitativeValue",
36+
"core:QuantitativeValueRange"
3737
]
3838
},
3939
"tissueBathSolution": {
4040
"_instruction": "Add the chemical mixture used as bath solution during this activity.",
4141
"_linkedTypes": [
42-
"https://openminds.ebrains.eu/chemicals/ChemicalMixture"
42+
"chemicals:ChemicalMixture"
4343
]
4444
}
4545
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"_type": "https://openminds.ebrains.eu/specimenPrep/SlicingDevice",
2+
"_type": "specimenPrep:SlicingDevice",
33
"_extends": "/core/schemas/products/device.schema.tpl.json"
44
}

schemas/device/slicingDeviceUsage.schema.tpl.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"_type": "https://openminds.ebrains.eu/specimenPrep/SlicingDeviceUsage",
2+
"_type": "specimenPrep:SlicingDeviceUsage",
33
"_extends": "/core/schemas/research/deviceUsage.schema.tpl.json",
44
"required": [
55
"sliceThickness",
@@ -9,20 +9,20 @@
99
"device": {
1010
"_instruction": "Add the slicing device used.",
1111
"_linkedTypes": [
12-
"https://openminds.ebrains.eu/specimenPrep/SlicingDevice"
12+
"specimenPrep:SlicingDevice"
1313
]
1414
},
1515
"oscillationAmplitude": {
1616
"_instruction": "Enter the oscillation amplitude of the blade from the slicing device during its use.",
1717
"_embeddedTypes": [
18-
"https://openminds.ebrains.eu/core/QuantitativeValue"
18+
"core:QuantitativeValue"
1919
]
2020
},
2121
"sliceThickness": {
2222
"_instruction": "Enter the defined slice thickness during the use of this slicing device.",
2323
"_embeddedTypes": [
24-
"https://openminds.ebrains.eu/core/QuantitativeValue",
25-
"https://openminds.ebrains.eu/core/QuantitativeValueRange"
24+
"core:QuantitativeValue",
25+
"core:QuantitativeValueRange"
2626
]
2727
},
2828
"slicingAngle": {
@@ -31,26 +31,26 @@
3131
"maxItems": 2,
3232
"_instruction": "Enter all slicing angles (intentional or unintentional) in relation to the slicing plane used during this activity.",
3333
"_embeddedTypes": [
34-
"https://openminds.ebrains.eu/core/QuantitativeValue",
35-
"https://openminds.ebrains.eu/core/NumericalProperty"
34+
"core:QuantitativeValue",
35+
"core:NumericalProperty"
3636
]
3737
},
3838
"slicingPlane": {
3939
"_instruction": "Add the anatomical plane that best describes the slicing direction of the tissue sample(s) during the use of this slicing device.",
4040
"_linkedTypes": [
41-
"https://openminds.ebrains.eu/controlledTerms/AnatomicalPlane"
41+
"controlledTerms:AnatomicalPlane"
4242
]
4343
},
4444
"slicingSpeed": {
4545
"_instruction": "Enter the defined slicing speed during the use of this slicing device.",
4646
"_embeddedTypes": [
47-
"https://openminds.ebrains.eu/core/QuantitativeValue"
47+
"core:QuantitativeValue"
4848
]
4949
},
5050
"vibrationFrequency": {
5151
"_instruction": "Enter the defined vibration frequency during the use of this slicing device.",
5252
"_embeddedTypes": [
53-
"https://openminds.ebrains.eu/core/QuantitativeValue"
53+
"core:QuantitativeValue"
5454
]
5555
}
5656
}

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1
1+
v2

0 commit comments

Comments
 (0)