Wufoo · JSON Structure

Wufoo Entry Structure

Logical structure of a Wufoo entry (form submission). Field values are keyed by Field{N}; audit and system fields are fixed.

Type: Properties: 0
FormsForm BuilderSurveysData CollectionWebhooksPaymentsSurveyMonkey

Wufoo Entry Structure is a JSON Structure definition published by Wufoo.

Meta-schema:

JSON Structure

Raw ↑
{
  "$id": "https://github.com/api-evangelist/wufoo/json-structure/wufoo-entry-structure.json",
  "title": "Wufoo Entry Structure",
  "description": "Logical structure of a Wufoo entry (form submission). Field values are keyed by Field{N}; audit and system fields are fixed.",
  "structure": {
    "Entry": {
      "EntryId": "string",
      "Form": { "Hash": "string" },
      "Audit": {
        "DateCreated": "datetime",
        "CreatedBy": "string",
        "DateUpdated": "datetime",
        "UpdatedBy": "string"
      },
      "SystemFields": {
        "IP": "string",
        "Status": "string",
        "PurchaseTotal": "decimal",
        "Currency": "string",
        "TransactionId": "string",
        "MerchantType": "string"
      },
      "FieldValues": {
        "Field{N}": "string"
      }
    }
  }
}