action drchrono_implantable_devices_read { label: "implantable_devices_read" description: "Retrieve an existing implantable device" provider: drchrono method: GET path: "/api/implantable_devices/{id}" encoding: json input: { type: "object" properties: { doctor: { type: "integer" } id: { type: "string" } mu_date: { type: "string" } mu_date_range: { type: "string" } patient: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { archived: { type: "boolean" } brand_name: { type: "string" } company_name: { type: "string" } created_at: { type: "string" } expiration_date: { type: "string" } gmdn_pt_name: { type: "string" description: "\"GMDN PT Name\" or \"SNOMED CT Description\" mapped to the attribute in the \"GMDN PT Name\"" } id: { type: "integer" } manufacturing_date: { type: "string" } patient: { type: "string" } procedure: { type: "string" description: "ID of `/api/procedures` object" } serial_number: { type: "string" } status: { type: "string" description: "One of `'active'` or `'inactive'`" enum: ["active", "inactive"] } udi: { type: "string" } updated_at: { type: "string" } version_or_model: { type: "string" } } } }