{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Sentiment", "type": "object", "properties": { "text": { "$ref": "#/definitions/GenericInputText" }, "polarity": { "$ref": "#/definitions/GenericPolarity" }, "polarity_confidence": { "$ref": "#/definitions/GenericPolarityConfidence" }, "subjectivity": { "type": "string", "description": "Detected subjectivity", "enum": [ "subjective", "unknown" ] }, "subjectivity_confidence": { "$ref": "#/definitions/GenericConfidence" } } }