Views are not showing.

Some scrapers show different views in their output. In my case I don't see these view tabs. I made a view called "Overview" and expected an "All fields" tab to appear when running my own actor, as the dataset contains more fields than that. Even when adding multiple views, those tabs don't appear. Any idea why that would be?

This is what my dataset_schema.json looks like:
{
    "actorSpecification": 1,
    "fields": {},
    "views": {
        "overview": {
            "title": "Overview",
            "description": "Overview of all groups",
            "transformation": {
                "fields": [
                    "name",
                    "displayName",
                    "description"
                ]
            },
            "display": {
                "component": "table",
                "properties": {
                    "displayName": {
                        "label": "Group Name",
                        "format": "text"
                    },
                    "name": {
                        "label": "Slug",
                        "format": "text"
                    },
                    "description": {
                        "label": "Description",
                        "format": "text"
                    }
                }
            }
        }
    }
}
image.png
image.png
Was this page helpful?