Schema: Lab_Sample
Schema Definition
{
"$schema": "http://json-schema.org/schema#",
"description": "A Special type of Inventory Lot that becomes a Laboratory Sample",
"properties": {
"created_at": {
"description": "DateTime",
"format": "dateTime",
"type": "string"
},
"deleted_at": {
"description": "DateTime when deleted -- null indicates NOT deleted",
"format": "dateTime",
"type": "string"
},
"id": {
"description": "ID of this specific Lab Sample",
"type": "string"
},
"license_origin": {
"$ref": "#/components/schemas/License",
"description": "The License of the Owner of the Sample"
},
"stat": {
"description": "Status/State indicator",
"enum": [
"200",
"410"
],
"type": "integer"
},
"updated_at": {
"description": "DateTime",
"format": "dateTime",
"type": "string"
}
},
"required": [
"id",
"license"
],
"type": "object"
}
Schema Samples