diff --git a/examples/2-in-depth/data-stores/key-value-data-store/foods-schema.json b/examples/2-in-depth/data-stores/key-value-data-store/foods-schema.json index 10a692e7..ad2b0f9e 100644 --- a/examples/2-in-depth/data-stores/key-value-data-store/foods-schema.json +++ b/examples/2-in-depth/data-stores/key-value-data-store/foods-schema.json @@ -1,30 +1,30 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "Name of the favorite food", - "minLength": 1 - }, - "cuisine": { - "type": "string", - "description": "Cuisine type of the food (optional)", - "nullable": true - }, - "description": { - "type": "string", - "description": "Optional description of the food", - "nullable": true - }, - "rating": { - "type": "number", - "description": "Rating of the food on a scale from 1 to 5 (optional)", - "minimum": 1, - "maximum": 5, - "nullable": true - } +"type": "object", +"properties": { + "name": { + "type": "string", + "description": "Name of the favorite food", + "minLength": 1 }, + "cuisine": { + "type": "string", + "description": "Cuisine type of the food (optional)", + "nullable": true + }, + "description": { + "type": "string", + "description": "Optional description of the food", + "nullable": true + }, + "rating": { + "type": "number", + "description": "Rating of the food on a scale from 1 to 5 (optional)", + "minimum": 1, + "maximum": 5, + "nullable": true + } +}, "required": ["name"] } } \ No newline at end of file