Seismic · Schema

Seismic LiveDoc Template

A LiveDoc template in the Seismic platform used for dynamic document generation by merging data into predefined layouts.

Properties

Name Type Description
id string Unique identifier of the template.
name string Name of the template.
description string Description of the template.
outputFormats array Supported output formats for this template.
folderId string ID of the folder containing this template.
inputCount integer Number of input fields defined in the template.
dataSourceId stringnull ID of the default data source for this template.
status string Status of the template.
inputs array Input field definitions for the template.
createdBy string ID of the user who created the template.
createdAt string Timestamp when the template was created.
modifiedBy string ID of the user who last modified the template.
modifiedAt string Timestamp when the template was last modified.
thumbnailUrl string URL for the template thumbnail image.
View JSON Schema on GitHub

JSON Schema

seismic-livedoc-template-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developer.seismic.com/schemas/livedoc-template",
  "title": "Seismic LiveDoc Template",
  "description": "A LiveDoc template in the Seismic platform used for dynamic document generation by merging data into predefined layouts.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the template."
    },
    "name": {
      "type": "string",
      "description": "Name of the template."
    },
    "description": {
      "type": "string",
      "description": "Description of the template."
    },
    "outputFormats": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": ["pptx", "pdf", "docx", "xlsx"]
      },
      "description": "Supported output formats for this template."
    },
    "folderId": {
      "type": "string",
      "description": "ID of the folder containing this template."
    },
    "inputCount": {
      "type": "integer",
      "description": "Number of input fields defined in the template.",
      "minimum": 0
    },
    "dataSourceId": {
      "type": ["string", "null"],
      "description": "ID of the default data source for this template."
    },
    "status": {
      "type": "string",
      "description": "Status of the template.",
      "enum": ["active", "inactive", "draft"]
    },
    "inputs": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/TemplateInput"
      },
      "description": "Input field definitions for the template."
    },
    "createdBy": {
      "type": "string",
      "description": "ID of the user who created the template."
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the template was created."
    },
    "modifiedBy": {
      "type": "string",
      "description": "ID of the user who last modified the template."
    },
    "modifiedAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the template was last modified."
    },
    "thumbnailUrl": {
      "type": "string",
      "format": "uri",
      "description": "URL for the template thumbnail image."
    }
  },
  "required": ["id", "name"],
  "$defs": {
    "TemplateInput": {
      "type": "object",
      "description": "An input field definition for a LiveDoc template.",
      "properties": {
        "id": {
          "type": "string",
          "description": "Unique identifier of the input field."
        },
        "name": {
          "type": "string",
          "description": "Name of the input field used as key in generation requests."
        },
        "displayName": {
          "type": "string",
          "description": "Display label for the input field."
        },
        "type": {
          "type": "string",
          "description": "Data type of the input field.",
          "enum": ["text", "number", "date", "boolean", "image", "table", "dropdown"]
        },
        "required": {
          "type": "boolean",
          "description": "Whether the input field is required for generation."
        },
        "defaultValue": {
          "description": "Default value for the input field."
        },
        "description": {
          "type": "string",
          "description": "Description or help text for the input field."
        },
        "options": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Available options for dropdown-type inputs."
        },
        "dataSourceField": {
          "type": "string",
          "description": "Name of the data source field this input maps to for automatic population."
        }
      },
      "required": ["id", "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/seismic-livedoc-template"
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.