ludusavi-manifest/data/schema.strict.yaml
2020-06-20 12:29:22 -04:00

67 lines
1.2 KiB
YAML

definitions:
FileConstraint:
type: object
properties:
os:
$ref: "#/definitions/Os"
store:
$ref: "#/definitions/Store"
RegistryConstraint:
type: object
properties:
store:
$ref: "#/definitions/Store"
Os:
type: string
enum:
- windows
- linux
- mac
Store:
type: string
enum:
- steam
- epic
- discord
- origin
- uplay
Tag:
type: string
enum:
- save
- config
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
registry:
type: object
additionalProperties:
type: object
properties:
tags:
type: array
items:
$ref: "#/definitions/Tag"
when:
type: array
items:
$ref: "#/definitions/RegistryConstraint"
steamId:
type: integer