{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AddLogRequest", "title": "AddLogRequest", "required": [ "source", "message" ], "type": "object", "properties": { "source": { "type": "string" }, "message": { "type": "string" } }, "example": { "source": "Postman", "message": "Teste add interactions" } }