Required Relation Field

what version? I have 4.05 and next script dont work

> {
>   "kind": "collectionType",
>   "collectionName": "personas",
>   "info": {
>     "singularName": "persona",
>     "pluralName": "personas",
>     "displayName": "Personas",
>     "description": ""
>   },
>   "options": {
>     "draftAndPublish": true
>   },
>   "pluginOptions": {},
>   "attributes": {
>     "nombre": {
>       "type": "string",
>       "required": true
>     },
>     "apellidos": {
>       "type": "string",
>       "required": true
>     },
>     "edad": {
>       "type": "integer"
>     },
>     "grupos": {
>       "type": "relation",
>       "relation": "oneToMany",
>       "target": "api::grupo.grupo",
>       "required": true
>     }
>   }
> }
1 Like