Properties
| Name | Type | Description |
|---|---|---|
| content | string | |
| description | string | |
| languages | object | |
| name | string | |
| thumbnail_url | string | |
| type | string | |
| url | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LmsMedia",
"title": "LmsMedia",
"properties": {
"content": {
"type": "string"
},
"description": {
"type": "string"
},
"languages": {
"$ref": "#/components/schemas/property_LmsMedia_languages"
},
"name": {
"type": "string"
},
"thumbnail_url": {
"type": "string"
},
"type": {
"enum": [
"IMAGE",
"HEADSHOT",
"VIDEO",
"WEB",
"DOCUMENT",
"TEXT",
"HTML",
"OTHER"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"url": {
"type": "string"
}
},
"type": "object"
}