changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "jobToken": {
+ "description": "The job these variations belong to.",
+ "type": "string"
+ },
+ "note": {
+ "description": "Guidance for presenting the variations and next steps.",
+ "type": "string"
+ },
+ "remainingCredits": {
+ "description": "Free-preview credits left on this job.",
+ "type": "number"
+ },
+ "variations": {
+ "description": "The generated alternate-style previews.",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "previewUrl": {
+ "description": "URL to this variation's watermarked, low-res preview.",
+ "type": "string"
+ },
+ "style": {
+ "description": "The alternate style direction.",
+ "type": "string"
+ },
+ "variationId": {
+ "description": "Pass to buy_logo_variation to purchase this design.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "variationId",
+ "style",
+ "previewUrl"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "jobToken",
+ "variations",
+ "remainingCredits",
+ "note"
+ ],
+ "type": "object"
+}