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,58 @@
{
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"state": {
"type": "string"
},
"created_at": {
"type": "string"
},
"referrer": {
"type": "null"
},
"subscribable_id": {
"type": "integer"
},
"subscribable_type": {
"type": "string"
},
"subscriber": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"email_address": {
"type": "string"
},
"state": {
"type": "string"
},
"created_at": {
"type": "string"
}
},
"required": [
"id",
"first_name",
"email_address",
"state",
"created_at",
"fields"
]
}
},
"required": [
"id",
"state",
"created_at",
"source",
"referrer",
"subscribable_id",
"subscribable_type",
"subscriber"
]
}