changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "assets": {
+ "description": "Up to 20 matching assets (ordered most-recent first)",
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "category": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "created_at": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "file_type": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "type": "string"
+ },
+ "label": {
+ "type": "string"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "thumbnail_url": {
+ "description": "CDN URL for a smaller preview image",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "CDN URL for the asset itself",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "video_id": {
+ "description": "Bunny Stream video id when the asset is a video",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "label",
+ "tags"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "assets"
+ ],
+ "type": "object"
+}