Skip to content

Commit

Permalink
source-zendesk-support: address various ticket_audits schema violations
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Bair committed Jan 22, 2025
1 parent d117438 commit 0ac771f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
3 changes: 3 additions & 0 deletions source-zendesk-support/acmeCo/ticket_audits.schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ properties:
type:
- "null"
- integer
- string
locale:
type:
- "null"
Expand Down Expand Up @@ -416,6 +417,7 @@ properties:
- string
- array
- object
- integer
items:
type:
- "null"
Expand Down Expand Up @@ -445,6 +447,7 @@ properties:
type:
- "null"
- string
- integer
author_id:
type:
- "null"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
"type": ["null", "string"]
},
"id": {
"type": ["null", "integer"]
"type": ["null", "integer", "string"]
},
"locale": {
"type": ["null", "string"]
Expand Down Expand Up @@ -259,7 +259,7 @@
"type": ["null", "integer"]
},
"previous_value": {
"type": ["null", "string", "array", "object"],
"type": ["null", "string", "array", "object", "integer"],
"items": {
"type": ["null", "string"]
},
Expand All @@ -282,7 +282,7 @@
"type": ["null", "boolean"]
},
"resource": {
"type": ["null", "string"]
"type": ["null", "string", "integer"]
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1774,7 +1774,8 @@
"id": {
"type": [
"null",
"integer"
"integer",
"string"
]
},
"locale": {
Expand Down Expand Up @@ -1942,7 +1943,8 @@
"null",
"string",
"array",
"object"
"object",
"integer"
],
"items": {
"type": [
Expand Down Expand Up @@ -1986,7 +1988,8 @@
"resource": {
"type": [
"null",
"string"
"string",
"integer"
]
}
}
Expand Down

0 comments on commit 0ac771f

Please sign in to comment.