action bigoven_grocery_list_grocery_list_item_guid { label: "Update a grocery item by GUID" provider: bigoven method: PUT path: "/grocerylist/item/{guid}" encoding: form input: { type: "object" properties: { department: { type: "string" description: "Gets or sets the department." } guid: { type: "string" } ischecked: { type: "boolean" description: "Gets or sets the ischecked." } name: { type: "string" description: "Gets or sets the name." } notes: { type: "string" description: "Gets or sets the notes." } quantity: { type: "string" description: "Gets or sets the quantity." } unit: { type: "string" description: "Gets or sets the unit." } } required: ["guid"] additionalProperties: false } output: { type: "object" properties: {} } }