Unity · Schema

ScoreSubmission

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
score number The player's score value
metadata string Optional metadata to store with the score (up to 255 characters)
View JSON Schema on GitHub

JSON Schema

unity-scoresubmission-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScoreSubmission",
  "title": "ScoreSubmission",
  "type": "object",
  "required": [
    "score"
  ],
  "properties": {
    "score": {
      "type": "number",
      "description": "The player's score value"
    },
    "metadata": {
      "type": "string",
      "description": "Optional metadata to store with the score (up to 255 characters)"
    }
  }
}