Skip to content

Commit 25780ad

Browse files
committed
Fix lint
1 parent a49af99 commit 25780ad

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

examples/axum-example/tests/snapshots/integration_test__openapi.snap

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3471,6 +3471,60 @@ expression: "std::fs::read_to_string(\"openapi.json\").unwrap()"
34713471
"createdAt"
34723472
]
34733473
},
3474+
"SingleRelSchema": {
3475+
"type": "object",
3476+
"properties": {
3477+
"single": {
3478+
"$ref": "#/components/schemas/SingleRelSchema_Single"
3479+
},
3480+
"username": {
3481+
"type": "string",
3482+
"default": ""
3483+
}
3484+
},
3485+
"required": [
3486+
"username",
3487+
"single"
3488+
]
3489+
},
3490+
"SingleRelSchema_Single": {
3491+
"type": "object",
3492+
"properties": {
3493+
"username": {
3494+
"type": "string"
3495+
}
3496+
},
3497+
"required": [
3498+
"username"
3499+
]
3500+
},
3501+
"SingleSchema": {
3502+
"type": "object",
3503+
"properties": {
3504+
"singleRel": {
3505+
"$ref": "#/components/schemas/SingleSchema_SingleRel",
3506+
"nullable": true
3507+
},
3508+
"username": {
3509+
"type": "string",
3510+
"default": ""
3511+
}
3512+
},
3513+
"required": [
3514+
"username"
3515+
]
3516+
},
3517+
"SingleSchema_SingleRel": {
3518+
"type": "object",
3519+
"properties": {
3520+
"username": {
3521+
"type": "string"
3522+
}
3523+
},
3524+
"required": [
3525+
"username"
3526+
]
3527+
},
34743528
"SkipResponse": {
34753529
"type": "object",
34763530
"properties": {

0 commit comments

Comments
 (0)