SavvyCal · Schema

Link

A SavvyCal scheduling link for booking appointments.

SchedulingCalendarAppointmentsAvailabilityBookingMeetingsWebhook

Properties

Name Type Description
id string Unique link identifier.
slug string URL slug for the scheduling link.
name string Public-facing name of the scheduling link.
private_name stringnull Owner-only name for the link.
description stringnull Optional description shown to bookers.
state string Current state of the scheduling link.
default_duration integer Default meeting duration in minutes.
durations array Array of available meeting durations in minutes.
increment integer Time slot interval in minutes.
fields array Custom booking form fields.
scope object
created_at string When the link was created.
updated_at string When the link was last updated.
View JSON Schema on GitHub

JSON Schema

savvycal-link-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.savvycal.com/v1/schemas/link",
  "title": "Link",
  "description": "A SavvyCal scheduling link for booking appointments.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique link identifier."
    },
    "slug": {
      "type": "string",
      "description": "URL slug for the scheduling link."
    },
    "name": {
      "type": "string",
      "description": "Public-facing name of the scheduling link."
    },
    "private_name": {
      "type": ["string", "null"],
      "description": "Owner-only name for the link."
    },
    "description": {
      "type": ["string", "null"],
      "description": "Optional description shown to bookers."
    },
    "state": {
      "type": "string",
      "description": "Current state of the scheduling link.",
      "enum": ["active", "pending", "disabled"]
    },
    "default_duration": {
      "type": "integer",
      "description": "Default meeting duration in minutes.",
      "minimum": 1
    },
    "durations": {
      "type": "array",
      "description": "Array of available meeting durations in minutes.",
      "items": {
        "type": "integer",
        "minimum": 1
      }
    },
    "increment": {
      "type": "integer",
      "description": "Time slot interval in minutes.",
      "minimum": 1
    },
    "fields": {
      "type": "array",
      "description": "Custom booking form fields.",
      "items": {
        "$ref": "#/$defs/LinkField"
      }
    },
    "scope": {
      "oneOf": [
        { "$ref": "#/$defs/Scope" },
        { "type": "null" }
      ]
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "When the link was created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "When the link was last updated."
    }
  },
  "required": ["id", "slug", "name", "state", "default_duration", "durations", "increment"],
  "$defs": {
    "LinkField": {
      "title": "LinkField",
      "description": "A custom form field on a scheduling link.",
      "type": "object",
      "properties": {
        "id": { "type": "string" },
        "label": { "type": "string" },
        "type": {
          "type": "string",
          "enum": ["text", "textarea", "select", "checkbox", "phone"]
        },
        "required": { "type": "boolean" }
      },
      "required": ["id", "label", "type", "required"]
    },
    "Scope": {
      "title": "Scope",
      "description": "A team or organizational scope.",
      "type": "object",
      "properties": {
        "id": { "type": "string" },
        "name": { "type": "string" },
        "slug": { "type": "string" }
      },
      "required": ["id", "name", "slug"]
    }
  }
}

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/savvycal-link"
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.