Project

A research project or cost account.

Fortune 500Life SciencesDiagnosticsLaboratoryScientific InstrumentsLIMSLaboratory Automation

Properties

Name Type Description
id integer Unique identifier for the project.
name string Name of the research project.
pi_name string Name of the principal investigator.
account_number string Financial account number for billing.
status string Project status.
View JSON Schema on GitHub

JSON Schema

ilab-operations-api-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agilent-technologies/refs/heads/main/json-schema/ilab-operations-api-project-schema.json",
  "title": "Project",
  "description": "A research project or cost account.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier for the project.",
      "example": 987
    },
    "name": {
      "type": "string",
      "description": "Name of the research project.",
      "example": "Cancer Genomics Study 2026"
    },
    "pi_name": {
      "type": "string",
      "description": "Name of the principal investigator.",
      "example": "Jane Smith"
    },
    "account_number": {
      "type": "string",
      "description": "Financial account number for billing.",
      "example": "1234-5678"
    },
    "status": {
      "type": "string",
      "description": "Project status.",
      "enum": [
        "active",
        "closed"
      ],
      "example": "active"
    }
  }
}