Migrating from IQA to Query service endpoint

📘

Minimum required version

20.3.77 or 100.3.77

In an earlier tech alert, ASI/iMIS announced that the IQA service endpoint will be reaching end of life in the near future. The intention is to now use the Query service endpoint in its place. This article will help the process of migrating over.

Differences in IQA/Query endpoint output

Provided are the outputs of each end point IQA/Query in JSON so that you can compare. What they have in common is that they both wrap their results in a paged result object.

This means you will still have access to the paging data (offset, limit, total count, etc.) in the root of the return JSON object; however, the Query endpoint is not typed now as generic entity data, but as a dynamic type.

{
    "$type": "Asi.Soa.Core.DataContracts.PagedResult`1[[Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts]], Asi.Contracts",
    "Items": {
        "$type": "System.Collections.Generic.List`1[[Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts]], mscorlib",
        "$values": [
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "1"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "(Erased) (Erased)"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "2"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "(Erased) (Erased)"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "(Erased)"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "3"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "A.J. Ferraro"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "4"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Aadi Chopra"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Versaton India"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "Branch Manager"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "5"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Aanya Doshi"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "6"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Aaron Ketterling"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Bureau of Meteorology - South Australia"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "7"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Aaron l. Whitaker"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Association of Business Management Professionals"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "8"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Aaron Oakley"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "iMIS International"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "9"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Abbe Coroniti"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "10"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Abbey Atwell"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Forms International"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "Case Staff"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "11"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Abbott & Tearn"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "12"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "ABC Security Services"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "13"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Abigail Johnson"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "14"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Academy of Design Professionals"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "15"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Accessible Solutions Consulting"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "16"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Acme, Inc."
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "17"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Acorn Specialties"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "18"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Adriana Hunyadi"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "19"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Affinity Beacon"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "20"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Agasi Associates"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "21"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Agen Trust"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "22"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Agentur Larsen"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "23"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Ahearn & Taylor"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "24"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Aida Marcial"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "25"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Aida Navarro"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "26"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Aidan St. Charles"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Versaton France"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "27"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "AK Beridze"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Quality Specialists"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "28"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Al Ferrari"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "29"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Al Soria"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "30"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Al Stahl"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "31"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alan Cimorelli"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "R&V Stinson"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "Chief Appraiser"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "32"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alan Furumoto"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "33"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alan Greve"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "34"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alan Herman"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "35"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alan J. Sipe"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "36"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alan Josel"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "37"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alan K. Sleeper"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "38"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alan Powell"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "Student"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "39"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Albert J. Fox"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "40"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alejandro Neves"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Fabrica Sao Paulo"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "41"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "ALEUM Credit Union"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "42"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alex Morgan"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Versaton US"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "President"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "43"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alex Nizankiewicz"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Carles Company"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "Operations Manager"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "44"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alex P. Keaton"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "45"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alfred Hospital"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "46"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alfred O. Breinig"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "47"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alice Powers"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "48"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alicia Hughes"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "49"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alison Rittenhouse"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "50"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Allen Tremblay"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Overland Canada"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "51"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Allie Finnegan"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "EIF University"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "International Student Counselor"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "52"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Allison Brown"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Organisation Services"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "Division Director"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "53"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Allison Foster-Hay"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "54"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Allison Rae"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "55"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Allison Randall"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Central College"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "Student"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "56"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Allyson Smith"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Toronto Dance and Arts Council"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "Board Member"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "57"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alma Nelson"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "J&D Holley"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "58"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alpha Services, Ltd."
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "59"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Alsbrook Products"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "60"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Amanda Halpenny"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "iMIS Foundation"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "61"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Amber Robinson"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "iMIS Foundation"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "62"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Amelia Starr"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "ALEUM Credit Union"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "63"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "American Business Services"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "64"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Amin Al-Laty"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "65"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Amruta Bricks"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "iMIS Foundation"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "66"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Amy Marko"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "iMIS International"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "67"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Amy Shelanski"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "68"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Amy Stahlman"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "69"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "An C. Xian"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Ridge Haven Sales"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "70"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Ananda Shala"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Versaton India"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "System Analyst"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "71"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Andrea Becker"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Vintage Design - Anchorage, AK"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "72"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Andrea DiMedio"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "73"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Andrea Rockley"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "iMIS Foundation"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "Graphic Designer"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "74"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Andrew Brindle"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Davis Construction"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "Operations Maanager"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "75"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Andrew D. Maunder"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "76"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Andrew G. Carter"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Eagle Ltd."
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "77"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Andrew Humphries"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "78"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Andrew Hyde"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "79"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Andy L. Andrews"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "80"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Andy Pander"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "81"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Ang Peng"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "82"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Angela Armani"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Image Digital"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "83"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Angela Cervantes"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "84"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Angela Clarke Noonan"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "GEO International"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "Vice President European Operations"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "85"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Angier LTD"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "86"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Anita Block"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "87"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Ann C. Kreidle"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "88"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Ann Mazari"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Paradise Bay Graphics"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "89"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Anna diSilva, CPA"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Municipalities Management"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "Accountant"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "90"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Annette Abbott"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "91"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Annette Abraminko"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "92"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Annie Gaebler"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Creative Distractions"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "93"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Annika Jansen"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Hemscott Services"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "Director Of Development"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "94"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Anthony Clement"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "95"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Anthony Colibraro"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "96"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Anthony Dellia"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "97"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Anthony Lee Mizer"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "Pecan Street, Inc."
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": "Operations Manager"
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "98"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Anthony Sciarrino"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "99"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Antonia Lafferty"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": ""
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            },
            {
                "$type": "Asi.Soa.Core.DataContracts.GenericEntityData, Asi.Contracts",
                "EntityTypeName": "59",
                "Properties": {
                    "$type": "Asi.Soa.Core.DataContracts.GenericPropertyDataCollection, Asi.Contracts",
                    "$values": [
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "ResultRow",
                            "Value": "100"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Name",
                            "Value": "Antonio B. Cortez"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "PrimaryOrganizationName",
                            "Value": "IMM South America"
                        },
                        {
                            "$type": "Asi.Soa.Core.DataContracts.GenericPropertyData, Asi.Contracts",
                            "Name": "Title",
                            "Value": ""
                        }
                    ]
                }
            }
        ]
    },
    "Offset": 0,
    "Limit": 100,
    "Count": 100,
    "TotalCount": 5563,
    "NextPageLink": null,
    "HasNext": true,
    "NextOffset": 100
}
{
    "$type": "Asi.Soa.Core.DataContracts.PagedResult, Asi.Contracts",
    "Items": {
        "$type": "System.Collections.Generic.List`1[[System.Object, mscorlib]], mscorlib",
        "$values": [
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "(Erased) (Erased)",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "(Erased) (Erased)",
                "PrimaryOrganizationName": "(Erased)",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "A.J. Ferraro",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Aadi Chopra",
                "PrimaryOrganizationName": "Versaton India",
                "Title": "Branch Manager"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Aanya Doshi",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Aaron Ketterling",
                "PrimaryOrganizationName": "Bureau of Meteorology - South Australia",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Aaron l. Whitaker",
                "PrimaryOrganizationName": "Association of Business Management Professionals",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Aaron Oakley",
                "PrimaryOrganizationName": "iMIS International",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Abbe Coroniti",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Abbey Atwell",
                "PrimaryOrganizationName": "Forms International",
                "Title": "Case Staff"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Abbott & Tearn",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "ABC Security Services",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Abigail Johnson",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Academy of Design Professionals",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Accessible Solutions Consulting",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Acme, Inc.",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Acorn Specialties",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Adriana Hunyadi",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Affinity Beacon",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Agasi Associates",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Agen Trust",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Agentur Larsen",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Ahearn & Taylor",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Aida Marcial",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Aida Navarro",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Aidan St. Charles",
                "PrimaryOrganizationName": "Versaton France",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "AK Beridze",
                "PrimaryOrganizationName": "Quality Specialists",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Al Ferrari",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Al Soria",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Al Stahl",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alan Cimorelli",
                "PrimaryOrganizationName": "R&V Stinson",
                "Title": "Chief Appraiser"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alan Furumoto",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alan Greve",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alan Herman",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alan J. Sipe",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alan Josel",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alan K. Sleeper",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alan Powell",
                "PrimaryOrganizationName": "",
                "Title": "Student"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Albert J. Fox",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alejandro Neves",
                "PrimaryOrganizationName": "Fabrica Sao Paulo",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "ALEUM Credit Union",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alex Morgan",
                "PrimaryOrganizationName": "Versaton US",
                "Title": "President"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alex Nizankiewicz",
                "PrimaryOrganizationName": "Carles Company",
                "Title": "Operations Manager"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alex P. Keaton",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alfred Hospital",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alfred O. Breinig",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alice Powers",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alicia Hughes",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alison Rittenhouse",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Allen Tremblay",
                "PrimaryOrganizationName": "Overland Canada",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Allie Finnegan",
                "PrimaryOrganizationName": "EIF University",
                "Title": "International Student Counselor"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Allison Brown",
                "PrimaryOrganizationName": "Organisation Services",
                "Title": "Division Director"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Allison Foster-Hay",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Allison Rae",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Allison Randall",
                "PrimaryOrganizationName": "Central College",
                "Title": "Student"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Allyson Smith",
                "PrimaryOrganizationName": "Toronto Dance and Arts Council",
                "Title": "Board Member"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alma Nelson",
                "PrimaryOrganizationName": "J&D Holley",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alpha Services, Ltd.",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Alsbrook Products",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Amanda Halpenny",
                "PrimaryOrganizationName": "iMIS Foundation",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Amber Robinson",
                "PrimaryOrganizationName": "iMIS Foundation",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Amelia Starr",
                "PrimaryOrganizationName": "ALEUM Credit Union",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "American Business Services",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Amin Al-Laty",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Amruta Bricks",
                "PrimaryOrganizationName": "iMIS Foundation",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Amy Marko",
                "PrimaryOrganizationName": "iMIS International",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Amy Shelanski",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Amy Stahlman",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "An C. Xian",
                "PrimaryOrganizationName": "Ridge Haven Sales",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Ananda Shala",
                "PrimaryOrganizationName": "Versaton India",
                "Title": "System Analyst"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Andrea Becker",
                "PrimaryOrganizationName": "Vintage Design - Anchorage, AK",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Andrea DiMedio",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Andrea Rockley",
                "PrimaryOrganizationName": "iMIS Foundation",
                "Title": "Graphic Designer"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Andrew Brindle",
                "PrimaryOrganizationName": "Davis Construction",
                "Title": "Operations Maanager"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Andrew D. Maunder",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Andrew G. Carter",
                "PrimaryOrganizationName": "Eagle Ltd.",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Andrew Humphries",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Andrew Hyde",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Andy L. Andrews",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Andy Pander",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Ang Peng",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Angela Armani",
                "PrimaryOrganizationName": "Image Digital",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Angela Cervantes",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Angela Clarke Noonan",
                "PrimaryOrganizationName": "GEO International",
                "Title": "Vice President European Operations"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Angier LTD",
                "PrimaryOrganizationName": null,
                "Title": null
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Anita Block",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Ann C. Kreidle",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Ann Mazari",
                "PrimaryOrganizationName": "Paradise Bay Graphics",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Anna diSilva, CPA",
                "PrimaryOrganizationName": "Municipalities Management",
                "Title": "Accountant"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Annette Abbott",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Annette Abraminko",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Annie Gaebler",
                "PrimaryOrganizationName": "Creative Distractions",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Annika Jansen",
                "PrimaryOrganizationName": "Hemscott Services",
                "Title": "Director Of Development"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Anthony Clement",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Anthony Colibraro",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Anthony Dellia",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Anthony Lee Mizer",
                "PrimaryOrganizationName": "Pecan Street, Inc.",
                "Title": "Operations Manager"
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Anthony Sciarrino",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Antonia Lafferty",
                "PrimaryOrganizationName": "",
                "Title": ""
            },
            {
                "$type": "System.Dynamic.ExpandoObject, System.Core",
                "Name": "Antonio B. Cortez",
                "PrimaryOrganizationName": "IMM South America",
                "Title": ""
            }
        ]
    },
    "Offset": 0,
    "Limit": 100,
    "Count": 100,
    "TotalCount": 5563,
    "NextPageLink": null,
    "HasNext": true,
    "NextOffset": 100
}

