{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-schema/linkedin-marketing-conversions-fetch-active-campaigns-response200-schema.json", "title": "FetchActiveCampaignsResponse200", "description": "FetchActiveCampaignsResponse200 from LinkedIn API", "type": "object", "properties": { "paging": { "type": "object", "properties": { "start": { "type": "integer" }, "count": { "type": "integer" }, "links": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "rel": { "type": "string" }, "href": { "type": "string" } } } }, "total": { "type": "integer" } } }, "elements": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "id": { "type": "integer" } } } } } }