{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Baggage", "type": "object", "properties": { "count": { "type": "integer", "description": "baggage capacity" }, "size": { "type": "string", "description": "baggage size\n\ncode | name \n | - \nS \t | Small\nM \t | Medium\nL \t | Large\n", "enum": [ "S", "M", "L" ] } } }