Depending on how you are currently accessing or mapping to the data, you will have to change from using the child collection in Properties: $Values objects that reside within the parent Items and $values collection to iterate over just the Items.Values collection.

📘

Further enhancements have been made in the return JSON object from the Query endpoint that will be discussed later.

Running queries with an offset or limit

If you want to only return a subset of the results from a query, you would pass in additionally with the path or key. Use the query params offset and limit arguments as needed.

To get only 10 rows back:

Professional

https://{{URL}}/api/query?QueryName=$/Scratch/Professional_Example_1&limit=10

Enterprise

https://{{URL}}/api/query?QueryName=$/Scratch/Enterprise_Example_1&limit=10

To skip the first 20 rows:

Professional

https://{{URL}}/api/query?QueryName=$/Scratch/Professional_Example_1&offset=20

Enterprise

https://{{URL}}/api/query?QueryName=$/Scratch/Enterprise_Example_1&offset=20

Both used in a single request:

Professional

https://{{URL}}/api/query?QueryName=$/Scratch/Professional_Example_1&offset=20&limit=10

Enterprise

https://{{URL}}/api/query?QueryName=$/Scratch/Enterprise_Example_1&offset=20&limit=10

Executing queries with no filters using a GET request

The following IQA query can be imported into a scratch folder through the import functionality in RISE>IQA.

