addedOutput schema / properties / result / properties
Added value: +{
+ "credits": {
+ "additionalProperties": false,
+ "description": "Current prepaid credit balance and human top-up URL.",
+ "properties": {
+ "balance_cents": {
+ "description": "Current prepaid credit balance in cents.",
+ "type": "integer"
+ },
+ "balance_display": {
+ "description": "Human-readable prepaid credit balance.",
+ "type": "string"
+ },
+ "billing_url": {
+ "description": "Dashboard URL where the signed-in human can add credits.",
+ "type": "string"
+ },
+ "currency": {
+ "description": "Credit balance currency.",
+ "enum": [
+ "usd"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "balance_cents",
+ "balance_display",
+ "currency",
+ "billing_url"
+ ],
+ "type": "object"
+ },
+ "events": {
+ "description": "Usage and billing event records.",
+ "items": {
+ "additionalProperties": true,
+ "description": "One returned record.",
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "period": {
+ "additionalProperties": true,
+ "description": "Requested usage period.",
+ "type": "object"
+ },
+ "summary": {
+ "additionalProperties": true,
+ "description": "Usage totals and event-type breakdown for the period.",
+ "type": "object"
+ }
+}