Problem with connectiong roles

I have 2 roles that are assigned to one user. In the first role, I include field name for documents which have _id 1 and 2

Blockquote
{
“index_permissions”: [
{
“index_patterns”: [
“test”
],
“dls”: “{\n "terms": {\n "_id": [ "1", "2"] \n }\n}\n\n”,
“fls”: [
“name”
],
“masked_fields”: ,
“allowed_actions”: [
“get”,
“crud”
]
}
],
“tenant_permissions”: ,
“cluster_permissions”: [
“*”
]
}
Blockquote

and in the second role, I include field job_description for a document which have _id 3

Blockquote
{
“index_permissions”: [
{
“index_patterns”: [
“test”
],
“dls”: “{\n "terms": {\n "_id": ["3"] \n }\n}\n”,
“fls”: [
“job_description”
],
“masked_fields”: ,
“allowed_actions”:
}
],
“tenant_permissions”: ,
“cluster_permissions”:
}
Blockquote

when I try to get data from the index it shows me job_description and name in all documents,

Blockquote
{
“took” : 237,
“timed_out” : false,
“_shards” : {
“total” : 1,
“successful” : 1,
“skipped” : 0,
“failed” : 0
},
“hits” : {
“total” : {
“value” : 3,
“relation” : “eq”
},
“max_score” : 2.0,
“hits” : [
{
“_index” : “test”,
“_type” : “_doc”,
“_id” : “1”,
“_score” : 2.0,
“_source” : {
“name” : “John”,
“job_description” : “Systems administrator and Linux specialist”
}
},
{
“_index” : “test”,
“_type” : “_doc”,
“_id” : “2”,
“_score” : 2.0,
“_source” : {
“name” : “John”,
“job_description” : “Systems administrator and Linux specialist”
}
},
{
“_index” : “test”,
“_type” : “_doc”,
“_id” : “3”,
“_score” : 2.0,
“_source” : {
“name” : “John”,
“job_description” : “Systems administrator and Linux specialist”
}
}
]
}
}
Blockquote

but I want to see the only name in two firs records and only job_description in 3 document like that

Blockquote
{
“took” : 237,
“timed_out” : false,
“_shards” : {
“total” : 1,
“successful” : 1,
“skipped” : 0,
“failed” : 0
},
“hits” : {
“total” : {
“value” : 3,
“relation” : “eq”
},
“max_score” : 2.0,
“hits” : [
{
“_index” : “test”,
“_type” : “_doc”,
“_id” : “1”,
“_score” : 2.0,
“_source” : {
“name” : “John”,
}
},
{
“_index” : “test”,
“_type” : “_doc”,
“_id” : “2”,
“_score” : 2.0,
“_source” : {
“name” : “John”,
}
},
{
“_index” : “test”,
“_type” : “_doc”,
“_id” : “3”,
“_score” : 2.0,
“_source” : {
“job_description” : “Systems administrator and Linux specialist”
}
}
]
}
}
Blockquote