mirror of
https://github.com/IrisDimensions/ymir.git
synced 2025-12-19 14:59:25 +00:00
55 lines
2.6 KiB
JSON
55 lines
2.6 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"$id": "https://volmit.com/iris-schema/irisduration.json",
|
|
"anyOf": [
|
|
{
|
|
"description": "Represents a combined duration. Fill each property to add time into a single duration",
|
|
"type": "object",
|
|
"properties": {
|
|
"milliseconds": {
|
|
"type": "integer",
|
|
"description": "milliseconds\nMilliseconds (1000ms = 1 second)\n \nInteger\n\n \n* Default Value is 0"
|
|
},
|
|
"minecraftTicks": {
|
|
"type": "integer",
|
|
"description": "minecraftTicks\nMinecraft Ticks (20 minecraft ticks = 1 second\n \nInteger\n\n \n* Default Value is 0"
|
|
},
|
|
"seconds": {
|
|
"type": "integer",
|
|
"description": "seconds\nSeconds (60 seconds = 1 minute)\n \nInteger\n\n \n* Default Value is 0"
|
|
},
|
|
"minutes": {
|
|
"type": "integer",
|
|
"description": "minutes\nMinutes (60 minutes = 1 hour)\n \nInteger\n\n \n* Default Value is 0"
|
|
},
|
|
"minecraftHours": {
|
|
"type": "integer",
|
|
"description": "minecraftHours\nMinecraft Hours (about 50 real seconds)\n \nInteger\n\n \n* Default Value is 0"
|
|
},
|
|
"hours": {
|
|
"type": "integer",
|
|
"description": "hours\nHours (24 hours = 1 day)\n \nInteger\n\n \n* Default Value is 0"
|
|
},
|
|
"minecraftDays": {
|
|
"type": "integer",
|
|
"description": "minecraftDays\nMinecraft Days (1 minecraft day = 20 real minutes)\n \nInteger\n\n \n* Default Value is 0"
|
|
},
|
|
"minecraftWeeks": {
|
|
"type": "integer",
|
|
"description": "minecraftWeeks\nMinecraft Weeks (1 minecraft week = 2 real hours and 18 real minutes)\n \nInteger\n\n \n* Default Value is 0"
|
|
},
|
|
"minecraftLunarCycles": {
|
|
"type": "integer",
|
|
"description": "minecraftLunarCycles\nMinecraft Lunar Cycles (1 minecraft lunar cycle = 2 real hours and 36 real minutes)\n \nInteger\n\n \n* Default Value is 0"
|
|
},
|
|
"days": {
|
|
"type": "integer",
|
|
"description": "days\nREAL (not minecraft) Days\n \nInteger\n\n \n* Default Value is 0"
|
|
}
|
|
}
|
|
},
|
|
{"type": "string"}
|
|
],
|
|
"definitions": {}
|
|
}
|