changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "cards": {
+ "description": "Array of matching tarot cards",
+ "items": {
+ "properties": {
+ "desc": {
+ "description": "Detailed description of the card",
+ "type": "string"
+ },
+ "meaning_rev": {
+ "description": "Reversed meaning of the card",
+ "type": "string"
+ },
+ "meaning_up": {
+ "description": "Upright meaning of the card",
+ "type": "string"
+ },
+ "name": {
+ "description": "Full name of the tarot card",
+ "type": "string"
+ },
+ "name_short": {
+ "description": "Short identifier for the card",
+ "type": "string"
+ },
+ "suit": {
+ "description": "Suit of the card (null for Major Arcana)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "Card type (e.g. Major Arcana, Minor Arcana)",
+ "type": "string"
+ },
+ "value": {
+ "description": "Card value or number",
+ "type": "string"
+ },
+ "value_int": {
+ "description": "Integer representation of card value",
+ "type": "number"
+ }
+ },
+ "required": [
+ "name",
+ "name_short",
+ "value",
+ "value_int",
+ "type",
+ "suit",
+ "meaning_up",
+ "meaning_rev",
+ "desc"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "count": {
+ "description": "Number of matching cards found",
+ "type": "number"
+ }
+ },
+ "required": [
+ "count",
+ "cards"
+ ],
+ "type": "object"
+}