LaunchersId
id < /th > < td > packs/launchersId.json < /td > < /tr > < tr > < th>schema
|
http://json-schema.org/draft-07/schema#
|
Properties
Example
{
"steam": "331670",
"epic": "Feverfew"
}
steam
Description
|
Steam id of the game
|
Type
|
String
|
Required
|
No
|
Examples
|
331670
|
epic
Description
|
Epic id of the game
|
Type
|
String
|
Required
|
No
|
Examples
|
Feverfew
|
Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "packs/launchersId.json",
"title": "LaunchersId",
"type": "object",
"examples": [
{
"steam": "331670",
"epic": "Feverfew"
}
],
"properties": {
"steam": {
"examples": [
"331670"
],
"description": "Steam id of the game",
"type": "string"
},
"epic": {
"examples": [
"Feverfew"
],
"description": "Epic id of the game",
"type": "string"
}
}
}