995

Be sure when importing to not overwrite the location specified, as the examples reference the path as provided. If you update the path, make the same changes on the sample the URLs are being referred to.

Query endpoint GET request by path

For this example we will show an IQA query that runs with no filters to be passed in. We will be making our call using the IQA path as found in the Summary tab of the query in IQA.

Path:

Professional

$/Scratch/Professional_Example_1

Enterprise

$/Scratch/Enterprise_Example_1

Query service GET by path URL:

Professional

https://{{URL}}/api/query?QueryName=$/Scratch/Professional_Example_1

Enterprise

https://{{URL}}/api/query?QueryName=$/Scratch/Enterprise_Example_1

Query endpoint GET request by version key

Another way that you can call this query is using the URL query param QueryDocumentVersionKey.

A consideration for this approach, rather than the QueryPath , is if the actual path to the query ever changes, the document version key will remain constant.

You can retrieve the QueryDocumentVersionKey by querying the DocumentSummary endpoint with the IQA path used in the previous example. The URL param Path is used when making a GET request on the DocumentSummaryService.

Document summary URL request by IQA path:

Professional

https://{{URL}}/api/documentsummary?Path=$/Scratch/Professional_Example_1

Enterprise

https://{{URL}}/api/documentsummary?Path=$/Scratch/Enterprise_Example_1

