A lab credit.
| Property | Description |
|---|---|
| creditAmount |
The amount of the lab credit |
| expirationDate |
The date the lab credit expires |
| expirationStatus |
The expiration status |
| lab |
The lab name |
| type |
The type of object represented. |
The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.
{
"description": "A lab credit.",
"properties": {
"creditAmount": {
"description": "The amount of the lab credit",
"type": "string"
},
"expirationDate": {
"description": "The date the lab credit expires",
"type": "string"
},
"expirationStatus": {
"description": "The expiration status",
"enum": [
"expire-never",
"expire-soon",
"expired"
],
"type": "string"
},
"lab": {
"description": "The lab name",
"type": "string"
},
"type": {
"description": "The type of object represented.",
"enum": [
"lab-credit"
],
"type": "string"
}
},
"title": "Lab Credit",
"type": "object"
}