Unified.to · Schema

LmsActivity

IntegrationsUnified API

Properties

Name Type Description
assigned_grade string
completed_at string
content_id string
course_id string
created_at string
duration_minutes number
id string
is_completed boolean
progress_percentage number
raw object
started_at string
student_id string
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-lmsactivity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LmsActivity",
  "title": "LmsActivity",
  "properties": {
    "assigned_grade": {
      "type": "string"
    },
    "completed_at": {
      "format": "date-time",
      "type": "string"
    },
    "content_id": {
      "type": "string"
    },
    "course_id": {
      "type": "string"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "duration_minutes": {
      "type": "number"
    },
    "id": {
      "type": "string"
    },
    "is_completed": {
      "type": "boolean"
    },
    "progress_percentage": {
      "type": "number"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "started_at": {
      "format": "date-time",
      "type": "string"
    },
    "student_id": {
      "type": "string"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object"
}