{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-campaign/refs/heads/main/json-structure/adobe-campaign-standard-service-structure.json", "name": "Service", "description": "Service from Adobe Campaign API", "type": "object", "properties": { "PKey": { "type": "string", "description": "Unique identifier for the service.", "readOnly": true, "example": "example_value" }, "name": { "type": "string", "description": "Internal name of the service.", "example": "Example Campaign" }, "label": { "type": "string", "description": "Display label of the service.", "example": "Example Campaign" }, "messageType": { "type": "string", "enum": [ "email", "sms", "push" ], "description": "Default channel for the service.", "example": "email" }, "start": { "type": "datetime", "description": "Service start date.", "example": "example_value" }, "end": { "type": "datetime", "description": "Service end date.", "example": "example_value" }, "created": { "type": "datetime", "readOnly": true, "example": "example_value" }, "lastModified": { "type": "datetime", "readOnly": true, "example": "example_value" } } }