{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ScorecardScore", "title": "ScorecardScore", "description": "The current score for the given Scorecard.\nA `null` value indicates the scorecard has not yet been evaluated and therefore no score has been computed.\n", "type": "object", "properties": { "value": { "description": "The human-readable score value coverted to the Scorecard's assigned grading system.", "type": "string", "example": "88%" }, "raw_value": { "description": "The raw, numeric score calculated during evaluation of the scorecard.\nRounded to 3 decimal places.\n", "type": "number", "example": 87.5, "maximum": 100, "minimum": 0 } }, "nullable": true, "required": [ "value", "raw_value" ] }