changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Total count of models",
+ "type": "number"
+ },
+ "make": {
+ "description": "Vehicle make name",
+ "type": "string"
+ },
+ "models": {
+ "description": "List of vehicle models",
+ "items": {
+ "properties": {
+ "make_id": {
+ "description": "Make ID",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "make_name": {
+ "description": "Make name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "model_id": {
+ "description": "Model ID",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "model_name": {
+ "description": "Model name",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "make_id",
+ "make_name",
+ "model_id",
+ "model_name"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "year": {
+ "description": "Model year",
+ "type": "number"
+ }
+ },
+ "required": [
+ "make",
+ "year",
+ "count",
+ "models"
+ ],
+ "type": "object"
+}