In the body of the response, the property DocumentVersionId is what will be used as your value for QueryDocumentVersionKey.

Sample DocumentVersionId:

c33d6136-c1fe-4d21-a6e5-feed421b7964

1002

Document summary endpoint GET request by Path response.

Query endpoint GET request by QueryDocumentVersionKey URL :

https://{{URL}}/api/query?QueryDocumentVersionKey=c33d6136-c1fe-4d21-a6e5-feed421b7964

Running queries with filters

The IQA endpoint, with several filters specified by the query, requires each filter to pass in the correct order as shown below.

Professional

https://{{URL}}/api/IQA?QueryName=$/Scratch/Professional_Example_2&Parameter=m&Parameter="Mrs.","Dr."

Enterprise

https://{{URL}}/api/IQA?QueryName=$/Scratch/Enterprise_Example_2&Parameter=m&
Parameter="Mrs.","Dr."

Note that the second filter allows multiples. In this instance we are saying with any Prefix that is Mrs. or Dr.

To run the same query with the Query endpoint, you need specify the filters as such. The order of the filters themselves is not taken to account.
You can also specify the offset and limit in any order along with the filters.

Professional

https://{{URL}}/api/query?QueryName=$/Scratch/Professional_Example_2&offset=10&limit=3&Prefix="Mrs.","Dr."&FirstName=m

