changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "_disclaimer": {
+ "type": "string"
+ },
+ "agent_action": {
+ "enum": [
+ "PROCEED"
+ ],
+ "type": "string"
+ },
+ "checked_at": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "country": {
+ "type": "string"
+ },
+ "country_code": {
+ "type": "string"
+ },
+ "note": {
+ "type": "string"
+ },
+ "rates": {
+ "description": "Present only when country_code is omitted -- full rate table for all supported jurisdictions",
+ "type": "object"
+ },
+ "reduced": {
+ "description": "Reduced VAT rates as percentages, if any apply",
+ "items": {
+ "type": "number"
+ },
+ "type": "array"
+ },
+ "source_url": {
+ "type": "string"
+ },
+ "standard": {
+ "description": "Standard VAT rate as a percentage",
+ "type": "number"
+ }
+ },
+ "required": [
+ "agent_action",
+ "source_url",
+ "checked_at"
+ ],
+ "type": "object"
+}