action drchrono_patient_flag_types_read { label: "patient_flag_types_read" description: "Retrieve an existing patient flag type" provider: drchrono method: GET path: "/api/patient_flag_types/{id}" encoding: json input: { type: "object" properties: { doctor: { type: "integer" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["doctor", "name"] properties: { archived: { type: "boolean" description: "Indicates the flag type is soft-deleted and should not be used" } color: { type: "string" } created_at: { type: "string" } doctor: { type: "integer" description: "Doctor who owns the flag type" } id: { type: "integer" } name: { type: "string" description: "Name of the patient flag type" } priority: { type: "integer" description: "Priority of the flag type" } updated_at: { type: "string" } } } }