action id4i_create_guid { label: "Create GUID(s)" description: "Creating one or more GUIDs with a specified length." provider: id4i method: POST path: "/api/v1/guids" encoding: json input: { type: "object" description: "GUID creation information" required: ["count", "length", "organizationId"] properties: { count: { type: "integer" format: "int32" description: "The total number of GUIDs to create" } length: { type: "integer" format: "int32" description: "The charactersequence length of the GUID" } organizationId: { type: "string" description: "The namespace of the organization where the generated GUIDs should be assigned." } } } output: { type: "object" description: "A list of id4ns" properties: { id4ns: { type: "array" description: "A list of id4ns." items: { type: "string" } } } } }