diff --git a/examples/2-in-depth/data-stores/key-value-data-store/addmovie-schema.json b/examples/2-in-depth/data-stores/key-value-data-store/addmovie-schema.json index 73c4ecc8..6d1e3b0f 100644 --- a/examples/2-in-depth/data-stores/key-value-data-store/addmovie-schema.json +++ b/examples/2-in-depth/data-stores/key-value-data-store/addmovie-schema.json @@ -1,26 +1,26 @@ { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "Name of the character" - }, - "actor": { - "type": "string", - "description": "Actor who portrays the character" - }, - "description": { - "type": "string", - "description": "Brief description of the character" + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Name of the character" + }, + "actor": { + "type": "string", + "description": "Actor who portrays the character" + }, + "description": { + "type": "string", + "description": "Brief description of the character" + } + }, + "required": [ + "name", + "actor", + "description" + ] } - }, - "required": [ - "name", - "actor", - "description" - ] -} }, "required": [ "title",