action apicurio_create_group { label: "Create a new group" description: "Creates a new group.\n\nThis operation can fail for the following reasons:\n\n* A server error occurred (HTTP error `500`)\n* The group already exist (HTTP error `409`)\n" provider: apicurio method: POST path: "/groups" encoding: json input: { type: "object" required: ["id"] properties: { description: { type: "string" } id: { type: "string" } properties: { type: "object" } } } output: { type: "object" required: ["createdBy", "createdOn", "description", "id", "modifiedBy", "modifiedOn", "properties"] properties: { createdBy: { type: "string" } createdOn: { type: "string" format: "date-time" } description: { type: "string" } id: { type: "string" } modifiedBy: { type: "string" } modifiedOn: { type: "string" format: "date-time" } properties: { type: "object" } } } }