addedOutput schema / properties / vendorBill / anyOf
Added value: +[
+ {
+ "properties": {
+ "amountCents": {
+ "type": "string"
+ },
+ "billNumber": {
+ "type": "string"
+ },
+ "cancelledAt": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "companyId": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "createdAt": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "currencyCode": {
+ "type": "string"
+ },
+ "dueDate": {
+ "type": "string"
+ },
+ "id": {
+ "anyOf": [
+ {
+ "description": "UUID value wrapper.",
+ "properties": {
+ "value": {
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "issueDate": {
+ "type": "string"
+ },
+ "notes": {
+ "anyOf": [
+ {
+ "description": "Free-form description (max 5000 chars).",
+ "properties": {
+ "value": {
+ "maxLength": 5000,
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "paidAt": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "status": {
+ "enum": [
+ "VENDOR_BILL_STATUS_UNSPECIFIED",
+ "VENDOR_BILL_STATUS_OPEN",
+ "VENDOR_BILL_STATUS_PAID",
+ "VENDOR_BILL_STATUS_CANCELLED"
+ ],
+ "type": "string"
+ },
+ "updatedAt": {
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "vendorName": {
+ "anyOf": [
+ {
+ "description": "Human-readable name (1-255 Unicode chars).",
+ "properties": {
+ "value": {
+ "maxLength": 255,
+ "minLength": 1,
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "companyId",
+ "vendorName"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
removedOutput schema / properties / vendorBill / properties
Removed value: -{
- "amountCents": {
- "type": "string"
- },
- "billNumber": {
- "type": "string"
- },
- "cancelledAt": {
- "format": "date-time",
- "type": "string"
- },
- "companyId": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "createdAt": {
- "format": "date-time",
- "type": "string"
- },
- "currencyCode": {
- "type": "string"
- },
- "dueDate": {
- "type": "string"
- },
- "id": {
- "description": "UUID value wrapper.",
- "properties": {
- "value": {
- "format": "uuid",
- "type": "string"
- }
- },
- "type": "object"
- },
- "issueDate": {
- "type": "string"
- },
- "notes": {
- "description": "Free-form description (max 5000 chars).",
- "properties": {
- "value": {
- "maxLength": 5000,
- "type": "string"
- }
- },
- "type": "object"
- },
- "paidAt": {
- "format": "date-time",
- "type": "string"
- },
- "status": {
- "enum": [
- "VENDOR_BILL_STATUS_UNSPECIFIED",
- "VENDOR_BILL_STATUS_OPEN",
- "VENDOR_BILL_STATUS_PAID",
- "VENDOR_BILL_STATUS_CANCELLED"
- ],
- "type": "string"
- },
- "updatedAt": {
- "format": "date-time",
- "type": "string"
- },
- "vendorName": {
- "description": "Human-readable name (1-255 Unicode chars).",
- "properties": {
- "value": {
- "maxLength": 255,
- "minLength": 1,
- "type": "string"
- }
- },
- "type": "object"
- }
-}