BurstIQ DbSchema APIs API

DbSchema is an alternative method to define the dictionaries of the SDZ; it is a 3rd party tool https://dbschema.com/

Operations 1

GET /api/dbschema #

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/burstiq-dbschema-apis-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

burstiq-dbschema-apis-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: LifeGraph APIs BlastAI DbSchema APIs API
  description: LifeGraph API descriptions
  license:
    name: BurstIQ, Inc.
    url: https://www.burstiq.com
  version: 2.42.0
servers:
- url: https://api.burstiq.com
  description: Generated server url
tags:
- name: DbSchema APIs
  description: DbSchema is an alternative method to define the dictionaries of the SDZ; it is a 3rd party tool https://dbschema.com/
paths:
  /api/dbschema:
    get:
      tags:
      - DbSchema APIs
      description: <b>Allowed user roles:</b><br/><ul><li>sdzAdmin</li><li>sdzReadOnly</li><li>sdzUser</li></ul><br/><br/>export the SDZ metadata (dictionaries and edge defs) as DbSchema XML file
      operationId: getExportDbSchemaXml
      responses:
        '200':
          description: OK
          content:
            application/xml:
              schema:
                $ref: '#/components/schemas/DBSProject'
            application/octet-stream:
              schema:
                type: string
                format: byte
components:
  schemas:
    DBSFkColumn:
      type: object
      properties:
        name:
          type: string
          minLength: 1
        pk:
          type: string
          minLength: 1
      required:
      - name
      - pk
    DBSCommentTag:
      type: object
      properties:
        name:
          type: string
          minLength: 1
        value:
          type: string
          minLength: 1
      required:
      - name
      - value
    DBSTable:
      type: object
      properties:
        name:
          type: string
          minLength: 1
        comment:
          type: string
        comment_tag:
          type: array
          items:
            $ref: '#/components/schemas/DBSCommentTag'
        column:
          type: array
          items:
            $ref: '#/components/schemas/DBSColumn'
          minItems: 1
        index:
          type: array
          items:
            $ref: '#/components/schemas/DBSIndex'
          minItems: 1
        fk:
          type: array
          items:
            $ref: '#/components/schemas/DBSFk'
          minItems: 1
      required:
      - column
      - fk
      - index
      - name
    DBSLayoutEntity:
      type: object
      properties:
        name:
          type: string
          minLength: 1
        schema:
          type: string
        color:
          type: string
        column:
          type: string
        x:
          type: string
        y:
          type: string
      required:
      - name
    DBSIndex:
      type: object
      properties:
        name:
          type: string
          minLength: 1
        unique:
          type: string
          enum:
          - PRIMARY_KEY
          - UNIQUE_KEY
          - NORMAL
          - INDEX1
          minLength: 1
        column:
          type: array
          items:
            $ref: '#/components/schemas/DBSIndexColumn'
          minItems: 1
        comment_tag:
          type: array
          items:
            $ref: '#/components/schemas/DBSCommentTag'
      required:
      - column
      - name
      - unique
    DBSFk:
      type: object
      properties:
        toSchema:
          type: string
          minLength: 1
        name:
          type: string
          minLength: 1
        toTable:
          type: string
          minLength: 1
        fk_column:
          type: array
          items:
            $ref: '#/components/schemas/DBSFkColumn'
          minItems: 1
      required:
      - fk_column
      - name
      - toSchema
      - toTable
    DBSLayoutGroup:
      type: object
      properties:
        name:
          type: string
          minLength: 1
        schema:
          type: string
        color:
          type: string
        entity:
          type: array
          items:
            $ref: '#/components/schemas/DBSLayoutEntity'
          minItems: 1
      required:
      - entity
      - name
    DBSProject:
      type: object
      properties:
        database:
          type: string
          minLength: 1
        name:
          type: string
          minLength: 1
        id:
          type: string
          minLength: 1
        comment:
          type: string
        schema:
          $ref: '#/components/schemas/DBSSchema'
        layout:
          $ref: '#/components/schemas/DBSLayout'
      required:
      - database
      - id
      - layout
      - name
      - schema
    DBSSchema:
      type: object
      properties:
        name:
          type: string
          minLength: 1
        table:
          type: array
          items:
            $ref: '#/components/schemas/DBSTable'
          minItems: 1
      required:
      - name
      - table
    DBSColumn:
      type: object
      properties:
        name:
          type: string
          minLength: 1
        type:
          type: string
          minLength: 1
        mandatory:
          type: string
        length:
          type: string
        decimal:
          type: string
        enumeration:
          type: string
        comment:
          type: string
        defo:
          type: string
        type_options:
          type: string
      required:
      - name
      - type
    DBSLayout:
      type: object
      properties:
        name:
          type: string
          minLength: 1
        id:
          type: string
          minLength: 1
        showColumnType:
          type: string
          minLength: 1
        showRelation:
          type: string
          minLength: 1
        joinedRouting:
          type: string
          minLength: 1
        entity:
          type: array
          items:
            $ref: '#/components/schemas/DBSLayoutEntity'
          minItems: 1
        group:
          type: array
          items:
            $ref: '#/components/schemas/DBSLayoutGroup'
          minItems: 1
      required:
      - entity
      - group
      - id
      - joinedRouting
      - name
      - showColumnType
      - showRelation
    DBSIndexColumn:
      type: object
      properties:
        name:
          type: string
          minLength: 1
      required:
      - name