-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.js
45 lines (41 loc) · 1005 Bytes
/
types.js
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
/**
* @typedef {Object} DecisionmakingFlow
* @property {string} uri
* @property {string} name
* @property {string} altName
* @property {string} case
* @property {GovernmentField[]} governmentFields
* @property {?string} parliamentFlow
* @property {?string} pobj
*/
/**
* @typedef {Object} GovernmentField
* @property {string} uri
* @property {string} label
*/
/**
* @typedef {Object} Concept
* @property {string} uri
* @property {string} label
*/
/**
* @typedef {Object} Piece
* @property {string} id
* @property {string} uri
* @property {string} name
* @property {Date} created
* @property {Concept} type
* @property {File[]} files
*/
/**
* @typedef {Object} File
* @property {string} uri
* @property {string} format
* @property {string} shareUri
* @property {?string} parliamentId
* @property {?string} previousVersionUri
* @property {?string} previousVersionParliamentId
* @property {boolean} isPdf
* @property {boolean} isWord
* @property {boolean} isSigned
*/