Boolean Search

In the boolean (advance) search, unlike simple search, you can customize your search by specifying search entities like - Job Profile, Company, Degree, etc. and apply boolean condition as necessary.

Boolean Search gives more flexibility in searching by specifying required/optional search parameters. You can pass multiple entities in the required/optional search parameters. Refer the below table (Entities for Boolean Search) for the entities that can be passed in the required/optional search parameters.
Note:
  • The AND condition is applied on the multiple values within the required parameter entities.
  • The OR condition is applied on the multiple values within the optional parameter entities.
  • By default weightage is distributed equally on the entities that are passed in the boolean search. You can also apply dynamic weightage on the entities of boolean search, refer Dynamic Weightage for more details. Refer the below table (Entities for Boolean Search) for the entities to which you can apply dynamic weightage.
Table 1. Entities for Boolean Search
Resume Dynamic Weightage Applicability JD Dynamic Weightage Applicability
CurrentJobProfile Yes JobProfileTitle
Note: You can use JobProfile as an alternative name
Yes
CurrentJobAlias Yes JobProfileFormattedName Yes
JobProfile Yes JobProfileAlias Yes
JobAlias Yes Organization Yes
Employer Yes RequiredSkillSet Yes
CurrentEmployer Yes PreferredSkillSet Yes
SkillWithoutExp Yes AliasSkillSet Yes
SkillAlias Yes Skill Yes
Skill Yes Qualification
Note: You can use Degree as an alternative name
Yes
HighestDegree Yes QualificationsPreferred Yes
Degree Yes JobLocationCity
Note: You can use City as an alternative name
Yes
City Yes JobLocationState
Note: You can use State as an alternative name
Yes
State Yes JobLocationCountry
Note: You can use Country as an alternative name
Yes
Country Yes MinimumYearsExperience Yes
TotalExperienceInYear Yes MaximumYearsExperience Yes
Category Yes Domains Yes
SubCategory Yes Languages No
LastInstitute No
Institute No
LanguageKnown No

API URL

The Boolean Search API uses the below URL:

https://searchengine.rchilli.com/RChilliSearchEngineAPI/RChilli/booleanSearch

API Endpoint

The Boolean Search API uses the below endpoint:

/booleanSearch

API Method

The Boolean Search API uses only POST method.

API Request Type

The Boolean Search API uses JSON request type.

API Request Headers

Header Data Type Description
Content-Type string Indicates the input type of the incoming request body. The only supported value is application/json.

API Parameters

