Unity · Schema

TieringConfig

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
strategy string
tiers array
View JSON Schema on GitHub

JSON Schema

unity-tieringconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TieringConfig",
  "title": "TieringConfig",
  "type": "object",
  "properties": {
    "strategy": {
      "type": "string",
      "enum": [
        "score",
        "percentile"
      ]
    },
    "tiers": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "cutoff": {
            "type": "number"
          }
        }
      }
    }
  }
}