-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemail-reputation-deliverability-structure.json
More file actions
50 lines (50 loc) · 1.32 KB
/
email-reputation-deliverability-structure.json
File metadata and controls
50 lines (50 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-structure/email-reputation-deliverability-structure.json",
"name": "Deliverability",
"description": "Email deliverability information",
"type": "object",
"properties": {
"status": {
"type": "string",
"description": "Overall deliverability status",
"example": "DELIVERABLE",
"enum": [
"DELIVERABLE",
"UNDELIVERABLE",
"RISKY",
"UNKNOWN"
]
},
"status_detail": {
"type": "string",
"description": "Detailed deliverability reason",
"example": "smtp_valid"
},
"is_format_valid": {
"type": "boolean",
"description": "Whether the email format is valid",
"example": true
},
"is_smtp_valid": {
"type": "boolean",
"description": "Whether the SMTP server responded positively",
"example": true
},
"is_mx_valid": {
"type": "boolean",
"description": "Whether valid MX records exist for the domain",
"example": true
},
"mx_records": {
"type": "array",
"description": "List of MX records for the domain",
"items": {
"type": "string"
},
"example": [
"mx.example.com"
]
}
}
}