Added nested level class support for import swagger
Some checks failed
Build / build (push) Has been cancelled

This commit is contained in:
Ankitkumar Satapara
2026-04-23 13:47:43 +05:30
parent c8c556921f
commit 361c1bb8c4
3 changed files with 208 additions and 22 deletions

View File

@@ -311,6 +311,24 @@
},
"components": {
"schemas": {
"AuditHistory": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int32"
},
"createdBy": {
"type": "string",
"nullable": true
},
"createdDate": {
"type": "string",
"format": "date-time"
}
},
"additionalProperties": false
},
"Operation": {
"type": "object",
"properties": {
@@ -347,7 +365,10 @@
},
"isGlutenFree": {
"type": "boolean",
"description": "Is this Pizza Gluten Free\r\n(bool true --\u003E yes)"
"description": "Is this Pizza Gluten Free\r\n(bool true --> yes)"
},
"auditHistory": {
"$ref": "#/components/schemas/AuditHistory"
}
},
"additionalProperties": false,
@@ -378,9 +399,7 @@
"nullable": true
}
},
"additionalProperties": {
}
"additionalProperties": { }
}
}
}