Cores List Response

Paginated list of core facilities.

Fortune 500Life SciencesDiagnosticsLaboratoryScientific InstrumentsLIMSLaboratory Automation

Properties

Name Type Description
cores array
total integer Total number of cores matching the query.
page integer Current page number.
per_page integer Number of items per page.
View JSON Schema on GitHub

JSON Schema

ilab-operations-api-cores-list-response-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-cores-list-response-schema.json",
  "title": "Cores List Response",
  "description": "Paginated list of core facilities.",
  "type": "object",
  "properties": {
    "cores": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Core"
      }
    },
    "total": {
      "type": "integer",
      "description": "Total number of cores matching the query.",
      "example": 42
    },
    "page": {
      "type": "integer",
      "description": "Current page number.",
      "example": 1
    },
    "per_page": {
      "type": "integer",
      "description": "Number of items per page.",
      "example": 25
    }
  }
}