{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ServiceBody", "title": "ServiceBody", "required": [ "message", "data" ], "type": "object", "properties": { "message": { "type": "string", "description": "Status message about the request." }, "data": { "$ref": "#/components/schemas/Data", "type": "object", "description": "Service general information." } } }