How can i validate an api response in postman using data dictionary?

How can I validate an API response in postman using a data dictionary?
Need to check the Name matches the response filed name Type matches the response filed value

dictionary = [
{
“Name”:“item1”,
“Type”:“string”
} ,
{
“Name”:“item2”,
“Type”:“integer”
}
];

response = {
“items”: [
{
“item1”: “value1”,
“item2”: “value2”,
}
]

Hi @telecoms-administra5

I think you are looking for schema validation.
Have a look at this video and see if it gives you what you need;

But the Structure of every api is different so I cannot use one schema for all APIs , so I need to create a standard dictionary and verify all API s using that.