pryscraper/templates/google-patent.json
cryptorugmunch 8d25702eca chore(license): re-license to dual MIT (core) + BSL 1.1 (stealth)
Squashed from chore/license-relicense. Full message preserved in the
original branch commit bb77eb5. See ADR-0002 for the decision rationale.

Refs: ADR-0002, commit bb77eb5
2026-07-02 19:59:18 +02:00

51 lines
No EOL
1.2 KiB
JSON

{
"name": "Google Patents",
"description": "Extract patent details from Google Patents",
"site": "patents.google.com",
"category": "reference",
"icon": "\ud83d\udcdc",
"schema": {
"name": "google_patent",
"base_selector": "#page-content",
"fields": [
{
"name": "title",
"selector": "h1",
"type": "text"
},
{
"name": "inventor",
"selector": "[data-assignment='inventor']",
"type": "text"
},
{
"name": "assignee",
"selector": "[data-assignment='assignee']",
"type": "text"
},
{
"name": "filing_date",
"selector": "[data-assignment='filing_date']",
"type": "text"
},
{
"name": "publication_date",
"selector": "[data-assignment='publication_date']",
"type": "text"
},
{
"name": "abstract",
"selector": ".abstract",
"type": "text"
},
{
"name": "claims",
"selector": ".claims",
"type": "text"
}
]
},
"url_pattern": "*://www.patents.google.com/*",
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}