SignWell · Schema

FileInfo

File information

E-SignatureElectronic SignatureDocumentsPDFSigningTemplatesWorkflowsHIPAASOC2

Properties

Name Type Description
name string File name
pages_number integer Number of pages in the file
View JSON Schema on GitHub

JSON Schema

FileInfo.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/signwell/main/json-schema/FileInfo.json",
  "title": "FileInfo",
  "type": "object",
  "description": "File information",
  "properties": {
    "name": {
      "type": "string",
      "description": "File name"
    },
    "pages_number": {
      "type": "integer",
      "description": "Number of pages in the file"
    }
  },
  "required": [
    "name",
    "pages_number"
  ]
}