-
-
Notifications
You must be signed in to change notification settings - Fork 244
Expand file tree
/
Copy pathbundled.ts
More file actions
32 lines (32 loc) · 646 Bytes
/
bundled.ts
File metadata and controls
32 lines (32 loc) · 646 Bytes
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
export default {
$id: "schemaA/1.0",
$schema: "http://json-schema.org/draft-07/schema#",
type: "object",
properties: {
purchaseRate: {
allOf: [
{
type: "object",
properties: {
amount: {
type: "number",
format: "float",
},
},
},
{
type: "object",
$ref: "#/properties/purchaseRate/allOf/0/properties/amount",
},
],
},
fee: {
type: "object",
properties: {
modificationFee: {
$ref: "#/properties/purchaseRate/allOf/0",
},
},
},
},
};