-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscraping-context.jsonld
More file actions
104 lines (102 loc) · 2.31 KB
/
Copy pathscraping-context.jsonld
File metadata and controls
104 lines (102 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"@context": {
"@version": 1.1,
"scr": "https://api-evangelist.github.io/scraping/schema/",
"schema": "https://schema.org/",
"dcterms": "http://purl.org/dc/terms/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"dcat": "https://www.w3.org/ns/dcat#",
"ScrapeJob": "scr:ScrapeJob",
"ScrapeResult": "scr:ScrapeResult",
"ProxyPool": "scr:ProxyPool",
"SerpResult": "scr:SerpResult",
"name": "schema:name",
"description": "schema:description",
"provider": "schema:provider",
"url": {
"@id": "schema:url",
"@type": "@id"
},
"endpoint": {
"@id": "schema:url",
"@type": "@id"
},
"result_url": {
"@id": "dcat:downloadURL",
"@type": "@id"
},
"method": {
"@id": "scr:method",
"@type": "xsd:string"
},
"render_js": {
"@id": "scr:render_js",
"@type": "xsd:boolean"
},
"country": {
"@id": "schema:addressCountry",
"@type": "xsd:string"
},
"countries": {
"@id": "schema:addressCountry",
"@container": "@set",
"@type": "xsd:string"
},
"proxy_type": {
"@id": "scr:proxy_type",
"@type": "xsd:string"
},
"rotation": {
"@id": "scr:rotation",
"@type": "xsd:string"
},
"sticky_session_ttl_seconds": {
"@id": "scr:sticky_session_ttl_seconds",
"@type": "xsd:integer"
},
"pool_size": {
"@id": "scr:pool_size",
"@type": "xsd:integer"
},
"status": {
"@id": "scr:status",
"@type": "xsd:string"
},
"status_code": {
"@id": "scr:status_code",
"@type": "xsd:integer"
},
"wait_for_selector": {
"@id": "scr:wait_for_selector",
"@type": "xsd:string"
},
"extract": {
"@id": "scr:extract"
},
"protocols": {
"@id": "scr:protocols",
"@container": "@set",
"@type": "xsd:string"
},
"pricing_model": {
"@id": "scr:pricing_model",
"@type": "xsd:string"
},
"authentication": {
"@id": "scr:authentication"
},
"created_at": {
"@id": "dcterms:created",
"@type": "xsd:dateTime"
},
"completed_at": {
"@id": "dcterms:date",
"@type": "xsd:dateTime"
},
"tags": {
"@id": "dcat:keyword",
"@container": "@set",
"@type": "xsd:string"
}
}
}