SignNow · Schema

SignNow Document

Schema for a SignNow document resource, including signing status, fields, and invitation details.

E-SignatureDocument-ManagementElectronic SignatureWorkflow-Automation

Properties

Name Type Description
id string Unique document identifier.
document_name string Name of the document.
created string ISO 8601 creation timestamp.
updated string ISO 8601 last update timestamp.
user_id string ID of the document owner.
origin_document_id string Source template ID if created from a template.
page_count integer Number of pages in the document.
fieldinvite_status string Overall signature invite status.
signing_session_caching boolean Whether signing session caching is enabled.
roles array Signing roles defined for this document.
fields array Form fields embedded in the document.
requests array Pending signature invitation requests.
tags array Organizational tags applied to this document.
View JSON Schema on GitHub

JSON Schema

signnow-document-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/signnow/main/json-schema/signnow-document-schema.json",
  "title": "SignNow Document",
  "description": "Schema for a SignNow document resource, including signing status, fields, and invitation details.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique document identifier."
    },
    "document_name": {
      "type": "string",
      "description": "Name of the document."
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 creation timestamp."
    },
    "updated": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 last update timestamp."
    },
    "user_id": {
      "type": "string",
      "description": "ID of the document owner."
    },
    "origin_document_id": {
      "type": "string",
      "description": "Source template ID if created from a template."
    },
    "page_count": {
      "type": "integer",
      "minimum": 1,
      "description": "Number of pages in the document."
    },
    "fieldinvite_status": {
      "type": "string",
      "enum": ["pending", "fulfilled", "declined", "expired"],
      "description": "Overall signature invite status."
    },
    "signing_session_caching": {
      "type": "boolean",
      "description": "Whether signing session caching is enabled."
    },
    "roles": {
      "type": "array",
      "description": "Signing roles defined for this document.",
      "items": {
        "type": "object",
        "properties": {
          "unique_id": {
            "type": "string"
          },
          "name": {
            "type": "string",
            "description": "Role name (e.g., Signer, Approver)."
          },
          "signing_order": {
            "type": "integer",
            "minimum": 1
          }
        }
      }
    },
    "fields": {
      "type": "array",
      "description": "Form fields embedded in the document.",
      "items": {
        "$ref": "#/$defs/Field"
      }
    },
    "requests": {
      "type": "array",
      "description": "Pending signature invitation requests.",
      "items": {
        "$ref": "#/$defs/SigningRequest"
      }
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Organizational tags applied to this document."
    }
  },
  "required": ["id", "document_name"],
  "$defs": {
    "Field": {
      "type": "object",
      "description": "A form field within the document.",
      "properties": {
        "type": {
          "type": "string",
          "enum": ["signature", "initials", "text", "date", "checkbox", "dropdown", "radiobutton"],
          "description": "Field type."
        },
        "x": {
          "type": "number",
          "description": "X coordinate position on page."
        },
        "y": {
          "type": "number",
          "description": "Y coordinate position on page."
        },
        "width": {
          "type": "number",
          "minimum": 0
        },
        "height": {
          "type": "number",
          "minimum": 0
        },
        "page_number": {
          "type": "integer",
          "minimum": 0,
          "description": "Zero-indexed page number."
        },
        "role_id": {
          "type": "string",
          "description": "Signing role assigned to fill this field."
        },
        "required": {
          "type": "boolean"
        },
        "label": {
          "type": "string",
          "description": "Human-readable field label."
        }
      },
      "required": ["type", "page_number"]
    },
    "SigningRequest": {
      "type": "object",
      "description": "A pending or completed signature request.",
      "properties": {
        "id": {
          "type": "string"
        },
        "signer_email": {
          "type": "string",
          "format": "email"
        },
        "status": {
          "type": "string",
          "enum": ["pending", "fulfilled", "declined", "expired"]
        },
        "created": {
          "type": "string",
          "format": "date-time"
        },
        "updated": {
          "type": "string",
          "format": "date-time"
        }
      },
      "required": ["id", "signer_email", "status"]
    }
  }
}

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/signnow-document"
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.