-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathgpts_schema.json
99 lines (99 loc) · 2.65 KB
/
gpts_schema.json
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
{
"openapi": "3.1.0",
"info": {
"title": "NCBI E-utilities API",
"description": "Provides programmatic access to NCBI's data and resources.",
"version": "v1.0.0"
},
"servers": [
{
"url": "https://eutils.ncbi.nlm.nih.gov/entrez/eutils"
}
],
"paths": {
"/esearch.fcgi": {
"get": {
"description": "Performs a search in an NCBI database.",
"operationId": "ESearch",
"parameters": [
{
"name": "db",
"in": "query",
"description": "Database to search. Examples: 'pubmed' for literature citations, 'protein' for protein sequences, 'gene' for gene-specific data.",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "term",
"in": "query",
"description": "Search term.",
"required": true,
"schema": {
"type": "string"
}
}
],
"deprecated": false
}
},
"/efetch.fcgi": {
"get": {
"description": "Fetches a specific record from an NCBI database.",
"operationId": "EFetch",
"parameters": [
{
"name": "db",
"in": "query",
"description": "Database to fetch from. Examples: 'nucleotide' for nucleotide sequences, 'sequences' for a comprehensive set of sequences.",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "id",
"in": "query",
"description": "ID of the record to fetch.",
"required": true,
"schema": {
"type": "string"
}
}
],
"deprecated": false
}
},
"/esummary.fcgi": {
"get": {
"description": "Retrieves document summaries from a given database.",
"operationId": "ESummary",
"parameters": [
{
"name": "db",
"in": "query",
"description": "Database to retrieve summaries from. Examples: 'assembly' for genome assembly data, 'biosample' for biological sample information.",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "id",
"in": "query",
"description": "List of IDs for which summaries are requested.",
"required": true,
"schema": {
"type": "string"
}
}
],
"deprecated": false
}
}
},
"components": {
"schemas": {}
}
}