action drchrono_patient_flag_types_list { label: "patient_flag_types_list" description: "Retrieve or search patient flag types" provider: drchrono method: GET path: "/api/patient_flag_types" encoding: json input: { type: "object" properties: { cursor: { type: "string" description: "The pagination cursor value." } doctor: { type: "integer" } page_size: { type: "integer" description: "Number of results to return per page." } } additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { 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" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }