changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "elements": {
+ "description": "List of campaigns",
+ "items": {
+ "properties": {
+ "budget": {
+ "description": "Campaign budget details",
+ "properties": {
+ "amount": {
+ "description": "Budget amount",
+ "type": "number"
+ },
+ "currencyCode": {
+ "description": "Currency code (e.g., USD)",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "endDate": {
+ "description": "Campaign end date",
+ "properties": {
+ "day": {
+ "type": "number"
+ },
+ "month": {
+ "type": "number"
+ },
+ "year": {
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "id": {
+ "description": "Campaign ID",
+ "type": "string"
+ },
+ "name": {
+ "description": "Campaign name",
+ "type": "string"
+ },
+ "startDate": {
+ "description": "Campaign start date",
+ "properties": {
+ "day": {
+ "type": "number"
+ },
+ "month": {
+ "type": "number"
+ },
+ "year": {
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "status": {
+ "description": "Campaign status",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "error": {
+ "description": "Error code if connection not found",
+ "type": "string"
+ },
+ "message": {
+ "description": "Error message with guidance",
+ "type": "string"
+ },
+ "paging": {
+ "description": "Pagination metadata",
+ "properties": {
+ "count": {
+ "description": "Number of results returned",
+ "type": "number"
+ },
+ "start": {
+ "description": "Pagination start offset",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total available results",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+}