action ndhm_post_v0_5_patients_find { label: "Identify a patient by her consent-manager user-id" description: "This API is meant for identify to patient given her consent-manager-user-id. CM subsequently makes the /on-find Gateway API call with results. \n" provider: ndhm method: POST path: "/v0.5/patients/find" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } query: { type: "object" required: ["patient", "requester"] properties: { patient: { type: "object" required: ["id"] properties: { id: { type: "string" } } } requester: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["HIU", "HIP"] } } } } } requestId: { type: "string" format: "uuid" description: "a nonce, unique for each HTTP request" } timestamp: { type: "string" format: "date-time" description: "Date time format in UTC, includes miliseconds YYYY-MM-DDThh:mm:ss.vZ" } } required: ["Authorization", "query", "requestId", "timestamp"] additionalProperties: false } output: { type: "object" additionalProperties: true } }