-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathTransaction.yaml
More file actions
51 lines (51 loc) · 895 Bytes
/
Transaction.yaml
File metadata and controls
51 lines (51 loc) · 895 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
title: Transaction
type: object
description: ""
properties:
agreement:
x-if:
when: jsonschema
then:
oneOf:
- $ref: ./TransactionAgreement.yaml
- type: string
else:
$ref: ./TransactionAgreement.yaml
created_at:
type: string
format: date-time
error:
type: string
nullable: true
id:
$ref: ./TransactionID.yaml
isGift:
type: boolean
default: false
isTokens:
type: boolean
default: false
sandbox:
type: boolean
default: false
status:
$ref: ./TransactionStatus.yaml
steam:
$ref: ./TransactionSteamInfo.yaml
subscription:
$ref: ./Subscription.yaml
updated_at:
type: string
format: date-time
userDisplayName:
type: string
userId:
$ref: ./UserID.yaml
required:
- created_at
- error
- id
- sandbox
- status
- subscription
- updated_at