-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathveeva-vault-document-fields-schema.json
More file actions
63 lines (63 loc) · 1.33 KB
/
veeva-vault-document-fields-schema.json
File metadata and controls
63 lines (63 loc) · 1.33 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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/veeva/refs/heads/main/json-schema/veeva-vault-document-fields-schema.json",
"title": "DocumentFields",
"description": "Document field values (field names end in __v for standard, __c for custom)",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name__v": {
"type": "string"
},
"type__v": {
"type": "string"
},
"subtype__v": {
"type": "string"
},
"classification__v": {
"type": "string"
},
"lifecycle__v": {
"type": "string"
},
"status__v": {
"type": "string"
},
"created_by__v": {
"type": "integer"
},
"last_modified_by__v": {
"type": "integer"
},
"created_date__v": {
"type": "string",
"format": "date-time"
},
"last_modified_date__v": {
"type": "string",
"format": "date-time"
},
"major_version_number__v": {
"type": "integer"
},
"minor_version_number__v": {
"type": "integer"
},
"document_number__v": {
"type": "string"
},
"description__v": {
"type": "string"
},
"size__v": {
"type": "integer"
},
"format__v": {
"type": "string"
}
},
"additionalProperties": true
}