Globebyte Documentation
  • AI Agents for Learning
  • Assess for Learning
    • Creating the Assess Connected App
    • Setting up Assess for Learning
    • Viewing Assessments
    • Assessment Outcomes & Validation
    • Marking
    • Best Practices
  • Tutor for Learning
    • Setting up Tutor
    • Agent Actions
      • Tutor_Mark
      • Tutor_Task
      • Tutor_Criterion
      • Tutor_SenseMaking
      • Tutor_Instruction
    • Topics
      • Tutor_Assessment
      • Tutor_Knowledge
  • Data for Learning
  • Actions for Learning
    • Creating the xAPI Actions Connected App
    • Setting up xAPI Actions
    • Creating your first xAPI Action Flow
    • xAPI Statement Data explorer
      • Metadata
      • xapiActor
      • xapiVerb
        • Verb reference
      • xapiObject
      • authority
      • xapiResult
      • xapiContext
    • Filtering xAPI Statements
    • Viewing xAPI Statements
    • Viewing xAPI Usage
    • Setting a default statement language
    • Error messages and troubleshooting
  • Experience for Learning
    • Setting up xAPI for Salesforce
    • Send xAPI from a Flow
    • Form Action fields
    • Send xAPI from Apex
    • xApiStatement Class reference
      • Actor
      • Verb
      • Object
      • Context
      • Result
      • Authority
      • Version
      • Send methods
    • Logging and defaults
  • Learning Journey Model
    • Introduction
    • Curriculums & Pathways
    • Courses & Modules
    • Pedagogies & Objectives
    • Rubrics & Criteria
    • Learning Resources
    • Assessments & Tasks
    • Learning Groups
    • Step-by-step working example
    • Activity Tracking (Advanced)
    • Additional Pedagogies Reference
    • Best Practices
    • Assess for Learning Integration
    • Data for Learning Integration
    • Object References
      • Learning Curriculum
      • Learning Pathway
      • Learning Course
      • Learning Module
      • Learning Pedagogy
      • Learning Objective
      • Learning Objective Assignment
      • Learning Rubric
      • Learning Rubric Criterion
      • Learning Rubric Model Solution
      • Learning Resource Type
      • Learning Resource
      • Learning Assessment
      • Learning Text Task
      • Learner Text Attempt
      • Learner Text Criterion Score
      • Learning Choice Task
      • Learner Choice Attempt
      • Learner Mark
      • Learning Group
      • Learner Group Membership
      • Learner Activity
      • Learner Activity Instance
      • Learner XAPIStatement
      • Developer Cheat Sheet: Key LDM Objects
  • Globebyte.com
Powered by GitBook
On this page
  • success
  • completion
  • response
  • duration
  • score.scaled
  • score.raw
  • score.min
  • score.max
  1. Actions for Learning
  2. xAPI Statement Data explorer

xapiResult

Outcomes or achievements from the action.

success

  • Flow resource path: statementData > xapiResult > succcess

  • Parameter type: Boolean

  • Description: Indicates whether the action described in the xAPI statement was successfully completed (true) or not (false).

Example

"result": {
  "success": true,
  "completion": "",
  "response": "",
  "duration": "",
  "score": {}
}

completion

  • Flow resource path: statementData > xapiResult > completion

  • Parameter type: Boolean

  • Description: Indicates whether the activity was completed by the learner.

Example

"result": {
  "success": "",
  "completion": true,
  "response": "",
  "duration": "",
  "score": {}
}

response

  • Flow resource path: statementData > xapiResult > response

  • Parameter type: String text

  • Description: The learner's response or answer recorded during the activity.

Example

"result": {
  "success": "",
  "completion": "",
  "response": "We agreed on some example actions.",
  "duration": "",
  "score": {}
}

duration

  • Flow resource path: statementData > xapiResult > duration

  • Parameter type: String text

  • Description: The time duration for which the learner engaged with the activity, typically in ISO 8601 format.

Example

"result": {
  "success": "",
  "completion": "",
  "response": "",
  "duration": "PT1H0M0S",
  "score": {}
}

score.scaled

  • Flow resource path: statementData > xapiResult > score > scaled

  • Parameter type: Number

  • Description: The scaled score achieved by the learner, normalized between 0 and 1.

Example

"result": {
  "success": "",
  "completion": "",
  "response": "",
  "duration": "",
  "score": {
    "scaled": 0.5,
    "raw": "",
    "min": "",
    "max": ""
  }
}

score.raw

  • Flow resource path: statementData > xapiResult > score > raw

  • Parameter type: Number

  • Description: The raw, unadjusted score obtained by the learner in the activity.

Example

"result": {
  "success": "",
  "completion": "",
  "response": "",
  "duration": "",
  "score": {
    "scaled": "",
    "raw": 55,
    "min": "",
    "max": ""
  }
}

score.min

  • Flow resource path: statementData > xapiResult > score > min

  • Parameter type: Number

  • Description: The minimum possible score for the activity.

Example

"result": {
  "success": "",
  "completion": "",
  "response": "",
  "duration": "",
  "score": {
    "scaled": "",
    "raw": "",
    "min": 1,
    "max": ""
  }
}

score.max

  • Flow resource path: statementData > xapiResult > score > max

  • Parameter type: Number

  • Description: The maximum possible score for the activity.

Example

"result": {
  "success": "",
  "completion": "",
  "response": "",
  "duration": "",
  "score": {
    "scaled": "",
    "raw": "",
    "min": "",
    "max": 100
  }
}
PreviousauthorityNextxapiContext

Last updated 8 months ago