PDFShift · Schema

Templates

PDFHTML to PDFDocument ConversionScreenshotChromiumREST API

Properties

Name Type Description
success boolean
templates object
View JSON Schema on GitHub

JSON Schema

templates.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/pdfshift/refs/heads/main/json-schema/templates.json",
  "title": "Templates",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean"
    },
    "templates": {
      "type": "object",
      "properties": {
        "has_more": {
          "type": "boolean"
        },
        "data": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "slug": {
                "type": "string"
              },
              "created": {
                "type": "integer",
                "format": "int64"
              },
              "name": {
                "type": "string"
              }
            }
          }
        },
        "limit": {
          "type": "integer",
          "format": "int32"
        },
        "page": {
          "type": "integer",
          "format": "int32"
        },
        "total": {
          "type": "integer",
          "format": "int32"
        }
      }
    }
  }
}