{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MessageSentiment", "title": "MessageSentiment", "type": "object", "properties": { "label": { "type": "string" }, "score": { "type": "number", "format": "double" }, "scores": { "type": "object", "additionalProperties": { "type": "number", "format": "double" } } }, "required": [ "label", "score", "scores" ] }