Enterprise

https://{{URL}}/api/query?QueryName=$/Scratch/Enterprise_Example_2&offset=10&limit=3&Prefix="Mrs.","Dr."&FirstName=m

The Query endpoint also does not require you to specify the optional filters as seen below.

Professional

https://{{URL}}/api/query?QueryName=$/Scratch/Professional_Example_2&Prefix="Mrs.", "Dr."

Enterprise

https://{{URL}}/api/query?QueryName=$/Scratch/Enterprise_Example_2&Prefix="Mrs.", "Dr."

Running queries with URL Params

If the query is running with a filter dependency on a value that is found in the URL to the page in iMIS, you would pass the value with the URL Param name queryUrlParameters like the following:

Professional

https://{{URL}}/api/Query?QueryName=$/Scratch/Professional_Example_3&FirstName=A&prefix="Mr."&queryUrlParameters=LastName=Bond

Enterprise

https://{{URL}}/api/Query?QueryName=$/Scratch/Enterprise_Example_3&FirstName=A&prefix="Mr."&queryUrlParameters=LastName=Bond

With these filters, you are asking that the "FirstName" start with 'A', "Prefix" is equal to 'Mr.', and with a "LastName" equal to 'Bond', but "LastName" to be found in the URL. While putting the "LastName" in such a manner might not be practical, you could apply the same idea to a group, party, or organization ID that is in the URL.

Required filter validation enforcement

Be aware that required filters are now enforced with the Query end point. In example 3, the prefix is now required, and if not supplied you will receive a status 400 validation error. The error message will state which required parameter is missing. If you want to imply to the filter to match on, you can pass in empty quotes as follows:

Professional

https://{{URL}}/api/Query?QueryName=$/Scratch/Professional_Example_3&prefix=""&queryUrlParameters=LastName=Bond

Enterprise

https://{{URL}}/api/Query?QueryName=$/Scratch/Enterprise_Example_3&prefix=""&queryUrlParameters=LastName=Bond

Note above that the first name being optional was not passed in, expanding the results to only filter matches on "LastName". If you want all results for the "LastName" filter, you can also use the double quotes to bring back all results i.e. queryUrlParameters=LastName=.

The reason the "FirstName" filter has the flexibility to not be included and to bring all results is because of its optional status on the "prompt" property in the RISE>IQA Filters tab.
You can apply the same logic for consistency to "FirstName" as follows:

Professional

https://{{URL}}/api/Query?QueryName=$/Scratch/Professional_Example_3&FirstName=""&prefix=""&queryUrlParameters=LastName=""

Enterprise

https://{{URL}}/api/Query?QueryName=$/Scratch/Enterprise_Example_3&FirstName=""&prefix=""&queryUrlParameters=LastName=""

Essentially, you are returning the same results as the IQA used in example 1.

Newer features to be provided by the API

Earlier in this article it was pointed out the differences in the return response from the IQA and Query endpoint. That idea can be further simplified with adding additional headers when making a request to the Query endpoint.

If you add the header X-TypeNameHandling and set it to false, your JSON response object will only have the Items collection with your results and the page data properties.

