Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.declarativeforms.com/llms.txt

Use this file to discover all available pages before exploring further.

If you have not created a form before, start with Create a form.
form.yaml
version: 1
title: "Feedback"
description: "A simple form that limits the length of a written answer."

sections:
  - id: section_1
    title: "Feedback"
    fields:
      - id: feedback
        type: long_text
        label: "Feedback"
        validators:
          - required
          - type: min_length
            value: 20
            message: "Write at least 20 characters."
          - type: max_length
            value: 500
            message: "Keep your feedback under 500 characters."

    next: done