Perplexity · Schema

VideoURL

Properties

Name Type Description
url string
frame_interval object
View JSON Schema on GitHub

JSON Schema

perplexity-videourl-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VideoURL",
  "title": "VideoURL",
  "properties": {
    "url": {
      "type": "string",
      "title": "Url"
    },
    "frame_interval": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "integer"
        }
      ],
      "title": "Frame Interval",
      "default": 25
    }
  },
  "type": "object",
  "required": [
    "url"
  ]
}