action weber_gesamtausgabe_get_documents_find_by_author_author_id { label: "Finds documents by author" description: "This endpoint returns a list of documents by a given author – optionally filtered by document type \n" provider: weber_gesamtausgabe method: GET path: "/documents/findByAuthor/{authorID}" encoding: json input: { type: "object" properties: { authorID: { type: "string" } } required: ["authorID"] additionalProperties: false } output: { type: "object" additionalProperties: true } }