Field Interaction Tracking

Registered by Wilson

The ability to track the activities of a particular view interaction within the request scope, and make this information available to the application via one of the available scopes.

Blueprint information

Status:
Not started
Approver:
Wilson
Priority:
Undefined
Drafter:
Wilson
Direction:
Needs approval
Assignee:
Wilson
Definition:
New
Series goal:
None
Implementation:
Unknown
Milestone target:
None

Related branches

Sprints

Whiteboard

The request brings with it a set of form interactions, which contains a set of field interactions, which contains:

 * The NBest List (optional)
 * The input mode
 * The activity assoc'd with the field
 * The field name
 * The binding expression

Example JSON format:

{
   "forms":{
      "testForm":{
         "name":"testForm",
         "fields":{
            "testField":{
               "name":"testField",
               "totalVisits":1,
               "fieldInteractions":[
                  {
                     "nbestList":[
                        {
                           "confidence":0.25,
                           "utterance":"hello world",
                           "inputmode":"dtmf",
                           "interpretation":"hi"
                        }
                     ]
                  }
               ]
            }
         },
         "totalVisits":0
      },
      "testForm2":{
         "name":"testForm2",
         "fields":{
            "testField2":{
               "name":"testField2",
               "totalVisits":1,
               "fieldInteractions":[
                  {
                     "nbestList":[
                        {
                           "confidence":0.55,
                           "utterance":"hi again",
                           "inputmode":"voice",
                           "interpretation":"hey"
                        }
                     ]
                  }
               ]
            }
         },
         "totalVisits":0
      }
   },
   "visitLog":[

   ]
}

(?)

Work Items

This blueprint contains Public information 
Everyone can see this information.

Subscribers

No subscribers.