-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
schema.yaml
131 lines (130 loc) · 2.78 KB
/
schema.yaml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
definitions:
FileConstraint:
type: object
properties:
os:
$ref: "#/definitions/Os"
store:
$ref: "#/definitions/Store"
LaunchConstraint:
type: object
properties:
bit:
$ref: "#/definitions/Bit"
os:
$ref: "#/definitions/Os"
store:
$ref: "#/definitions/Store"
RegistryConstraint:
type: object
properties:
store:
$ref: "#/definitions/Store"
Bit:
type: integer
Os:
type: string
Store:
type: string
Tag:
type: string
type: object
additionalProperties:
type: object
properties:
files:
type: object
additionalProperties:
type: object
properties:
tags:
type: array
items:
$ref: "#/definitions/Tag"
when:
type: array
items:
$ref: "#/definitions/FileConstraint"
installDir:
type: object
launch:
type: object
additionalProperties:
type: array
items:
type: object
properties:
arguments:
type: string
workingDir:
type: string
when:
type: array
items:
$ref: "#/definitions/LaunchConstraint"
registry:
type: object
additionalProperties:
type: object
properties:
tags:
type: array
items:
$ref: "#/definitions/Tag"
when:
type: array
items:
$ref: "#/definitions/RegistryConstraint"
steam:
type: object
properties:
id:
type: integer
gog:
type: object
properties:
id:
type: integer
id:
type: object
properties:
flatpak:
type: string
gogExtra:
type: array
items:
type: integer
lutris:
type: string
steamExtra:
type: array
items:
type: integer
alias:
description: |
When this field is populated with another game's title,
the current entry's title can be used as a nickname to look up the other game.
The other fields in the current entry should be ignored.
type: string
cloud:
type: object
properties:
epic:
type: boolean
gog:
type: boolean
origin:
type: boolean
steam:
type: boolean
uplay:
type: boolean
notes:
description: |
Notes may be displayed along with the game in scan results to provide additional information.
type: array
items:
type: object
properties:
message:
type: string