# Search Response Schema

Explanation of Key Fields

* **criteria**: Contains the phone number used in the verification query.
* **type**: Indicates the type of lookup.
* **status**: Shows the completion status of the request.
* **verifier**: Nested object providing critical information:
  * **finalClassification**: Specifies if the phone number is associated with a real person.
  * **score**: The AI-generated confidence score for the classification, with values between 0 and 1.

```
{
  "type": "object",
  "properties": {
    "criteria": {
      "type": "string",
      "description": "The phone number that was searched, including the country code."
    },
    "type": {
      "type": "string",
      "description": "The type of lookup performed, e.g., 'real_phone'."
    },
    "status": {
      "type": "string",
      "description": "The current status of the verification request, e.g., 'finished'."
    },
    "verifier": {
      "type": "object",
      "properties": {
        "finalClassification": {
          "type": "string",
          "description": "Classification result indicating if the phone belongs to a 'Real Person' or not."
        },
        "score": {
          "type": "number",
          "format": "float",
          "description": "A confidence score indicating the likelihood of the classification being accurate."
        }
      },
      "required": ["finalClassification", "score"],
      "description": "The verification details, including classification and confidence score."
    }
  },
  "required": ["criteria", "type", "status", "verifier"],
  "additionalProperties": false
}

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://api-docs.espysys.com/phone-verification-real-phone/search-response-schema.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
