
Extended GPT Scraper
Pricing
Pay per usage

Extended GPT Scraper
Extract data from any website and feed it into GPT via the OpenAI API. Use ChatGPT to proofread content, analyze sentiment, summarize reviews, extract contact details, and much more.
4.6 (4)
Pricing
Pay per usage
87
Total users
1.5K
Monthly users
34
Runs succeeded
99%
Last modified
6 months ago
Schema handling changed
Closed
I'm rerunning, and even resurrected versions that have worked previously, but now get a schema validation error on start. I guess it means that there is work going on to resolve the problem with schemas just being used for formatting. :)

Hey Markus,
in the scraper we started using JSON Schema in version draft-2020-12 same as OpenAI does, see https://ajv.js.org/json-schema.html#draft-2020-12. In your Actor, you are trying to set the schema in http://json-schema.org/draft-07/schema and it fails.
you need to replace "$schema": "http://json-schema.org/draft-07/schema#", with "$schema": "https://json-schema.org/draft/2020-12/schema",
I hope it helps.