Click here to Skip to main content
15,889,116 members
Articles / Mobile Apps / Android

Advanced JSON Form Specification - Chapter 5: Options List Widgets

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
3 Nov 2016LGPL33 min read 8.5K   107   1  
A JSON form specification
This article is the fifth of eight parts introducing an advanced JSON form specification.

Chapters

Introduction

Option List screens are an extended version of the Options screens discussed in chapter 4. As with previous chapters, these screen types are better explained by way of examples. The Option List Widget form is attached to this article to aid this understanding. Download, unzip and copy the form to the Android device and use the CCA-Mobile app provided to complete an instance of this form. Backup the completed instance. The code block below shows an example of a completed instance in its JSON format.

JavaScript
/*
{
"FruitLike":  {
"Guava": "Yes", 
"Apple": "No", 
"Banana": "Yes", 
"Oranges": "No"
}, 
"FruitColour":  {
"Guava": ["Green", "Yellow"], 
"Apple": ["Green", "Yellow", "Red"], 
"Banana": ["Green", "Yellow"], 
"Oranges": ["Green", "Yellow", "Red"]
}
}

*/

Single Choice List Option Screen

The image below is an example of a single choice list screen. In this example screen, the texts; "Guava", "Apple", "Banana" and "Oranges", are called options while the “Yes” and “No” texts are called option labels.

Image 1

The code block below shows the JSON definition for the screen above:

JavaScript
/*
{
"mainScreen":  {
"screenID": "FruitLike", 
"screenDisplayArray": [
{
"localeCode": "en", 
"screenLabel": "1. Do you like the fruits listed below?", 
"screenHint": "Select one option for each fruit.
"
}], 
"screenwidgetType": "singleChoiceList", 
"inputRequired": true, 
"widgetSchema": "
\"FruitLike\": {
\"type\": \"object\",
\"properties\":  {
\"Guava\": {
\"type\": \"string\"
},
\"Apple\": {
\"type\": \"string\"
},
\"Banana\": {
\"type\": \"string\"
},
\"Oranges\": {
\"type\": \"string\"
}
},
\"required\": [\"Guava\", \"Apple\", \"Banana\", \"Oranges\"],
\"additionalProperties\": false
}", 
"options": ["Guava", "Apple", "Banana", "Oranges"], 
"optionLabels": ["Yes", "No"]
}
}
*/

The screenwidgetType for this screen is set to singleChoiceList.

The content of the widgetSchema parameter is a JSON string which is an escaped schema for a JSON object, i.e., FruitLike. The properties of this object are strictly the items of the options parameter array in name and value type. The value of an instance of each property of the JSON object defined in the widgetSchema of this screen type are restricted to the items of the optionsLabel parameter array.

The code block below shows an example of an instance of the FruitLike object.

JavaScript
/*
{
...
"FruitLike":  {
"Guava": "Yes", 
"Apple": "No", 
"Banana": "Yes", 
"Oranges": "No"
}, 
...
}

*/

Multiple Choice List Option Screen

As can be seen in the image below, a multiple choice list option screen are similar to single choice list option screens. The only difference is that multiple choice list option screens allow the user to select one or more entries for each option made available.

 

Image 2

Since each option in a multiple choice list option screen must be able to hold more than one value at a time, each option is defined as a JSON array. The code block below shows the definition of the screen above.

JavaScript
/*

{
"mainScreen":  {
"screenID": "FruitColour", 
"screenDisplayArray": [
{
"localeCode": "en", 
"screenLabel": "2. Select the colours in which the species of the fruits listed below come in.
", 
"screenHint": "Select all that apply.
"
}], 
"screenwidgetType": "multipleChoiceList", 
"inputRequired": true, 
"widgetSchema": "
\"FruitColour\": {
\"type\": \"object\",
\"properties\":  {
\"Guava\": {
\"type\": \"array\",
\"items\": 
{
\"type\": \"string\"
},
\"maxItems\": 3,
\"uniqueItems\": true,
\"additionalItems\": false
},
\"Apple\": {
\"type\": \"array\",
\"items\": 
{
\"type\": \"string\"
},
\"maxItems\": 3,
\"uniqueItems\": true,
\"additionalItems\": false
},
\"Banana\": {
\"type\": \"array\",
\"items\": 
{
\"type\": \"string\"
},
\"maxItems\": 3,
\"uniqueItems\": true,
\"additionalItems\": false
},
\"Oranges\": {
\"type\": \"array\",
\"items\": 
{
\"type\": \"string\"
},
\"maxItems\": 3,
\"uniqueItems\": true,
\"additionalItems\": false
}
},
\"additionalProperties\": false
}", 
"options": ["Guava", "Apple", "Banana", "Oranges"], 
"optionLabels": ["Green", "Yellow", "Red"]
}
}
*/

From the value of the widgetSchema parameter above, notice that the schema that defines the FruitColour object has properties that are of JSON array type and derive their names from the items of the options parameter array. The contents of these arrays are restricted in value and type to the items of the optionsLabel parameter array. Observe that the maximum number of items each array in the FruitColour object can hold is equal to the number of items in the optionsLabel parameter array.

An instance of the FruitColour object is shown in the code block below:

JavaScript
/*
{
..., 
"FruitColour":  {
"Guava": ["Green", "Yellow"], 
"Apple": ["Green", "Yellow", "Red"], 
"Banana": ["Green", "Yellow"], 
"Oranges": ["Green", "Yellow", "Red"]
}
}

*/

Next Chapter

Screens that permit the capture of GPS coordinates, collect signatures, scan bar codes, capture and annotate images are presented in the next chapter, i.e., Chapter 6.

Point of Interest

The interested reader should follow the form design sections of these walkthroughs and use this GUI tool to learn more about designing forms based on a number of use case scenarios.

History

  • 18th July, 2016: First version
  • 3rd November, 2016: Made corrections to this work

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --