{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProgressiveProfileViewAttributes", "title": "ProgressiveProfileViewAttributes", "type": "object", "properties": { "queryTemplate": { "$ref": "#/components/schemas/ProfileViewAttributeResponseModel" }, "result": { "type": "string", "description": "Result Object", "example": "\"{\"success\"}\"" }, "error": { "type": "string", "description": "Error data", "example": "failed" }, "journeyEvents": { "type": "array", "description": "Journey Events", "example": [ "testEvent" ], "items": { "type": "string" } } } }