The Boolean Search API requires the following parameters in the JSON request format:
Name Type Description Remarks
indexType String This is the type of the file, either Resume or JD Required
indexKey String Use your user key as shared by RChilli team Required
subUserId String Your user's unique_id
Note: Make sure that there is no space in your subuser_id
Optional
query String Put keywords for searching resume/JD Required
minScore Integer When minScore is passed, then only those documents are returned in the output whose score is equal to or more than the integer value passed in the minScore parameter. Optional
required Object This object contains the array of required entities and these entities are searched with AND condition. For example, in below required object, the default condition between PHP and JAVA is AND.

        "required": {
            "Skill": [
                "PHP",
                "JAVA"
            ],
Note: If multiValueOperator is passed in the required object, then the condition between the multiple fields of array are applied based on the boolean expression of multiValueOperator.
Required
optional Object This object contains the array of required entities and these entities are searched with OR condition. For example, in below optional object, the default condition between PHP and JAVA is OR.

        "optional": {
            "Skill": [
                "PHP",
                "JAVA"
            ],
Note: If multiValueOperator is passed in the optional object, then the condition between the multiple fields of array are applied based on the boolean expression of multiValueOperator.
Optional
multiValueOperator Boolean When the multiValueOperator is passed, then it creates a condition between the entities of array inside the required/optional object. Optional
customValue Object When you pass custom values during indexing, you can search based on these custom values in the search engine. For more details, see Custom Value and Parse and Index. Optional
includeSkillType Boolean This parameter when set to true then API response skillType along with the candidate's skills. For more details, refer Skill Type in API response. Optional
multiFieldOperator Boolean You can use either AND or OR boolean expression. This creates a condition between the parameters in the customValue object.
  • AND: When AND operator is used then all the parameters in the customValue object must be true.
  • OR: When OR operator is used then at least one parameter within the customValue object must be true.
Optional
showCustomValue Boolean This parameter when set to true then the matched customValue will be returned in the response. Optional
facet Object For more details on facets, click Facets Optional
sorting Object For more details on sorting, click Sorting Optional
filter Object For more details on filters, click Filter Optional
geoSearch Object For more details on geoSearch, click Geographical Search Optional
explainScore Boolean Default is false. If set true this returns details about how a document is searched. For more details, click Explain Score Optional
explainScoreType String Default is text. It can be set as JSON and work if ExplainScore is true. For more details, click Explain Score Optional
pageSize Integer Number of records return in one API call:
  • Default 50
  • maximum 500

Contact support@rchilli.com to update the limit.

For more details, click Pagination.
Optional
pageStart Integer Start index of record to return. Can be used for paging when multiple record are searched. Default is 0. For more details, click Pagination Optional
excludeDocumentIds Array Document Ids which you don't want to consider in search. For more details, refer Exclude Document ID. Optional
includeDocumentIds Array Document Ids which you want to consider in search. For more details, refer Include Document ID. Optional
fieldList String The fieldLists parameter is used in the Search and Match API request to customize the fields (entities) in the API response. For more details, refer Field Lists. Optional

JSON Request For Boolean Search - Resume

Note:
  1. In below sample request minScore is passed with integer value as 70, hence only those documents are returned in the output whose score is equal to or more than 70.
  2. In the case of Resume, Skill entity is used to search in the combination of SkillHaveExp and SkillWithoutExp entities.

  3. In the case of JD, Skill entity is used to search in the combination of RequiredSkillSet and PreferredSkillSet entities.

  4. The Qualification entity is used to search in the combination of QualificationsPreferred and QualificationsRequired entities.
{
    "index": {
        "indexType": "Resume",
        "indexKey": "your user key",
        "subUserId": "unique subuser id"
    },
    "query": {
        "required": {
            "Skill": [
                "PHP",
                "JAVA"
            ],
            "multiValueOperator": "AND"
        },
        "optional": {
            "JobProfile": [
                "Software Engineer"
            ]
        }
    },
    "minScore": 70,
    "geoSearch": {
        "longitude": "73.85",
        "latitude": "18.53",
        "radius": 30
    },
    "facet": {
        "fields": [
            "Skill",
            "CurrentJobProfile",
            "CurrentEmployer"
        ]
    },
    "pageSize": 10,
    "pageStart": 0,
    "explainScore": true
}

JSON Response For Boolean Search - Resume

{
    "count": 241,
    "pageStart": 0,
    "pageSize": 25,
    "records": [
        {
            "score": 76.0,
            "CurrentEmployer": "NUCSOFT Ltd",
            "TotalExperienceInYear": 1.7,
            "CurrentJobProfile": "SOFTWARE ENGINEER",
            "State": "Maharashtra",
            "FullName": "Abhishek Vijay Borkar",
            "Country": "India",
            "id": "1912010352261226",
            "City": "Mumbai"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "ModeFinServer Pvt. Ltd",
            "TotalExperienceInYear": 5.6,
            "CurrentJobProfile": "Software Engineer",
            "FullName": "TULASI VARA PRASAD CHENNAMSETTI",
            "id": "1911281017271127"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "Tech Mahindra",
            "TotalExperienceInYear": 5.7,
            "CurrentJobProfile": "Software Engineer",
            "FullName": "SNEHA KEMBHAVI",
            "id": "1911281020291129"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "Tata Consultancy Services TCS",
            "TotalExperienceInYear": 4.4,
            "CurrentJobProfile": "Software Engineer",
            "State": "CA",
            "FullName": "ANKUSH GUMBER",
            "Country": "USA",
            "id": "1911281025121112",
            "City": "Los Angeles"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "Persistent Systems Limited",
            "TotalExperienceInYear": 3.11,
            "CurrentJobProfile": "Software Engineer",
            "FullName": "Mala Shanbhag",
            "id": "1911281030281128"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "Sankhya InfoTech Ltd",
            "TotalExperienceInYear": 5.1,
            "CurrentJobProfile": "Software Engineer",
            "FullName": "Gummadi Durga Prasad",
            "id": "1911281053221122"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "NetApp",
            "TotalExperienceInYear": 5.7,
            "CurrentJobProfile": "Software Engineer",
            "State": "NC",
            "FullName": "Amit Borulkar",
            "Country": "USA",
            "id": "1911281109531153",
            "City": "Morrisville"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "CricbuzzBackend Bangalore",
            "TotalExperienceInYear": 5.8,
            "CurrentJobProfile": "Software Engineer",
            "State": "Karnataka",
            "FullName": "AkshayJha",
            "Country": "India",
            "id": "1911281136421142",
            "City": "Bangalore"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "PeopleStrong",
            "TotalExperienceInYear": 7.4,
            "CurrentJobProfile": "Software Engineer",
            "FullName": "Raghvendra Mishra",
            "id": "191128115000110",
            "City": "Allahabad"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "Y3 Technologies",
            "CurrentJobProfile": "Software Engineer",
            "FullName": "Ixwaku Ranjan Sharma",
            "id": "191128115205115",
            "City": "Kanpur"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "Orange Business Services",
            "TotalExperienceInYear": 8.3,
            "CurrentJobProfile": "Software Engineer",
            "State": "Rajasthan",
            "FullName": "HEMANT SAIN",
            "Country": "India",
            "id": "191128122206116",
            "City": "Alwar"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "Tech Mahindra",
            "TotalExperienceInYear": 2.1,
            "CurrentJobProfile": "Software Engineer",
            "State": "CA",
            "FullName": "ANUSHA BILAKANTI",
            "Country": "USA",
            "id": "1911281235561156",
            "City": "Los Angeles"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "Rediff.com",
            "TotalExperienceInYear": 5.0,
            "CurrentJobProfile": "Software Engineer",
            "FullName": "Akshay Hazari",
            "id": "191128125000110"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "Intern@HPE Security",
            "TotalExperienceInYear": 3.1,
            "CurrentJobProfile": "Software Engineer",
            "State": "AZ",
            "FullName": "YOGESH PANDEY",
            "Country": "USA",
            "id": "191128010301111",
            "City": "Tempe"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "HSBC Software Development",
            "TotalExperienceInYear": 2.1,
            "CurrentJobProfile": "SOFTWARE ENGINEER",
            "State": "Arizona",
            "FullName": "AAAMIR SSHAIKH",
            "Country": "USA",
            "id": "1911280110581158",
            "City": "Tempe"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "Cerner Corporation",
            "TotalExperienceInYear": 7.5,
            "CurrentJobProfile": "Software Engineer",
            "State": "KS",
            "FullName": "Santosh Desani",
            "Country": "U.S.",
            "id": "1911280116291129",
            "City": "Overland Park"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "Yashitechnologies",
            "TotalExperienceInYear": 4.7,
            "CurrentJobProfile": "Software Engineer",
            "FullName": "KUSUMA DEVI NAIDU",
            "id": "1911280222341134"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "Atos Origin Ltd",
            "TotalExperienceInYear": 15.2,
            "CurrentJobProfile": "Software Engineer",
            "State": "Maharashtra",
            "FullName": "Aashish Sinha",
            "Country": "India",
            "id": "1911280234101110",
            "City": "Mumbai"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "SAP LABS INDIA",
            "TotalExperienceInYear": 5.5,
            "CurrentJobProfile": "Software Engineer",
            "State": "Karnataka",
            "FullName": "MOHAMMED ASHRAF",
            "Country": "India",
            "id": "1911280239331133",
            "City": "Bangalore"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "The Ladders Inc",
            "TotalExperienceInYear": 10.9,
            "CurrentJobProfile": "Software Engineer",
            "FullName": "ANITHA SUBRAMANIAN",
            "id": "1911280244301130"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "TESCO Bengaluru",
            "TotalExperienceInYear": 1.2,
            "CurrentJobProfile": "Software Engineer",
            "State": "Karnataka",
            "FullName": "Dhananjay R B",
            "Country": "India",
            "id": "1911280254151115",
            "City": "Bangalore"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "HCL",
            "TotalExperienceInYear": 6.6,
            "CurrentJobProfile": "Software engineer",
            "FullName": "CHANTI K",
            "id": "1911280257191119"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "Liftoff LLC",
            "TotalExperienceInYear": 5.9,
            "CurrentJobProfile": "Software Engineer",
            "FullName": "HARSHA SAGAR K M",
            "id": "1911280607191119"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "PayU Payments Private Ltd",
            "TotalExperienceInYear": 6.6,
            "CurrentJobProfile": "Software Engineer",
            "FullName": "Ankit Rustagi",
            "id": "1911280657161116",
            "City": "Ghaziabad"
        },
        {
            "score": 75.0,
            "CurrentEmployer": "FUSION INFORMATICS TECHNOLOGY PVT LTD",
            "TotalExperienceInYear": 10.7,
            "CurrentJobProfile": "SOFTWARE ENGINEER",
            "State": "Gujarat",
            "FullName": "Majidkhan Imtiyazkhan Pathan",
            "Country": "India",
            "id": "1911280725501150",
            "City": "Ahmedabad"
        }
    ]
}

JSON Request For Boolean Search - JD

{
    "index": {
        "indexType": "JD",
        "indexKey": "your user key"
    },
    "query": {
        "required": {
            "Skill": [
                "Java",
                "Javascript"
            ],
            "multiValueOperator": "OR"
        }
    },
    "filter": {
        "JobProfile": [
            "Software Developer",
            "Software Engineer",
            "Php Developer"
        ]
    },
    "facet": {
        "fields": [
            "JobProfile",
            "Employer"
        ],
        "limit": 10
    },
    "pageSize": 50,
    "pageStart": 0,
    "explainScore": true,
    "explainScoreType": "json",
    "duplicateFields": true
}

JSON Response For Boolean Search - JD

{
    "count": 109,
    "pageStart": 0,
    "pageSize": 50,
    "records": [
        {
            "id": "b52be700-a164-4655-807a-e9dc4a1a22df",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "BCA",
                "BE/B.Tech",
                "B.E",
                "B.Tech",
                "MCA"
            ],
            "Employer": "Catbook India",
            "City": "Canterbury",
            "Country": "UK",
            "State": "England"
        },
        {
            "id": "68632132-227b-4190-8520-72e6e6af0fa0",
            "score": 100.0,
            "JobProfile": "PHP Developer",
            "Degree": [
                "B.E",
                "B.Tech",
                "BCA",
                "MCA"
            ],
            "Employer": "UNIMAX",
            "City": "Denver",
            "Country": "USA",
            "State": "Colorado"
        },
        {
            "id": "f2d52a78-d596-45c4-92af-f64a52942ca9",
            "score": 100.0,
            "JobProfile": "Software Engineer",
            "Degree": [
                "Bachelors degree",
                "Degree in computer science",
                "Bachelor Of Technology",
                "B.Tech",
                "B.E",
                "Masters in Technology",
                "M.Tech",
                "M.E",
                "M.Sc"
            ],
            "Employer": "ANPI India Research and Development Private Limited",
            "City": "Munster"
        },
        {
            "id": "e1a65420-8c4d-4646-b529-56101b8539cc",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "Bachelor Of Computer Application",
                "B.C.A",
                "Bachelor Of Technology",
                "B.Tech",
                "B.E",
                "Bachelor of Science",
                "B.Sc",
                "Master in Computer Application",
                "M.C.A",
                "Masters in Technology",
                "M.Tech",
                "M.E",
                "M.Sc"
            ],
            "Employer": "Axs Solutions And Consulting Private Limited",
            "City": "Munster"
        },
        {
            "id": "69ff4e73-016b-44bb-8427-256984856540",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "Bachelor Of Computer Application",
                "B.C.A"
            ],
            "Employer": "Muskaan Parveen ( Proprietor Of Muskan Industry",
            "City": "Morebath",
            "Country": "UK",
            "State": "England"
        },
        {
            "id": "f7c6032e-d229-454c-b253-5c3c8956b3c3",
            "score": 100.0,
            "JobProfile": "Software Engineer",
            "Employer": "Muskaan Parveen ( Proprietor Of Muskan Industry",
            "City": "Durham",
            "Country": "United States",
            "State": "North Carolina"
        },
        {
            "id": "27fab95f-43b1-4872-a234-3ddabf097d6c",
            "score": 100.0,
            "JobProfile": "Php developer",
            "Degree": [
                "Bachelor Of Technology",
                "B.Tech",
                "B.E"
            ],
            "Employer": "KUYA TECHNOLOGIES PRIVATE LIMITED",
            "City": "Hollywood",
            "Country": "United States of America",
            "State": "California"
        },
        {
            "id": "ec5017ea-7a22-44a4-a0e8-48ca89a7ab99",
            "score": 100.0,
            "JobProfile": "Php developer",
            "Degree": [
                "Bachelor of Arts ( B.A",
                "Bachelor of Architecture",
                "B.Arch",
                "Bachelor of Business Administration",
                "B.B.A",
                "Bachelor Of Computer Application",
                "B.C.A",
                "Bachelor of Commerce",
                "B.Com",
                "Bachelor Of Technology",
                "B.Tech",
                "B.E",
                "Bachelor of Science",
                "B.Sc",
                "Masters in Arts",
                "M.A",
                "Master OF Business Administration",
                "M.B.A",
                "Master in Computer Application",
                "M.C.A",
                "Master of Commerce",
                "M.Com",
                "Master of Education",
                "M.Ed",
                "Masters in Technology",
                "M.Tech",
                "M.E",
                "M.Sc"
            ],
            "Employer": "MOBIVERSA PRIVATE LIMITED",
            "City": "Caddo Mills",
            "Country": "United States of America",
            "State": "Texas"
        },
        {
            "id": "13fb3e06-6829-4152-9ee1-6a5119d6709b",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "Bachelor Of Technology",
                "B.Tech",
                "B.E"
            ],
            "Employer": "Eminence core solutions LLP",
            "City": "Phoenix",
            "Country": "United States of America",
            "State": "Arizona"
        },
        {
            "id": "e10c7650-2dd6-4a61-9ca0-b492cd3cc9bf",
            "score": 100.0,
            "JobProfile": "PHP Developer",
            "Degree": [
                "Bachelor Of Computer Application",
                "B.C.A",
                "Bachelor Of Technology",
                "B.Tech",
                "B.E",
                "Bachelor of Science",
                "B.Sc",
                "Master in Computer Application",
                "M.C.A",
                "Post Graduate Diploma in Computer Applications",
                "PGDCA"
            ],
            "Employer": "Howdy Ventures Private Limited",
            "City": "Wharton",
            "Country": "United States of America",
            "State": "New Jersey"
        },
        {
            "id": "0fc2948a-7c09-4189-8a5b-8da09e4c4b53",
            "score": 100.0,
            "JobProfile": "PHP Developer",
            "Employer": "Spot It Solutions Private Limited",
            "City": "County Tipperary",
            "Country": "Ireland",
            "State": "Munster"
        },
        {
            "id": "49c3be93-07d5-4278-958d-03c5ea1e13a0",
            "score": 100.0,
            "JobProfile": "Software Engineer",
            "Degree": [
                "Bachelor Of Technology",
                "B.Tech",
                "B.E",
                "Master in Computer Application",
                "M.C.A"
            ],
            "Employer": "Star Technology",
            "City": "Andalucia"
        },
        {
            "id": "41e336c4-ba56-44b3-bfde-af8b8338c3f8",
            "score": 100.0,
            "JobProfile": "Software Engineer",
            "Degree": [
                "B.E",
                "B.Tech",
                "M.E",
                "M.Tech",
                "Bachelor Of Computer Application",
                "B.C.A"
            ],
            "Employer": "Sonu Kumar ( Proprietor Of Bicano Tech Silca",
            "City": "Andalucia"
        },
        {
            "id": "9cd2f273-3efa-4b86-8e44-cd641dc4ab08",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "Bachelors Degree in Computer Science",
                "Bachelors"
            ],
            "Employer": "Xelure",
            "City": "Goiania",
            "Country": "Brazil",
            "State": "Goias"
        },
        {
            "id": "b8fd3832-2368-4ba2-a51c-d92bd936cce4",
            "score": 100.0,
            "JobProfile": "SOFTWARE DEVELOPER",
            "Degree": [
                "MBA"
            ],
            "Employer": "IHS MARKIT",
            "City": "Gurgaon"
        },
        {
            "id": "cbf1cd72-c61c-4dd1-a90d-e5d9bbb18e0a",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "BSS"
            ],
            "Employer": "System International",
            "City": "Bengaluru"
        },
        {
            "id": "fad40b3c-b3df-4a82-a377-a99fdb2d2a25",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "BCA",
                "B.Sc",
                "B.Tech/B.E",
                "M.Sc",
                "MCA",
                "M.Tech",
                "Doctorate"
            ],
            "Employer": "EQ Connect",
            "City": "Indore"
        },
        {
            "id": "d61f383d-76d4-442d-ae96-902cb0ee0f12",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "BCA",
                "B.Tech/B.E",
                "B.Sc",
                "Doctorate"
            ],
            "Employer": "Novelworx india Pvt ltd",
            "City": "Chennai"
        },
        {
            "id": "1f66584f-9c3a-4d1c-87f0-54c108dcf24c",
            "score": 100.0,
            "JobProfile": "Software Engineer",
            "Degree": [
                "B.A",
                "BCA",
                "B.Tech/B.E",
                "MCA"
            ],
            "Employer": "DALVKOT UTILITY ENTERPISES PRIVATE LIMITED",
            "City": "Bengaluru"
        },
        {
            "id": "b9167e30-c06f-472c-9424-b064f5856a61",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "BSc degree",
                "Bachelors",
                "B.Sc",
                "B.Tech/B.E",
                "BCA",
                "M.Tech",
                "M.Sc",
                "MCA",
                "Doctorate"
            ],
            "Employer": "Right Human Skills & Resources Pvt. Ltd",
            "City": "Kochi"
        },
        {
            "id": "7a111d29-10e5-460a-bc3b-0e6b4a9d03fc",
            "score": 100.0,
            "JobProfile": "PHP Developer",
            "Employer": "Atos Syntel Inc",
            "City": "Chicago",
            "State": "IL"
        },
        {
            "id": "799ad2d7-6441-4913-92a3-f6dbdd46ad56",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "Post Graduation",
                "Doctorate"
            ],
            "Employer": "Synmac Consultants Private Limited",
            "City": "Chennai"
        },
        {
            "id": "79794575-5476-4c4f-b4a7-42941e57d410",
            "score": 100.0,
            "JobProfile": "Software Engineer",
            "Degree": [
                "BMM"
            ],
            "Employer": "QDStaff",
            "City": "Deerfield Beach",
            "State": "FL"
        },
        {
            "id": "a127a2fe-a9f1-4475-8c75-175485470642",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "BE/B.Tech",
                "MCA"
            ],
            "Employer": "Synechron Technologies Pvt Ltd",
            "City": "Irvine",
            "State": "CA"
        },
        {
            "id": "c3fa1f84-d94e-4982-993b-91fddd3d296f",
            "score": 100.0,
            "JobProfile": "Software Engineer",
            "Degree": [
                "Studium der Informatik"
            ],
            "Employer": "GBTEC Software AG",
            "City": "Bochum"
        },
        {
            "id": "c650baf6-c592-4dd2-894d-e78f6c765439",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "Post Graduation",
                "Doctorate"
            ],
            "Employer": "Ondot Systems India Pvt Ltd",
            "City": "Chennai"
        },
        {
            "id": "9060c01d-fdff-49a7-9f2d-e0938479386d",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "M.Tech",
                "B.Tech"
            ],
            "Employer": "Blue Mount Immigration Consulting Pvt Ltd",
            "City": "Pune",
            "Country": "India",
            "State": "Maharashtra"
        },
        {
            "id": "86f201ab-c14d-439c-870a-14255205b036",
            "score": 100.0,
            "JobProfile": "Software Engineer",
            "Degree": [
                "MS degree",
                "BS"
            ],
            "Employer": "Thinkbyte Consulting, Inc",
            "City": "Sunnyvale",
            "Country": "United States of America",
            "State": "CA"
        },
        {
            "id": "53b0a0ab-98ce-4377-b97d-4dfbcb585a32",
            "score": 100.0,
            "JobProfile": "Software Engineer",
            "Degree": [
                "Bachelors degree in Computer Science"
            ],
            "Employer": "HPOne",
            "City": "Trumbull",
            "State": "CT"
        },
        {
            "id": "0d239c6d-0283-42a7-80d1-4fb45fdaf047",
            "score": 100.0,
            "JobProfile": "PHP Developer",
            "Degree": [
                "Post Graduation"
            ],
            "Employer": "Nowgray IT Services Pvt Ltd",
            "City": "Guinea"
        },
        {
            "id": "d509d046-8ae6-4ada-9713-6cb3920bb0b2",
            "score": 100.0,
            "JobProfile": "Software Engineer",
            "Degree": [
                "Bachelor Of Technology",
                "B.Tech",
                "B.E"
            ],
            "Employer": "Sonu Kumar ( Proprietor Of Bicano Tech Silca",
            "City": "Villaviciosa",
            "Country": "Spain",
            "State": "Asturias"
        },
        {
            "id": "f9828ca9-ece4-4e99-b0ee-8da80b57714e",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "Bachelor Of Computer Application",
                "B.C.A"
            ],
            "Employer": "Hiren B",
            "City": "Mataro",
            "Country": "Spain",
            "State": "Catalonia"
        },
        {
            "id": "562e3099-78cd-4e2e-b66b-ad0d287209bd",
            "score": 100.0,
            "JobProfile": "Software Engineer",
            "Degree": [
                "B.E",
                "B.Tech",
                "M.E",
                "M.Tech",
                "Bachelor Of Computer Application",
                "B.C.A"
            ],
            "Employer": "Star Technology",
            "City": "Andalucia"
        },
        {
            "id": "8cea7287-9f4e-4336-9f9e-0152ff2c8276",
            "score": 100.0,
            "JobProfile": "Php developer",
            "Degree": [
                "Master in Computer Application",
                "M.C.A"
            ],
            "Employer": "Kavya Management Services",
            "City": "Andalucia"
        },
        {
            "id": "d20fe865-69cf-4a13-9582-b653b2d153c4",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "Bachelor Of Technology",
                "B.Tech",
                "B.E"
            ],
            "Employer": "Sonu Kumar ( Proprietor Of Bicano Tech Silca",
            "City": "Sao Cristovao",
            "Country": "Brazil",
            "State": "Sergipe"
        },
        {
            "id": "c2cd1f5a-d276-424f-9665-1235c46f5cff",
            "score": 100.0,
            "JobProfile": "Php developer",
            "Degree": [
                "Bachelor Of Technology",
                "B.Tech",
                "B.E"
            ],
            "Employer": "Prameya education pvt. ltd",
            "City": "Juazeiro do Norte",
            "Country": "Brazil",
            "State": "Ceara"
        },
        {
            "id": "d2259695-85b7-4f7a-84ee-cf2ca6d62b37",
            "score": 100.0,
            "JobProfile": "Php developer",
            "Degree": [
                "Bachelor Of Technology",
                "B.Tech",
                "B.E"
            ],
            "Employer": "Yannick Tech Systems Private Limited",
            "City": "Conselheiro Lafaiete",
            "Country": "Brazil",
            "State": "Minas Gerais"
        },
        {
            "id": "14becbae-ca12-47bd-b5a7-e521b2ff8890",
            "score": 100.0,
            "JobProfile": "PHP Developer",
            "Degree": [
                "BCA",
                "BTech",
                "MCA",
                "Bachelor Of Computer Application",
                "B.C.A",
                "Bachelor Of Technology",
                "B.Tech",
                "B.E",
                "Master in Computer Application",
                "M.C.A"
            ],
            "Employer": "Unimax Placement Consultant",
            "City": "Diamantina",
            "Country": "Brazil",
            "State": "Minas Gerais"
        },
        {
            "id": "1095be29-8f90-4f92-b3f4-95e8b83de665",
            "score": 100.0,
            "JobProfile": "Php developer",
            "Degree": [
                "Bachelor Of Computer Application",
                "B.C.A",
                "Bachelor Of Technology",
                "B.Tech",
                "B.E",
                "Master in Computer Application",
                "M.C.A",
                "Master of Education",
                "M.Ed",
                "Masters in Technology",
                "M.Tech",
                "M.E",
                "M.Sc",
                "Post Graduate Diploma in Computer Applications",
                "PGDCA"
            ],
            "Employer": "Sparkle Infotech",
            "City": "Juiz de Fora",
            "Country": "Brazil",
            "State": "Minas Gerais"
        },
        {
            "id": "bd777691-50f7-478b-a28d-6bd0331857b2",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "Degree in Computer Science",
                "Bachelor Of Computer Application",
                "B.C.A",
                "Bachelor Of Technology",
                "B.Tech",
                "B.E"
            ],
            "Employer": "Blitzpath Innovations Private Limited",
            "City": "Jaboatao",
            "Country": "Brazil",
            "State": "Pernambuco"
        },
        {
            "id": "ac875bab-da05-4871-9d11-05b3cad24f3b",
            "score": 100.0,
            "JobProfile": "PHP Developer",
            "Employer": "Spot It Solutions Private Limited",
            "City": "Oxford",
            "Country": "UK",
            "State": "England"
        },
        {
            "id": "94a1ca37-56e4-4273-b6d6-9afac01113f8",
            "score": 100.0,
            "JobProfile": "Php Developer",
            "Degree": [
                "Bachelor Of Computer Application",
                "B.C.A",
                "Bachelor Of Technology",
                "B.Tech",
                "B.E",
                "Master in Computer Application",
                "M.C.A",
                "Masters in Technology",
                "M.Tech",
                "M.E",
                "M.Sc"
            ],
            "Employer": "Ezdat Technology Private Limited",
            "City": "Portland",
            "Country": "United States",
            "State": "Ohio"
        },
        {
            "id": "246e2420-d8ad-413b-971b-7027595839b3",
            "score": 100.0,
            "JobProfile": "Software Engineer",
            "Degree": [
                "B.E",
                "B.Tech"
            ],
            "Employer": "Sprin Technosys Private Limited",
            "City": "Santo Andre",
            "Country": "Brazil",
            "State": "Sao Paulo"
        },
        {
            "id": "9745d936-fecd-4543-8db9-56fcef7586f0",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "B.Tech",
                "MCA",
                "BCA",
                "B.E"
            ],
            "Employer": "Ariadne Software Private Limited",
            "City": "Newbridge"
        },
        {
            "id": "b0ef4379-5dc1-45c4-8008-f77add83f05a",
            "score": 100.0,
            "JobProfile": "PHP Developer",
            "Employer": "Spot It Solutions Private Limited",
            "City": "Shannon"
        },
        {
            "id": "7ddc5063-3441-4b27-b71f-1ac77ebb939e",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "Bachelor Of Technology",
                "B.Tech",
                "B.E",
                "Master in Computer Application",
                "M.C.A",
                "Masters in Technology",
                "M.Tech",
                "M.E",
                "M.Sc"
            ],
            "Employer": "Laurus Infosystems ( India ) Pvt Ltd",
            "City": "Rosemont",
            "Country": "United States of America",
            "State": "Illinois"
        },
        {
            "id": "ddb0b346-288f-4678-8e38-2d4275a3314e",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Employer": "Infoway",
            "City": "Chennai"
        },
        {
            "id": "f38f4c04-56ad-400c-aa3e-2c9171c08463",
            "score": 100.0,
            "JobProfile": "Software Engineer",
            "Degree": [
                "Bachelors degree"
            ],
            "Employer": "Penske",
            "City": "Tampa",
            "Country": "United States of America",
            "State": "FL"
        },
        {
            "id": "80771338-c0b1-495f-b6d3-b69b6b25da0e",
            "score": 100.0,
            "JobProfile": "Software Engineer",
            "Degree": [
                "BA",
                "B.E",
                "MSC"
            ],
            "Employer": "BA Continuum India Pvt. Ltd",
            "City": "Hyderabad"
        },
        {
            "id": "cf02d461-4b70-4d7e-9136-78b6ce2fdfd2",
            "score": 100.0,
            "JobProfile": "Software Developer",
            "Degree": [
                "B.Tech/B.E"
            ],
            "Employer": "CIEL HR Services Pvt Ltd",
            "City": "Gurgaon"
        }
    ],
    "facet": {
        "JobProfile": [
            {
                "value": "Software Developer",
                "count": 49
            },
            {
                "value": "Software Engineer",
                "count": 35
            },
            {
                "value": "Php Developer",
                "count": 25
            }
        ],
        "Employer": [
            {
                "value": "Sonu Kumar ( Proprietor Of Bicano Tech Silca",
                "count": 4
            },
            {
                "value": "Synechron Technologies Pvt Ltd",
                "count": 4
            },
            {
                "value": "Minda Solution Tech Mark",
                "count": 3
            },
            {
                "value": "Orcapod Consulting Services Private Limited",
                "count": 3
            },
            {
                "value": "Spot It Solutions Private Limited",
                "count": 3
            },
            {
                "value": "Sprin Technosys Private Limited",
                "count": 3
            },
            {
                "value": "Star Technology",
                "count": 3
            },
            {
                "value": "Hiren B",
                "count": 2
            },
            {
                "value": "Muskaan Parveen ( Proprietor Of Muskan Industry",
                "count": 2
            },
            {
                "value": "Penske",
                "count": 2
            }
        ]
    },
    "explainScore": [
        {
            "id": "7ddc5063-3441-4b27-b71f-1ac77ebb939e",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "b8fd3832-2368-4ba2-a51c-d92bd936cce4",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "cbf1cd72-c61c-4dd1-a90d-e5d9bbb18e0a",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "d2259695-85b7-4f7a-84ee-cf2ca6d62b37",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "68632132-227b-4190-8520-72e6e6af0fa0",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "0fc2948a-7c09-4189-8a5b-8da09e4c4b53",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "c2cd1f5a-d276-424f-9665-1235c46f5cff",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "b0ef4379-5dc1-45c4-8008-f77add83f05a",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "ec5017ea-7a22-44a4-a0e8-48ca89a7ab99",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "bd777691-50f7-478b-a28d-6bd0331857b2",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "80771338-c0b1-495f-b6d3-b69b6b25da0e",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "53b0a0ab-98ce-4377-b97d-4dfbcb585a32",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "49c3be93-07d5-4278-958d-03c5ea1e13a0",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "799ad2d7-6441-4913-92a3-f6dbdd46ad56",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "94a1ca37-56e4-4273-b6d6-9afac01113f8",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "69ff4e73-016b-44bb-8427-256984856540",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "e10c7650-2dd6-4a61-9ca0-b492cd3cc9bf",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "f9828ca9-ece4-4e99-b0ee-8da80b57714e",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "f7c6032e-d229-454c-b253-5c3c8956b3c3",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "d509d046-8ae6-4ada-9713-6cb3920bb0b2",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "b52be700-a164-4655-807a-e9dc4a1a22df",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "d20fe865-69cf-4a13-9582-b653b2d153c4",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "e1a65420-8c4d-4646-b529-56101b8539cc",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "246e2420-d8ad-413b-971b-7027595839b3",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "14becbae-ca12-47bd-b5a7-e521b2ff8890",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "a127a2fe-a9f1-4475-8c75-175485470642",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "27fab95f-43b1-4872-a234-3ddabf097d6c",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "f2d52a78-d596-45c4-92af-f64a52942ca9",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "c3fa1f84-d94e-4982-993b-91fddd3d296f",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "7a111d29-10e5-460a-bc3b-0e6b4a9d03fc",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "1f66584f-9c3a-4d1c-87f0-54c108dcf24c",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "d61f383d-76d4-442d-ae96-902cb0ee0f12",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "13fb3e06-6829-4152-9ee1-6a5119d6709b",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "ac875bab-da05-4871-9d11-05b3cad24f3b",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "f38f4c04-56ad-400c-aa3e-2c9171c08463",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "8cea7287-9f4e-4336-9f9e-0152ff2c8276",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "9cd2f273-3efa-4b86-8e44-cd641dc4ab08",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "1095be29-8f90-4f92-b3f4-95e8b83de665",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "41e336c4-ba56-44b3-bfde-af8b8338c3f8",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "562e3099-78cd-4e2e-b66b-ad0d287209bd",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "9745d936-fecd-4543-8db9-56fcef7586f0",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "fad40b3c-b3df-4a82-a377-a99fdb2d2a25",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "9060c01d-fdff-49a7-9f2d-e0938479386d",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "86f201ab-c14d-439c-870a-14255205b036",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "0d239c6d-0283-42a7-80d1-4fb45fdaf047",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "79794575-5476-4c4f-b4a7-42941e57d410",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "c650baf6-c592-4dd2-894d-e78f6c765439",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "ddb0b346-288f-4678-8e38-2d4275a3314e",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "cf02d461-4b70-4d7e-9136-78b6ce2fdfd2",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        },
        {
            "id": "b9167e30-c06f-472c-9424-b064f5856a61",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 100.0,
                            "maxScore": 100.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR javascript"
                        }
                    ]
                }
            }
        }
    ]
}

