A lab.
Property | Description |
---|---|
id |
An entity identifier. It may be either an integer or a universally unique identifier (UUID) represented as a string. |
name |
The name of this lab. |
type |
The type of resource represented. |
The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.
{
"description": "A lab.",
"properties": {
"id": {
"$ref": "#/components/schemas/Id"
},
"name": {
"description": "The name of this lab.",
"example": "Acme Lab",
"type": "string"
},
"type": {
"allOf": [
{
"$ref": "#/components/schemas/Type"
},
{
"enum": [
"lab"
]
}
]
}
},
"title": "Lab",
"type": "object"
}