{"$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/sp-global/main/json-schema/kensho-llmready-earnings-schema.json", "title": "Kensho LLM-ready API Earnings", "description": "Top-level entity from the Kensho LLM-ready API (EarningsEntry).", "$ref": "#/$defs/EarningsEntry", "$defs": {"EarningsEntry": {"type": "object", "description": "Serializer for individual earnings entries.", "properties": {"name": {"type": "string", "maxLength": 255}, "key_dev_id": {"type": "integer"}, "datetime": {"type": "string", "format": "date-time"}}, "required": ["datetime", "key_dev_id", "name"]}, "EarningsResponse": {"type": "object", "description": "Response fields for get_earnings.", "properties": {"earnings": {"type": "array", "items": {"$ref": "#/$defs/EarningsEntry"}}}, "required": ["earnings"]}}}