Propose Bill-Date Correction
v0.1.0commandsWorkflow #2 — the next-day QBO follow-up: correct a bill's TxnDate/DueDate to the vendor invoice date. Queued for approval; applied as a QBO sparse update.
1{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "title": "ProposeBillDateCorrection",
4 "type": "object",
5 "properties": {
6 "billId": {
7 "type": "string",
8 "minLength": 1
9 },
10 "correctDate": {
11 "type": "string",
12 "minLength": 1,
13 "description": "YYYY-MM-DD"
14 },
15 "field": {
16 "type": "string",
17 "enum": [
18 "TxnDate",
19 "DueDate"
20 ],
21 "description": "Default TxnDate"
22 },
23 "reason": {
24 "type": "string"
25 }
26 },
27 "required": [
28 "billId",
29 "correctDate"
30 ]
31}Details
- Format
- JSON Schema
- Resource
- commands
- Filename
- schema.json