remotion_get_component_schema
Retrieve detailed schema for video components including properties, variants, animations, and usage examples to understand component structure and implementation requirements.
Instructions
Get detailed schema for a specific component.
Returns the complete schema including all properties, variants, animations,
and usage examples for a single component.
Args:
component_name: Name of the component (e.g., "LowerThird", "TitleScene")
Returns:
JSON object with component schema and examples
Example:
schema = await remotion_get_component_schema(component_name="LowerThird")
# Returns full schema for lower third component including all variants
Input Schema
Name | Required | Description | Default |
---|---|---|---|
component_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"component_name": {
"type": "string"
}
},
"required": [
"component_name"
],
"type": "object"
}