Unified.to · Schema

LmsMedia

IntegrationsUnified API

Properties

Name Type Description
content string
description string
languages object
name string
thumbnail_url string
type string
url string
View JSON Schema on GitHub

JSON Schema

unified-to-lmsmedia-schema.json Raw ↑
{
  "$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"
}