From e28af313f3d889eead45cbfc1b5faa198f8b61b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Sat, 18 Feb 2023 20:16:43 +0000 Subject: [PATCH] Add 'Ownership, platform, device' --- Ownership%2C-platform%2C-device.md | 51 ++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 Ownership%2C-platform%2C-device.md diff --git a/Ownership%2C-platform%2C-device.md b/Ownership%2C-platform%2C-device.md new file mode 100644 index 0000000..ba80461 --- /dev/null +++ b/Ownership%2C-platform%2C-device.md @@ -0,0 +1,51 @@ +A few examples and how they related to the ownership, platform, and device information: + +The `.` notation identifies which entity is the information attached to. + +Game bought on the Nintendo Switch store, it's the emulated original SNES version: + +``` +Game.Name: The Legend of Zelda: A Link to the Past +Game.Platform: SNES +Edition.Name: The Legend of Zelda: A Link to the Past +Edition.Platform: SNES (emulated) +Purchase.Platform: Nintendo Switch Online +Purchase.Ownership_Type: Rented +Session.Device: Nintendo Switch +``` + +The same game but pirated and played on PC in an emulator. + +``` +Game.Name: The Legend of Zelda: A Link to the Past +Game.Platform: SNES +Edition.Name: The Legend of Zelda: A Link to the Past +Edition.Platform: SNES (emulated) +Purchase.Platform: N/A +Purchase.Ownership_Type: Pirated +Session.Device: PC +``` + +Physical copy of a game played on the Playstation 4. + +``` +Game.Name: Ghost of Tsushima +Game.Platform: Playstation 4 +Edition.Name: Ghost of Tsushima +Edition.Platform: Playstation 4 +Purchase.Platform: Playstation 4 +Purchase.Ownership_Type: Physical +Session.Device: Playstation 5 +``` + +A digital upgrade of the physical copy for the Playstation 5. + +``` +Game.Name: Ghost of Tsushima +Game.Platform: Playstation 4 +Edition.Name: Ghost of Tsushima Director's Cut +Edition.Platform: Playstation 5 +Purchase.Platform: Playstation 5 +Purchase.Ownership_Type: Digital Upgrade +Session.Device: Playstation 5 +``` \ No newline at end of file