DocSpring · Schema

submission_action

PDFDocument GenerationPDF TemplatesE-SignaturesFormsHTML to PDFDocument Automation

Properties

Name Type Description
id string
integration_id string
state string
action_type string
action_category string
result_data object
error_message string
View JSON Schema on GitHub

JSON Schema

submission_action.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/docspring/main/json-schema/submission_action.json",
  "title": "submission_action",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "nullable": true
    },
    "integration_id": {
      "type": "string",
      "nullable": true
    },
    "state": {
      "type": "string",
      "enum": [
        "pending",
        "processed",
        "failed",
        "error"
      ]
    },
    "action_type": {
      "type": "string",
      "enum": [
        "webhook",
        "slack_webhook",
        "email",
        "aws_s3_upload"
      ]
    },
    "action_category": {
      "type": "string",
      "enum": [
        "notification",
        "file_upload"
      ]
    },
    "result_data": {
      "type": "object"
    },
    "error_message": {
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "action_category",
    "action_type",
    "error_message",
    "id",
    "integration_id",
    "result_data",
    "state"
  ],
  "additionalProperties": false
}