{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "BaseMerchant", "type": "object", "description": "Base merchant model schema", "properties": { "name": { "type": "string", "description": "Name of the merchant that the item was purchased from." }, "categoryCode": { "type": "string", "description": "A four-digit number listed in ISO 18245 for retail financial services. MCC is used to classify the business by the type of goods or services it provides." }, "orderAvailabilityDateTime": { "type": "string", "description": "The earliest date an Issuer can search for orders (i.e. the date an Issuer cannot search before). Date-Time must be in [ISO 8601 format](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6)" }, "orderHistoryMonths": { "type": "integer", "description": "The number of months worth of data you have made available to search on." }, "orderLatencyDays": { "type": "integer", "description": "The numbers of days that need to elapse between an authorization for a purchase and when the purchase can be searched on. " }, "industryCode": { "type": "string", "description": "Industry Code is used to classify the business by the type of industry." } } }