Unity · Schema

ResetConfig

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
start string
schedule string Cron expression for reset schedule
archive boolean
View JSON Schema on GitHub

JSON Schema

unity-resetconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResetConfig",
  "title": "ResetConfig",
  "type": "object",
  "properties": {
    "start": {
      "type": "string",
      "format": "date-time"
    },
    "schedule": {
      "type": "string",
      "description": "Cron expression for reset schedule"
    },
    "archive": {
      "type": "boolean"
    }
  }
}