action clearblade_get_library { label: "DEVELOPER - Get library" description: "Returns the specified library and its meta information." provider: clearblade method: GET path: "/codeadmin/v/2/library/{systemKey}/{libName}" encoding: json input: { type: "object" properties: { "ClearBlade-DevToken": { type: "string" } libName: { type: "string" } systemKey: { type: "string" } } required: ["ClearBlade-DevToken", "libName", "systemKey"] additionalProperties: false } output: { type: "object" additionalProperties: true } }