action clearblade_create_library { label: "DEVELOPER - Create library" description: "Creates a local library in the specified system." provider: clearblade method: POST 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 } }