aboutsummaryrefslogtreecommitdiffstats
path: root/lib/api-config/tests/fixtures/schema.sql
blob: 4ec082e73879e03a5ac47ded3ce58e7eed9d868f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
insert into transaction_schema (schema_type, schema_version, schema)
values 
(
    'payment', 
    '1.0.0', 
    '{"type": "object", "required": ["amount", "currency"], "properties": {"amount": {"type": "number"}, "currency": {"type": "string"}}}'
),
(
    'refund', 
    '1.0.0', 
    '{"type": "object", "required": ["original_txn_id"], "properties": {"original_txn_id": {"type": "string"}}}'
);