Skip to main content
RSVP form component

Properties

This component has no additional properties beyond the base schema.

Schema

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RSVP Form component",
  "description": "RSVP form component",
  "type": "array",
  "additionalProperties": false,
  "maxItems": 3,
  "items": {
    "type": "object",
    "required": [
      "question",
      "answer"
    ],
    "additionalProperties": false,
    "minProperties": 1,
    "properties": {
      "question": {
        "type": "string",
        "minLength": 1,
        "maxLength": 1000
      },
      "answer": {
        "$ref": "_base_form.json#/properties/questions/items/properties/answer"
      },
      "askFromGuests": {
        "type": "boolean",
        "default": false,
        "description": "Whether to ask the question from quests as well. ** This JSON OBJECT IS DEPRECATED **"
      },
      "isRequired": {
        "type": "boolean",
        "default": false
      }
    }
  }
}