{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "http://schemas.noccylabs.info/json/vape/flavorstash/flavorstash-v1.schema", "type": "array", "items": { "type": "object", "properties": { "vendor": { "type": "string", "description": "The full or abbreviated vendor name" }, "flavor": { "type": "string", "description": "The name of the flavoring" }, "extra": { "type": "object", "description": "Extra data" } }, "required": [ "flavor" ], "additionalProperties": false } }