Robust Station Image
Space Station 14 RSI validation
| Type | object |
|---|---|
| File match |
**/*.rsi/meta.json
|
| Schema URL | https://catalog.lintel.tools/schemas/schemastore/robust-station-image/latest.json |
| Source | https://raw.githubusercontent.com/space-wizards/RobustToolbox/refs/heads/master/Schemas/rsi.json |
Validate with Lintel
npx @lintel/lintel check
Type:
object
JSON Schema for SS14 RSI validation.
Properties
version
integer
required
RSI version integer.
license
string
required
The license for the associated icon states. Restricted to SS14-compatible asset licenses.
copyright
string
required
The copyright holder. This is typically a link to the commit of the codebase that the icon is pulled from.
size
object
required
The dimensions of the sprites inside the RSI. This is not the size of the PNG files that store the sprite sheet.
{}
2 nested properties
x
integer
required
y
integer
required
states
object[]
required
Metadata for icon states. Includes name, directions, delays, etc.
[]
Examples
{
"version": 1,
"license": "CC-BY-SA-3.0",
"copyright": "Taken from CODEBASE at COMMIT PERMALINK",
"size": {
"x": 32,
"y": 32
},
"states": [
{
"name": "basic"
},
{
"name": "basic-directions",
"directions": 4
},
{
"name": "basic-delays",
"delays": [
[
0.1,
0.1
]
]
},
{
"name": "basic-delays-directions",
"directions": 4,
"delays": [
[
0.1,
0.1
],
[
0.1,
0.1
],
[
0.1,
0.1
],
[
0.1,
0.1
]
]
}
]
}