Skip to content

Latest commit

 

History

History
108 lines (83 loc) · 2.72 KB

File metadata and controls

108 lines (83 loc) · 2.72 KB

vle_assignment_submitted Statement template

Statement Template Changes

Purpose

This Statement template records a user submitting an assignment.

Definition

Actor

Common entity identifier: ActorA, as defined on the common structures page.

The Actor entity describes the individual who has submitted the assignment.

{
    "actor": {
        "objectType": "Agent",
        "name": "John Smith",
        "account": {
            "name": "jsmith12",
            "homePage": "https://courses.alpha.jisc.ac.uk/moodle"
        }
    },

Verb

Common entity identifier: VerbA, as defined on the common structures page.

The Verb completed describes the action of completing an Activity - finishing it in its entirety.

"verb": {
        "id": "http://adlnet.gov/expapi/verbs/completed",
        "display": {
            "en": "completed"
        }
    },

Result

The Result entity describes the completion of a learning activity.

Property [cardinality]DescriptionData type
result.completion [1] When set to "true", result.completion indicates that the learner attended the event; "false" indicates that the learner did not attend the event. Boolean

Example:

 "result":{
        "completion":true
    }

Object

Common entity identifier: ObjectB, as defined on the common structures page.

Example:

"object":{
		"objectType":"Activity",
		"id":"http://moodle.data.alpha.jisc.ac.uk/course/view.php?id=4",
		"definition":{
			"type":"http://adlnet.gov/expapi/activities/assessment",
			"name":{
				"en":"xapi Assignment"
			},
		  	  "extensions":{
				"http://xapi.jisc.ac.uk/dueDate": "2016-02-05T17:59:45.000Z"
			}
			
		}

Context

Common entity identifier: ContextA, as defined on the common structures page.

Example:

"context": {
	        
        "platform": "Moodle",
        "extensions": {
		
      		"http://xapi.jisc.ac.uk/courseArea": {
      		 	"http://xapi.jisc.ac.uk/vle_mod_id": "LA101",
				"http://xapi.jisc.ac.uk/uddModInstanceID": "LA101-200-2016S1-0"
				},
			
			"http://xapi.jisc.ac.uk/sessionId":"32456891",
         	"http://id.tincanapi.com/extension/ip-address": "10.3.3.48",
			"http://xapi.jisc.ac.uk/version" : "1.0"
			}
		}

Complete VLE Specific Examples

Blackboard Assignment Submitted Example

Moodle Assignment Submitted Example