Wufoo · Schema

Wufoo Entry

A form submission. Field values appear under dynamic Field{N} keys; audit fields are fixed.

FormsForm BuilderSurveysData CollectionWebhooksPaymentsSurveyMonkey

Properties

Name Type Description
EntryId string
DateCreated string
CreatedBy string
DateUpdated string
UpdatedBy string
IP string Submitter IP (present when system=true).
Status string
PurchaseTotal string
Currency string
TransactionId string
MerchantType string
View JSON Schema on GitHub

JSON Schema

wufoo-entry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/wufoo/json-schema/wufoo-entry-schema.json",
  "title": "Wufoo Entry",
  "description": "A form submission. Field values appear under dynamic Field{N} keys; audit fields are fixed.",
  "type": "object",
  "required": ["EntryId"],
  "properties": {
    "EntryId": { "type": "string" },
    "DateCreated": { "type": "string", "format": "date-time" },
    "CreatedBy": { "type": "string" },
    "DateUpdated": { "type": "string", "format": "date-time" },
    "UpdatedBy": { "type": "string" },
    "IP": { "type": "string", "description": "Submitter IP (present when system=true)." },
    "Status": { "type": "string" },
    "PurchaseTotal": { "type": "string" },
    "Currency": { "type": "string" },
    "TransactionId": { "type": "string" },
    "MerchantType": { "type": "string" }
  },
  "patternProperties": {
    "^Field\\d+$": { "type": "string" }
  },
  "additionalProperties": true
}