Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 2 Next »

Table of Contents

Outline

This page will guide you through the steps of navigating to the Content Forms and then how to create computational forms that can calculate specific scores based on the patient’s answers.

STEP 1: Click on Forms

Select the Content menu option from the menu panel on the left of the dashboard screen. Click on Forms from the drop-down on the menu panel on the left of the dashboard screen.


STEP 2: Create a new form

You can create a new form using the option “New” with the drop-down present on the top right corner of the page.


STEP 3: Add Form Details

We can start filling the required details in the field:

In the Details section, we can start adding Title of the form, Description of the form, Language required, and the Status field will have the option to : Publish form once created (if you want the form to be published), or, Don’t publish form (if you want the form not to be published). Select one and go to the Content section by clicking on the 'green >' icon.


STEP 4: Add Content

We can attach the required .JSON content to the form in this section. For creating computations forms, use one of the following .JSON content as required -


(OR) add the following computational code to an existing .JSON content.
Example Computation Code for DASS-21 form

  "computations": {
    "depression": {
      "display_name": "Depression",
      "type": "symbolic",
      "function": "q3 + q5 + q10 + q13 + q16 + q17 + q21",
      "improvement": "decrease"
    },
    "anxiety": {
      "display_name": "Anxiety",
      "type": "symbolic",
      "function": "q2 + q4 + q7 + q9 + q15 + q19 + q20",
      "improvement": "decrease"
    },
    "stress": {
      "display_name": "Stress",
      "type": "symbolic",
      "function": "q1 + q6 + q8 + q11 + q12 + q14 + q18",
      "improvement": "decrease"
    }
  }

Note: Please check the bottom of the .JSON forms attached above to see the Computations formula for KOOS, DASS-21, and HOOS respectively.

Upload the required file in this field by cliking on the ‘upload’ icon shown in the figure below. This will open a dialogue box to find a .json file on your computer. Select the desired .json file and then upload it.

STEP 4A: Review your uploaded .JSON


STEP 6: Review the created form

The final category Review would helps you review the whole summary of the form with the attached content. Press the back arrow if you want to change any details. Click on the Save button to create the new form.


  • No labels