Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
kpethtel committed Apr 8, 2024
1 parent a5fa7ca commit a5d456a
Showing 1 changed file with 73 additions and 25 deletions.
98 changes: 73 additions & 25 deletions modules/vaos/app/schemas/appointments_index.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,25 +91,22 @@
}
},
"reason_code": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"coding": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"system": { "type": "string" },
"code": { "type": "string" },
"display": { "type": "string" }
}
"type": "object",
"additionalProperties": false,
"properties": {
"coding": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"system": { "type": "string" },
"code": { "type": "string" },
"display": { "type": "string" }
}
},
"text": { "type": "string" }
}
}
},
"text": { "type": "string" }
}
},
"description": { "type": "string" },
Expand All @@ -135,7 +132,8 @@
"practitioners": {
"type": "array",
"items": {
"type": "array",
"type": "object",
"additionalProperties": false,
"properties": {
"identifier": {
"type": "array",
Expand Down Expand Up @@ -290,20 +288,20 @@
"type": "object",
"additionalProperties": false,
"properties": {
"sitecode": { "type": "string" },
"confirmationCode": { "type": "string" },
"site_code": { "type": "string" },
"confirmation_code": { "type": "string" },
"address": {
"type": "object",
"additionalProperties": false,
"properties": {
"streetAddress": { "type": "string" },
"street_address": { "type": "string" },
"city": { "type": "string" },
"state": { "type": "string" },
"zipCode": { "type": "string" },
"zip_code": { "type": "string" },
"country": { "type": "string" },
"latitude": { "type": "number" },
"latitutde": { "type": "number" },
"longitude": { "type": "number" },
"additionalDetails": { "type": "string" }
"additional_details": { "type": "string" }
}
}
}
Expand Down Expand Up @@ -371,6 +369,56 @@
"vista_status": {
"type": "array",
"items": { "type": "string" }
},
"cc_treating_specialty": {
"type": "string"
},
"modality": {
"type": "string"
},
"patient_has_mobile_gfe": {
"type": "boolean"
},
"pre_checkin_allowed": {
"type": "boolean"
},
"e_checkin_allowed": {
"type": "boolean"
},
"clinic": {
"type": "object",
"additionalProperties": false,
"properties": {
"vista_site": {
"type": "integer",
"maxLength": 3,
"minLength": 3
},
"id": { "type": "string" },
"service_name": { "type": "string" },
"physical_location": { "type": "string" },
"phone_number": { "type": "string" },
"station_id": { "type": "string" },
"station_name": { "type": "string" },
"primary_stop_code": {
"type": "integer",
"maxLength": 3,
"minLength": 3
},
"primary_stop_code_name": { "type": "string" },
"secondary_stop_code": {
"type": "integer",
"maxLength": 3,
"minLength": 3
},
"secondary_stop_code_name": { "type": "string" },
"patient_direct_scheduling": { "type": "boolean" },
"patient_display": { "type": "boolean" },
"char4": { "type": "string" },
"active": { "type": "boolean" },
"non_count": { "type": "boolean" },
"future_booking_maximum_days": { "type": "integer" }
}
}
}
}
Expand Down

0 comments on commit a5d456a

Please sign in to comment.