Member

A member of a core facility.

Fortune 500Life SciencesDiagnosticsLaboratoryScientific InstrumentsLIMSLaboratory Automation

Properties

Name Type Description
id integer Unique identifier for the member.
name string Full name of the member.
email string Email address of the member.
role string Role of the member in the core.
status string Membership status.
View JSON Schema on GitHub

JSON Schema

ilab-operations-api-member-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-member-schema.json",
  "title": "Member",
  "description": "A member of a core facility.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier for the member.",
      "example": 400111
    },
    "name": {
      "type": "string",
      "description": "Full name of the member.",
      "example": "Jane Smith"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address of the member.",
      "example": "jsmith@stanford.edu"
    },
    "role": {
      "type": "string",
      "description": "Role of the member in the core.",
      "enum": [
        "pi",
        "researcher",
        "admin",
        "staff"
      ],
      "example": "pi"
    },
    "status": {
      "type": "string",
      "description": "Membership status.",
      "enum": [
        "active",
        "inactive"
      ],
      "example": "active"
    }
  }
}