action ndhm_post_v0_5_patients_profile_on_share { label: "Response to patient's share profile request" description: "Result of patient share profile request at HIP end.\n" provider: ndhm method: POST path: "/v0.5/patients/profile/on-share" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } acknowledgement: { type: "object" required: ["healthId", "status"] properties: { healthId: { type: "string" } status: { type: "string" enum: ["SUCCESS", "FAILURE"] } } } error: { type: "object" required: ["code", "message"] properties: { code: { type: "integer" enum: [1000, 10001] } message: { type: "string" } } } requestId: { type: "string" format: "uuid" description: "a nonce, unique for each HTTP request" } resp: { type: "object" required: ["requestId"] properties: { requestId: { type: "string" format: "uuid" description: "the requestId that was passed" } } } timestamp: { type: "string" format: "date-time" description: "Date time format in UTC, includes miliseconds YYYY-MM-DDThh:mm:ss.vZ" } } required: ["Authorization", "acknowledgement", "requestId", "resp", "timestamp"] additionalProperties: false } output: { type: "object" additionalProperties: true } }