Unity · Schema

InventoryItem

Game DevelopmentReal-Time 3DMultiplayerGame ServicesCloud Gaming

Properties

Name Type Description
playersItemId string
inventoryItemId string
quantity integer
instanceData object
writeLock string
created object
modified object
View JSON Schema on GitHub

JSON Schema

unity-inventoryitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InventoryItem",
  "title": "InventoryItem",
  "type": "object",
  "properties": {
    "playersItemId": {
      "type": "string"
    },
    "inventoryItemId": {
      "type": "string"
    },
    "quantity": {
      "type": "integer"
    },
    "instanceData": {
      "type": "object"
    },
    "writeLock": {
      "type": "string"
    },
    "created": {
      "$ref": "#/components/schemas/Timestamp"
    },
    "modified": {
      "$ref": "#/components/schemas/Timestamp"
    }
  }
}