Thermo Fisher SampleManager Sample

A laboratory sample record in the Thermo Scientific SampleManager LIMS system.

Life SciencesLaboratoryScientific InstrumentsLIMSDiagnosticsBiosciencesFortune 500

Properties

Name Type Description
identity string Unique sample identity or barcode.
description string Human-readable sample description.
status string Sample status: A=Authorized, C=Completed, X=Cancelled, L=Login pending.
sampled_date string Date the sample was collected or received.
customer string Customer identity associated with the sample.
product string Product or material identity associated with the sample.
analysis string Analysis template assigned to the sample.
due_date string Due date for completing sample results.
login_date string Date and time the sample was logged into the system.
logged_in_by string Username who logged the sample into the system.
View JSON Schema on GitHub

JSON Schema

thermo-fisher-sample-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/thermo-fisher-scientific/blob/main/json-schema/thermo-fisher-sample-schema.json",
  "title": "Thermo Fisher SampleManager Sample",
  "description": "A laboratory sample record in the Thermo Scientific SampleManager LIMS system.",
  "type": "object",
  "required": ["identity"],
  "properties": {
    "identity": {
      "type": "string",
      "description": "Unique sample identity or barcode."
    },
    "description": {
      "type": "string",
      "description": "Human-readable sample description."
    },
    "status": {
      "type": "string",
      "enum": ["A", "C", "X", "L"],
      "description": "Sample status: A=Authorized, C=Completed, X=Cancelled, L=Login pending."
    },
    "sampled_date": {
      "type": "string",
      "format": "date",
      "description": "Date the sample was collected or received."
    },
    "customer": {
      "type": "string",
      "description": "Customer identity associated with the sample."
    },
    "product": {
      "type": "string",
      "description": "Product or material identity associated with the sample."
    },
    "analysis": {
      "type": "string",
      "description": "Analysis template assigned to the sample."
    },
    "due_date": {
      "type": "string",
      "format": "date",
      "description": "Due date for completing sample results."
    },
    "login_date": {
      "type": "string",
      "format": "date-time",
      "description": "Date and time the sample was logged into the system."
    },
    "logged_in_by": {
      "type": "string",
      "description": "Username who logged the sample into the system."
    }
  }
}