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