changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "snippets": {
+ "description": "Up to 20 matching snippets (random order to avoid stale top-matches)",
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "asset_file_type": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "asset_id": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "asset_image_url": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "asset_label": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "type": "string"
+ },
+ "platform": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "referral_url": {
+ "description": "Tracked referral URL — only present when the session has a resolved ref_id",
+ "type": "string"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "text": {
+ "description": "The actual snippet body to share",
+ "type": "string"
+ },
+ "title": {
+ "description": "Share title — usable as an email subject line",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "tone": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "text",
+ "tags"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "snippets"
+ ],
+ "type": "object"
+}