{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "SpeciesCountsResponse", "allOf": [ { "$ref": "#/definitions/BaseResponse" }, { "required": [ "results" ], "properties": { "results": { "type": "array", "items": { "type": "object", "properties": { "count": { "type": "integer" }, "taxon": { "$ref": "#/definitions/ShowTaxon" } } } } } } ] }