Wufoo · Schema

Wufoo Report

A Wufoo report definition as returned by GET /reports.

FormsForm BuilderSurveysData CollectionWebhooksPaymentsSurveyMonkey

Properties

Name Type Description
Name string
IsPublic string
Url string
Description string
DateCreated string
DateUpdated string
Hash string
LinkFields string
LinkEntries string
LinkEntriesCount string
LinkWidgets string
View JSON Schema on GitHub

JSON Schema

wufoo-report-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/wufoo/json-schema/wufoo-report-schema.json",
  "title": "Wufoo Report",
  "description": "A Wufoo report definition as returned by GET /reports.",
  "type": "object",
  "required": ["Name", "Hash"],
  "properties": {
    "Name": { "type": "string" },
    "IsPublic": { "type": "string", "enum": ["0", "1"] },
    "Url": { "type": "string" },
    "Description": { "type": "string" },
    "DateCreated": { "type": "string", "format": "date-time" },
    "DateUpdated": { "type": "string", "format": "date-time" },
    "Hash": { "type": "string" },
    "LinkFields": { "type": "string", "format": "uri" },
    "LinkEntries": { "type": "string", "format": "uri" },
    "LinkEntriesCount": { "type": "string", "format": "uri" },
    "LinkWidgets": { "type": "string", "format": "uri" }
  }
}