Skip to content

Commit

Permalink
8440: fix appointments contract schema
Browse files Browse the repository at this point in the history
  • Loading branch information
kpethtel committed Apr 26, 2024
1 parent a59f116 commit 6fbd173
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions modules/vaos/app/schemas/appointments_index.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"id",
"identifier",
"kind",
"location_id",
"cancellable"
],
"properties": {
Expand Down Expand Up @@ -111,10 +110,7 @@
},
"description": { "type": "string" },
"priority": { "type": "number" },
"patient_icn": {
"type": "string",
"nullable": false
},
"patient_icn": { "type": "string" },
"location_id": { "type": "string" },
"clinic": { "type": "string" },
"practitioner_ids": {
Expand Down Expand Up @@ -143,10 +139,7 @@
"required": ["system", "value"],
"properties": {
"system": { "type": "string" },
"value": {
"type": "string",
"nullable": true
}
"value": { "type": ["string", "null"] }
}
}
},
Expand Down Expand Up @@ -223,13 +216,9 @@
"properties": {
"type": {
"type": "string",
"nullable": false,
"enum": [ "email", "phone"]
},
"value": {
"type": "string",
"nullable": false
}
"value": { "type": "string" }
}
}
}
Expand Down Expand Up @@ -361,7 +350,7 @@
}
},
"cc_requested_cancellation": { "type": "boolean" },
"hsrm_tast_id": { "type": "string" },
"hsrm_task_id": { "type": "string" },
"hsrm_consult_id": { "type": "string" },
"vista_status": {
"type": "array",
Expand Down

0 comments on commit 6fbd173

Please sign in to comment.