action digitallocker_get_list_of_issued_documents_id { label: "Issued Documents" description: "Returns the list of meta-data about issued documents in user’s DigiLocker." provider: digitallocker method: GET path: "/oauth2/2/files/issued" encoding: json output: { type: "object" required: ["items", "resource"] properties: { items: { type: "array" items: { required: ["name", "type", "size", "date", "parent", "uri", "doctype", "description", "issuerid", "issuer"] properties: { date: { type: "string" } description: { type: "string" } doctype: { type: "string" } issuer: { type: "string" } issuerid: { type: "string" } mime: { type: "array" items: { properties: {} } } name: { type: "string" } parent: { type: "string" } size: { type: "string" } type: { type: "string" } uri: { type: "string" } } } } resource: { type: "string" } } } }