action bigoven_grocery_list_department { label: "Departmentalize a list of strings -- used for ad-hoc grocery list item addition" provider: bigoven method: POST path: "/grocerylist/department" encoding: form input: { type: "object" properties: { items: { type: "string" description: "Gets or sets the items." } } } output: { type: "array" items: { type: "object" properties: { dept: { type: "string" description: "Gets or sets the dept." } item: { type: "string" description: "Gets or sets the item." } } } } }