Skip to content

Commit d6f359d

Browse files
committed
Added profile for LabProcess
1 parent b8b990b commit d6f359d

1 file changed

Lines changed: 95 additions & 0 deletions

File tree

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
{
2+
"@context": {
3+
"schema": "http://schema.org/",
4+
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
5+
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
6+
"owl": "http://www.w3.org/2002/07/owl/",
7+
"bioschemastypes": "https://discovery.biothings.io/ns/bioschemastypes/",
8+
"bioschemastypesdrafts": "https://discovery.biothings.io/ns/bioschemastypesdrafts/",
9+
"dct": "http://purl.org/dc/terms/",
10+
"@dateModified": "08/26/2025, 08:33:01",
11+
"labprocessTempForRelease": "https://discovery.biothings.io/ns/labprocessTempForRelease/",
12+
"bioschemas": "https://discovery.biothings.io/ns/bioschemas/"
13+
},
14+
"@graph": [
15+
{
16+
"@id": "labprocessTempForRelease:LabProcess",
17+
"@type": "rdfs:Class",
18+
"rdfs:comment": "Bioschemas profile for annotating a retrospective description of the application of experimental tasks and operations, given as a LabProcess. Version 1.0-DRAFT, prepared by: Florian Wetzels and H. Lukas Weil",
19+
"rdfs:label": "LabProcess",
20+
"rdfs:subClassOf": {
21+
"@id": "bioschemastypesdrafts:LabProcess"
22+
},
23+
"$validation": {
24+
"$schema": "http://json-schema.org/draft-07/schema#",
25+
"type": "object",
26+
"properties": {
27+
"parameterValue": {
28+
"description": "A parameter value of the experimental process, usually a key-value pair using ontology terms.",
29+
"owl:cardinality": "many"
30+
},
31+
"executesLabProtocol": {
32+
"description": "The lab protocol describes the experimental workflow and its parameters, which is instantiated by this process.",
33+
"owl:cardinality": "one"
34+
},
35+
"agent": {
36+
"description": "The direct performer or driver of the action (animate or inanimate). e.g. *John* wrote a book.",
37+
"owl:cardinality": "many"
38+
},
39+
"endTime": {
40+
"description": "The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to *December*. For media, including audio and video, it's the time offset of the end of a clip within a larger file.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.",
41+
"owl:cardinality": "one"
42+
},
43+
"instrument": {
44+
"description": "The object that helped the agent perform the action. e.g. John wrote a book with *a pen*.",
45+
"owl:cardinality": "many"
46+
},
47+
"object": {
48+
"description": "The object upon which the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn't). e.g. John read *a book*.",
49+
"owl:cardinality": "many"
50+
},
51+
"result": {
52+
"description": "The result produced in the action. e.g. John wrote *a book*.",
53+
"owl:cardinality": "many"
54+
},
55+
"startTime": {
56+
"description": "The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from *January* to December. For media, including audio and video, it's the time offset of the start of a clip within a larger file.\\n\\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.",
57+
"owl:cardinality": "one"
58+
},
59+
"description": {
60+
"description": "A description of the item.",
61+
"owl:cardinality": "one"
62+
},
63+
"disambiguatingDescription": {
64+
"description": "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.",
65+
"owl:cardinality": "many"
66+
},
67+
"name": {
68+
"description": "The name of the item.",
69+
"owl:cardinality": "one"
70+
}
71+
},
72+
"required": [
73+
"name"
74+
],
75+
"recommended": [
76+
"parameterValue",
77+
"executesLabProtocol",
78+
"agent",
79+
"endTime",
80+
"object",
81+
"result"
82+
],
83+
"optional": [
84+
"instrument",
85+
"startTime",
86+
"description",
87+
"disambiguatingDescription"
88+
]
89+
},
90+
"schemaVersion": [
91+
"https://schema.org/docs/releases.html#v29.4"
92+
]
93+
}
94+
]
95+
}

0 commit comments

Comments
 (0)