changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "compositions": {
+ "description": "Available compositions - pass an id to render_composition",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "durationInFrames": {
+ "type": "number"
+ },
+ "fps": {
+ "type": "number"
+ },
+ "height": {
+ "type": "number"
+ },
+ "id": {
+ "type": "string"
+ },
+ "props": {
+ "description": "Compact props summary (name*: type)",
+ "type": "string"
+ },
+ "propsSchema": {
+ "additionalProperties": {},
+ "description": "Full JSON Schema for inputProps",
+ "type": "object"
+ },
+ "width": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "id",
+ "width",
+ "height",
+ "fps",
+ "durationInFrames",
+ "props"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "compositions"
+ ],
+ "type": "object"
+}