{ "lexicon": 1, "id": "wip.lexicon.marketplace.listing", "defs": { "main": { "type": "record", "description": "A generic listing of some sort", "key": "tid", "record": { "type": "object", "required": ["name", "description", "region", "createdAt"], "properties": { "name": { "type": "string", "description": "The name of the listing" }, "description": { "type": "string", "description": "The description of the listing" }, "region": { "type": "string", "description": "Where the listing is located generally" }, "postalCode": { "type": "string", "description": "A more specific location identifier" }, "price": { "type": "string", "description": "How much the listing is" }, "offers": { "type": "bool", "description": "Whether offers are accepted for this listing" }, "createdAt": { "type": "string", "format": "datetime" }, } } } } }