{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-comprehend/refs/heads/main/json-structure/openapi.yml-sentiment-score-structure.json", "name": "SentimentScore", "description": "Describes the level of confidence that Amazon Comprehend has in the accuracy of its detection of sentiments.", "type": "object", "properties": { "Positive": { "allOf": [ { "$ref": "#/components/schemas/Float" }, { "description": "The level of confidence that Amazon Comprehend has in the accuracy of its detection of the POSITIVE sentiment." } ] }, "Negative": { "allOf": [ { "$ref": "#/components/schemas/Float" }, { "description": "The level of confidence that Amazon Comprehend has in the accuracy of its detection of the NEGATIVE sentiment." } ] }, "Neutral": { "allOf": [ { "$ref": "#/components/schemas/Float" }, { "description": "The level of confidence that Amazon Comprehend has in the accuracy of its detection of the NEUTRAL sentiment." } ] }, "Mixed": { "allOf": [ { "$ref": "#/components/schemas/Float" }, { "description": "The level of confidence that Amazon Comprehend has in the accuracy of its detection of the MIXED sentiment." } ] } } }