chore: Add new schemas (no-changelog) (#13215)

This commit is contained in:
Jon
2025-02-13 09:40:35 +00:00
committed by GitHub
parent f001edb2a2
commit 0c6eb6eaef
38 changed files with 3095 additions and 0 deletions

View File

@@ -0,0 +1,125 @@
{
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"email_opted_in": {
"type": "boolean"
},
"email_status": {
"type": "string"
},
"date_created": {
"type": "string"
},
"last_updated": {
"type": "string"
},
"ScoreValue": {
"type": "null"
},
"last_updated_utc_millis": {
"type": "integer"
},
"email_addresses": {
"type": "array",
"items": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"field": {
"type": "string"
}
},
"required": [
"email",
"field"
]
}
},
"addresses": {
"type": "array",
"items": {
"type": "object",
"properties": {
"line1": {
"type": "string"
},
"locality": {
"type": "string"
},
"region": {
"type": "string"
},
"field": {
"type": "string"
},
"postal_code": {
"type": "string"
}
},
"required": [
"line1",
"line2",
"locality",
"region",
"field",
"postal_code",
"zip_code",
"zip_four",
"country_code"
]
}
},
"phone_numbers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"number": {
"type": "string"
},
"field": {
"type": "string"
},
"number_e164": {
"type": "null"
}
},
"required": [
"number",
"extension",
"field",
"type"
]
}
},
"given_name": {
"type": "string"
},
"family_name": {
"type": "string"
}
},
"required": [
"tag_ids",
"id",
"company",
"email_opted_in",
"email_status",
"date_created",
"last_updated",
"ScoreValue",
"last_updated_utc_millis",
"email_addresses",
"addresses",
"phone_numbers",
"given_name",
"family_name",
"middle_name",
"owner_id"
]
}