xapiVerb

Describes the action taken by the actor.

id

  • Flow resource path: statementData > xapiVerb > id

  • Parameter type: String URI

  • Description: The unique identifier for the verb, typically a URI that describes the action performed. The id should be a URI describingthe type of action.

Example

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

display.langString1

  • Flow resource path: statementData > xapiVerb > display > langString1

  • Parameter type: String text

  • Description: The human-readable name of the verb in one language. langString1 will match the first key/value under display.

Example

"verb": {
  "id": "",
  "display": {
    "en-GB": "completed",
    "en-US": "completed",
    "fr-FR": "complété"
  }
}

display.langString2

  • Flow resource path: statementData > xapiVerb > display > langString2

  • Parameter type: String text

  • Description: The human-readable name of the verb in a second language, if applicable. langString2 will match the second key/value under display.

Example

"verb": {
  "id": "",
  "display": {
    "en-GB": "completed",
    "en-US": "completed",
    "fr-FR": "complété"
  }
}

display.langString3

  • Flow resource path: statementData > xapiVerb > display > langString3

  • Parameter type: String text

  • Description: The human-readable name of the verb in a third language, if needed, for multilingual support. langString3 will match the third key/value under display.

Example

"verb": {
  "id": "",
  "display": {
    "en-GB": "completed",
    "en-US": "completed",
    "fr-FR": "complété"
  }
}

Last updated