Boltic · Schema
Boltic Table
A Boltic Table is a no-code database entity for storing and managing structured data with a defined column schema.
AutomationData SyncGatewaysNo-CodeStreamingWorkflows
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the table |
| name | string | Human-readable name for the table |
| description | string | Description of the table's purpose |
| columns | array | Schema definition of the table columns |
| rowCount | integer | Number of rows in the table |
| createdAt | string | |
| updatedAt | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/boltic/refs/heads/main/json-schema/boltic-table.json",
"title": "Boltic Table",
"description": "A Boltic Table is a no-code database entity for storing and managing structured data with a defined column schema.",
"type": "object",
"required": ["id", "name", "columns"],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the table"
},
"name": {
"type": "string",
"description": "Human-readable name for the table"
},
"description": {
"type": "string",
"description": "Description of the table's purpose"
},
"columns": {
"type": "array",
"items": {
"$ref": "#/$defs/column"
},
"description": "Schema definition of the table columns"
},
"rowCount": {
"type": "integer",
"minimum": 0,
"description": "Number of rows in the table"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"updatedAt": {
"type": "string",
"format": "date-time"
}
},
"$defs": {
"column": {
"type": "object",
"required": ["name", "type"],
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string",
"description": "Column name"
},
"type": {
"type": "string",
"enum": [
"text",
"number",
"boolean",
"date",
"datetime",
"email",
"url",
"select",
"multi-select",
"attachment",
"relation"
],
"description": "Data type of the column"
},
"required": {
"type": "boolean",
"default": false,
"description": "Whether the column requires a value"
},
"defaultValue": {
"type": "string",
"description": "Default value for the column"
},
"options": {
"type": "array",
"items": {
"type": "string"
},
"description": "Options for select and multi-select column types"
}
}
}
}
}
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.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/boltic-table"
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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.