Tripetto · Schema

Tripetto Form

Schema for a Tripetto form including its metadata and definition

FormsSurveysForm BuilderNo-CodeSDKWebhook

Properties

Name Type Description
id string Unique form identifier
name string Human-readable form name
description string Optional description of the form's purpose
definition object
created string Form creation timestamp
modified string Last modification timestamp
responseCount integer Total number of responses collected
View JSON Schema on GitHub

JSON Schema

tripetto-form-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/tripetto/json-schema/tripetto-form-schema.json",
  "title": "Tripetto Form",
  "description": "Schema for a Tripetto form including its metadata and definition",
  "type": "object",
  "required": ["id", "name", "definition"],
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique form identifier"
    },
    "name": {
      "type": "string",
      "description": "Human-readable form name"
    },
    "description": {
      "type": "string",
      "description": "Optional description of the form's purpose"
    },
    "definition": {
      "$ref": "#/definitions/FormDefinition"
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "description": "Form creation timestamp"
    },
    "modified": {
      "type": "string",
      "format": "date-time",
      "description": "Last modification timestamp"
    },
    "responseCount": {
      "type": "integer",
      "description": "Total number of responses collected",
      "minimum": 0
    }
  },
  "definitions": {
    "FormDefinition": {
      "type": "object",
      "description": "JSON definition of a Tripetto form generated by the Builder",
      "properties": {
        "nodes": {
          "type": "array",
          "description": "Array of form nodes representing questions and blocks",
          "items": {
            "$ref": "#/definitions/FormNode"
          }
        },
        "sections": {
          "type": "array",
          "description": "Grouping sections within the form",
          "items": {
            "$ref": "#/definitions/FormSection"
          }
        },
        "conditions": {
          "type": "array",
          "description": "Conditional logic rules for branching",
          "items": {
            "type": "object"
          }
        }
      }
    },
    "FormNode": {
      "type": "object",
      "required": ["id", "type"],
      "properties": {
        "id": {
          "type": "string",
          "description": "Unique node identifier"
        },
        "type": {
          "type": "string",
          "description": "Block type identifier",
          "enum": [
            "text",
            "email",
            "number",
            "yes-no",
            "dropdown",
            "multiple-choice",
            "date",
            "url",
            "phone",
            "file-upload",
            "rating",
            "opinion-scale",
            "matrix",
            "calculation"
          ]
        },
        "name": {
          "type": "string",
          "description": "Question or field label"
        },
        "required": {
          "type": "boolean",
          "description": "Whether a response is required",
          "default": false
        },
        "settings": {
          "type": "object",
          "description": "Block-specific configuration settings"
        }
      }
    },
    "FormSection": {
      "type": "object",
      "required": ["id"],
      "properties": {
        "id": {
          "type": "string",
          "description": "Unique section identifier"
        },
        "name": {
          "type": "string",
          "description": "Section label displayed to respondents"
        },
        "nodes": {
          "type": "array",
          "description": "Node IDs belonging to this section",
          "items": {
            "type": "string"
          }
        }
      }
    }
  }
}

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/tripetto-form"
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.