Properties
| Name | Type | Description |
|---|---|---|
| categories | object | |
| content_ids | object | |
| created_at | string | |
| currency | string | |
| description | string | |
| duration_minutes | number | |
| id | string | |
| instructor_ids | object | |
| instructors | object | |
| is_active | boolean | |
| is_private | boolean | |
| languages | object | |
| media | object | |
| name | string | |
| price_amount | number | |
| provider_name | string | |
| published_at | string | |
| raw | object | |
| skills | object | |
| student_ids | object | |
| students | object | |
| time_estimate_minutes | number | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LmsCourse",
"title": "LmsCourse",
"properties": {
"categories": {
"$ref": "#/components/schemas/property_LmsCourse_categories"
},
"content_ids": {
"$ref": "#/components/schemas/property_LmsCourse_content_ids"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"currency": {
"type": "string"
},
"description": {
"type": "string"
},
"duration_minutes": {
"type": "number"
},
"id": {
"type": "string"
},
"instructor_ids": {
"$ref": "#/components/schemas/property_LmsCourse_instructor_ids"
},
"instructors": {
"$ref": "#/components/schemas/property_LmsCourse_instructors"
},
"is_active": {
"type": "boolean"
},
"is_private": {
"type": "boolean"
},
"languages": {
"$ref": "#/components/schemas/property_LmsCourse_languages"
},
"media": {
"$ref": "#/components/schemas/property_LmsCourse_media"
},
"name": {
"type": "string"
},
"price_amount": {
"type": "number"
},
"provider_name": {
"type": "string"
},
"published_at": {
"format": "date-time",
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"skills": {
"$ref": "#/components/schemas/property_LmsCourse_skills"
},
"student_ids": {
"$ref": "#/components/schemas/property_LmsCourse_student_ids"
},
"students": {
"$ref": "#/components/schemas/property_LmsCourse_students"
},
"time_estimate_minutes": {
"type": "number"
},
"updated_at": {
"format": "date-time",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}