changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "description": "PII-minimal status of a request — never the address, name or notes.",
+ "properties": {
+ "awaitingCustomerConfirmation": {
+ "type": "boolean"
+ },
+ "mergedInto": {
+ "description": "Only for MergedWithOther: the surviving appointment's status and time.",
+ "properties": {
+ "scheduledAt": {
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "scheduledAtPacific": {
+ "type": "string"
+ },
+ "status": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "note": {
+ "type": "string"
+ },
+ "reference": {
+ "type": "string"
+ },
+ "requestedTime": {
+ "description": "Unix seconds the customer asked for on a lead, or null.",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "scheduledAt": {
+ "description": "Unix seconds.",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "scheduledAtPacific": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "service": {
+ "description": "office | apostille | mobile | loan | ron | apostille_mail; null on a legacy row.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "description": "Pending | Scheduled | EnRoute | InProgress | Completed | Notarized | PickedUp | Cancelled | NoShow | MergedWithOther. `note` says what the word means for the customer; read that rather than branching on this.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "reference",
+ "service",
+ "status",
+ "awaitingCustomerConfirmation",
+ "note"
+ ],
+ "type": "object"
+}