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
  • objectType
  • name
  • mbox
  • openid
  • account.name
  • account.homePage
  1. Actions for Learning
  2. xAPI Statement Data explorer

authority

Who or what asserts the statement's validity.

objectType

  • Flow resource path: statementData > authority > objectType

  • Parameter type: String text

  • Description: Specifies the type of authority that issued or authenticated the xAPI statement, such as "Agent" or "Group," defining its role in the statement.

Example

"authority": {
  "account": {},
  "objectType": "Agent",
  "name": "",
  "mbox": "",
  "openid": ""
}

name

  • Flow resource path: statementData > authority> name

  • Parameter type: String text

  • Description: The display name or identifier of the authority that issued or authenticated the xAPI statement.

Example

"authority": {
  "account": {},
  "objectType": "",
  "name": "Example name",
  "mbox": "",
  "openid": ""
}

mbox

  • Flow resource path: statementData > authority > mbox

  • Parameter type: String email

  • Description: Email address of the entity asserting the validity of the xAPI statement. You must choose either mbox, openid or account to match the data being sent to the flow. Authority shouldn’t contain more than one of these.

Example

"authority": {
  "account": {},
  "objectType": "",
  "name": "",
  "mbox": "example@example.com",
  "openid": ""
}

openid

  • Flow resource path: statementData > authority > openid

  • Parameter type: String URI

  • Description: OpenID identifier for the entity that authenticates the xAPI statement. You must choose either mbox, openid or account to match the data being sent to the flow. Authority shouldn’t contain more than one of these.

Example

"authority": {
  "account": {},
  "objectType": "",
  "name": "",
  "mbox": "",
  "openid": "https://www.example.com/123456"
}

account.name

  • Flow resource path: statementData > authority > account > name

  • Parameter type: String name

  • Description: Name of the account on a system or platform, attributed to the authority of the statement. You must choose either mbox, openid or account to match the data being sent to the flow. Authority shouldn’t contain more than one of these.

Example

"authority": {
  "account": {
    "homePage": "",
    "name": "000000340968"
  },
  "objectType": "",
  "name": "",
  "mbox": "",
  "openid": ""
}

account.homePage

  • Flow resource path: statementData > authority > account > homePage

  • Parameter type: String URL

  • Description: URL of the homepage or profile page for the authority's account on a platform. You must choose either mbox, openid or account to match the data being sent to the flow. Authority shouldn’t contain more than one of these.

Example

"authority": {
  "account": {
    "homePage": "https://www.example.com",
    "name": ""
  },
  "objectType": "",
  "name": "",
  "mbox": "",
  "openid": ""
}
PreviousxapiObjectNextxapiResult

Last updated 8 months ago