Schema for RateArea from CMS Marketplace API
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "RateArea", "description": "Schema for RateArea from CMS Marketplace API", "properties": { "state": { "description": "2-letter USPS abbreviation", "type": "string" }, "area": { "description": "Rate area number for the given state.", "type": "integer" } }, "type": "object", "example": { "state": "LA", "area": 7 } }