Schema for StateRateArea from CMS Marketplace API
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "StateRateArea", "description": "Schema for StateRateArea from CMS Marketplace API", "properties": { "state": { "description": "2-letter USPS state abbreviation", "example": "KS", "type": "string" }, "rateAreas": { "description": "list of rate areas for given state", "items": { "$ref": "#/definitions/RateAreaCounty" }, "type": "array" } }, "type": "object" }