Scispot · Schema

Scispot Labsheet

A Scispot Labsheet is a structured LIMS data table used for sample registries, assay results, inventory tracking, and any structured lab data

LaboratoryLife ScienceLIMSELNBiotechAPI FirstScientific DataHealthcare

Properties

Name Type Description
id string Unique labsheet identifier
name string Display name of the labsheet
description string Purpose and usage description of the labsheet
columns array Column definitions for the labsheet schema
rowCount integer Total number of rows in the labsheet
createdAt string ISO 8601 timestamp when the labsheet was created
updatedAt string ISO 8601 timestamp of the last modification
View JSON Schema on GitHub

JSON Schema

scispot-labsheet-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/scispot/main/json-schema/scispot-labsheet-schema.json",
  "title": "Scispot Labsheet",
  "description": "A Scispot Labsheet is a structured LIMS data table used for sample registries, assay results, inventory tracking, and any structured lab data",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique labsheet identifier",
      "examples": ["ls_01HXKP7QWERTY123"]
    },
    "name": {
      "type": "string",
      "description": "Display name of the labsheet",
      "examples": ["Sample Registry", "Assay Results", "Inventory"]
    },
    "description": {
      "type": "string",
      "description": "Purpose and usage description of the labsheet"
    },
    "columns": {
      "type": "array",
      "description": "Column definitions for the labsheet schema",
      "items": {
        "$ref": "#/$defs/LabsheetColumn"
      }
    },
    "rowCount": {
      "type": "integer",
      "description": "Total number of rows in the labsheet",
      "minimum": 0
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the labsheet was created"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp of the last modification"
    }
  },
  "required": ["id", "name", "columns"],
  "$defs": {
    "LabsheetColumn": {
      "type": "object",
      "description": "Definition of a single column in a Scispot labsheet",
      "properties": {
        "name": {
          "type": "string",
          "description": "Column display name"
        },
        "type": {
          "type": "string",
          "enum": ["text", "number", "date", "barcode", "lookup", "file", "formula"],
          "description": "Column data type"
        },
        "required": {
          "type": "boolean",
          "description": "Whether a value is required for this column",
          "default": false
        }
      },
      "required": ["name", "type"]
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/scispot-labsheet"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.