|
Lines 2-52
Link Here
|
| 2 |
"type": "object", |
2 |
"type": "object", |
| 3 |
"properties": { |
3 |
"properties": { |
| 4 |
"accountlines_id": { |
4 |
"accountlines_id": { |
|
|
5 |
"type": "integer", |
| 5 |
"description": "Internal account line identifier" |
6 |
"description": "Internal account line identifier" |
| 6 |
}, |
7 |
}, |
|
|
8 |
"issue_id": { |
| 9 |
"type": ["integer", "null"], |
| 10 |
"description": "?" |
| 11 |
}, |
| 7 |
"borrowernumber": { |
12 |
"borrowernumber": { |
|
|
13 |
"type": "integer", |
| 8 |
"description": "Internal borrower identifier" |
14 |
"description": "Internal borrower identifier" |
| 9 |
}, |
15 |
}, |
| 10 |
"accountno": { |
16 |
"accountno": { |
|
|
17 |
"type": "integer", |
| 11 |
"description": "?" |
18 |
"description": "?" |
| 12 |
}, |
19 |
}, |
| 13 |
"itemnumber": { |
20 |
"itemnumber": { |
|
|
21 |
"type": ["integer", "null"], |
| 14 |
"description": "Internal item identifier" |
22 |
"description": "Internal item identifier" |
| 15 |
}, |
23 |
}, |
| 16 |
"date": { |
24 |
"date": { |
|
|
25 |
"type": ["string", "null"], |
| 17 |
"description": "Date when the account line was created" |
26 |
"description": "Date when the account line was created" |
| 18 |
}, |
27 |
}, |
| 19 |
"time": { |
|
|
| 20 |
"description": "Time when the account line was created" |
| 21 |
}, |
| 22 |
"amount": { |
28 |
"amount": { |
|
|
29 |
"type": ["number", "null"], |
| 23 |
"description": "Amount" |
30 |
"description": "Amount" |
| 24 |
}, |
31 |
}, |
| 25 |
"description": { |
32 |
"description": { |
|
|
33 |
"type": ["string", "null"], |
| 26 |
"description": "Description of account line" |
34 |
"description": "Description of account line" |
| 27 |
}, |
35 |
}, |
|
|
36 |
"dispute": { |
| 37 |
"type": ["string", "null"], |
| 38 |
"description": "?" |
| 39 |
}, |
| 28 |
"accounttype": { |
40 |
"accounttype": { |
|
|
41 |
"type": ["string", "null"], |
| 29 |
"description": "Type of accountline" |
42 |
"description": "Type of accountline" |
| 30 |
}, |
43 |
}, |
| 31 |
"amountoutstanding": { |
44 |
"amountoutstanding": { |
|
|
45 |
"type": ["number", "null"], |
| 32 |
"description": "Amount outstanding" |
46 |
"description": "Amount outstanding" |
| 33 |
}, |
47 |
}, |
| 34 |
"lastincrement": { |
48 |
"lastincrement": { |
|
|
49 |
"type": ["number", "null"], |
| 35 |
"description": "?" |
50 |
"description": "?" |
| 36 |
}, |
51 |
}, |
| 37 |
"timestamp": { |
52 |
"timestamp": { |
|
|
53 |
"type": "string", |
| 38 |
"description": "When the account line was last updated" |
54 |
"description": "When the account line was last updated" |
| 39 |
}, |
55 |
}, |
| 40 |
"notify_id": { |
56 |
"notify_id": { |
|
|
57 |
"type": "integer", |
| 41 |
"description": "?" |
58 |
"description": "?" |
| 42 |
}, |
59 |
}, |
| 43 |
"notify_level": { |
60 |
"notify_level": { |
|
|
61 |
"type": "integer", |
| 44 |
"description": "?" |
62 |
"description": "?" |
| 45 |
}, |
63 |
}, |
| 46 |
"note": { |
64 |
"note": { |
|
|
65 |
"type": ["string", "null"], |
| 47 |
"description": "Accountline note" |
66 |
"description": "Accountline note" |
| 48 |
}, |
67 |
}, |
| 49 |
"manager_id": { |
68 |
"manager_id": { |
|
|
69 |
"type": ["integer", "null"], |
| 50 |
"description": "Borrowernumber of user that created the account line" |
70 |
"description": "Borrowernumber of user that created the account line" |
| 51 |
} |
71 |
} |
| 52 |
} |
72 |
} |
| 53 |
- |
|
|