Instructure · Schema

Lti Ims Lineitem Get Response

JSON Schema for Instructure Canvas LTI Lti-IMS-LineItem-GET-response

EdTechEducationLMSCanvasCoursesEnrollmentsAssignmentsGradesDiscussionsGraphQLLTILearning Management

Properties

Name Type Description
id string
scoreMaximum number
label string
endDateTime string
resourceLinkId string
tag string
View JSON Schema on GitHub

JSON Schema

Lti-IMS-LineItem-GET-response.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/instructure/main/json-schema/Lti-IMS-LineItem-GET-response.json",
  "title": "Lti Ims Lineitem Get Response",
  "description": "JSON Schema for Instructure Canvas LTI Lti-IMS-LineItem-GET-response",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "scoreMaximum": {
      "type": "number",
      "format": "float"
    },
    "label": {
      "type": "string"
    },
    "endDateTime": {
      "type": "string"
    },
    "resourceLinkId": {
      "type": "string"
    },
    "tag": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "scoreMaximum",
    "label",
    "endDateTime",
    "resourceLinkId"
  ]
}