{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "TransactionVendor", "type": "object", "properties": { "name": { "type": "string" }, "category": { "type": "string" }, "city": { "type": "string" }, "state": { "type": "string" }, "country": { "type": "string" }, "postal_code": { "type": "string" } }, "required": [ "category", "city", "country", "name", "postal_code", "state" ] }