UNPKG

podcastindexjs

Version:

client-side JS library for interacting with the Podcast Index API

59 lines (58 loc) 1.39 kB
{ "title": "`/api/1.0/stats/current` - Get podcast index stats", "type": "object", "properties": { "status": { "type": "string", "enum": ["true"] }, "stats": { "$ref": "#/definitions/PIStats" }, "description": { "type": "string" } }, "additionalProperties": false, "required": ["description", "stats", "status"], "definitions": { "PIStats": { "description": "from stats", "type": "object", "properties": { "feedCountTotal": { "type": "number" }, "episodeCountTotal": { "type": "number" }, "feedsWithNewEpisodes3days": { "type": "number" }, "feedsWithNewEpisodes10days": { "type": "number" }, "feedsWithNewEpisodes30days": { "type": "number" }, "feedsWithNewEpisodes90days": { "type": "number" }, "feedsWithValueBlocks": { "type": "number" } }, "additionalProperties": false, "required": [ "episodeCountTotal", "feedCountTotal", "feedsWithNewEpisodes10days", "feedsWithNewEpisodes30days", "feedsWithNewEpisodes3days", "feedsWithNewEpisodes90days", "feedsWithValueBlocks" ] } }, "$schema": "http://json-schema.org/draft-07/schema#" }