multiple form in rasa code example

Example 1: two form in rasa

class CarSearchForm(FormAction):
        def name(self):
            return "carSearch_form"
        @staticmethod
        def required_slots(tracker: Tracker) -> List[Text]:
            return ['make', 'model', .......]

Example 2: two form in rasa

## survey stop
* greet
    - utter_greet
* affirm
    - health_form
    - form{"name": "health_form"}
* out_of_scope
    - utter_ask_continue
* deny
    - action_deactivate_form
    - form{"name": null}
    - utter_goodbye