-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema_for_doc_metadata.json
50 lines (50 loc) · 1.08 KB
/
schema_for_doc_metadata.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
[
{
"description": "Name of the doc",
"name": "doc_name",
"type": "STRING",
"mode": "REQUIRED"
},
{
"description": "Number of pages the doc has",
"name": "page_count",
"type": "INTEGER",
"mode": "REQUIRED"
},
{
"description": "type of document",
"name": "file_type",
"type": "STRING",
"mode": "NULLABLE"
},
{
"description": "url to download document",
"name": "download_link",
"type": "STRING",
"mode": "NULLABLE"
},
{
"description": "name of city",
"name": "city",
"type": "STRING",
"mode": "NULLABLE"
},
{
"description": "name of county",
"name": "county",
"type": "STRING",
"mode": "NULLABLE"
},
{
"description": "name of state",
"name": "state",
"type": "STRING",
"mode": "NULLABLE"
},
{
"description": "name of country",
"name": "country",
"type": "STRING",
"mode": "NULLABLE"
}
]