-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrestsharp-context.jsonld
More file actions
53 lines (50 loc) · 1.58 KB
/
restsharp-context.jsonld
File metadata and controls
53 lines (50 loc) · 1.58 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
{
"@context": {
"@version": 1.1,
"schema": "https://schema.org/",
"restsharp": "https://restsharp.dev/vocab/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"codemeta": "https://codemeta.github.io/terms/",
"RestClient": "restsharp:RestClient",
"RestRequest": "restsharp:RestRequest",
"RestResponse": "restsharp:RestResponse",
"RestClientOptions": "restsharp:RestClientOptions",
"Parameter": "restsharp:Parameter",
"name": "schema:name",
"description": "schema:description",
"version": "schema:version",
"url": "schema:url",
"license": "schema:license",
"codeRepository": {
"@id": "schema:codeRepository",
"@type": "@id"
},
"programmingLanguage": "schema:programmingLanguage",
"runtimePlatform": "schema:runtimePlatform",
"downloadUrl": {
"@id": "schema:downloadUrl",
"@type": "@id"
},
"releaseNotes": "schema:releaseNotes",
"datePublished": {
"@id": "schema:datePublished",
"@type": "xsd:date"
},
"author": "schema:author",
"maintainer": "schema:maintainer",
"baseUrl": "restsharp:baseUrl",
"resource": "restsharp:resource",
"method": "restsharp:httpMethod",
"timeout": "restsharp:timeout",
"authenticator": "restsharp:authenticator",
"parameters": {
"@id": "restsharp:parameters",
"@container": "@list"
},
"requestFormat": "restsharp:requestFormat",
"statusCode": "restsharp:statusCode",
"isSuccessful": "restsharp:isSuccessful",
"errorMessage": "restsharp:errorMessage",
"content": "restsharp:content"
}
}