{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "advertiser_collection", "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "entity_type": { "type": "string" }, "agency": { "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "entity_type": { "type": "string" }, "rel": { "type": "string" } } } } } }, "meta": { "$ref": "#/components/schemas/list_metadata" } } }