changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "creditsRemaining": {
+ "description": "Account balance after this call",
+ "type": "number"
+ },
+ "creditsUsed": {
+ "description": "Credits charged for this call",
+ "type": "number"
+ },
+ "failed": {
+ "description": "Videos skipped without charge (no captions)",
+ "type": "number"
+ },
+ "playlist": {
+ "description": "Playlist title",
+ "type": "string"
+ },
+ "succeeded": {
+ "description": "Videos that returned a transcript (each charged 1 credit)",
+ "type": "number"
+ },
+ "totalVideos": {
+ "description": "Videos attempted in this call",
+ "type": "number"
+ },
+ "transcripts": {
+ "description": "All transcripts as timestamped markdown, one section per video, divider-separated",
+ "type": "string"
+ }
+ },
+ "required": [
+ "playlist",
+ "totalVideos",
+ "succeeded",
+ "failed",
+ "transcripts",
+ "creditsUsed",
+ "creditsRemaining"
+ ],
+ "type": "object"
+}