Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
2e17363
update jsonschema snapshots
github-actions[bot] Mar 13, 2026
b420a85
update jsonschema snapshots
github-actions[bot] Mar 14, 2026
aff458f
update jsonschema snapshots
github-actions[bot] Mar 14, 2026
3b2b7b0
update jsonschema snapshots
github-actions[bot] Mar 19, 2026
cbec27d
update jsonschema snapshots
github-actions[bot] Mar 21, 2026
5803c0c
update jsonschema snapshots
github-actions[bot] Mar 24, 2026
0a08971
update jsonschema snapshots
github-actions[bot] Mar 25, 2026
c1959de
update jsonschema snapshots
github-actions[bot] Mar 27, 2026
4baf823
update jsonschema snapshots
github-actions[bot] Mar 28, 2026
39000e1
update jsonschema snapshots
github-actions[bot] Mar 29, 2026
745c8b6
update jsonschema snapshots
github-actions[bot] Mar 30, 2026
0f39314
update jsonschema snapshots
github-actions[bot] Mar 31, 2026
2ff6523
update jsonschema snapshots
github-actions[bot] Apr 1, 2026
cfeabc7
update jsonschema snapshots
github-actions[bot] Apr 2, 2026
3a04e6c
update jsonschema snapshots
github-actions[bot] Apr 3, 2026
510d74d
update jsonschema snapshots
github-actions[bot] Apr 4, 2026
d5562c7
update jsonschema snapshots
github-actions[bot] Apr 5, 2026
20cfb10
update jsonschema snapshots
github-actions[bot] Apr 6, 2026
22558ef
update jsonschema snapshots
github-actions[bot] Apr 7, 2026
ae71c78
update jsonschema snapshots
github-actions[bot] Apr 8, 2026
d2eeafc
update jsonschema snapshots
github-actions[bot] Apr 9, 2026
e9217cb
update jsonschema snapshots
github-actions[bot] Apr 10, 2026
15644bd
update jsonschema snapshots
github-actions[bot] Apr 11, 2026
6f9f140
update jsonschema snapshots
github-actions[bot] Apr 12, 2026
e87f2d7
update jsonschema snapshots
github-actions[bot] Apr 13, 2026
e2ad011
update jsonschema snapshots
github-actions[bot] Apr 14, 2026
1cd2ffd
update jsonschema snapshots
github-actions[bot] Apr 15, 2026
b217633
update jsonschema snapshots
github-actions[bot] Apr 16, 2026
576b8ce
update jsonschema snapshots
github-actions[bot] Apr 17, 2026
a3daa91
update jsonschema snapshots
github-actions[bot] Apr 18, 2026
4fc660c
update jsonschema snapshots
github-actions[bot] Apr 19, 2026
aec996f
Merge main into snapshot-bot/update-snapshots
Miskler Apr 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 22 additions & 5 deletions tests/__snapshots__/ClassAdvertising.home_brands_list.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
],
"properties": {
"alias": {
"type": "string"
"type": "string",
"j2sEnumRejected": true
},
"id": {
"type": "integer"
Expand All @@ -31,7 +32,12 @@
"login": {
"anyOf": [
{
"type": "string"
"type": "string",
"enum": [
"tshashmurina",
"ebukhtoiarov",
"vrodina"
]
},
{
"type": "null"
Expand All @@ -46,12 +52,22 @@
"type": "boolean"
},
"title": {
"type": "string"
"type": "string",
"j2sEnumRejected": true
},
"updatedAt": {
"anyOf": [
{
"type": "string"
"type": "string",
"anyOf": [
{
"type": "string"
},
{
"type": "string",
"format": "date-time"
}
]
},
{
"type": "null"
Expand All @@ -64,7 +80,8 @@
"type": "string",
"anyOf": [
{
"type": "string"
"type": "string",
"j2sEnumRejected": true
},
{
"type": "string",
Expand Down
Loading
Loading