changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "_disclaimer": {
+ "type": "string"
+ },
+ "address": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "agent_action": {
+ "description": "Machine-readable verdict",
+ "enum": [
+ "PROCEED",
+ "VERIFY_MANUALLY",
+ "HOLD"
+ ],
+ "type": "string"
+ },
+ "checked_at": {
+ "format": "date-time",
+ "type": "string"
+ },
+ "company_name": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "fraud_risk_level": {
+ "enum": [
+ "LOW",
+ "MEDIUM",
+ "HIGH",
+ "CRITICAL"
+ ],
+ "type": "string"
+ },
+ "fraud_risk_score": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "number"
+ },
+ "fraud_signals": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "jurisdiction": {
+ "enum": [
+ "UK",
+ "EU",
+ "AU"
+ ],
+ "type": "string"
+ },
+ "name_match": {
+ "enum": [
+ "MATCH",
+ "MISMATCH",
+ "NOT_CHECKED"
+ ],
+ "type": "string"
+ },
+ "recommendation": {
+ "enum": [
+ "CLEAR",
+ "REVIEW",
+ "BLOCK"
+ ],
+ "type": "string"
+ },
+ "source_url": {
+ "type": "string"
+ },
+ "summary": {
+ "type": "string"
+ },
+ "valid": {
+ "description": "Whether the VAT number is currently registered and active per the source registry",
+ "type": "boolean"
+ },
+ "vat_number": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "agent_action",
+ "valid",
+ "vat_number",
+ "jurisdiction",
+ "source_url",
+ "checked_at"
+ ],
+ "type": "object"
+}