Security is not being imported

Using the following openapi json security is not being imported when importing a file
{
“openapi”: “3.1.0”,
“info”: { “title”: “Chargeflow Api”, “description”: “”, “version”: “1.0.0” },
“tags”: [{ “name”: “health-check” }],
“paths”: {
“/health-check”: {
“get”: {
“summary”: “Health check to verify the service is up and running”,
“deprecated”: false,
“description”: “”,
“tags”: [“health-check”, “health-check”],
“parameters”: ,
“responses”: {
“200”: {
“description”: “OK”,
“content”: {
“application/json”: {
“schema”: { “type”: “string”, “description”: “OK” }
}
}
}
},
“security”: ,
“x-apidog-folder”: “health-check”,
“x-apidog-status”: “released”,
“x-run-in-apidog”: “Apidog
}
},
“/access-key”: {
“get”: {
“summary”: “Verify the access key is working”,
“deprecated”: false,
“description”: “”,
“tags”: [“health-check”, “health-check”],
“parameters”: ,
“responses”: {
“200”: {
“description”: “OK”,
“content”: {
“application/json”: { “schema”: { “type”: “string” } }
}
}
},
“security”: [{ “apikey”: }],
“x-apidog-folder”: “health-check”,
“x-apidog-status”: “released”,
“x-run-in-apidog”: “Apidog
}
}
},
“components”: {
“schemas”: {},
“securitySchemes”: {
“apikey”: { “type”: “apiKey”, “in”: “header”, “name”: “” }
}
},
“servers”: [
{ “url”: “https://dev.your-api-server.com”, “description”: “Develop Env” }
]
}

Hello Ran, i tried to save it as a file and import and succeeded. How did you import?