action dnd5eapi_get_api_subclasses_index_levels { label: "Get all level resources for a subclass." provider: dnd5eapi method: GET path: "/api/subclasses/{index}/levels" encoding: json output: { type: "array" items: { type: "object" properties: { class: { type: "object" description: "`APIReference`\n" properties: { index: { type: "string" description: "Resource index for shorthand searching." } name: { type: "string" description: "Name of the referenced resource." } url: { type: "string" description: "URL of the referenced resource." } } } features: { type: "array" items: { type: "object" additionalProperties: true } } index: { type: "string" } level: { type: "number" } subclass: { type: "object" additionalProperties: true } url: { type: "string" } } } } }