A schema description of the Strain Data Project (SDP) object sometimes included in WCIA lab transfer schema's meta field.
The Strain Data Project (SDP) object is a JSON object that is included in the WCIA Lab Transfer Schema by participating laboratories. The SDP object is optional and may be omitted from the lab transfer schema. It is used to provide SDP information and assets related to the sample being tested.
Ln # Schema Description
---- ----------------------- ---------------------------------------------------------------------------------
1 meta The meta object of the lab transfer schema.
2 └── sdp An object containing property/value pairs related to the Strain Data Project.
3 ├── sdp_category A string value representing the category of the sample.
4 ├── sdp_color A string value representing the category of the sample.
5 ├── sdp_thumbnail A string value representing the URL of a thumbnail image asset for the sample.
6 └── sdp_compass A string value representing the URL of a compass image asset for the sample.
### Example: ###
"meta": {
"sdp": {
"sdp_category": "string",
"sdp_color": "string",
"sdp_thumbnail": "string",
"sdp_compass": "string"
}
}- Field Name: meta
- Type: Object
- Description: The meta object of the lab transfer schema.
- Legend: Ln #1
- Field Name: sdp
- Type: Object
- Description: An object containing property/value pairs related to the Strain Data Project.
- Legend: Ln #2
- Field Name: sdp_category
- Type: String
- Description: A string value representing the category of the sample. It is a single letter.
- Legend: Ln #3
- Field Name: sdp_color
- Type: String
- Description: A string value representing the color of the sample. It is a complete word.
- Legend: Ln #4
- Field Name: sdp_thumbnail
- Type: String
- Description: A string value representing the URL of a thumbnail image asset for the sample. Usually a png.
- Legend: Ln #5
- Field Name: sdp_compass
- Type: String
- Description: A string value representing the URL of a compass image asset for the sample. Usually a png.
- Legend: Ln #6