Properties
| Name | Type | Description |
|---|---|---|
| message | string | Service message. |
| data | array | Service data. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ServiceBody4",
"title": "ServiceBody4",
"required": [
"message",
"data"
],
"type": "object",
"properties": {
"message": {
"type": "string",
"description": "Service message."
},
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Data12"
},
"description": "Service data."
}
},
"example": {
"message": "Evidences saved successfully",
"data": [
{
"type": "IMAGE",
"content": "https://parkers-images.bauersecure.com/wp-images/18727/courier-van-insurance-01.jpg",
"author": "Felipe Cardenas"
},
{
"type": "TEXT",
"content": "The package was delivered",
"author": "Felipe Cardenas"
}
]
}
}