changedOutput schema / (root)
Previous value: -{
- "properties": {
- "characters": {
- "description": "List of matching characters",
- "items": {
- "properties": {
- "episode_count": {
- "description": "Number of episodes character appears in",
- "type": "number"
- },
- "gender": {
- "description": "Character gender",
- "type": "string"
- },
- "id": {
- "description": "Character ID",
- "type": "number"
- },
- "image": {
- "description": "URL to character image",
- "type": "string"
- },
- "location": {
- "description": "Character current location name",
- "type": "string"
- },
- "name": {
- "description": "Character name",
- "type": "string"
- },
- "origin": {
- "description": "Character origin location name",
- "type": "string"
- },
- "species": {
- "description": "Character species",
- "type": "string"
- },
- "status": {
- "description": "Character status (alive, dead, or unknown)",
- "type": "string"
- },
- "type": {
- "description": "Character type or subspecies",
- "type": [
- "string",
- "null"
- ]
- }
- },
- "required": [
- "id",
- "name",
- "status",
- "species",
- "type",
- "gender",
- "origin",
- "location",
- "image",
- "episode_count"
- ],
- "type": "object"
- },
- "type": "array"
- },
- "count": {
- "description": "Total number of characters matching the search",
- "type": "number"
- },
- "pages": {
- "description": "Total number of pages available",
- "type": "number"
- }
- },
- "required": [
- "count",
- "pages",
- "characters"
- ],
- "type": "object"
-}New value: +null