action drchrono_inventory_categories_read { label: "inventory_categories_read" description: "Retrieve an existing inventory category" provider: drchrono method: GET path: "/api/inventory_categories/{id}" encoding: json input: { type: "object" properties: { doctor: { type: "integer" } id: { type: "string" } since: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { archived: { type: "boolean" description: "If the category is archived or not" } category_type: { type: "string" description: "Can be one of `\"vaccine\"`, `\"product\"` or `\"service\"`" enum: ["vaccine", "product", "service"] } created_at: { type: "string" } doctor: { type: "string" } id: { type: "integer" } name: { type: "string" description: "Name of the inventory category" } updated_at: { type: "string" } } } }