# Search Response Schema

Phone Validation Request **Response Schema**

```
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "requestId": {
      "type": "string",
      "description": "Unique identifier for the request",
      "example": "5a2f8566-d6e3-4fd0-83b4-9a8fb3ed9e62"
    },
    "id": {
      "type": "integer",
      "description": "Unique identifier for the record",
      "example": 196846
    },
    "status": {
      "type": "string",
      "description": "Status of the request",
      "enum": ["progress", "completed", "failed"],
      "example": "progress"
    },
    "message": {
      "type": "string",
      "description": "Message providing additional information about the status",
      "example": "Results will be available soon, Use API to retrieve Data"
    }
  },
  "required": ["requestId", "id", "status", "message"],
  "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-vs-name-validator/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.
