agilent-technologies · JSON Structure

Ilab Operations Api Member Structure

A member of a core facility.

Type: object Properties: 5
Fortune 500Life SciencesDiagnosticsLaboratoryScientific InstrumentsLIMSLaboratory Automation

Member is a JSON Structure definition published by agilent-technologies, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name email role status

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agilent-technologies/refs/heads/main/json-structure/ilab-operations-api-member-structure.json",
  "name": "Member",
  "description": "A member of a core facility.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "description": "Unique identifier for the member.",
      "example": 400111
    },
    "name": {
      "type": "string",
      "description": "Full name of the member.",
      "example": "Jane Smith"
    },
    "email": {
      "type": "string",
      "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"
    }
  }
}