Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions schemas/V_delta/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -1096,6 +1096,17 @@
"path": "schemas/V_delta/stable/treatment_drug.json",
"is_meta": false
},
{
"class_name": "treatment_transfer",
"tier": "stable",
"class_version": "1.0.0",
"maturity_level": "stable",
"superclasses": [
"base"
],
"path": "schemas/V_delta/stable/treatment_transfer.json",
"is_meta": false
},
{
"class_name": "tuning_fit",
"tier": "stable",
Expand Down
120 changes: 120 additions & 0 deletions schemas/V_delta/stable/treatment_transfer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
{
"document_class": {
"class_name": "treatment_transfer",
"class_version": "1.0.0",
"superclasses": [
{
"class_name": "base"
}
],
"maturity_level": "stable"
},
"depends_on": [
{
"name": "recipient_id",
"mustBeNonEmpty": true,
"documentation": "The document ID of the subject that received the transferred entity.",
"must_refer_to_document_class": ""
},
{
"name": "donor_id",
"mustBeNonEmpty": false,
"documentation": "The document ID of the subject from which the entity was transferred, if applicable.",
"must_refer_to_document_class": ""
}
],
"file": [],
"fields": [
{
"name": "timestamp",
"type": "double",
"blank_value": 0.0,
"default_value": 0.0,
"mustBeNonEmpty": false,
"mustBeScalar": true,
"mustNotHaveNaN": true,
"queryable": true,
"ontology": null,
"documentation": "The time that the transfer occurred, specified as a datenum (if global clock) or in seconds (if local clock).",
"constraints": {
"min": -10000000,
"max": 10000000
}
},
{
"name": "clocktype",
"type": "char",
"blank_value": "",
"default_value": "",
"mustBeNonEmpty": false,
"mustBeScalar": true,
"mustNotHaveNaN": false,
"queryable": true,
"ontology": null,
"documentation": "The clock type of the timestamp. Use a global clock if available.",
"constraints": {
"maxLength": 128
}
},
{
"name": "entity_name",
"type": "char",
"blank_value": "",
"default_value": "",
"mustBeNonEmpty": false,
"mustBeScalar": true,
"mustNotHaveNaN": false,
"queryable": true,
"ontology": null,
"documentation": "The human-readable name of the entity that was transferred (e.g., 'blood' or 'medium'). Paired with `entity_ontology_node`.",
"constraints": {
"maxLength": 256
}
},
{
"name": "entity_ontology_node",
"type": "char",
"blank_value": "",
"default_value": "",
"mustBeNonEmpty": false,
"mustBeScalar": true,
"mustNotHaveNaN": false,
"queryable": true,
"ontology": null,
"documentation": "Ontology node identifier of the entity that was transferred, as a CURIE (e.g., 'EMPTY:0000002', 'UBERON:3373'). Paired with `entity_name`.",
"constraints": {
"maxLength": 128
}
},
{
"name": "method_name",
"type": "char",
"blank_value": "",
"default_value": "",
"mustBeNonEmpty": false,
"mustBeScalar": true,
"mustNotHaveNaN": false,
"queryable": true,
"ontology": null,
"documentation": "The human-readable name of the method used to transfer the entity (e.g., 'blood transfusion' or 'titanium pick'). Paired with `method_ontology_node`.",
"constraints": {
"maxLength": 256
}
},
{
"name": "method_ontology_node",
"type": "char",
"blank_value": "",
"default_value": "",
"mustBeNonEmpty": false,
"mustBeScalar": true,
"mustNotHaveNaN": false,
"queryable": true,
"ontology": null,
"documentation": "Ontology node identifier of the transfer method, as a CURIE (e.g., 'EMPTY:0000002', 'UBERON:3373'). Paired with `method_name`.",
"constraints": {
"maxLength": 128
}
}
]
}
Loading