Sample JSON Request with Dynamic weightage - Resume

{
    "index": {
        "indexType": "JD",
        "indexKey": "Use Your Userkey"
    },
    "query": {
        "required": {
            "JobProfile": [
                "Java Developer"
            ],
            "Skill": [
                "Java"
            ]
        }
    },
    "jdWeightage": [
        {
            "Parent": "JobProfile",
            "Weight": 5,
            "Child": {
                "JobProfileTitle": 100,
                "JobProfile": 80,
                "JobProfileAlias": 60
            }
        },
        {
            "Parent": "Organization",
            "Weight": 0
        },
        {
            "Parent": "Skill",
            "Weight": 95,
            "Child": {
                "RequiredSkillSet": 100,
                "PreferredSkillSet": 80,
                "AliasSkillSet": 60,
                "JobProfileRelatedSkills": 80
            }
        },
        {
            "Parent": "Degree",
            "Weight": 0,
            "Child": {
                "QualificationsRequired": 100,
                "QualificationsPreferred": 80
            }
        },
        {
            "Parent": "ExperienceRequired",
            "Weight": 0,
            "Child": {
                "MinimumYearsExperience": 100,
                "MaximumYearsExperience": 100
            }
        },
        {
            "Parent": "JobLocationCity",
            "Weight": 0
        },
        {
            "Parent": "JobLocationState",
            "Weight": 0
        },
        {
            "Parent": "JobLocationCountry",
            "Weight": 0
        },
        {
            "Parent": "IndustryType",
            "Weight": 0
        },
        {
            "Parent": "Domains",
            "Weight": 0
        }
    ],
    "geoSearchScore": 30,
    "pageSize": 100,
    "pageStart": 0,
    "explainScore": true,
    "explainScoreType": "json"
}

Sample JSON Response with Dynamic weightage - Resume

{
    "count": 1,
    "pageStart": 0,
    "pageSize": 100,
    "records": [
        {
            "id": "4",
            "score": 100.0,
            "JobProfile": "Java Developer",
            "Degree": [
                "Bachelor"
            ],
            "Employer": "AcmeMinds",
            "City": "Chandigarh",
            "Country": "India",
            "SubUserId": "manisha",
            "State": "Chandigarh"
        }
    ],
    "explainScore": [
        {
            "id": "4",
            "SubUserId": "manisha",
            "explaination": {
                "score": 100.0,
                "maxScore": 100.0,
                "BooleanSearch": {
                    "score": 100.0,
                    "maxScore": 100.0,
                    "detailScore": [
                        {
                            "score": 95.0,
                            "maxScore": 95.0,
                            "entity": "SkillSet",
                            "condition": "Required",
                            "value": "java OR java"
                        },
                        {
                            "score": 5.0,
                            "maxScore": 5.0,
                            "entity": "JobProfileTitle",
                            "condition": "Required",
                            "value": "java developer"
                        }
                    ]
                }
            }
        }
    ]
}