# Parsing results
When the scheme was created it can be run in the list of parsing schemes. The "run" button available only when the scheme hasn't validation errors.
# Downloading
After the crawling will be finished the result can be downloaded in one of the available formats. Downloading can be executed for all pages in the crawling or only for successfully loaded pages.
# JSON
The result can de downloaded in the full mode with format
[
{
"pageUrl": "https://test.com/page1",
"result": {
"propertyToParse1": "value1",
"propertyToParse2": "value2"
}
},
{
"pageUrl": "https://test.com/page2",
"result": {
"propertyToParse1": "value3",
"propertyToParse2": "value4"
}
}
]
or in the "Without pages url" mode with format
[
{
"propertyToParse1": "value1",
"propertyToParse2": "value2"
},
{
"propertyToParse1": "value3",
"propertyToParse2": "value4"
}
]
# CSV
The result can de downloaded in the full mode with format. When the result planned to be downloaded via CSV the best practice is to do the parsing scheme without objects and array data, e.g. flatten data, array and objects will be shown in the CSV in the JSON format.
pageUrl | propertyToParse1 | propertyToParse2 |
---|---|---|
https://test.com/page1 | value1 | value2 |
https://test.com/page2 | value3 | value4 |