podcastindexjs
Version:
client-side JS library for interacting with the Podcast Index API
41 lines (40 loc) • 836 B
JSON
{
"title": "`/api/1.0/categories/list` - Get all category names and ids",
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": ["true"]
},
"feeds": {
"type": "array",
"items": {
"$ref": "#/definitions/PIApiCategory"
}
},
"count": {
"type": "number"
},
"description": {
"type": "string"
}
},
"additionalProperties": false,
"required": ["count", "description", "feeds", "status"],
"definitions": {
"PIApiCategory": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"name": {
"type": "string"
}
},
"additionalProperties": false,
"required": ["id", "name"]
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}