-
-
Notifications
You must be signed in to change notification settings - Fork 879
Open
Labels
Description
Version
5.3.0
Description
Symfony 7.2.6:
"ids": {
"description": "IDs of events",
"type": "array",
"items": {
"type": "integer"
},
"default": []
}
...
"referees": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RefereeDTO"
}
},
Symfony 7.3.0 (with type_info: false)
"schema": {
"description": "IDs of events",
"type": "array",
"items": {},
"default": []
}
...
"referees": {
"type": "array",
"items": {}
},
Symfony 7.3.0 (with type_info: true)
"schema": {
"description": "IDs of events",
"default": [],
"oneOf": [
{
"type": "array",
"items": {
"nullable": true
}
},
{
"type": "object",
"additionalProperties": {
"nullable": true
}
}
...
"referees": {
"oneOf": [
{
"type": "array",
"items": {
"nullable": true
}
},
{
"type": "object",
"additionalProperties": {
"nullable": true
}
}
JSON OpenApi
No response
Additional context
No response