{
    "Items": [
        {
            "Name": "(Erased) (Erased)",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "(Erased) (Erased)",
            "PrimaryOrganizationName": "(Erased)",
            "Title": ""
        },
        {
            "Name": "A.J. Ferraro",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Aadi Chopra",
            "PrimaryOrganizationName": "Versaton India",
            "Title": "Branch Manager"
        },
        {
            "Name": "Aanya Doshi",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Aaron Ketterling",
            "PrimaryOrganizationName": "Bureau of Meteorology - South Australia",
            "Title": ""
        },
        {
            "Name": "Aaron l. Whitaker",
            "PrimaryOrganizationName": "Association of Business Management Professionals",
            "Title": ""
        },
        {
            "Name": "Aaron Oakley",
            "PrimaryOrganizationName": "iMIS International",
            "Title": ""
        },
        {
            "Name": "Abbe Coroniti",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Abbey Atwell",
            "PrimaryOrganizationName": "Forms International",
            "Title": "Case Staff"
        },
        {
            "Name": "Abbott & Tearn",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "ABC Security Services",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Abigail Johnson",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Academy of Design Professionals",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Accessible Solutions Consulting",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Acme, Inc.",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Acorn Specialties",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Adriana Hunyadi",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Affinity Beacon",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Agasi Associates",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Agen Trust",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Agentur Larsen",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Ahearn & Taylor",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Aida Marcial",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Aida Navarro",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Aidan St. Charles",
            "PrimaryOrganizationName": "Versaton France",
            "Title": ""
        },
        {
            "Name": "AK Beridze",
            "PrimaryOrganizationName": "Quality Specialists",
            "Title": ""
        },
        {
            "Name": "Al Ferrari",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Al Soria",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Al Stahl",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Alan Cimorelli",
            "PrimaryOrganizationName": "R&V Stinson",
            "Title": "Chief Appraiser"
        },
        {
            "Name": "Alan Furumoto",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Alan Greve",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Alan Herman",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Alan J. Sipe",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Alan Josel",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Alan K. Sleeper",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Alan Powell",
            "PrimaryOrganizationName": "",
            "Title": "Student"
        },
        {
            "Name": "Albert J. Fox",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Alejandro Neves",
            "PrimaryOrganizationName": "Fabrica Sao Paulo",
            "Title": ""
        },
        {
            "Name": "ALEUM Credit Union",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Alex Morgan",
            "PrimaryOrganizationName": "Versaton US",
            "Title": "President"
        },
        {
            "Name": "Alex Nizankiewicz",
            "PrimaryOrganizationName": "Carles Company",
            "Title": "Operations Manager"
        },
        {
            "Name": "Alex P. Keaton",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Alfred Hospital",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Alfred O. Breinig",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Alice Powers",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Alicia Hughes",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Alison Rittenhouse",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Allen Tremblay",
            "PrimaryOrganizationName": "Overland Canada",
            "Title": ""
        },
        {
            "Name": "Allie Finnegan",
            "PrimaryOrganizationName": "EIF University",
            "Title": "International Student Counselor"
        },
        {
            "Name": "Allison Brown",
            "PrimaryOrganizationName": "Organisation Services",
            "Title": "Division Director"
        },
        {
            "Name": "Allison Foster-Hay",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Allison Rae",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Allison Randall",
            "PrimaryOrganizationName": "Central College",
            "Title": "Student"
        },
        {
            "Name": "Allyson Smith",
            "PrimaryOrganizationName": "Toronto Dance and Arts Council",
            "Title": "Board Member"
        },
        {
            "Name": "Alma Nelson",
            "PrimaryOrganizationName": "J&D Holley",
            "Title": ""
        },
        {
            "Name": "Alpha Services, Ltd.",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Alsbrook Products",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Amanda Halpenny",
            "PrimaryOrganizationName": "iMIS Foundation",
            "Title": ""
        },
        {
            "Name": "Amber Robinson",
            "PrimaryOrganizationName": "iMIS Foundation",
            "Title": ""
        },
        {
            "Name": "Amelia Starr",
            "PrimaryOrganizationName": "ALEUM Credit Union",
            "Title": ""
        },
        {
            "Name": "American Business Services",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Amin Al-Laty",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Amruta Bricks",
            "PrimaryOrganizationName": "iMIS Foundation",
            "Title": ""
        },
        {
            "Name": "Amy Marko",
            "PrimaryOrganizationName": "iMIS International",
            "Title": ""
        },
        {
            "Name": "Amy Shelanski",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Amy Stahlman",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "An C. Xian",
            "PrimaryOrganizationName": "Ridge Haven Sales",
            "Title": ""
        },
        {
            "Name": "Ananda Shala",
            "PrimaryOrganizationName": "Versaton India",
            "Title": "System Analyst"
        },
        {
            "Name": "Andrea Becker",
            "PrimaryOrganizationName": "Vintage Design - Anchorage, AK",
            "Title": ""
        },
        {
            "Name": "Andrea DiMedio",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Andrea Rockley",
            "PrimaryOrganizationName": "iMIS Foundation",
            "Title": "Graphic Designer"
        },
        {
            "Name": "Andrew Brindle",
            "PrimaryOrganizationName": "Davis Construction",
            "Title": "Operations Maanager"
        },
        {
            "Name": "Andrew D. Maunder",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Andrew G. Carter",
            "PrimaryOrganizationName": "Eagle Ltd.",
            "Title": ""
        },
        {
            "Name": "Andrew Humphries",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Andrew Hyde",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Andy L. Andrews",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Andy Pander",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Ang Peng",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Angela Armani",
            "PrimaryOrganizationName": "Image Digital",
            "Title": ""
        },
        {
            "Name": "Angela Cervantes",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Angela Clarke Noonan",
            "PrimaryOrganizationName": "GEO International",
            "Title": "Vice President European Operations"
        },
        {
            "Name": "Angier LTD",
            "PrimaryOrganizationName": null,
            "Title": null
        },
        {
            "Name": "Anita Block",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Ann C. Kreidle",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Ann Mazari",
            "PrimaryOrganizationName": "Paradise Bay Graphics",
            "Title": ""
        },
        {
            "Name": "Anna diSilva, CPA",
            "PrimaryOrganizationName": "Municipalities Management",
            "Title": "Accountant"
        },
        {
            "Name": "Annette Abbott",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Annette Abraminko",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Annie Gaebler",
            "PrimaryOrganizationName": "Creative Distractions",
            "Title": ""
        },
        {
            "Name": "Annika Jansen",
            "PrimaryOrganizationName": "Hemscott Services",
            "Title": "Director Of Development"
        },
        {
            "Name": "Anthony Clement",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Anthony Colibraro",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Anthony Dellia",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Anthony Lee Mizer",
            "PrimaryOrganizationName": "Pecan Street, Inc.",
            "Title": "Operations Manager"
        },
        {
            "Name": "Anthony Sciarrino",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Antonia Lafferty",
            "PrimaryOrganizationName": "",
            "Title": ""
        },
        {
            "Name": "Antonio B. Cortez",
            "PrimaryOrganizationName": "IMM South America",
            "Title": ""
        }
    ],
    "Offset": 0,
    "Limit": 100,
    "Count": 100,
    "TotalCount": 5563,
    "NextPageLink": null,
    "HasNext": true,
    "NextOffset": 100
}

A new feature that will soon be released provides the ability to choose to return only a subset of the information that the query could potentially return. If you do not want to create redundant queries, need only a few columns, or limit the size of the return response, you can add the X-FilterResponse header along with the column names from the query that you want to be returned. To return more than one column you would separate each with a comma. This can be used along with header X-TypeNameHandling.

949

X-TypeNameHandling and X-FilterResponse headers used in Query endpoint request