# Attestation Structure

## Attestation Structure in NexaID

When a successful data verification process is completed, the client will receive a zkTLS attestation issued by the network attestor. The attestation is defined with the following structure.

```
    [      {        "attestor": "ATTESTOR_ADDRESS", // attestor's address        "taskId": "TASK_ID", // the task id        "attestation": {            "recipient": "YOUR_USER_ADDRESS", // user's wallet address            "request": [                {                    "url": "REQUEST_URL", // request url                    "header": "REQUEST_HEADER", // request header                    "method": "REQUEST_METHOD", // request method                    "body": "REQUEST_BODY" // request body                }            ],            "responseResolve": [                {                    "oneUrlResponseResolve": [                        {                            "keyName": "VERIFY_DATA_ITEMS", // the "verify data items" you set in the template                            "parseType": "",                            "parsePath": "DARA_ITEM_PATH" // json path of the data for verification                        }                    ]                }            ],            "data": "{ACTUAL_DATA}", // actual data items in the request, stringified JSON object            "attConditions": "[RESPONSE_CONDITIONS]", // response conditions, stringified JSON object            "timestamp": TIMESTAMP_OF_VERIFICATION_EXECUTION, // timestamp of execution            "additionParams": "", // additionParams from zkTLS sdk        }      }  ]
```


---

# 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://nexaid.gitbook.io/nexaid/build-on-nexaid/misc/attestation-structure.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.
