pax_global_header00006660000000000000000000000064146504000360014510gustar00rootroot0000000000000052 comment=363a1711629143152a637da58e7c53fddd218ca1 python-xbox-webapi-2.1.0/000077500000000000000000000000001465040003600152545ustar00rootroot00000000000000python-xbox-webapi-2.1.0/.github/000077500000000000000000000000001465040003600166145ustar00rootroot00000000000000python-xbox-webapi-2.1.0/.github/workflows/000077500000000000000000000000001465040003600206515ustar00rootroot00000000000000python-xbox-webapi-2.1.0/.github/workflows/build.yml000066400000000000000000000024121465040003600224720ustar00rootroot00000000000000name: build on: ['push', 'pull_request'] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install -e .[dev] - name: Lint with ruff run: | ruff check xbox ruff check tests - name: Test with pytest run: | pytest deploy: runs-on: ubuntu-latest needs: build steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v4 with: python-version: '3.12' - name: Install dependencies run: | python -m pip install --upgrade pip pip install setuptools wheel twine build - name: Build and publish if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_API_KEY }} run: | python -m build twine upload dist/* python-xbox-webapi-2.1.0/.github/workflows/docker.yml000066400000000000000000000055031465040003600226460ustar00rootroot00000000000000name: docker on: pull_request: branches: master push: branches: master tags: - v* jobs: buildx: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Prepare id: prepare run: | DOCKER_IMAGE=openxbox/xbox-webapi-python DOCKER_PLATFORMS=linux/amd64,linux/arm/v7,linux/arm64 VERSION=edge if [[ $GITHUB_REF == refs/tags/* ]]; then VERSION=${GITHUB_REF#refs/tags/v} fi if [ "${{ github.event_name }}" = "schedule" ]; then VERSION=nightly fi TAGS="--tag ${DOCKER_IMAGE}:${VERSION}" if [[ $VERSION =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then TAGS="$TAGS --tag ${DOCKER_IMAGE}:latest" fi echo ::set-output name=docker_image::${DOCKER_IMAGE} echo ::set-output name=version::${VERSION} echo ::set-output name=buildx_args::--platform ${DOCKER_PLATFORMS} \ --build-arg VERSION=${VERSION} \ --build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \ --build-arg VCS_REF=${GITHUB_SHA::8} \ ${TAGS} --file ./Dockerfile . - name: Set up QEMU uses: docker/setup-qemu-action@v1 with: platforms: all - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v1 with: version: latest - name: Available platforms run: echo ${{ steps.buildx.outputs.platforms }} - name: Docker Buildx (build) run: | docker buildx build --output "type=image,push=false" ${{ steps.prepare.outputs.buildx_args }} - name: Login to DockerHub if: success() && github.event_name != 'pull_request' uses: docker/login-action@v1 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Docker Buildx (push) if: success() && github.event_name != 'pull_request' run: | docker buildx build --output "type=image,push=true" ${{ steps.prepare.outputs.buildx_args }} - name: Update Dockerhub description if: success() && github.event_name != 'pull_request' uses: peter-evans/dockerhub-description@v2 env: DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USERNAME }} DOCKERHUB_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} DOCKERHUB_REPOSITORY: ${{ steps.prepare.outputs.docker_image }} README_FILEPATH: ./README.md - name: Inspect image if: always() && github.event_name != 'pull_request' run: | docker buildx imagetools inspect ${{ steps.prepare.outputs.docker_image }}:${{ steps.prepare.outputs.version }} python-xbox-webapi-2.1.0/.gitignore000066400000000000000000000015261465040003600172500ustar00rootroot00000000000000# Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python .env .venv/ venv/ build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ *.egg-info/ .installed.cfg *.egg #Virtualenv folders and files Scripts pyvenv.cfg Lib # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *,cover .hypothesis/ # Translations *.mo *.pot # Django stuff: *.log # Sphinx documentation docs/_build/ # PyBuilder target/ # Intellij .idea/ # VS Code .vscode/ # Node node_modules python-xbox-webapi-2.1.0/.pre-commit-config.yaml000066400000000000000000000016531465040003600215420ustar00rootroot00000000000000repos: - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. rev: v0.1.6 hooks: # Run the linter. - id: ruff args: [ --fix ] # Run the formatter. - id: ruff-format - repo: https://github.com/asottile/pyupgrade rev: v3.15.0 hooks: - id: pyupgrade args: [--py38-plus] - repo: https://github.com/psf/black rev: 23.11.0 hooks: - id: black args: - --safe - --quiet files: ^((xbox|tests)/.+)?[^/]+\.py$ - repo: https://github.com/PyCQA/bandit rev: 1.7.5 hooks: - id: bandit args: - --configfile=pyproject.toml - --quiet - --format=custom files: ^(xbox|tests)/.+\.py$ - repo: https://github.com/PyCQA/isort rev: 5.12.0 hooks: - id: isort - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.5.0 hooks: - id: check-executables-have-shebangs stages: [manual] - id: check-jsonpython-xbox-webapi-2.1.0/.readthedocs.yml000066400000000000000000000006721465040003600203470ustar00rootroot00000000000000# https://docs.readthedocs.io/en/stable/config-file/v2.html#supported-settings version: 2 sphinx: # The config file overrides the UI settings: # https://github.com/pyca/cryptography/issues/5863#issuecomment-817828152 builder: dirhtml build: # readdocs master now includes a rust toolchain os: "ubuntu-22.04" tools: python: "3.12" python: install: - method: pip path: . extra_requirements: - docs python-xbox-webapi-2.1.0/CHANGELOG.md000066400000000000000000000112531465040003600170670ustar00rootroot00000000000000# Changelog ## 2.1.0 (2023-11-25) * ! Deprecate python 3.7 ! * Deprecate flake8, use ruff for linting instead * Fixes for compatibility with v2 of json parsing library `pydantic` * Use python3.12 for CI and Docker * Migrate from setup.py to pyproject.toml * Remove requirements.txt * Use datetime functionality with higher compatibility ## 2.0.11 (2021-04-30) * Model validation fixes for optional properties (#41) * Fix example code in README (#44) * Fix linked account display name (#46) * Raise `AuthenticationException` on 401 (#55) * Add aiohttp speedups (#55) * Tests read files as UTF-8 (#55) * Fix API example in README (#56) ## 2.0.10 (2020-11-13) * Add models for XAD and XAT Token responses * Fix message.get_inbox() (Setting text field as Optional) (Fixes issue #37) * Fix OAuth2TokenResponse incase no refresh_token is returned by authentication (Fixes issue #36) * Fix pytest warnings (unclosed ClientSession, usage of deprecated ClientResponse field) * Fix CatalogResponse.Products[].DisplaySkuAvailabilities[].Availabilities - Set order_management_data as Optional * Enable passing extra values to headers, params and data for all providers via kwargs (extra_headers, extra_params, extra_data) * Fix GameclipsResponse ## 2.0.9 (2020-11-02) * Fix titlehub endpoint * AuthenticationManager: Allow fetching title endpoints * RequestSigner: Extend to respect SigningPolicy ## 2.0.8 (2020-10-14) * GH action: Use official docker setup-buildx-step * Make more CatalogResponse fields optional * Allow fetching all installed apps across devices (remove device_id requirement) ## 2.0.7 (2020-10-12) * Fix broken 2.0.6 yarl dep * Change GitHub action to not deploy on failed build ## 2.0.6 (2020-10-12) * Add constants for some system titles that do not have PFN in catalog ## 2.0.5 (2020-10-12) * Fix catalog models for legacy products ## 2.0.4 (2020-10-11) * Fix catalog fields template ## 2.0.3 (2020-10-11) * Fix catalog alt id lookup ## 2.0.2 (2020-10-11) * Fixed package includes for providers * No longer attempts to refresh tokens when no auth required * Fixed `xbox-searchlive` ## 2.0.1 (2020-10-10) * Ensures token validity on every request ## 2.0.0 (2020-10-10) * Major rewrite (thx @hunterjm) * Removed auth-TUI (text user interface) * async via aiohttp * Support full OAUTH2 flow * Add new smartglass endpoint (xccs.xboxlive.com) * Add new catalog endpoint (displaycatalog) * Easier tests (ditch betamax) * Add RequestSigner / SignedSession (thx @socram8888) ## 1.1.8 (2020-02-29) * Update people.py - Added get friends by XUID * CI / metadata changes ## 1.1.7 (2018-11-10) * Fix parsing of WindowsLive auth response ## 1.1.6 (2018-09-30) * Consider (User-)privileges of (XSTS) userinfo optional * Fix: Always return bool for @Property AuthenticationManager.authenticated ## 1.1.5 (2018-08-11) * Make property *authenticated* in AuthenticationManager check token validity * Break out of windows live auth early if cookies were cached previously ## 1.1.4 (2018-07-01) * Implement convenience functions for Partner Service Authentication ## 1.1.3 (2018-06-16) * Gracefully fail on wrong account password * Fix "ValueError: tui: Unexpected button pressed: Cancel" * provider.lists: Correct headers, GET list works * Titlehub: Support getting title history by xuid ## 1.1.2 (2018-05-06) * Fixing appdir (aka. token save location) creation on windows ## 1.1.1 (2018-05-03) * Removed python-dateutil dependency * Add auth-via-browser fallback script * Small changes ## 1.1.0 (2018-04-17) * Auth: Updated 2FA authentication to meet current windows live auth flow * Auth: Redesigned 2FA authentication procedure * Auth: Implemented xbox-auth-ui script (xbox.webapi.scripts.tui: urwid terminal ui) * Auth: For password masking, getpass instead or raw input() is used * Scripts: Default to appdirs.user_data_dir if no tokenfile provided via cmdline argument (see README) ## 1.0.9 (2018-03-30) * Extend **Gameclips** provider with title id filtering and saved clips * Add **Screenshots** provider * Add **Titlehub** provider ## 1.0.8 (2018-03-29) * Added **Userstats** endpoint * Updated README ## 1.0.7 (2018-03-28) * Support supplying auth credentials via stdin * Added tests for all endpoints * Added tests for authentication * Added **QCS** endpoint * Added **Profile** endpoint * Added **Achievements** endpoint * Added **Usersearch** endpoint * Added **Gameclips** endpoint * Added **People** endpoint * Added **Presence** endpoint * Added **Message** endpoint * Removed **Gamerpics** endpoint ## 1.0.3 - 1.0.6 (2018-03-17) * Metadata changes ## 1.0.2 (2018-03-17) * More metadata changes, rendering on PyPi is fine now ## 1.0.1 (2018-03-17) * Metadata changes ## 1.0.0 (2018-03-17) * First release on PyPI. python-xbox-webapi-2.1.0/CONTRIBUTING.md000066400000000000000000000054601465040003600175120ustar00rootroot00000000000000 # Contributing Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given. You can contribute in many ways: ## Types of Contributions ### Report Bugs Report bugs at . If you are reporting a bug, please include: * Your operating system name and version. * Any details about your local setup that might be helpful in troubleshooting. * Detailed steps to reproduce the bug. ### Fix Bugs Look through the GitHub issues for bugs. Anything tagged with "bug" is open to whoever wants to implement it. ### Implement Features Look through the GitHub issues for features. Anything tagged with "feature" is open to whoever wants to implement it. ### Write Documentation xbox-webapi-python could always use more documentation, whether as part of the official xbox-webapi-python docs, in docstrings, or even on the web in blog posts, articles, and such. ### Submit Feedback The best way to send feedback is to file an issue at . If you are proposing a feature: * Explain in detail how it would work. * Keep the scope as narrow as possible, to make it easier to implement. * Remember that this is a volunteer-driven project, and that contributions are welcome :) ### Get Started Ready to contribute? Here's how to set up `xbox-webapi-python` for local development. 1. Fork the `xbox-webapi-python` repo on GitHub. 2. Clone your fork locally ```text git clone git@github.com:your_name_here/xbox-webapi-python.git ``` 3. Install your local copy into a virtualenv. Assuming you have venv installed, this is how you set up your fork for local development ```text cd xbox-webapi-python python -m venv venv source venv/bin/activate pip install -e .[dev] pre-commit install ``` 4. Create a branch for local development:: ```text git checkout -b name-of-your-bugfix-or-feature ``` Now you can make your changes locally. 5. When you're done making changes, check that your changes pass the tests ```text pytest ``` 6. Commit your changes and push your branch to GitHub ``` git add . git commit -m "Your detailed description of your changes." git push origin name-of-your-bugfix-or-feature ``` 7. Submit a pull request through the GitHub website. ### Pull Request Guidelines Before you submit a pull request, check that it meets these guidelines: 1. The pull request should include tests. 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.md. 3. The pull request should work for Python 3.8+. Check and make sure that the tests pass for all supported Python versions. python-xbox-webapi-2.1.0/Dockerfile000066400000000000000000000015431465040003600172510ustar00rootroot00000000000000# Based on https://softwarejourneyman.com/docker-python-install-wheels.html ######################################### # Image WITH C compiler, building wheels for next stage FROM python:3.12-alpine as bigimage ENV LANG C.UTF-8 # Copy project files COPY . /src/xbox-webapi # install the C compiler RUN apk add --no-cache jq gcc musl-dev libffi-dev openssl-dev cargo # instead of installing, create a wheel RUN pip wheel --wheel-dir=/root/wheels /src/xbox-webapi ######################################### # Image WITHOUT C compiler, installing the component from wheel FROM python:3.12-alpine as smallimage RUN apk add --no-cache openssl COPY --from=bigimage /root/wheels /root/wheels # Ignore the Python package index # and look for archives in # /root/wheels directory RUN pip install \ --no-index \ --find-links=/root/wheels \ xbox-webapi python-xbox-webapi-2.1.0/LICENSE000066400000000000000000000020341465040003600162600ustar00rootroot00000000000000Copyright (c) 2020 OpenXbox Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. python-xbox-webapi-2.1.0/MANIFEST.in000066400000000000000000000003611465040003600170120ustar00rootroot00000000000000include CONTRIBUTING.md include CHANGELOG.md include LICENSE include README.md recursive-include tests * recursive-exclude * __pycache__ recursive-exclude * *.py[co] recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif python-xbox-webapi-2.1.0/Makefile000066400000000000000000000041771465040003600167250ustar00rootroot00000000000000.PHONY: clean clean-test clean-pyc clean-build docs help .DEFAULT_GOAL := help define BROWSER_PYSCRIPT import os, webbrowser, sys try: from urllib import pathname2url except: from urllib.request import pathname2url webbrowser.open("file://" + pathname2url(os.path.abspath(sys.argv[1]))) endef export BROWSER_PYSCRIPT define PRINT_HELP_PYSCRIPT import re, sys for line in sys.stdin: match = re.match(r'^([a-zA-Z_-]+):.*?## (.*)$$', line) if match: target, help = match.groups() print("%-20s %s" % (target, help)) endef export PRINT_HELP_PYSCRIPT BROWSER := python -c "$$BROWSER_PYSCRIPT" help: @python -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST) clean: clean-build clean-pyc clean-test ## remove all build, test, coverage and Python artifacts clean-build: ## remove build artifacts rm -fr build/ rm -fr dist/ rm -fr .eggs/ find . -name '*.egg-info' -exec rm -fr {} + find . -name '*.egg' -exec rm -fr {} + clean-pyc: ## remove Python file artifacts find . -name '*.pyc' -exec rm -f {} + find . -name '*.pyo' -exec rm -f {} + find . -name '*~' -exec rm -f {} + find . -name '__pycache__' -exec rm -fr {} + clean-test: ## remove test and coverage artifacts rm -f .coverage rm -fr htmlcov/ lint: ## check style with ruff ruff check --fix xbox ruff check --fix tests test: ## run tests quickly with the default Python py.test coverage: ## check code coverage quickly with the default Python coverage run --source xbox -m pytest coverage report -m coverage html $(BROWSER) htmlcov/index.html docs: ## generate Sphinx HTML documentation, including API docs rm -f docs/xbox.rst rm -f docs/modules.rst sphinx-apidoc --implicit-namespaces -a -e -o docs/source xbox $(MAKE) -C docs clean $(MAKE) -C docs html $(BROWSER) docs/_build/html/index.html servedocs: docs ## compile the docs watching for changes watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D . release: clean ## package and upload a release twine upload dist/* dist: clean ## builds source and wheel package python -m build ls -l dist install: clean ## install the package to the active Python's site-packages pre-commit install pip install -e . python-xbox-webapi-2.1.0/README.md000066400000000000000000000146761465040003600165510ustar00rootroot00000000000000# Xbox-WebAPI [![PyPi - latest](https://img.shields.io/pypi/v/xbox-webapi.svg)](https://pypi.python.org/pypi/xbox-webapi/) [![Documentation status](https://readthedocs.org/projects/xbox-webapi-python/badge/?version=latest)](http://xbox-webapi-python.readthedocs.io/en/latest/?badge=latest) [![Build status](https://img.shields.io/github/actions/workflow/status/OpenXbox/xbox-webapi-python/build.yml?branch=master)](https://github.com/OpenXbox/xbox-webapi-python/actions?query=workflow%3Abuild) [![Discord chat channel](https://img.shields.io/badge/discord-OpenXbox-blue.svg)](https://openxbox.org/discord) Xbox-WebAPI is a python library to authenticate with Xbox Live via your Microsoft Account and provides Xbox related Web-API. Authentication is supported via OAuth2. - Register a new application in [Azure AD](https://portal.azure.com/#blade/Microsoft_AAD_RegisteredApps/ApplicationsListBlade) - Name your app - Select "Personal Microsoft accounts only" under supported account types - Add as a Redirect URI of type "Web" - Copy your Application (client) ID for later use - On the App Page, navigate to "Certificates & secrets" - Generate a new client secret and save for later use ## Dependencies - Python >= 3.8 ## How to use Install ```text pip install xbox-webapi ``` Authentication **Note: You must use non child account (> 18 years old)** Token save location: If tokenfile is not provided via cmdline, fallback of `/tokens.json` is used as save-location Specifically: Windows: `C:\\Users\\\\AppData\\Local\\OpenXbox\\xbox` Mac OSX: `/Users//Library/Application Support/xbox/tokens.json` Linux: `/home//.local/share/xbox` For more information, see: and module: `xbox.webapi.scripts.constants` ``` xbox-authenticate --client-id --client-secret ``` Example: Search Xbox Live via cmdline tool ```text # Search Xbox One Catalog xbox-searchlive "Some game title" ``` API usage ```py import asyncio import sys from httpx import HTTPStatusError from xbox.webapi.api.client import XboxLiveClient from xbox.webapi.authentication.manager import AuthenticationManager from xbox.webapi.authentication.models import OAuth2TokenResponse from xbox.webapi.common.signed_session import SignedSession from xbox.webapi.scripts import CLIENT_ID, CLIENT_SECRET, TOKENS_FILE """ This uses the global default client identification by OpenXbox You can supply your own parameters here if you are permitted to create new Microsoft OAuth Apps and know what you are doing """ client_id = CLIENT_ID client_secret = CLIENT_SECRET tokens_file = TOKENS_FILE """ For doing authentication, see xbox/webapi/scripts/authenticate.py """ async def async_main(): # Create a HTTP client session async with SignedSession() as session: """ Initialize with global OAUTH parameters from above """ auth_mgr = AuthenticationManager(session, client_id, client_secret, "") """ Read in tokens that you received from the `xbox-authenticate`-script previously See `xbox/webapi/scripts/authenticate.py` """ try: with open(tokens_file) as f: tokens = f.read() # Assign gathered tokens auth_mgr.oauth = OAuth2TokenResponse.model_validate_json(tokens) except FileNotFoundError as e: print( f"File {tokens_file} isn`t found or it doesn`t contain tokens! err={e}" ) print("Authorizing via OAUTH") url = auth_mgr.generate_authorization_url() print(f"Auth via URL: {url}") authorization_code = input("Enter authorization code> ") tokens = await auth_mgr.request_oauth_token(authorization_code) auth_mgr.oauth = tokens """ Refresh tokens, just in case You could also manually check the token lifetimes and just refresh them if they are close to expiry """ try: await auth_mgr.refresh_tokens() except HTTPStatusError as e: print( f""" Could not refresh tokens from {tokens_file}, err={e}\n You might have to delete the tokens file and re-authenticate if refresh token is expired """ ) sys.exit(-1) # Save the refreshed/updated tokens with open(tokens_file, mode="w") as f: f.write(auth_mgr.oauth.json()) print(f"Refreshed tokens in {tokens_file}!") """ Construct the Xbox API client from AuthenticationManager instance """ xbl_client = XboxLiveClient(auth_mgr) """ Some example API calls """ # Get friendslist friendslist = await xbl_client.people.get_friends_own() print(f"Your friends: {friendslist}\n") # Get presence status (by list of XUID) presence = await xbl_client.presence.get_presence_batch( ["2533274794093122", "2533274807551369"] ) print(f"Statuses of some random players by XUID: {presence}\n") # Get messages messages = await xbl_client.message.get_inbox() print(f"Your messages: {messages}\n") # Get profile by GT profile = await xbl_client.profile.get_profile_by_gamertag("SomeGamertag") print(f"Profile under SomeGamertag gamer tag: {profile}\n") asyncio.run(async_main()) ``` ## Contribute - Report bugs/suggest features - Add/update docs - Add additional xbox live endpoints ## Credits This package uses parts of [Cookiecutter](https://github.com/audreyr/cookiecutter) and the [audreyr/cookiecutter-pypackage](https://github.com/audreyr/cookiecutter-pypackage) project template. The authentication code is based on [joealcorn/xbox](https://github.com/joealcorn/xbox) Informations on endpoints gathered from: - [XboxLive REST Reference](https://docs.microsoft.com/en-us/windows/uwp/xbox-live/xbox-live-rest/atoc-xboxlivews-reference) - [XboxLiveTraceAnalyzer APIMap](https://github.com/Microsoft/xbox-live-trace-analyzer/blob/master/Source/XboxLiveTraceAnalyzer.APIMap.csv) - [Xbox Live Service API](https://github.com/Microsoft/xbox-live-api) ## Disclaimer Xbox, Xbox One, Smartglass and Xbox Live are trademarks of Microsoft Corporation. Team OpenXbox is in no way endorsed by or affiliated with Microsoft Corporation, or any associated subsidiaries, logos or trademarks. python-xbox-webapi-2.1.0/docs/000077500000000000000000000000001465040003600162045ustar00rootroot00000000000000python-xbox-webapi-2.1.0/docs/Makefile000066400000000000000000000011371465040003600176460ustar00rootroot00000000000000# Minimal makefile for Sphinx documentation # # You can set these variables from the command line. SPHINXOPTS = SPHINXBUILD = sphinx-build SPHINXPROJ = XboxWebAPI SOURCEDIR = . BUILDDIR = _build # Put it first so that "make" without argument is like "make help". help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) .PHONY: help Makefile # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)python-xbox-webapi-2.1.0/docs/_ext/000077500000000000000000000000001465040003600171435ustar00rootroot00000000000000python-xbox-webapi-2.1.0/docs/_ext/linkcode_res.py000066400000000000000000000066511465040003600221660ustar00rootroot00000000000000import importlib import inspect import os import sys import xbox.webapi # -- Linkcode resolver ----------------------------------------------------- # This is HEAVILY inspired by numpy's # https://github.com/numpy/numpy/blob/73fe877ff967f279d470b81ad447b9f3056c1335/doc/source/conf.py#L390 # Copyright (c) 2005-2020, NumPy Developers. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # # * Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials provided # with the distribution. # # * Neither the name of the NumPy Developers nor the names of any # contributors may be used to endorse or promote products derived # from this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. def linkcode_resolve(domain, info): """ Determine the url corresponding to Python object """ if domain != "py": return None modname = info["module"] fullname = info["fullname"] try: importlib.import_module(modname) except Exception: return None submod = sys.modules.get(modname) if submod is None: return None obj = submod for part in fullname.split("."): try: obj = getattr(obj, part) except Exception: return None # strip decorators, which would resolve to the source of the decorator # possibly an upstream bug in getsourcefile, bpo-1764286 try: unwrap = inspect.unwrap except AttributeError: pass else: obj = unwrap(obj) fn = None lineno = None try: fn = inspect.getsourcefile(obj) except Exception: fn = None if not fn: return None try: source, lineno = inspect.getsourcelines(obj) except Exception: lineno = None fn = os.path.relpath(fn, start=os.path.dirname(xbox.webapi.__file__)) if lineno: linespec = "#L%d-L%d" % (lineno, lineno + len(source) - 1) else: linespec = "" url = "https://github.com/OpenXbox/xbox-webapi-python/blob/%s/xbox/webapi/%s%s" # url = "https://github.com/pyca/cryptography/blob/%s/src/cryptography/%s%s" if "dev" in xbox.webapi.__version__: return url % ("master", fn, linespec) else: version = f"v{xbox.webapi.__version__}" return url % (version, fn, linespec)python-xbox-webapi-2.1.0/docs/_static/000077500000000000000000000000001465040003600176325ustar00rootroot00000000000000python-xbox-webapi-2.1.0/docs/_static/.keep000066400000000000000000000000001465040003600205450ustar00rootroot00000000000000python-xbox-webapi-2.1.0/docs/_templates/000077500000000000000000000000001465040003600203415ustar00rootroot00000000000000python-xbox-webapi-2.1.0/docs/_templates/.keep000066400000000000000000000000001465040003600212540ustar00rootroot00000000000000python-xbox-webapi-2.1.0/docs/conf.py000066400000000000000000000130621465040003600175050ustar00rootroot00000000000000# # Configuration file for the Sphinx documentation builder. # # This file does only contain a selection of the most common options. For a # full list see the documentation: # http://www.sphinx-doc.org/en/stable/config # -- Path setup -------------------------------------------------------------- # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # # import os # import sys # sys.path.insert(0, os.path.abspath('.')) import os import sys sys.path.insert(0, os.path.abspath('../')) sys.path.insert(0, os.path.abspath('_ext')) # -- Project information ----------------------------------------------------- project = 'Xbox-WebAPI' copyright = '2022, OpenXbox' author = 'OpenXbox' # The short X.Y version version = '1.0' # The full version, including alpha/beta/rc tags release = '2.1.0' # -- General configuration --------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. # # needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'sphinx.ext.napoleon', 'sphinx.ext.linkcode', 'sphinx_mdinclude' ] # Linkcode resolver from linkcode_res import linkcode_resolve # noqa: E402, F401 # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: # # source_suffix = ['.rst', '.md'] source_suffix = ['.rst', '.md'] # The master toctree document. master_doc = 'index' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. language = 'en' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path . exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' # -- Options for HTML output ------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # html_theme = 'sphinx_rtd_theme' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. # # html_theme_options = {} # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] # Custom sidebar templates, must be a dictionary that maps document names # to template names. # # The default sidebars (for documents that don't match any pattern) are # defined by theme itself. Builtin themes are using these templates by # default: ``['localtoc.html', 'relations.html', 'sourcelink.html', # 'searchbox.html']``. # # html_sidebars = {} # -- Options for HTMLHelp output --------------------------------------------- # Output file base name for HTML help builder. htmlhelp_basename = 'Xbox-WebAPIdoc' # -- Options for LaTeX output ------------------------------------------------ latex_elements = { # The paper size ('letterpaper' or 'a4paper'). # # 'papersize': 'letterpaper', # The font size ('10pt', '11pt' or '12pt'). # # 'pointsize': '10pt', # Additional stuff for the LaTeX preamble. # # 'preamble': '', # Latex figure (float) alignment # # 'figure_align': 'htbp', } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ (master_doc, 'Xbox-WebAPI.tex', 'Xbox-WebAPI Documentation', 'OpenXbox', 'manual'), ] # -- Options for manual page output ------------------------------------------ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ (master_doc, 'xbox-webapi', 'Xbox-WebAPI Documentation', [author], 1) ] # -- Options for Texinfo output ---------------------------------------------- # Grouping the document tree into Texinfo files. List of tuples # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ (master_doc, 'Xbox-WebAPI', 'Xbox-WebAPI Documentation', author, 'Xbox-WebAPI', 'One line description of project.', 'Miscellaneous'), ] # -- Extension configuration ------------------------------------------------- # -- Options for intersphinx extension --------------------------------------- # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = {'https://docs.python.org/3': None} # -- Options for napoleon extension ------------------------------------------ napoleon_google_docstring = True napoleon_numpy_docstring = True napoleon_include_init_with_doc = True napoleon_include_private_with_doc = True # -- Autodoc settings autodoc_member_order = 'bysource' autodoc_typehints = 'description' python-xbox-webapi-2.1.0/docs/index.rst000066400000000000000000000011621465040003600200450ustar00rootroot00000000000000.. Xbox WebAPI documentation master file, created by sphinx-quickstart on Tue Mar 13 18:40:24 2018. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. Welcome to Xbox WebAPI's documentation! ======================================= .. mdinclude:: ../README.md .. toctree:: :maxdepth: 2 :caption: Contents: source/xbox.webapi.authentication.manager source/xbox.webapi.api.client source/xbox.webapi.api.language source/xbox.webapi.api.provider Indices and tables ================== * :ref:`genindex` * :ref:`modindex` * :ref:`search` python-xbox-webapi-2.1.0/docs/make.bat000066400000000000000000000014561465040003600176170ustar00rootroot00000000000000@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set SOURCEDIR=. set BUILDDIR=_build set SPHINXPROJ=XboxWebAPI if "%1" == "" goto help %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% :end popd python-xbox-webapi-2.1.0/docs/source/000077500000000000000000000000001465040003600175045ustar00rootroot00000000000000python-xbox-webapi-2.1.0/docs/source/modules.rst000066400000000000000000000000701465040003600217030ustar00rootroot00000000000000xbox ==== .. toctree:: :maxdepth: 4 xbox.webapi python-xbox-webapi-2.1.0/docs/source/xbox.rst000066400000000000000000000001721465040003600212160ustar00rootroot00000000000000xbox namespace ============== .. py:module:: xbox Subpackages ----------- .. toctree:: :maxdepth: 4 xbox.webapi python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.client.rst000066400000000000000000000002571465040003600245150ustar00rootroot00000000000000Xbox Live Client - HTTP Client wrapper ====================================== .. automodule:: xbox.webapi.api.client :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.language.rst000066400000000000000000000002411465040003600250130ustar00rootroot00000000000000Xbox Live language definitions ============================== .. automodule:: xbox.webapi.api.language :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.account.models.rst000066400000000000000000000003151465040003600300010ustar00rootroot00000000000000xbox.webapi.api.provider.account.models module ============================================== .. automodule:: xbox.webapi.api.provider.account.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.account.rst000066400000000000000000000002531465040003600265200ustar00rootroot00000000000000Acccount - Change your Gamertag =============================== .. automodule:: xbox.webapi.api.provider.account :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.achievements.models.rst000066400000000000000000000003341465040003600310210ustar00rootroot00000000000000xbox.webapi.api.provider.achievements.models module =================================================== .. automodule:: xbox.webapi.api.provider.achievements.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.achievements.rst000066400000000000000000000003061465040003600275360ustar00rootroot00000000000000Achievements - Get info about gameprogress ========================================== .. automodule:: xbox.webapi.api.provider.achievements :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.baseprovider.rst000066400000000000000000000003071465040003600275510ustar00rootroot00000000000000xbox.webapi.api.provider.baseprovider module ============================================ .. automodule:: xbox.webapi.api.provider.baseprovider :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.catalog.const.rst000066400000000000000000000003121465040003600276170ustar00rootroot00000000000000xbox.webapi.api.provider.catalog.const module ============================================= .. automodule:: xbox.webapi.api.provider.catalog.const :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.catalog.models.rst000066400000000000000000000003151465040003600277570ustar00rootroot00000000000000xbox.webapi.api.provider.catalog.models module ============================================== .. automodule:: xbox.webapi.api.provider.catalog.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.catalog.rst000066400000000000000000000002571465040003600265020ustar00rootroot00000000000000Catalog - Microsoft Store Catalog ================================= .. automodule:: xbox.webapi.api.provider.catalog :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.cqs.models.rst000066400000000000000000000003011465040003600271260ustar00rootroot00000000000000xbox.webapi.api.provider.cqs.models module ========================================== .. automodule:: xbox.webapi.api.provider.cqs.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.cqs.rst000066400000000000000000000002471465040003600256550ustar00rootroot00000000000000CQS - Stump TV Streaming ====================================== .. automodule:: xbox.webapi.api.provider.cqs :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.gameclips.models.rst000066400000000000000000000003231465040003600303100ustar00rootroot00000000000000xbox.webapi.api.provider.gameclips.models module ================================================ .. automodule:: xbox.webapi.api.provider.gameclips.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.gameclips.rst000066400000000000000000000002771465040003600270360ustar00rootroot00000000000000Gameclips - Own, from Community, by XUID ======================================== .. automodule:: xbox.webapi.api.provider.gameclips :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.lists.models.rst000066400000000000000000000003071465040003600275040ustar00rootroot00000000000000xbox.webapi.api.provider.lists.models module ============================================ .. automodule:: xbox.webapi.api.provider.lists.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.lists.rst000066400000000000000000000002511465040003600262200ustar00rootroot00000000000000EPLists - Manage Xbox Live Pins =============================== .. automodule:: xbox.webapi.api.provider.lists :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.mediahub.models.rst000066400000000000000000000003201465040003600301170ustar00rootroot00000000000000xbox.webapi.api.provider.mediahub.models module =============================================== .. automodule:: xbox.webapi.api.provider.mediahub.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.mediahub.rst000066400000000000000000000005001465040003600266350ustar00rootroot00000000000000xbox.webapi.api.provider.mediahub package ========================================= Submodules ---------- .. toctree:: :maxdepth: 4 xbox.webapi.api.provider.mediahub.models Module contents --------------- .. automodule:: xbox.webapi.api.provider.mediahub :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.message.models.rst000066400000000000000000000003151465040003600277710ustar00rootroot00000000000000xbox.webapi.api.provider.message.models module ============================================== .. automodule:: xbox.webapi.api.provider.message.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.message.rst000066400000000000000000000002551465040003600265120ustar00rootroot00000000000000Message - Read and send messages ================================ .. automodule:: xbox.webapi.api.provider.message :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.people.models.rst000066400000000000000000000003121465040003600276260ustar00rootroot00000000000000xbox.webapi.api.provider.people.models module ============================================= .. automodule:: xbox.webapi.api.provider.people.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.people.rst000066400000000000000000000002441465040003600263500ustar00rootroot00000000000000People - Get friendlist info ============================ .. automodule:: xbox.webapi.api.provider.people :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.presence.models.rst000066400000000000000000000003201465040003600301450ustar00rootroot00000000000000xbox.webapi.api.provider.presence.models module =============================================== .. automodule:: xbox.webapi.api.provider.presence.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.presence.rst000066400000000000000000000002741465040003600266730ustar00rootroot00000000000000Presence - Get online status of friends ======================================= .. automodule:: xbox.webapi.api.provider.presence :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.profile.models.rst000066400000000000000000000003151465040003600300050ustar00rootroot00000000000000xbox.webapi.api.provider.profile.models module ============================================== .. automodule:: xbox.webapi.api.provider.profile.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.profile.rst000066400000000000000000000002671465040003600265310ustar00rootroot00000000000000Profile - Get Userprofile information ===================================== .. automodule:: xbox.webapi.api.provider.profile :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.rst000066400000000000000000000014341465040003600250670ustar00rootroot00000000000000Xbox Live Providers - API Endpoints =================================== Submodules ---------- .. toctree:: xbox.webapi.api.provider.account xbox.webapi.api.provider.catalog xbox.webapi.api.provider.cqs xbox.webapi.api.provider.lists xbox.webapi.api.provider.profile xbox.webapi.api.provider.achievements xbox.webapi.api.provider.usersearch xbox.webapi.api.provider.gameclips xbox.webapi.api.provider.people xbox.webapi.api.provider.presence xbox.webapi.api.provider.message xbox.webapi.api.provider.userstats xbox.webapi.api.provider.screenshots xbox.webapi.api.provider.titlehub xbox.webapi.api.provider.smartglass Module contents --------------- .. automodule:: xbox.webapi.api.provider :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.screenshots.models.rst000066400000000000000000000003311465040003600307030ustar00rootroot00000000000000xbox.webapi.api.provider.screenshots.models module ================================================== .. automodule:: xbox.webapi.api.provider.screenshots.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.screenshots.rst000066400000000000000000000002631465040003600274250ustar00rootroot00000000000000Screenshots - Get screenshot info ================================= .. automodule:: xbox.webapi.api.provider.screenshots :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.smartglass.models.rst000066400000000000000000000003261465040003600305270ustar00rootroot00000000000000xbox.webapi.api.provider.smartglass.models module ================================================= .. automodule:: xbox.webapi.api.provider.smartglass.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.smartglass.rst000066400000000000000000000002541465040003600272450ustar00rootroot00000000000000Smartglass - Control your Xbox ============================== .. automodule:: xbox.webapi.api.provider.smartglass :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.titlehub.models.rst000066400000000000000000000003201465040003600301610ustar00rootroot00000000000000xbox.webapi.api.provider.titlehub.models module =============================================== .. automodule:: xbox.webapi.api.provider.titlehub.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.titlehub.rst000066400000000000000000000002701465040003600267030ustar00rootroot00000000000000Titlehub - Get Title history and info ===================================== .. automodule:: xbox.webapi.api.provider.titlehub :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.usersearch.models.rst000066400000000000000000000003261465040003600305130ustar00rootroot00000000000000xbox.webapi.api.provider.usersearch.models module ================================================= .. automodule:: xbox.webapi.api.provider.usersearch.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.usersearch.rst000066400000000000000000000002721465040003600272310ustar00rootroot00000000000000Usersearch - Search users / gamertags ===================================== .. automodule:: xbox.webapi.api.provider.usersearch :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.userstats.models.rst000066400000000000000000000003231465040003600304010ustar00rootroot00000000000000xbox.webapi.api.provider.userstats.models module ================================================ .. automodule:: xbox.webapi.api.provider.userstats.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.provider.userstats.rst000066400000000000000000000002551465040003600271230ustar00rootroot00000000000000Userstats - Get game statistics =============================== .. automodule:: xbox.webapi.api.provider.userstats :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.api.rst000066400000000000000000000004071465040003600232350ustar00rootroot00000000000000xbox.webapi.api package ======================= Submodules ---------- .. toctree:: xbox.webapi.api.client xbox.webapi.api.language Module contents --------------- .. automodule:: xbox.webapi.api :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.authentication.manager.rst000066400000000000000000000003251465040003600271130ustar00rootroot00000000000000Authentication Manager - Authenticate with MS / XBL =================================================== .. automodule:: xbox.webapi.authentication.manager :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.authentication.models.rst000066400000000000000000000002731465040003600267660ustar00rootroot00000000000000xbox.webapi.authentication.models module ======================================== .. automodule:: xbox.webapi.authentication.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.authentication.rst000066400000000000000000000004301465040003600254770ustar00rootroot00000000000000xbox.webapi.authentication package ================================== Submodules ---------- .. toctree:: xbox.webapi.authentication.manager Module contents --------------- .. automodule:: xbox.webapi.authentication :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.authentication.xal.rst000066400000000000000000000002621465040003600262650ustar00rootroot00000000000000xbox.webapi.authentication.xal module ===================================== .. automodule:: xbox.webapi.authentication.xal :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.common.exceptions.rst000066400000000000000000000002141465040003600261300ustar00rootroot00000000000000Custom Exceptions ================= .. automodule:: xbox.webapi.common.exceptions :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.common.filetimes.rst000066400000000000000000000002541465040003600257340ustar00rootroot00000000000000xbox.webapi.common.filetimes module =================================== .. automodule:: xbox.webapi.common.filetimes :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.common.models.rst000066400000000000000000000002431465040003600252340ustar00rootroot00000000000000xbox.webapi.common.models module ================================ .. automodule:: xbox.webapi.common.models :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.common.request_signer.rst000066400000000000000000000002751465040003600270150ustar00rootroot00000000000000xbox.webapi.common.request\_signer module ========================================= .. automodule:: xbox.webapi.common.request_signer :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.common.rst000066400000000000000000000003731465040003600237560ustar00rootroot00000000000000xbox.webapi.common package ========================== Submodules ---------- .. toctree:: xbox.webapi.common.exceptions Module contents --------------- .. automodule:: xbox.webapi.common :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.common.signed_session.rst000066400000000000000000000002751465040003600267720ustar00rootroot00000000000000xbox.webapi.common.signed\_session module ========================================= .. automodule:: xbox.webapi.common.signed_session :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.rst000066400000000000000000000003371465040003600224670ustar00rootroot00000000000000xbox.webapi package =================== Subpackages ----------- .. toctree:: xbox.webapi.scripts Module contents --------------- .. automodule:: xbox.webapi :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.scripts.authenticate.rst000066400000000000000000000002731465040003600266310ustar00rootroot00000000000000xbox.webapi.scripts.authenticate module ======================================= .. automodule:: xbox.webapi.scripts.authenticate :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.scripts.change_gamertag.rst000066400000000000000000000003031465040003600272410ustar00rootroot00000000000000xbox.webapi.scripts.change\_gamertag module =========================================== .. automodule:: xbox.webapi.scripts.change_gamertag :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.scripts.friends.rst000066400000000000000000000002511465040003600256010ustar00rootroot00000000000000xbox.webapi.scripts.friends module ================================== .. automodule:: xbox.webapi.scripts.friends :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.scripts.rst000066400000000000000000000002451465040003600241530ustar00rootroot00000000000000xbox.webapi.scripts namespace ============================= Submodules ---------- .. toctree:: xbox.webapi.scripts.authenticate xbox.webapi.scripts.search python-xbox-webapi-2.1.0/docs/source/xbox.webapi.scripts.search.rst000066400000000000000000000002511465040003600254140ustar00rootroot00000000000000xbox.webapi.scripts.search module ================================= .. automodule:: xbox.webapi.scripts.search :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/docs/source/xbox.webapi.scripts.xal.rst000066400000000000000000000002351465040003600247350ustar00rootroot00000000000000xbox.webapi.scripts.xal module ============================== .. automodule:: xbox.webapi.scripts.xal :members: :undoc-members: :show-inheritance: python-xbox-webapi-2.1.0/pyproject.toml000066400000000000000000000062401465040003600201720ustar00rootroot00000000000000[project] name = "xbox-webapi" version = "2.1.0" description = "A library to authenticate with Windows Live/Xbox Live and use their API" authors = [ {name = "OpenXbox"}, ] dependencies = [ "appdirs", "ecdsa", "httpx", "ms_cv", "pydantic==2.*", ] requires-python = ">=3.8" readme = "README.md" license = {text = "GPL"} keywords = ["xbox one live api"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Libraries :: Python Modules", ] [project.urls] Homepage = "https://github.com/OpenXbox/xbox-webapi-python" [project.optional-dependencies] dev = [ # Tagging releases "bump2version", # Testing "coverage", "pytest", "pytest-asyncio", "pytest-cov", "pytest-runner", "respx", # Packaging "twine", "watchdog", "wheel", # Pre-commit / Linting "ruff==0.1.6", "pre-commit==3.5.0", "pyupgrade==3.15.0", "black==23.11.0", # "flake8-docstrings==1.5.0", "pydocstyle==6.1.1", "bandit==1.7.5", "isort==5.12.0", ] docs = [ "Sphinx", "sphinx-mdinclude", "sphinx_rtd_theme", ] [project.scripts] xbox-authenticate = "xbox.webapi.scripts.authenticate:main" xbox-change-gt = "xbox.webapi.scripts.change_gamertag:main" xbox-friends = "xbox.webapi.scripts.friends:main" xbox-searchlive = "xbox.webapi.scripts.search:main" xbox-xal = "xbox.webapi.scripts.xal:main" [tool.ruff] # Exclude a variety of commonly ignored directories. exclude = [ ".bzr", ".direnv", ".eggs", ".git", ".git-rewrite", ".hg", ".mypy_cache", ".nox", ".pants.d", ".pytype", ".ruff_cache", ".svn", ".tox", ".venv", "__pypackages__", "_build", "buck-out", "build", "docs", "dist", "node_modules", "venv", ] # Same as Black. line-length = 88 indent-width = 4 # Assume Python 3.8 target-version = "py38" [tool.ruff.lint] select = ["E4", "E7", "E9", "F"] ignore = [] fixable = ["ALL"] unfixable = [] # Allow unused variables when underscore-prefixed. dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" [tool.ruff.format] # Like Black, use double quotes for strings. quote-style = "double" # Like Black, indent with spaces, rather than tabs. indent-style = "space" # Like Black, respect magic trailing commas. skip-magic-trailing-comma = false # Like Black, automatically detect the appropriate line ending. line-ending = "auto" [tool.bandit] exclude_dirs = ["tests"] tests = [ "B108", "B306", "B307", "B313", "B314", "B315", "B316", "B317", "B318", "B319", "B320", "B602", "B604" ] [tool.black] target-version = ["py37", "py38", "py39", "py310", "py311"] exclude = 'generated' [tool.setuptools.packages.find] where = ["."] include = ["xbox.webapi.*"] [build-system] requires = ["setuptools>=61", "wheel"] build-backend = "setuptools.build_meta" python-xbox-webapi-2.1.0/readme_example.py000066400000000000000000000066661465040003600206140ustar00rootroot00000000000000import asyncio import sys from httpx import HTTPStatusError from xbox.webapi.api.client import XboxLiveClient from xbox.webapi.authentication.manager import AuthenticationManager from xbox.webapi.authentication.models import OAuth2TokenResponse from xbox.webapi.common.signed_session import SignedSession from xbox.webapi.scripts import CLIENT_ID, CLIENT_SECRET, TOKENS_FILE """ This uses the global default client identification by OpenXbox You can supply your own parameters here if you are permitted to create new Microsoft OAuth Apps and know what you are doing """ client_id = CLIENT_ID client_secret = CLIENT_SECRET tokens_file = TOKENS_FILE """ For doing authentication, see xbox/webapi/scripts/authenticate.py """ async def async_main(): # Create a HTTP client session async with SignedSession() as session: """ Initialize with global OAUTH parameters from above """ auth_mgr = AuthenticationManager(session, client_id, client_secret, "") """ Read in tokens that you received from the `xbox-authenticate`-script previously See `xbox/webapi/scripts/authenticate.py` """ try: with open(tokens_file) as f: tokens = f.read() # Assign gathered tokens auth_mgr.oauth = OAuth2TokenResponse.model_validate_json(tokens) except FileNotFoundError as e: print( f"File {tokens_file} isn`t found or it doesn`t contain tokens! err={e}" ) print("Authorizing via OAUTH") url = auth_mgr.generate_authorization_url() print(f"Auth via URL: {url}") authorization_code = input("Enter authorization code> ") tokens = await auth_mgr.request_oauth_token(authorization_code) auth_mgr.oauth = tokens """ Refresh tokens, just in case You could also manually check the token lifetimes and just refresh them if they are close to expiry """ try: await auth_mgr.refresh_tokens() except HTTPStatusError as e: print( f""" Could not refresh tokens from {tokens_file}, err={e}\n You might have to delete the tokens file and re-authenticate if refresh token is expired """ ) sys.exit(-1) # Save the refreshed/updated tokens with open(tokens_file, mode="w") as f: f.write(auth_mgr.oauth.json()) print(f"Refreshed tokens in {tokens_file}!") """ Construct the Xbox API client from AuthenticationManager instance """ xbl_client = XboxLiveClient(auth_mgr) """ Some example API calls """ # Get friendslist friendslist = await xbl_client.people.get_friends_own() print(f"Your friends: {friendslist}\n") # Get presence status (by list of XUID) presence = await xbl_client.presence.get_presence_batch( ["2533274794093122", "2533274807551369"] ) print(f"Statuses of some random players by XUID: {presence}\n") # Get messages messages = await xbl_client.message.get_inbox() print(f"Your messages: {messages}\n") # Get profile by GT profile = await xbl_client.profile.get_profile_by_gamertag("SomeGamertag") print(f"Profile under SomeGamertag gamer tag: {profile}\n") asyncio.run(async_main()) python-xbox-webapi-2.1.0/setup.cfg000066400000000000000000000011321465040003600170720ustar00rootroot00000000000000[bumpversion] current_version = 2.1.0 commit = True tag = True [bumpversion:file:pyproject.toml] search = version = "{current_version}" replace = version = "{new_version}" [bumpversion:file:xbox/webapi/__init__.py] search = __version__ = "{current_version}" replace = __version__ = "{new_version}" [bumpversion:file:docs/conf.py] search = release = '{current_version}' replace = release = '{new_version}' [bdist_wheel] universal = 1 [isort] profile = black force_sort_within_sections = true known_first_party = xbox,tests forced_separate = tests combine_as_imports = true [aliases] test = pytest python-xbox-webapi-2.1.0/tests/000077500000000000000000000000001465040003600164165ustar00rootroot00000000000000python-xbox-webapi-2.1.0/tests/__init__.py000066400000000000000000000000361465040003600205260ustar00rootroot00000000000000"""Tests for XBox Web API.""" python-xbox-webapi-2.1.0/tests/common.py000066400000000000000000000005551465040003600202650ustar00rootroot00000000000000import json import os TEST_PATH = os.path.dirname(__file__) def get_response(name): """Read a response file.""" with open(f"{TEST_PATH}/data/responses/{name}.json", encoding="utf8") as f: return f.read() def get_response_json(name): """Read a response file and return json dict.""" text = get_response(name) return json.loads(text) python-xbox-webapi-2.1.0/tests/conftest.py000066400000000000000000000044351465040003600206230ustar00rootroot00000000000000from datetime import datetime, timezone import uuid from ecdsa.keys import SigningKey, VerifyingKey import pytest import pytest_asyncio from xbox.webapi.api.client import XboxLiveClient from xbox.webapi.authentication.manager import AuthenticationManager from xbox.webapi.authentication.models import ( OAuth2TokenResponse, XAUResponse, XSTSResponse, ) from xbox.webapi.authentication.xal import ( APP_PARAMS_GAMEPASS_BETA, CLIENT_PARAMS_ANDROID, XALManager, ) from xbox.webapi.common.request_signer import RequestSigner from xbox.webapi.common.signed_session import SignedSession from tests.common import get_response @pytest_asyncio.fixture(scope="function") async def auth_mgr(event_loop): session = SignedSession() mgr = AuthenticationManager(session, "abc", "123", "http://localhost") mgr.oauth = OAuth2TokenResponse.model_validate_json( get_response("auth_oauth2_token") ) mgr.user_token = XAUResponse.model_validate_json(get_response("auth_user_token")) mgr.xsts_token = XSTSResponse.model_validate_json(get_response("auth_xsts_token")) yield mgr await session.aclose() @pytest_asyncio.fixture(scope="function") async def xal_mgr(event_loop): session = SignedSession() mgr = XALManager( session, device_id=uuid.UUID("9c493431-5462-4a4a-a247-f6420396318d"), app_params=APP_PARAMS_GAMEPASS_BETA, client_params=CLIENT_PARAMS_ANDROID, ) yield mgr await session.aclose() @pytest.fixture(scope="function") def xbl_client(auth_mgr): return XboxLiveClient(auth_mgr) @pytest.fixture(scope="session") def ecdsa_signing_key_str() -> str: with open("tests/data/test_signing_key.pem") as f: return f.read() @pytest.fixture(scope="session") def ecdsa_signing_key(ecdsa_signing_key_str: str) -> SigningKey: return SigningKey.from_pem(ecdsa_signing_key_str) @pytest.fixture(scope="session") def ecdsa_verifying_key(ecdsa_signing_key: SigningKey) -> VerifyingKey: return ecdsa_signing_key.get_verifying_key() @pytest.fixture(scope="session") def synthetic_request_signer(ecdsa_signing_key) -> RequestSigner: return RequestSigner(ecdsa_signing_key) @pytest.fixture(scope="session") def synthetic_timestamp() -> datetime: return datetime.fromtimestamp(1586999965, timezone.utc) python-xbox-webapi-2.1.0/tests/data/000077500000000000000000000000001465040003600173275ustar00rootroot00000000000000python-xbox-webapi-2.1.0/tests/data/responses/000077500000000000000000000000001465040003600213505ustar00rootroot00000000000000python-xbox-webapi-2.1.0/tests/data/responses/achievements_360_all.json000066400000000000000000000171261465040003600261450ustar00rootroot00000000000000{ "achievements": [ { "id": 1, "titleId": 1297290392, "name": "Booster-Blüte", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 10, "imageId": 3, "description": "Eine Gruppe aus Linienlöschern gemacht", "lockedDescription": "Mache eine Gruppe aus Linienlöschern", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" }, { "id": 2, "titleId": 1297290392, "name": "Der Griff nach den Sternen", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 10, "imageId": 4, "description": "Eine Blumenbombe gemacht", "lockedDescription": "Mache eine Blumenbombe", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" }, { "id": 3, "titleId": 1297290392, "name": "Foto-Finish", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 10, "imageId": 5, "description": "Einen Level beendet, indem beim letzten Zug ein Assist benutzt wurde", "lockedDescription": "Beende einen Level, indem du beim letzten Zug einen Assist benutzt", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" }, { "id": 4, "titleId": 1297290392, "name": "Booster-Fachkraft", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 15, "imageId": 6, "description": "Jeden Booster und Assist im Spiel benutzt", "lockedDescription": "Benutze jeden Booster und Assist im Spiel", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" }, { "id": 5, "titleId": 1297290392, "name": "Lass sie zählen", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 10, "imageId": 7, "description": "+3 Züge benutzt und einen Level in den letzten 3 Zügen beendet", "lockedDescription": "Benutze +3 Züge und beende einen Level in den letzten 3 Zügen", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" }, { "id": 6, "titleId": 1297290392, "name": "Die fantastischen Fünf", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 10, "imageId": 12, "description": "Ein Farblöscher-Hexa aus 5 Hexas erzeugt", "lockedDescription": "Erzeuge ein Farblöscher-Hexa aus 5 Hexas", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" }, { "id": 7, "titleId": 1297290392, "name": "Gelöschte Linien", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 10, "imageId": 10, "description": "100 Linienlöscher-Hexas erzeugt", "lockedDescription": "Erzeuge 100 Linienlöscher-Hexas", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" }, { "id": 8, "titleId": 1297290392, "name": "Gelöschte Farben", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 15, "imageId": 13, "description": "200 Farblöscher-Hexas erzeugt", "lockedDescription": "Erzeuge 200 Farblöscher-Hexas", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" }, { "id": 9, "titleId": 1297290392, "name": "Schneller Verstand", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 10, "imageId": 14, "description": "Das Spielanleitungs-Tutorial beendet", "lockedDescription": "Beende das Tutorial", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" }, { "id": 10, "titleId": 1297290392, "name": "Hexamateur", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 10, "imageId": 15, "description": "33 Level beendet", "lockedDescription": "Beende 33 Level", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" }, { "id": 11, "titleId": 1297290392, "name": "Hexafiziert", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 10, "imageId": 16, "description": "66 Level beendet", "lockedDescription": "Beende 66 Level", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" }, { "id": 12, "titleId": 1297290392, "name": "Hexaheld", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 25, "imageId": 17, "description": "100 Level beendet", "lockedDescription": "Beende 100 Level", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" }, { "id": 13, "titleId": 1297290392, "name": "Die Zahl", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 15, "imageId": 18, "description": "In 42 Levels drei Sterne verdient", "lockedDescription": "Verdiene dir in 42 Levels drei Sterne", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" }, { "id": 19, "titleId": 1297290392, "name": "Dunkle Zeiten", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 20, "imageId": 24, "description": "Alle Züge in einem Level aufgebraucht, ohne ein Dunkles Fragment zu beseitigen", "lockedDescription": "Brauche alle Züge in einem Level auf, ohne ein Dunkles Fragment zu beseitigen", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" }, { "id": 20, "titleId": 1297290392, "name": "Anomaliensammler", "sequence": 0, "flags": 9, "unlockedOnline": false, "unlocked": false, "isSecret": false, "platform": 255, "gamerscore": 20, "imageId": 25, "description": "Einen Anomalie-Level beendet, ohne eine Anomalie auszulassen", "lockedDescription": "Beende einen Anomalie-Level, ohne eine Anomalie auszulassen", "type": 1, "isRevoked": false, "timeUnlocked": "2002-11-15T00:00:00.0000000Z" } ], "pagingInfo": { "continuationToken": null, "totalRecords": 15 }, "version": "0001-01-01T00:00:00.0000000Z" }python-xbox-webapi-2.1.0/tests/data/responses/achievements_360_earned.json000066400000000000000000000012361465040003600266260ustar00rootroot00000000000000{ "achievements": [ { "id": 6, "titleId": 1297290392, "name": "Die fantastischen Fünf", "sequence": 0, "flags": 3342345, "unlockedOnline": true, "unlocked": true, "isSecret": false, "platform": 15, "gamerscore": 10, "imageId": 12, "description": "Ein Farblöscher-Hexa aus 5 Hexas erzeugt", "lockedDescription": "Erzeuge ein Farblöscher-Hexa aus 5 Hexas", "type": 1, "isRevoked": false, "timeUnlocked": "2014-04-12T14:05:02.0000000Z" } ], "pagingInfo": { "continuationToken": null, "totalRecords": 1 }, "version": "0001-01-01T00:00:00.0000000Z" }python-xbox-webapi-2.1.0/tests/data/responses/achievements_360_recent_progress.json000066400000000000000000000250451465040003600306000ustar00rootroot00000000000000{ "titles": [ { "lastPlayed": "2017-12-19T05:33:33.8730000Z", "currentAchievements": 7, "currentGamerscore": 40, "sequence": 2, "titleId": 1161890157, "titleType": 1, "platforms": [ 1 ], "name": "SSX™", "totalAchievements": 50, "totalGamerscore": 1000 }, { "lastPlayed": "2017-10-27T17:24:49.7700000Z", "currentAchievements": 4, "currentGamerscore": 65, "sequence": 2, "titleId": 1480656987, "titleType": 3, "platforms": [ 1 ], "name": "Lode Runner™", "totalAchievements": 15, "totalGamerscore": 250 }, { "lastPlayed": "2017-07-06T04:14:07.7970000Z", "currentAchievements": 0, "currentGamerscore": 0, "sequence": 4, "titleId": 1480657330, "titleType": 3, "platforms": [ 1 ], "name": "Bomberman Battlefest", "totalAchievements": 15, "totalGamerscore": 250 }, { "lastPlayed": "2017-01-09T20:20:46.9600000Z", "currentAchievements": 0, "currentGamerscore": 0, "sequence": 141, "titleId": 960956369, "titleType": 5, "platforms": [ 1 ], "name": "Netflix", "totalAchievements": 0, "totalGamerscore": 0 }, { "lastPlayed": "2016-06-14T23:24:42.1870000Z", "currentAchievements": 2, "currentGamerscore": 50, "sequence": 23, "titleId": 1480657342, "titleType": 3, "platforms": [ 1 ], "name": "Spelunky", "totalAchievements": 20, "totalGamerscore": 400 }, { "lastPlayed": "2016-06-14T23:08:34.8170000Z", "currentAchievements": 4, "currentGamerscore": 35, "sequence": 20, "titleId": 1480657242, "titleType": 3, "platforms": [ 1 ], "name": "Trials HD", "totalAchievements": 18, "totalGamerscore": 300 }, { "lastPlayed": "2016-01-25T21:10:17.9730000Z", "currentAchievements": 11, "currentGamerscore": 120, "sequence": 17, "titleId": 1397032914, "titleType": 1, "platforms": [ 1 ], "name": "Condemned", "totalAchievements": 50, "totalGamerscore": 970 }, { "lastPlayed": "2015-12-27T09:55:06.2070000Z", "currentAchievements": 0, "currentGamerscore": 0, "sequence": 297, "titleId": 1314326481, "titleType": 5, "platforms": [ 1 ], "name": "Amazon Instant Video", "totalAchievements": 0, "totalGamerscore": 0 }, { "lastPlayed": "2015-12-26T04:36:03.8230000Z", "currentAchievements": 5, "currentGamerscore": 100, "sequence": 110, "titleId": 1161889897, "titleType": 1, "platforms": [ 1, 2 ], "name": "Rock Band 2", "totalAchievements": 50, "totalGamerscore": 1000 }, { "lastPlayed": "2015-12-26T02:48:45.0270000Z", "currentAchievements": 17, "currentGamerscore": 264, "sequence": 104, "titleId": 1161890068, "titleType": 1, "platforms": [ 1, 2 ], "name": "Rock Band 3", "totalAchievements": 62, "totalGamerscore": 1250 }, { "lastPlayed": "2015-11-22T19:59:51.0170000Z", "currentAchievements": 0, "currentGamerscore": 0, "sequence": 131, "titleId": 1481115739, "titleType": 5, "platforms": [ 1 ], "name": "Filme & TV und Groove", "totalAchievements": 0, "totalGamerscore": 0 }, { "lastPlayed": "2015-11-20T08:33:42.9870000Z", "currentAchievements": 0, "currentGamerscore": 0, "sequence": 280, "titleId": 1464993821, "titleType": 1, "platforms": [ 1 ], "name": "LEGO® HdR", "totalAchievements": 48, "totalGamerscore": 1000 }, { "lastPlayed": "2015-11-14T00:14:16.0600000Z", "currentAchievements": 0, "currentGamerscore": 0, "sequence": 91, "titleId": 1481115776, "titleType": 5, "platforms": [ 1 ], "name": "Internet Explorer", "totalAchievements": 0, "totalGamerscore": 0 }, { "lastPlayed": "2015-09-03T21:19:54.6300000Z", "currentAchievements": 59, "currentGamerscore": 1230, "sequence": 23, "titleId": 1414793191, "titleType": 1, "platforms": [ 1 ], "name": "Borderlands", "totalAchievements": 80, "totalGamerscore": 1750 }, { "lastPlayed": "2015-06-29T23:44:06.6830000Z", "currentAchievements": 3, "currentGamerscore": 30, "sequence": 20, "titleId": 1480656891, "titleType": 3, "platforms": [ 1 ], "name": "JETPAC REFUELLED", "totalAchievements": 12, "totalGamerscore": 200 }, { "lastPlayed": "2015-06-18T16:13:43.5270000Z", "currentAchievements": 5, "currentGamerscore": 70, "sequence": 17, "titleId": 1480656988, "titleType": 3, "platforms": [ 1 ], "name": "N+", "totalAchievements": 12, "totalGamerscore": 200 }, { "lastPlayed": "2015-06-16T00:04:38.9430000Z", "currentAchievements": 13, "currentGamerscore": 210, "sequence": 5, "titleId": 1480657099, "titleType": 3, "platforms": [ 1 ], "name": "Defense Grid", "totalAchievements": 22, "totalGamerscore": 300 }, { "lastPlayed": "2015-06-15T23:28:37.3770000Z", "currentAchievements": 6, "currentGamerscore": 60, "sequence": 2, "titleId": 1480656877, "titleType": 3, "platforms": [ 1 ], "name": "Geometry Wars Evolved", "totalAchievements": 12, "totalGamerscore": 200 }, { "lastPlayed": "2015-04-23T18:45:28.6800000Z", "currentAchievements": 0, "currentGamerscore": 0, "sequence": 0, "titleId": 1297287724, "titleType": 1, "platforms": [ 17 ], "name": "Project Spark", "totalAchievements": 91, "totalGamerscore": 1000 }, { "lastPlayed": "2015-04-08T01:21:48.1700000Z", "currentAchievements": 24, "currentGamerscore": 435, "sequence": 2004, "titleId": 1414793340, "titleType": 1, "platforms": [ 1 ], "name": "Borderlands 2", "totalAchievements": 69, "totalGamerscore": 1625 }, { "lastPlayed": "2014-09-30T04:34:39.7670000Z", "currentAchievements": 14, "currentGamerscore": 280, "sequence": 2001, "titleId": 1096157432, "titleType": 1, "platforms": [ 1 ], "name": "Destiny", "totalAchievements": 51, "totalGamerscore": 1250 }, { "lastPlayed": "2014-09-11T23:08:03.3130000Z", "currentAchievements": 20, "currentGamerscore": 400, "sequence": 413, "titleId": 1480659447, "titleType": 3, "platforms": [ 1 ], "name": "Minecraft", "totalAchievements": 87, "totalGamerscore": 2025 }, { "lastPlayed": "2014-08-14T19:15:04.2800000Z", "currentAchievements": 0, "currentGamerscore": 0, "sequence": 412, "titleId": 1480660006, "titleType": 3, "platforms": [ 1 ], "name": "AirMech Arena", "totalAchievements": 30, "totalGamerscore": 400 }, { "lastPlayed": "2014-06-16T22:14:43.3170000Z", "currentAchievements": 2, "currentGamerscore": 35, "sequence": 410, "titleId": 1480659969, "titleType": 3, "platforms": [ 1 ], "name": "Trials Fusion ", "totalAchievements": 46, "totalGamerscore": 1000 }, { "lastPlayed": "2014-06-04T17:24:27.9600000Z", "currentAchievements": 0, "currentGamerscore": 0, "sequence": 409, "titleId": 961546193, "titleType": 5, "platforms": [ 1 ], "name": "Syfy", "totalAchievements": 0, "totalGamerscore": 0 }, { "lastPlayed": "2014-05-05T21:47:52.4100000Z", "currentAchievements": 0, "currentGamerscore": 0, "sequence": 408, "titleId": 1480659446, "titleType": 3, "platforms": [ 1 ], "name": "Joe Danger 2 The Movie", "totalAchievements": 38, "totalGamerscore": 500 }, { "lastPlayed": "2014-04-12T14:05:02.0000000Z", "currentAchievements": 1, "currentGamerscore": 10, "sequence": 0, "titleId": 1297290392, "titleType": 1, "platforms": [ 15 ], "name": "Hexic", "totalAchievements": 15, "totalGamerscore": 200 }, { "lastPlayed": "2014-04-09T20:07:16.3330000Z", "currentAchievements": 8, "currentGamerscore": 205, "sequence": 407, "titleId": 1161890256, "titleType": 1, "platforms": [ 1 ], "name": "Titanfall", "totalAchievements": 88, "totalGamerscore": 2000 }, { "lastPlayed": "2014-04-03T19:43:40.8630000Z", "currentAchievements": 5, "currentGamerscore": 60, "sequence": 396, "titleId": 1480657548, "titleType": 3, "platforms": [ 1 ], "name": "PAC-MAN CE DX", "totalAchievements": 12, "totalGamerscore": 200 }, { "lastPlayed": "2014-03-21T18:50:56.3370000Z", "currentAchievements": 0, "currentGamerscore": 0, "sequence": 90, "titleId": 810026961, "titleType": 5, "platforms": [ 1 ], "name": "Hulu", "totalAchievements": 0, "totalGamerscore": 0 }, { "lastPlayed": "2014-03-01T22:05:16.9230000Z", "currentAchievements": 4, "currentGamerscore": 55, "sequence": 1997, "titleId": 961480657, "titleType": 1, "platforms": [ 1 ], "name": "Diablo III", "totalAchievements": 45, "totalGamerscore": 1000 }, { "lastPlayed": "2014-02-06T22:01:20.9300000Z", "currentAchievements": 0, "currentGamerscore": 0, "sequence": 394, "titleId": 1297287837, "titleType": 1, "platforms": [ 1 ], "name": "Warface Closed Beta", "totalAchievements": 0, "totalGamerscore": 0 } ], "pagingInfo": { "continuationToken": "32,2018-03-28T01:28:51.8070000Z", "totalRecords": 861 }, "version": "2018-03-28T01:28:51.8070000Z" }python-xbox-webapi-2.1.0/tests/data/responses/achievements_one_details.json000066400000000000000000000035231465040003600272670ustar00rootroot00000000000000{ "achievements": [ { "id": "39", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "On My Mark", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "77f38077-80fc-4d29-9264-e712f311815d", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "e7c471bc-048e-4db5-b2bb-b8ba529eb2ca.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n3oxhuGpOVAJjax5sEwSy6UqVUeKyiKOds2fCRxelkRTkQ7Fw2sPeo_ibYF4pKXfUowTVrCw.usmZMVtdJVXbgZ" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Simultaneously assassinated two Elites in Blue Team co-op.", "lockedDescription": "Simultaneously assassinate two Elites in Blue Team co-op.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false } ], "pagingInfo": { "continuationToken": null, "totalRecords": 1 } }python-xbox-webapi-2.1.0/tests/data/responses/achievements_one_gameprogress.json000066400000000000000000002112051465040003600303360ustar00rootroot00000000000000{ "achievements": [ { "id": "5", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Your Team is Your Weapon", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "Achieved", "progression": { "requirements": [ { "id": "862f2af6-a813-4f7c-9900-c533463568aa", "current": "3", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "2015-10-26T18:11:03.6689508Z" }, "mediaAssets": [ { "name": "80d93993-c58a-44c0-8863-6e4d0b4ee5fc.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n1grnRRmcXkXpP_HiyT0XhlgymFZwfd5N_ke_lxSpmHCVw2gCRI8gbssUB74J.5ey3CwgxcK_.tSR1f_6BzNpoI" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Commanded your team of Spartans in Osiris.", "lockedDescription": "Command your team of Spartans in Osiris.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "6", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Your Style", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "Achieved", "progression": { "requirements": [ { "id": "cc31dbd6-fff2-4999-a7bb-a8553f58ef24", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "2015-10-26T22:31:44.7485286Z" }, "mediaAssets": [ { "name": "32a87aff-616a-43dc-9227-ec3f338f4e48.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n259vW98MK8TqndUHMJ7btEtyHOXfZQaBXQD.RrxwZ6GosN5Kol4V1hK.ZY7_gk2t7tN5L54sFDZgrpeLpqSITK" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Changed your Spartan's gear in the Spartan Hub.", "lockedDescription": "Change your Spartan's gear in the Spartan Hub.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "7", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Raise Your Banner", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "Achieved", "progression": { "requirements": [ { "id": "8487413c-ba99-45c3-b30c-32a8d5a7f144", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "2015-10-26T17:38:18.8427974Z" }, "mediaAssets": [ { "name": "3381e451-5c65-4e32-92dd-06329ef83419.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n0dM5buBKKsDWzf1C53Q96jqeTYrEBM9REzJm5yINJsPmFHfgyJoQHO9KWrCJvn2szlD2nS00wqNgtAGbU4LaIl" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Changed your Emblem in the Spartan Hub.", "lockedDescription": "Change your Emblem in the Spartan Hub.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "8", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Make Your Mark", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "Achieved", "progression": { "requirements": [ { "id": "caf5d99c-4e8f-4652-afca-8ba8680e06b5", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "2015-10-26T17:37:23.1776448Z" }, "mediaAssets": [ { "name": "d27541cf-2d83-4e56-9207-3188fe9e022d.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n1Kb5VkaMiKWZlTJKCLTdcOpJh1ym.DmYgV1OsSJZN..HC0AyrQQu24U0xwkCvlXLR1lPbX6Go_sNIPKl_sb59B" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Changed your Service Tag in the Spartan Hub.", "lockedDescription": "Change your Service Tag in the Spartan Hub.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "9", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Gamemaster", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "41d51c0a-84e4-41e3-955d-b26d08213903", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "9ba49d0f-4c2d-4a43-8149-db286762ee20.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n0ArwntHgtUqQZU3Fd2cviwungEObzoBBdKTA_8IiQ1MrDy6fvEyOxgH8pULKq57gOeeqxR55CuTLiAayDHVc0g" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Created and saved a Custom Game.", "lockedDescription": "Create and save a Custom Game.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "10", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Benchwarmer", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "Achieved", "progression": { "requirements": [ { "id": "ab422f81-8c1b-4dc0-b094-4516e4466870", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "2015-11-11T06:22:21.9376390Z" }, "mediaAssets": [ { "name": "30cd30de-7215-40cb-8c77-c3f51efa1487.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n3Ljl7.O5OspFZtN7rodJ0G1HtLllS5m.upk2Ehr__7G6MTRNmXqEGoXqIGgekjT.2E_fRuv5KaAWU9k.e7a8Zi" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Spectated a game.", "lockedDescription": "Spectate a game.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "13", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Cry Havoc", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "InProgress", "progression": { "requirements": [ { "id": "51cc0145-6df4-454e-a86e-4757d532451c", "current": "1", "target": "3", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "5592a07d-5244-4642-983b-55720509237e.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n31UGj6ook79pK4iv4SbyRzRyCF4S6TIpa7IMcEmCjk9MpvuXcOfCGxhLtYKYwPq2h.hBx1KmaG5OuzNcWRwYoP" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Completed 3 matchmade games of Warzone.", "lockedDescription": "Complete 3 matchmade games of Warzone.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "14", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Bringing in the Big Guns", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "e77fbbd8-ee1d-4cc1-8e60-e727839c9f59", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "63e684f1-db1f-4694-9569-fd4e15579c46.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n1zV2mZXnRj.8s5HZSkrdCavO__W.SgJ.h.CyOp5AmgGC1RjJMrrheN_sgXCfZIh.YaGie3i4cBrR6TTYQEc9So" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Called in a REQ that costs 5 Energy or more.", "lockedDescription": "Call in a REQ that costs 5 Energy or more.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "15", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Go for the Gold", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "57efaaea-8a62-4880-9831-1d31e2abef46", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "a7da724c-9d25-4387-9874-70e315ccca5a.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n3eCj5wIN9559lAuJ8aColyEtiud4RlkK8qEdrSoerADlCOTXhyeECJwX6yNJ1kADU_GOabkzNyjI3JTqHh67qx" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Opened a Gold REQ Pack.", "lockedDescription": "Open a Gold REQ Pack.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "16", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Warlord", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "ce4d717c-4bd3-40fc-a458-92ed2a08c31c", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "b6e97a85-f726-41de-8bda-b22693b3c4e5", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "173704ff-9632-4dea-b849-7aee4747ee72", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "59cc0d06-f7a0-4b1c-8a9e-530f0aecbd0b.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n20zoefBh9sEpmzBekBa0QsdhAJhCDzHwd2b_Z_Xt86Hnlvd7M3CRASpfgpTQjB0.A_Sxl9BZzK0tt8dlaPqzSL" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Won a match on all three original Warzone maps.", "lockedDescription": "Win a match on all three original Warzone maps.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "20", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "17", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Castle Crasher", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "InProgress", "progression": { "requirements": [ { "id": "3ae3dcd8-8835-4a2b-a6f8-a1612214d558", "current": "3", "target": "5", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "f7e62c6b-afe6-4c66-9d6c-859873c1ff41.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n1W8NDGxeAStn3FoGPo6Y8LBiLSXG2Zhdt.k.NRYHwNuJi8gOz24mPw6T3vCDj9dH2gYA3D_uApsVaSp0EbqhGM" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Completed 5 matchmade games of Strongholds.", "lockedDescription": "Complete 5 matchmade games of Strongholds.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "20", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "18", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Off to the Races", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "InProgress", "progression": { "requirements": [ { "id": "d34e68d1-f1e3-4517-b278-40bf4a22cf02", "current": "2", "target": "5", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "447015ee-a8a4-4081-b12d-8d36d29c8e86.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n2O6GJMuiKflXFkwyv4FvgbzQV6RNzvr8dHxVC5lzzACvJJxCGOy8DpFeHzR0PQHASk6FVspQEVubk1TW2_yZkb" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Completed 5 matchmade games of Breakout.", "lockedDescription": "Complete 5 matchmade games of Breakout.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "20", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "19", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Flag Monger", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "InProgress", "progression": { "requirements": [ { "id": "d184f964-c652-4b1f-98f9-06bd51a16697", "current": "3", "target": "5", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "5155e78f-d57d-48fa-981e-674940582563.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n35bT9ztF4hM9CPmWADT0lVxcpWHerO92wMMTpxn9wUArG7z9MsLRfQAxdDcIg_xaBoNhyOk14f1.Oc_TaU9BS7" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Completed 5 matchmade games of Capture the Flag.", "lockedDescription": "Complete 5 matchmade games of Capture the Flag.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "20", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "20", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Spartan Decimation", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "Achieved", "progression": { "requirements": [ { "id": "49ecced8-c8a5-43fb-b99c-a8f0e88cf07c", "current": "5", "target": "5", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "2015-10-27T21:47:40.1040396Z" }, "mediaAssets": [ { "name": "f76624fd-2f07-472f-9654-2d0a04d9ee3b.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n0qZCh3H5FIjwwapYuJ6vvDj9hmWAbXY6_jGrV4fo28MjVLSDFeFA7J4pmQTlAJfP2mfKX54KS1PpDPRjYRtxcD" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Completed 5 matchmade games of Slayer.", "lockedDescription": "Complete 5 matchmade games of Slayer.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "20", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "21", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Into the Fire", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "Achieved", "progression": { "requirements": [ { "id": "44b6bc8e-71f1-420b-8c58-7f52311d7613", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "2015-10-26T18:21:30.5321366Z" }, "mediaAssets": [ { "name": "11d6c5f7-ea39-4b67-b217-5a497bb68982.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n1vNM5SfBd921E9cFZHZawejBbLN2HC.BhpBiTPS6ZWnPP88pcQyuJGX3OY98Zw9AH4Df8qDj3K8XccuXsZwO3k" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Completed Mission 1.", "lockedDescription": "Complete Mission 1.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "22", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Argent Moon", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "Achieved", "progression": { "requirements": [ { "id": "74f7fab1-ca9e-4ab2-aa98-2443282d27cd", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "2015-10-26T21:43:23.2917956Z" }, "mediaAssets": [ { "name": "aa570482-164f-466d-a98c-85adfa572e3d.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n2j0QkNSXel.OuZMggCHSZ40H8LBC0hlsONR_hX.r_N4vVMxpKzG4y1kWDPjF0RSbq2Bu25ouC995uXCUTGpP6F" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Completed Mission 2.", "lockedDescription": "Complete Mission 2.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "23", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Gravedigger", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "7a1208b5-f241-47ec-bff7-e6a4b1208031", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "78ddf221-6b76-4320-9b00-f408f204f62c.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n0EQaOGTVH6oGghWjhMy.nwkjEJ98OWL8G8Y_PxkmFGeYy6AfvfaWFaTopAkeOzVUNvHHl4b2Z.e77j9I4sejY5" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Found and claimed a Skull.", "lockedDescription": "Find and claim a Skull.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "24", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Escape", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "Achieved", "progression": { "requirements": [ { "id": "b05fdfeb-187c-4b32-bbbe-0c81ef289dc8", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "2015-10-27T23:41:51.9148944Z" }, "mediaAssets": [ { "name": "d71d0860-2c8c-40cc-acc9-b22dd9c601fa.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n1NbyRKZWYNxEE8G_7rQiCkW61zqOX5OsAz_SDYVxRrrtXkDRPvglC2xtRI1kStmG2zCUCIlYYlNS6Ab_F.MvBM" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Completed Mission 6.", "lockedDescription": "Complete Mission 6.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "25", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Together Again", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "Achieved", "progression": { "requirements": [ { "id": "7cfdef63-6f28-419b-b474-9b213dfff91f", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "2015-10-28T00:10:42.2393489Z" }, "mediaAssets": [ { "name": "769ac4a9-8bc4-4650-adea-41572fef39b3.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n3fBV6qsxqGK6_qcOsI.vByScQ_2o6impbVEx7aOl.NekMoHXqIKL2.KnEwz8aFQSSrMxW8c3LA6_xkulLeHeBt" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Completed Mission 7.", "lockedDescription": "Complete Mission 7.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "26", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Reclamation", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "Achieved", "progression": { "requirements": [ { "id": "1921d44c-b078-4020-8da7-f9265c93fe16", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "2015-11-11T03:44:42.9043960Z" }, "mediaAssets": [ { "name": "cdd6e731-0b0a-49d1-8688-b2b4e710b9e1.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n0T5euj2O.Ly6cdkm9tJp_qUYPKWR.gxxkfvdyveJ9BFbUNNtWXPTP2iX8UunTO7hSYZEitBN1Ml.otShW37H4C" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Completed Mission 13.", "lockedDescription": "Complete Mission 13.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "27", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "A New Dawn", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "Achieved", "progression": { "requirements": [ { "id": "206cdd2a-3ad1-4197-befe-a5e4e6940459", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "2015-11-11T05:14:17.1357154Z" }, "mediaAssets": [ { "name": "b9eabd4e-8e49-4923-bcea-478e2f476b55.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n2S0jMem6vrUAT1Woke8egX6hFAzprouI6J3NSseQwGBo2PaNQCU6eXmf0GulcTZIei3ZXNOEk2G8pk45bYAYsh" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Completed Mission 14.", "lockedDescription": "Complete Mission 14.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "28", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Legacy", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "Achieved", "progression": { "requirements": [ { "id": "37bd0003-5603-49df-acf0-ef060dbb6d1b", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "d061fcda-39e8-46e3-9263-455efdfe593c", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "5468681c-55d1-4b4a-9cfe-92d2481fe70c", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "a0c09494-d2a8-48e2-bd0b-ee24cf883206", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "184b758b-f091-4046-bd84-22c992aa48af", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "0d385abf-d04b-4977-80fe-72d12f434f78", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "83c16126-2c59-4f4e-9159-f92e41166d21", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "171aa59f-6f5c-4b70-9314-4ae881977e46", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "d31dfacf-ce38-4f80-9947-9315e5e22fb7", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "13c68d6a-ded3-46ee-8dbc-576ddd3a2dbb", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "1fbd7740-4774-4170-a1cc-32513f431ed9", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "d7ba5f2c-2f76-4db9-8637-7e9390efbde3", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "6943a606-8a93-4ba3-a7ed-6f91390129f3", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "8c0a1093-daae-47fe-af5e-b214df933961", "current": "1", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "4c277cae-f960-4f67-b2fb-dcd43a342973", "current": "2", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "2015-11-11T06:02:13.0550544Z" }, "mediaAssets": [ { "name": "0b95922d-e03c-4473-8639-bd246c40575f.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n07AKY1a2ijY.bO3E21RGE1MWpjCH0wcJ275wol5v6MUXoSTsKoA0x2kSGXy.iUqi.yVrD1qFYyN2Z5B8De2fcR" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Completed every Mission of the game on Normal difficulty.", "lockedDescription": "Complete every Mission of the game on Normal difficulty.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "30", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Heroes Rise", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "a571d285-2804-4050-bba7-594ba086b268", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "e57cf9b1-da75-43aa-b804-2959be838949", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "d68a526e-7762-4bba-bc68-8abe87c10264", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "338c675b-f600-4c59-bdab-029d7e522f95", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "b9986c20-af3c-437f-b904-0b522d4bf1bf", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "1eb75375-3953-4498-8357-a5454faef07a", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "60c5b1e0-9484-469c-9a3c-019fcebbd681", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "c6f98f74-3869-41b3-b750-eebe934024cb", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "e6d67198-fcf4-479a-9e62-efb8e893c249", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "5d4c6194-b38f-4523-a4dc-f5c48d757b22", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "f1c7c488-7230-4003-9a61-c32ce35ae7f8", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "8179e3c5-81d1-40af-bda8-280669b7de2a", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "5a92c52b-73f0-432c-ace4-3d110365bfdd", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "bfdc99ab-37ee-4c39-ae2a-7d1e7521ce1d", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "225f1f60-480c-4798-b333-612b4ea07ecf", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "a6ecd73b-3656-4006-839a-bb94c458adf6.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n2bl6EjNA_RPjC9haShy_jjXICA8NjiKnvgczZmDnCLn4Ne._W.0tAoPvZKaEnTNquygVVCwskypC4_aMHZOnNe" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Completed every Mission of the game on Heroic difficulty.", "lockedDescription": "Complete every Mission of the game on Heroic difficulty.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "40", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "31", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Forging a Legend", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "5ffd0d22-7345-4a5f-b327-0eb2eef55538", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "d2ce1dbe-7a22-4d8a-8e08-a401ce00efb0", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "c5e7fd0c-cd32-4a4e-aaf0-9915be2d801b", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "2efaed2e-778b-40bc-b5e0-24cda89e99b6", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "baf5725e-2f5e-4c66-8bac-ee61a932d761", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "eb9d6350-66cd-4362-b51d-c5896e6402ef", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "b4138945-ed6c-4830-8a22-6094e011acd1", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "e9dbfd3f-9eab-4189-827b-631d77d83592", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "f6182552-1e5a-4eb7-963c-1e4180a8bdfc", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "a1edaace-7abb-4d0a-be7a-6bf2f345d59c", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "8886e8cb-cb2f-4a1c-99e9-d3771b572a8b", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "c791dee4-ef5d-4664-8084-4942338a5139", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "0549e71c-04f0-4bd8-bba4-87bcc095e06f", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "7334a13b-968a-43dd-8e6e-27cb007ea287", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "447bf575-d58b-4f7e-a328-72be4659eb87", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "9f18ad53-9b6b-489a-915d-298c893e2351.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n2jaU.Awift1HfDSh7FfITK3QfqBpFwBag6HQArU6YznSlkyJbpY8m9Oso3XgKpDeRBVeJbz1Aa6D.1u37F8nts" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Completed every Mission of the game on Legendary difficulty.", "lockedDescription": "Complete every Mission of the game on Legendary difficulty.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "60", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "32", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Conspiracy Theory", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "Achieved", "progression": { "requirements": [ { "id": "fb0771a6-dd5c-4780-9922-e4157f165510", "current": "11", "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "2015-10-26T18:08:13.1276205Z" }, "mediaAssets": [ { "name": "4e06c116-f879-4973-80ef-fdee691d236b.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n3_AiDPyc1m70AKOldGnFoTan7qa6et8vQPt_IqrAjxV39hHDc1nifKqOh4ZX0B6AuHY9F_QQ_AcY9Xsm58bvdJ" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Found and claimed one piece of Intel.", "lockedDescription": "Find and claim one piece of Intel.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "33", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Top of the Food Chain", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "145d5c07-69f0-4fa8-94da-1c11f9bfcd16", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "2f9a176e-6965-44bf-8bef-2fc0200b5cf0.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n2S4J5eh2zXiYveRTns6COr6GC4eg1ukGfCj4pn1PLTuv8zleW0wJLkd_Rk4wrpBSo9NZt7TI9FTmAdfVVqgOrh" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Killed a Legendary Boss in Warzone.", "lockedDescription": "Kill a Legendary Boss in Warzone.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "30", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "34", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Hunt the Truth", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "b18fd48a-4d9e-4757-8910-d9219a43124a", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "0db0004a-9943-4ff2-8ef0-8a277a9eaa14.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n3eJ3xI1VFBnFk2Xl_9FHFw3uIUispTen0gW8LjLhpPeEv251uWJ5ByQQatcT0CY4448SrR6gqB5GC0giujuwlR" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Found and claimed all Intel.", "lockedDescription": "Find and claim all Intel.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "40", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "35", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Fire Drill", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "aa75ad46-5521-43db-aae9-d9d8c8798dc7", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "c7b91bd8-f864-41a1-b246-15d52d342172.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n0f4frpQemPglwgTaD4EOnszEw4fDPIPudc2JvlqcUYc3c5ujoKcnV5BtMtBCb.stAnGJiF4UZnL3k_hGUkZ9MD" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Finished Evacuation within 18:00 on Heroic difficulty.", "lockedDescription": "Finish Evacuation within 18:00 on Heroic difficulty.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "36", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Gravelord", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "76328e27-73cb-423e-8d1d-e47e25cc2212", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "222a6086-bb03-4fb8-9c2f-5bc64ce80bd4", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "4618a1f6-fb39-4c8a-89f4-1f26d960df78", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "f173f5ff-cfb3-488a-8828-b0dad6cc5765", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "f48c77a8-785c-4b1b-820c-2de270f8faca", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "57f72b7f-7969-49eb-993a-4c2a4c6c359e", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "1cbdffa7-a13e-4d2d-ba35-808460810c32", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "6568aaf9-4f5b-4886-971d-02d2ba7999d3", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "c38105a3-e346-4675-afa4-f2d848e4a16a", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "8bee95a0-b12a-41f1-828a-65ddc73712db", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "574f071b-3ca9-4cff-8e26-ad44c2fb0e94", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "94043c2b-426e-43ee-8db9-be07273af89b", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" }, { "id": "3c3f662e-fea7-4d57-b371-44dd91bcf660", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "3dfaaca9-0fc8-410a-ace6-6f58f96b3945.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n1kjS6J3heAL6fqF8Dv83CsCsDkEYoiRp9nSV3eP1RLPXWJ0n2kJpKlyYP1IRquQorPVnbFA5w1BuAN7Dla4KXt" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Found and claimed all Skulls.", "lockedDescription": "Find and claim all Skulls.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "40", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "37", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "Enemy of my Enemy", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "38abb19e-a791-4bff-9ff0-e50a69fcfbeb", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "3983af63-38e5-4921-8be2-d70693544a9a.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n081IBdCzK1zTgcdUU18fscb.IGGF5a0HKm93QlbU_FhplSR_1uZHcA3sMdesr.NuMs7W4390iZEms3xlGgCq3v" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Helped the Elite General charge the hill in Osiris on Heroic difficulty.", "lockedDescription": "Help the Elite General charge the hill in Osiris on Heroic difficulty.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "38", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "I Thought I'd Lost You", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "faf61771-e73b-4c99-b2a3-d76e91088c9c", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "4e9430de-f03f-47f2-8bf4-0e6ef005af30.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n07v_HwcdaHxIanSs8e0G2xLjit7wX3M2Xq4GyGy9V_l6NYYVvEak3mFH5u0MvgMlCSSZeQUBvKI2GaQwam6UZh" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Escaped the Hunters in the lab and fought them in the hangar in Blue Team.", "lockedDescription": "Escape the Hunters in the lab and fight them in the hangar in Blue Team.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false }, { "id": "39", "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "On My Mark", "titleAssociations": [ { "name": "Halo 5: Guardians", "id": 219630713 } ], "progressState": "NotStarted", "progression": { "requirements": [ { "id": "77f38077-80fc-4d29-9264-e712f311815d", "current": null, "target": "1", "operationType": "Sum", "valueType": "Integer", "ruleParticipationType": "Individual" } ], "timeUnlocked": "0001-01-01T00:00:00.0000000Z" }, "mediaAssets": [ { "name": "e7c471bc-048e-4db5-b2bb-b8ba529eb2ca.png", "type": "Icon", "url": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToArPGBBXsy0BgxeTKyXK32EuYv17xALJlk1K1zfmFqaHkmnN6MEpNtqpttKYUBs4n3oxhuGpOVAJjax5sEwSy6UqVUeKyiKOds2fCRxelkRTkQ7Fw2sPeo_ibYF4pKXfUowTVrCw.usmZMVtdJVXbgZ" } ], "platforms": [ "Durango" ], "isSecret": false, "description": "Simultaneously assassinated two Elites in Blue Team co-op.", "lockedDescription": "Simultaneously assassinate two Elites in Blue Team co-op.", "productId": "9a924f64-6ac5-4380-b249-8162269c15cc", "achievementType": "Persistent", "participationType": "Individual", "timeWindow": null, "rewards": [ { "name": null, "description": null, "value": "10", "type": "Gamerscore", "mediaAsset": null, "valueType": "Int" } ], "estimatedTime": "00:00:00", "deeplink": null, "isRevoked": false } ], "pagingInfo": { "continuationToken": "32", "totalRecords": 73 } }python-xbox-webapi-2.1.0/tests/data/responses/achievements_one_recent_progress.json000066400000000000000000000252611465040003600310510ustar00rootroot00000000000000{ "titles": [ { "lastUnlock": "2013-11-16T15:37:26.8018568Z", "titleId": 1331147, "serviceConfigId": "054b0100-2668-415d-b546-f5f300144fcb", "titleType": "LiveApp", "platform": "Durango", "name": "ESPN", "earnedAchievements": 1, "currentGamerscore": 0, "maxGamerscore": 0 }, { "lastUnlock": "2015-04-15T00:22:27.0094276Z", "titleId": 16308048, "serviceConfigId": "111f0100-b519-49cc-b26f-a92d00f8d750", "titleType": "LiveApp", "platform": "Durango", "name": "TrueAchievements", "earnedAchievements": 6, "currentGamerscore": 0, "maxGamerscore": 0 }, { "lastUnlock": "2015-07-16T16:30:26.5006136Z", "titleId": 16468936, "serviceConfigId": "3e770100-834e-4b82-b82c-689a00fb4bc8", "titleType": "DGame", "platform": "Durango", "name": "So Many Me", "earnedAchievements": 1, "currentGamerscore": 10, "maxGamerscore": 1000 }, { "lastUnlock": "2015-08-16T16:21:16.2098394Z", "titleId": 19615130, "serviceConfigId": "169f0100-035a-4cfb-9e87-4506012b4d9a", "titleType": "DGame", "platform": "Durango", "name": "Super Mega Baseball: Extra Innings", "earnedAchievements": 2, "currentGamerscore": 10, "maxGamerscore": 1000 }, { "lastUnlock": "2015-11-10T23:49:22.7446488Z", "titleId": 28152906, "serviceConfigId": "9cef0100-e20c-45e0-8cc0-a5cd01ad944a", "titleType": "DGame", "platform": "Durango", "name": "Lovers in a Dangerous Spacetime", "earnedAchievements": 1, "currentGamerscore": 10, "maxGamerscore": 1000 }, { "lastUnlock": "2015-10-13T05:02:11.6861651Z", "titleId": 32924083, "serviceConfigId": "36c10100-dd78-47ae-8604-45b801f661b3", "titleType": "DGame", "platform": "Durango", "name": "Teslapunk", "earnedAchievements": 2, "currentGamerscore": 11, "maxGamerscore": 1000 }, { "lastUnlock": "2017-07-06T04:43:44.9050000Z", "titleId": 39069682, "serviceConfigId": "83010100-b68c-4b7f-bad3-6be1025427f2", "titleType": "DGame", "platform": "Durango", "name": "The Jackbox Party Pack 2", "earnedAchievements": 1, "currentGamerscore": 50, "maxGamerscore": 1000 }, { "lastUnlock": "2015-06-19T22:10:54.4026184Z", "titleId": 58472989, "serviceConfigId": "5af40b00-965f-4a28-aab5-cf69642bec88", "titleType": "DGame", "platform": "Durango", "name": "Killer Instinct", "earnedAchievements": 47, "currentGamerscore": 460, "maxGamerscore": 4935 }, { "lastUnlock": "2016-03-12T09:35:16.6779085Z", "titleId": 74304278, "serviceConfigId": "e2f10100-3928-4019-8789-5f12046dcb16", "titleType": "DGame", "platform": "Durango", "name": "Tom Clancy's The Division", "earnedAchievements": 8, "currentGamerscore": 70, "maxGamerscore": 1450 }, { "lastUnlock": "2016-01-05T05:37:23.2342179Z", "titleId": 80579825, "serviceConfigId": "f4ad0100-febf-441e-9f12-5f1204cd8cf1", "titleType": "DGame", "platform": "Durango", "name": "Call of Duty: Black Ops III", "earnedAchievements": 1, "currentGamerscore": 20, "maxGamerscore": 1950 }, { "lastUnlock": "2015-07-28T16:45:49.4708867Z", "titleId": 85494077, "serviceConfigId": "2eba0100-c9de-47f7-bfaa-6def0518893d", "titleType": "DGame", "platform": "Durango", "name": "Microsoft Solitaire Collection", "earnedAchievements": 3, "currentGamerscore": 30, "maxGamerscore": 1000 }, { "lastUnlock": "2016-08-15T07:40:32.4850000Z", "titleId": 94618376, "serviceConfigId": "f9d30100-7748-4d1a-b508-524805a3c308", "titleType": "DGame", "platform": "Durango", "name": "Overwatch: Origins Edition", "earnedAchievements": 19, "currentGamerscore": 385, "maxGamerscore": 1555 }, { "lastUnlock": "2015-03-31T19:11:29.9985168Z", "titleId": 122001257, "serviceConfigId": "64c10100-3d40-49d5-8f1c-c99807459769", "titleType": "LiveApp", "platform": "Durango", "name": "YouTube", "earnedAchievements": 3, "currentGamerscore": 0, "maxGamerscore": 0 }, { "lastUnlock": "2015-02-04T19:28:34.8746197Z", "titleId": 217831213, "serviceConfigId": "f3530100-d12e-48ad-a4ea-37fc0cfbd72d", "titleType": "DGame", "platform": "Durango", "name": "RISK", "earnedAchievements": 6, "currentGamerscore": 225, "maxGamerscore": 1000 }, { "lastUnlock": "2015-11-11T06:22:21.9376390Z", "titleId": 219630713, "serviceConfigId": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "titleType": "DGame", "platform": "Durango", "name": "Halo 5: Guardians", "earnedAchievements": 24, "currentGamerscore": 260, "maxGamerscore": 1250 }, { "lastUnlock": "2016-02-12T07:21:44.6050095Z", "titleId": 238373370, "serviceConfigId": "45a30100-6c05-4b9d-8158-0e3b0e3549fa", "titleType": "LiveApp", "platform": "Durango", "name": "FOX NOW", "earnedAchievements": 6, "currentGamerscore": 0, "maxGamerscore": 0 }, { "lastUnlock": "2018-03-18T02:01:33.5903283Z", "titleId": 240091546, "serviceConfigId": "f2220100-f81b-411c-8d12-4e7c0e4f819a", "titleType": "DGame", "platform": "Durango", "name": "SUPERHOT", "earnedAchievements": 12, "currentGamerscore": 230, "maxGamerscore": 1000 }, { "lastUnlock": "2014-09-20T05:12:07.3233127Z", "titleId": 247546985, "serviceConfigId": "37770100-f9ae-4b80-9dad-7c1d0ec14469", "titleType": "DGame", "platform": "Durango", "name": "Destiny", "earnedAchievements": 13, "currentGamerscore": 260, "maxGamerscore": 1500 }, { "lastUnlock": "2015-03-12T04:22:56.6820260Z", "titleId": 264259050, "serviceConfigId": "96430100-71ae-4488-8791-79d50fc045ea", "titleType": "DGame", "platform": "Durango", "name": "Ori and the Blind Forest", "earnedAchievements": 3, "currentGamerscore": 35, "maxGamerscore": 1000 }, { "lastUnlock": "2017-09-16T03:50:34.7590000Z", "titleId": 267695549, "serviceConfigId": "93ac0100-efec-488c-af85-e5850ff4b5bd", "titleType": "DGame", "platform": "Durango", "name": "Fortnite Battle Royale", "earnedAchievements": 13, "currentGamerscore": 150, "maxGamerscore": 1000 }, { "lastUnlock": "2015-04-22T04:31:10.1674048Z", "titleId": 301917535, "serviceConfigId": "4dae0100-5f8f-4764-b3d6-85c811fee55f", "titleType": "DGame", "platform": "Durango", "name": "Battlefield™ Hardline", "earnedAchievements": 29, "currentGamerscore": 650, "maxGamerscore": 1950 }, { "lastUnlock": "2015-09-23T00:45:38.8390644Z", "titleId": 321779813, "serviceConfigId": "671a0100-d83a-46fd-bc0a-3e90132df865", "titleType": "DGame", "platform": "Durango", "name": "Ultratron", "earnedAchievements": 11, "currentGamerscore": 400, "maxGamerscore": 1000 }, { "lastUnlock": "2016-02-29T06:20:39.2157474Z", "titleId": 327370029, "serviceConfigId": "595c0100-e535-40c1-93f6-a1b11383452d", "titleType": "LiveApp", "platform": "Durango", "name": "Netflix", "earnedAchievements": 6, "currentGamerscore": 0, "maxGamerscore": 0 }, { "lastUnlock": "2017-02-20T00:02:27.6620000Z", "titleId": 340920273, "serviceConfigId": "bddf0100-1eee-4776-baa2-8123145207d1", "titleType": "DGame", "platform": "Durango", "name": "Overcooked", "earnedAchievements": 4, "currentGamerscore": 171, "maxGamerscore": 1000 }, { "lastUnlock": "2014-10-10T00:03:14.9119312Z", "titleId": 345903534, "serviceConfigId": "05c20100-6e60-45d5-878a-4903149e11ae", "titleType": "DGame", "platform": "Durango", "name": "Minecraft: Xbox One Edition", "earnedAchievements": 27, "currentGamerscore": 405, "maxGamerscore": 2025 }, { "lastUnlock": "2014-10-30T00:38:01.7393653Z", "titleId": 369299403, "serviceConfigId": "9a570100-866f-4e1c-8148-ebe116030fcb", "titleType": "DGame", "platform": "Durango", "name": "Volgarr the Viking", "earnedAchievements": 3, "currentGamerscore": 150, "maxGamerscore": 1000 }, { "lastUnlock": "2014-06-25T23:01:32.2853305Z", "titleId": 370169912, "serviceConfigId": "62c70100-ddf6-4a48-8aa0-aa0816105838", "titleType": "DGame", "platform": "Durango", "name": "Contrast", "earnedAchievements": 1, "currentGamerscore": 25, "maxGamerscore": 1000 }, { "lastUnlock": "2014-06-03T22:13:15.7188751Z", "titleId": 379756733, "serviceConfigId": "50290100-de34-4c53-b325-6a9316a2a0bd", "titleType": "DGame", "platform": "Durango", "name": "Nutjitsu", "earnedAchievements": 10, "currentGamerscore": 1000, "maxGamerscore": 1000 }, { "lastUnlock": "2014-12-11T06:04:16.9816924Z", "titleId": 389597738, "serviceConfigId": "f4f80100-7f03-4df9-8fbd-f0191738ca2a", "titleType": "DGame", "platform": "Durango", "name": "Terraria", "earnedAchievements": 1, "currentGamerscore": 5, "maxGamerscore": 1000 }, { "lastUnlock": "2014-12-20T01:13:35.1078394Z", "titleId": 398011207, "serviceConfigId": "dca20100-15e7-41fb-b299-64fc17b92b47", "titleType": "DGame", "platform": "Durango", "name": "LIMBO", "earnedAchievements": 12, "currentGamerscore": 900, "maxGamerscore": 1000 }, { "lastUnlock": "2015-04-30T22:18:39.4680453Z", "titleId": 417034865, "serviceConfigId": "cc370100-2ce1-4b08-bd74-844818db7271", "titleType": "LiveApp", "platform": "Durango", "name": "NFL on Xbox One", "earnedAchievements": 5, "currentGamerscore": 0, "maxGamerscore": 0 }, { "lastUnlock": "2015-05-22T16:18:22.4785302Z", "titleId": 419416564, "serviceConfigId": "2cecd28f-3e7f-4239-9047-20d1511b3e08", "titleType": "LiveApp", "platform": "Durango", "name": "Groove Music", "earnedAchievements": 5, "currentGamerscore": 0, "maxGamerscore": 0 } ], "pagingInfo": { "continuationToken": "32", "totalRecords": 125 } }python-xbox-webapi-2.1.0/tests/data/responses/auth_device_token.json000066400000000000000000000003711465040003600257240ustar00rootroot00000000000000{ "IssueInstant": "2010-10-10T03:04:29.6037497Z", "NotAfter": "2999-10-24T03:04:29.6037497Z", "Token": "eyJhYoToken", "DisplayClaims": { "xdi": { "did": "F9E13DC7B0997D0D", "dcs": "0" } } }python-xbox-webapi-2.1.0/tests/data/responses/auth_oauth2_token.json000066400000000000000000000003001465040003600256570ustar00rootroot00000000000000{ "token_type": "bearer", "expires_in": 3600, "scope": "Xboxlive.signin Xboxlive.offline_access", "access_token": "abcdefg", "refresh_token": "hijklmnop", "user_id": "123456789" } python-xbox-webapi-2.1.0/tests/data/responses/auth_title_endpoints.json000066400000000000000000000452541465040003600265020ustar00rootroot00000000000000{ "EndPoints": [{ "Protocol": "https", "Host": "xlink.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://xlink.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "*.dfhosted.net", "HostType": "wildcard", "RelyingParty": "http://xlink.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "musicdelivery-ssl.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://music.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "cloudcollection-ssl.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://music.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "music.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://music.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "websockets.platform.bing.com", "HostType": "fqdn", "RelyingParty": "http://platform.bing.com/", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "websockets.platform.bing-int.com", "HostType": "fqdn", "RelyingParty": "http://platform.bing.com/", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "inventory.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://licensing.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "licensing.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://licensing.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "accountstroubleshooter.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://accounts.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "gamertag.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://accounts.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "help.ui.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://uxservices.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "*.ui.xboxlive.com", "HostType": "wildcard" }, { "Protocol": "https", "Host": "data-vef.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://data-vef.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 1 }, { "Protocol": "https", "Host": "update.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://update.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "update-cdn.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://update.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "packages.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://update.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "instance.mgt.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://instance.mgt.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 1 }, { "Protocol": "https", "Host": "device.mgt.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://device.mgt.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 1 }, { "Protocol": "https", "Host": "device.mgt.xboxlive.com", "HostType": "fqdn", "Path": "/registrations/bestv", "RelyingParty": "http://bestv.device.mgt.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 1 }, { "Protocol": "https", "Host": "device.mgt.xboxlive.com", "HostType": "fqdn", "Path": "/devices/current/unlock", "RelyingParty": "http://unlock.device.mgt.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 1 }, { "Protocol": "https", "Host": "xkms.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://xkms.xboxlive.com", "TokenType": "JWT", "MinTlsVersion": "1.2", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "privileges.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://banning.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 1 }, { "Protocol": "https", "Host": "privileges.xboxlive.com", "HostType": "fqdn", "Path": "/upsell", "RelyingParty": "http://xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 1 }, { "Protocol": "https", "Host": "attestation.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://attestation.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 1 }, { "Protocol": "https", "Host": "settings.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://xboxlive.com", "TokenType": "JWT", "ServerCertIndex": [0, 1], "SignaturePolicyIndex": 1 }, { "Protocol": "https", "Host": "*.experimentation.xboxlive.com", "HostType": "wildcard", "RelyingParty": "http://experimentation.xboxlive.com/", "TokenType": "JWT", "SignaturePolicyIndex": 1 }, { "Protocol": "https", "Host": "*.xboxlive.com", "HostType": "wildcard", "RelyingParty": "http://xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "http", "Host": "*.xboxlive.com", "HostType": "wildcard" }, { "Protocol": "https", "Host": "xaaa.bbtv.cn", "HostType": "fqdn", "Path": "/xboxsms/OOBEService/AuthorizationStatus", "RelyingParty": "http://bestvrp.bestv.com/", "SubRelyingParty": "http://www.bestv.com.cn/", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "*.data.microsoft.com", "HostType": "wildcard", "RelyingParty": "http://vortex.microsoft.com", "TokenType": "JWT" }, { "Protocol": "https", "Host": "*.vortex-win-sandbox.data.microsoft.com", "HostType": "wildcard", "RelyingParty": "http://vortex-sbx.microsoft.com", "TokenType": "JWT" }, { "Protocol": "https", "Host": "*.vortex-sandbox.data.microsoft.com", "HostType": "wildcard", "RelyingParty": "http://vortex-sbx.microsoft.com", "TokenType": "JWT" }, { "Protocol": "https", "Host": "vortex-events.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://events.xboxlive.com", "TokenType": "JWT" }, { "Protocol": "https", "Host": "*.pipe.int.trafficmanager.net", "HostType": "wildcard", "RelyingParty": "http://vortex-sbx.microsoft.com", "TokenType": "JWT" }, { "Protocol": "https", "Host": "*.events-sandbox.data.microsoft.com", "HostType": "wildcard", "RelyingParty": "http://vortex-sbx.microsoft.com", "TokenType": "JWT" }, { "Protocol": "https", "Host": "musicimage.xboxlive.com", "HostType": "fqdn" }, { "Protocol": "https", "Host": "*.xboxservices.com", "HostType": "wildcard", "RelyingParty": "http://mp.microsoft.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "assets.xboxservices.com", "HostType": "fqdn" }, { "Protocol": "https", "Host": "*.mp.microsoft.com", "HostType": "wildcard", "RelyingParty": "http://mp.microsoft.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "account.microsoft.com", "HostType": "fqdn", "RelyingParty": "http://mp.microsoft.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "*.account.microsoft.com", "HostType": "wildcard", "RelyingParty": "http://mp.microsoft.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "controls.cp.microsoft.com", "HostType": "fqdn", "RelyingParty": "http://mp.microsoft.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "controls.platform.account.www.microsoft.com", "HostType": "fqdn", "RelyingParty": "http://mp.microsoft.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "licensing.mp.microsoft.com", "HostType": "fqdn", "RelyingParty": "http://licensing.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "collections.mp.microsoft.com", "HostType": "fqdn", "RelyingParty": "http://licensing.xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "api.twitch.tv", "HostType": "fqdn", "RelyingParty": "https://twitchxboxrp.twitch.tv/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "xdes.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://xdes.xboxlive.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "skypexbox.skype.com", "HostType": "fqdn", "RelyingParty": "http://xboxliverp.skype.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "*.gameservices.xboxlive.com", "HostType": "wildcard", "RelyingParty": "https://gameservices.xboxlive.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "ssl.bing.com", "HostType": "fqdn", "Path": "/speechreco/xbox/accessibility", "RelyingParty": "http://platform.bing.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "speech.bing.com", "HostType": "fqdn", "RelyingParty": "http://platform.bing.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "beam.pro", "HostType": "fqdn", "RelyingParty": "http://beam.pro/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "*.beam.pro", "HostType": "wildcard", "RelyingParty": "http://beam.pro/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "mixer.com", "HostType": "fqdn", "RelyingParty": "http://beam.pro/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "*.mixer.com", "HostType": "wildcard", "RelyingParty": "http://beam.pro/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "zto.dds.microsoft.com", "HostType": "fqdn", "RelyingParty": "http://dds.microsoft.com", "TokenType": "JWT" }, { "Protocol": "https", "Host": "user.mgt.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://accounts.xboxlive.com", "TokenType": "JWT" }, { "Protocol": "https", "Host": "gssv-auth-prod.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://gssv.xboxlive.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "gssv-auth-strs.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://gssv.xboxlive.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "settings-sandbox.data.microsoft.com", "HostType": "fqdn", "RelyingParty": "http://onesettings-xbox-rp.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "settings-win.data.microsoft.com", "HostType": "fqdn", "RelyingParty": "http://onesettings-xbox-rp.com/", "TokenType": "JWT", "ServerCertIndex": [2] }, { "Protocol": "https", "Host": "settings-ppe.data.microsoft.com", "HostType": "fqdn", "RelyingParty": "http://onesettings-xbox-rp.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "settings.data.microsoft.com", "HostType": "fqdn", "RelyingParty": "http://onesettings-xbox-rp.com/", "TokenType": "JWT", "ServerCertIndex": [3, 0] }, { "Protocol": "https", "Host": "playfabapi.com", "HostType": "fqdn", "RelyingParty": "http://playfab.xboxlive.com/", "TokenType": "JWT" }, { "Protocol": "https", "Host": "sisu.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://sisu.xboxlive.com/", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "beta-sisu.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://sisu.xboxlive.com/", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "*.gamepass.com", "HostType": "wildcard", "RelyingParty": "http://xboxlive.com", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "downloadnotifications.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://download-notification.gamepass.com/", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "xflight.xboxlive.com", "HostType": "fqdn", "RelyingParty": "http://xflight.xboxlive.com/", "TokenType": "JWT", "SignaturePolicyIndex": 0 }, { "Protocol": "https", "Host": "xrap.xboxlive.com", "HostType": "fqdn", "RelyingParty": "rp://rap.xboxflight.com/", "TokenType": "JWT", "SignaturePolicyIndex": 0 }], "SignaturePolicies": [{ "Version": 1, "SupportedAlgorithms": ["ES256"], "MaxBodyBytes": 8192 }, { "Version": 1, "SupportedAlgorithms": ["ES256"], "MaxBodyBytes": 4294967295 }], "Certs": [{ "Thumbprint": "54D9D20239080C32316ED9FF980A48988F4ADF2D", "IsIssuer": true, "RootCertIndex": 0 }, { "Thumbprint": "D5A9ACDB80066D0E67FF65A939BBBC952F8ED171", "RootCertIndex": 0 }, { "Thumbprint": "8F43288AD272F3103B6FB1428485EA3014C0BCFE", "IsIssuer": true, "RootCertIndex": 1 }, { "Thumbprint": "AD898AC73DF333EB60AC1F5FC6C4B2219DDB79B7", "IsIssuer": true, "RootCertIndex": 0 }], "RootCerts": ["MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp", "MIIF7TCCA9WgAwIBAgIQP4vItfyfspZDtWnWbELhRDANBgkqhkiG9w0BAQsFADCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTEwHhcNMTEwMzIyMjIwNTI4WhcNMzYwMzIyMjIxMzA0WjCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCygEGqNThNE3IyaCJNuLLx/9VSvGzH9dJKjDbu0cJcfoyKrq8TKG/Ac+M6ztAlqFo6be+ouFmrEyNozQwph9FvgFyPRH9dkAFSWKxRxV8qh9zc2AodwQO5e7BW6KPeZGHCnvjzfLnsDbVU/ky2ZU+I8JxImQxCCwl8MVkXeQZ4KI2JOkwDJb5xalwL54RgpJki49KvhKSn+9GY7Qyp3pSJ4Q6g3MDOmT3qCFK7VnnkH4S6Hri0xElcTzFLh93dBWcmmYDgcRGjuKVB4qRTufcyKYMME782XgSzS0NHL2vikR7TmE/dQgfI6B0S/Jmpaz6SfsjWaTr8ZL22CZ3K/QwLopt3YEsDlKQwaRLWQi3BQUzK3Kr9j1uDRprZ/LHR47PJf0h6zSTwQY9cdNCssBAgBkm3xy0hyFfj0IbzA2j70M5xwYmZSmQBbP3sMJHPQTySx+W6hh1hhMdfgzlirrSSL0fzC/hV66AfWdC7dJse0Hbm8ukG1xDo+mTeacY1logC8Ea4PyeZb8txiSk190gWAjWP1Xl8TQLPX+uKg09FcYj5qQ1OcunCnAfPSRtOBA5jUYxe2ADBVSy2xuDCZU7JNDn1nLPEfuhhbhNfFcRf2X7tHc7uROzLLoax7Dj2cO2rXBPB2Q8Nx4CyVe0096yb5MPa50c8prWPMd/FS6/r8QIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUci06AjGQQ7kUBU7h6qfHMdEjiTQwEAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZIhvcNAQELBQADggIBAH9yzw+3xRXbm8BJyiZb/p4T5tPw0tuXX/JLP02zrhmu7deXoKzvqTqjwkGw5biRnhOBJAPmCf0/V0A5ISRW0RAvS0CpNoZLtFNXmvvxfomPEf4YbFGq6O0JlbXlccmh6Yd1phV/yX43VF50k8XDZ8wNT2uoFwxtCJJ+i92Bqi1wIcM9BhS7vyRep4TXPw8hIr1LAAbblxzYXtTFC1yHblCk6MM4pPvLLMWSZpuFXst6bJN8gClYW1e1QGm6CHmmZGIVnYeWRbVmIyADixxzoNOieTPgUFmG2y/lAiXqcyqfABTINseSO+lOAOzYVgm5M0kS0lQLAausR7aRKX1MtHWAUgHoyoL2n8ysnI8X6i8msKtyrAv+nlEex0NVZ09Rs1fWtuzuUrc66U7h14GIvE+OdbtLqPA1qibUZ2dJsnBMO5PcHd94kIZysjik0dySTclY6ysSXNQ7roxrsIPlAT/4CTL2kzU0Iq/dNw13CYArzUgA8YyZGUcFAenRv9FO0OYoQzeZpApKCNmacXPSqs0xE2N2oTdvkjgefRI8ZjLny23h/FKJ3crWZgWalmG+oijHHKOnNlA8OqTfSm7mhzvO6/DggTedEzxSjr25HTTGHdUKaj2YKXCMiSrRq4IQSB/c9O+lxbtVGjhjhE63bK2VVOxlIhBJF7jAHscPrFRH"] }python-xbox-webapi-2.1.0/tests/data/responses/auth_user_token.json000066400000000000000000000003171465040003600254430ustar00rootroot00000000000000{ "IssueInstant": "2010-10-10T03:04:29.6037497Z", "NotAfter": "2999-10-24T03:04:29.6037497Z", "Token": "abcdefg", "DisplayClaims": { "xui": [ { "uhs": "abcdefg" } ] } } python-xbox-webapi-2.1.0/tests/data/responses/auth_xsts_token.json000066400000000000000000000005311465040003600254640ustar00rootroot00000000000000{ "IssueInstant": "2010-10-10T03:06:35.5251155Z", "NotAfter": "2999-10-10T19:06:35.5251155Z", "Token": "123456789", "DisplayClaims": { "xui": [ { "gtg": "e", "xid": "2669321029139235", "uhs": "abcdefg", "agg": "Adult", "usr": "", "utr": "", "prv": "" } ] } } python-xbox-webapi-2.1.0/tests/data/responses/catalog_browse.json000066400000000000000000001260231465040003600252420ustar00rootroot00000000000000{ "Products": [ { "LocalizedProperties": [ { "Images": [ { "FileId": "2000000000058677580", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 728371, "ForegroundColor": "", "Height": 800, "ImagePositionInfo": "", "ImagePurpose": "BrandedKeyArt", "UnscaledImageSHA256Hash": "431nalmBrmMxmf3hQpxS5m4AL1TSyptzGPmuvuqgvO0=", "Uri": "//store-images.s-microsoft.com/image/apps.32227.67185831113154542.0ad26b9c-c5b5-4694-982e-0daabb5fbe91.3aa23aad-c062-498c-b944-29b6355f1d23", "Width": 584 }, { "FileId": "2000000000058676265", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3477771, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "TitledHeroArt", "UnscaledImageSHA256Hash": "3Qv/NQu57SLk4XaXVAp2zT68C0/pVLS8YPzhleG/O9Y=", "Uri": "//store-images.s-microsoft.com/image/apps.3037.67185831113154542.0ad26b9c-c5b5-4694-982e-0daabb5fbe91.a7cf1f65-bba2-4f20-94b1-cf71098228db", "Width": 1920 }, { "FileId": "2000000000057802341", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 1548866, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "BoxArt", "UnscaledImageSHA256Hash": "ZWckiRZL9Gou7c/XJAkMr1R+Z3xUTJK2ea4UNek9HCU=", "Uri": "//store-images.s-microsoft.com/image/apps.26469.67185831113154542.5dc49779-431f-4ed6-8ced-0dc20d007d8a.47203177-71e3-4a97-a177-0797e81f724b", "Width": 1080 }, { "FileId": "2000000000058675808", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 1907993, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "FeaturePromotionalSquareArt", "UnscaledImageSHA256Hash": "z2N3WOaOGu5Qn+slk95a/i9QnG0ugYkzmPDpzbp+W2w=", "Uri": "//store-images.s-microsoft.com/image/apps.25551.67185831113154542.0ad26b9c-c5b5-4694-982e-0daabb5fbe91.f9174844-7ee0-4135-9fd7-58d2b6300a61", "Width": 1080 }, { "FileId": "2000000000058676506", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 1182006, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "Poster", "UnscaledImageSHA256Hash": "RBt5xWErRfyG/qna0iZyLizRUVA7o2zLSlHmihFn0gk=", "Uri": "//store-images.s-microsoft.com/image/apps.6980.67185831113154542.0ad26b9c-c5b5-4694-982e-0daabb5fbe91.40efa790-c085-49d6-9f85-022a59a86047", "Width": 720 }, { "FileId": "2000000000058676248", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3864086, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "SuperHeroArt", "UnscaledImageSHA256Hash": "G3us8TuZAs/lmpkuysiJuA1Es3tnGnY3lNmqVXNViVg=", "Uri": "//store-images.s-microsoft.com/image/apps.31515.67185831113154542.0ad26b9c-c5b5-4694-982e-0daabb5fbe91.06b0f9d9-1012-411f-8b66-5661a6a16153", "Width": 1920 }, { "FileId": "2000000000058578870", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 12979443, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/0", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "fy3sZV4hmSAWJJW0bbhwqdFVs6AlGC/ESiP5uySuxRM=", "Uri": "//store-images.s-microsoft.com/image/apps.11647.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.47fd5935-9fdb-43a0-9726-4d35e96a9f16", "Width": 3840 }, { "FileId": "2000000000057802330", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 133792, "ForegroundColor": "", "Height": 300, "ImagePositionInfo": "", "ImagePurpose": "Logo", "UnscaledImageSHA256Hash": "Itiyq5JSbcYyR979UxBLtzxViMb7a/5zkc8PHYfZniQ=", "Uri": "//store-images.s-microsoft.com/image/apps.55330.67185831113154542.5dc49779-431f-4ed6-8ced-0dc20d007d8a.e11b9de7-0aa2-4c56-8dd7-2f092d75c5b0", "Width": 300 }, { "FileId": "2000000000058578495", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 17244785, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/1", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "RlPl4PASd0U89KOGhkCb30+e0PewQ7enNRclTs4+hH4=", "Uri": "//store-images.s-microsoft.com/image/apps.21318.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.82c06e08-847f-485c-8f32-35d071f119a4", "Width": 3840 }, { "FileId": "2000000000058578454", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 9636732, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/2", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "Vp9TDdEH/oetViqqSMcV5+x49Y+XzAmJ0Bt97xBhQSU=", "Uri": "//store-images.s-microsoft.com/image/apps.40790.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.c64b94de-1c42-4771-a898-d5b7f6e594ce", "Width": 3840 }, { "FileId": "2000000000058578861", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 12274027, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/3", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "QGigYRftquaTccg23xZo3VZn4eaH0NtxoVRLGEizP8E=", "Uri": "//store-images.s-microsoft.com/image/apps.26688.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.8483645c-b1f3-4856-a863-6a880a304b60", "Width": 3840 }, { "FileId": "2000000000058578703", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 13404562, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/4", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "bYfKt4LokJZul+/7bsO1wuU86XfJHinsKO4VUJHSjrQ=", "Uri": "//store-images.s-microsoft.com/image/apps.34669.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.1df283a0-fe6d-4584-a0c1-5727f93965eb", "Width": 3840 }, { "FileId": "2000000000058578496", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 12372872, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/5", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "QaoobN2AXsdpNoSA0tizhRjWrBDnLbrmEVEavk3CGxk=", "Uri": "//store-images.s-microsoft.com/image/apps.43585.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.3bce667d-6dc5-45c6-a2e0-4c277024d46b", "Width": 3840 }, { "FileId": "2000000000058578497", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 12158673, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/6", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "eQyLrrtxvCEtQP9n6M0XaMx3stqXaBdInWApTgaAuEA=", "Uri": "//store-images.s-microsoft.com/image/apps.3193.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.0bec5ead-5edd-45b6-bef8-9bba0a1c5244", "Width": 3840 }, { "FileId": "2000000000058578873", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 10802932, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/7", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "zsUKEKmxVx4PE/PAQcRRI8CmpRx2kg9e2ZkmffkJFXI=", "Uri": "//store-images.s-microsoft.com/image/apps.50638.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.82b88ab9-6049-4208-b470-9ee5fe843160", "Width": 3840 }, { "FileId": "2000000000058578706", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 9145549, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/8", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "WKHKaMeaeNoFDId3eF76LvZ8oYdbaFuROHnLTXUXqrE=", "Uri": "//store-images.s-microsoft.com/image/apps.41304.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.7eaf689f-7211-4cd1-a8c6-df9d49e5167a", "Width": 3840 }, { "FileId": "2000000000058578862", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 12114605, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/9", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "aFu2BNuBHLDGnO70YYsuSNIUBRN4bCsULvXCu6euqvg=", "Uri": "//store-images.s-microsoft.com/image/apps.23400.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.bc0a2b10-6943-4cff-a66b-0ac2bec58ee8", "Width": 3840 }, { "FileId": "2000000000058593397", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 7093256, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/10", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "7VBwQbhOgU/6svYu+5ZUFIXCQ6qReVtHrTKQezUmKpo=", "Uri": "//store-images.s-microsoft.com/image/apps.20717.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.08095c95-990a-445d-8976-63bf9c4e57a8", "Width": 3840 }, { "FileId": "2000000000058593516", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 8313688, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/11", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "RM/uC5nl9sPNByDONDQYTlE37wfy1q2OyMVkWylal9A=", "Uri": "//store-images.s-microsoft.com/image/apps.53060.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.22a7052a-55a3-4dc2-811f-badc099c04b7", "Width": 3840 }, { "FileId": "2000000000058593429", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 10871348, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/12", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "fMiRHmWbkOaLBMqDBZ7EiVPInjhMa0tl9PxykXA0PPs=", "Uri": "//store-images.s-microsoft.com/image/apps.51324.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.da05ac29-1549-4f73-9491-41087fe09d69", "Width": 3840 }, { "FileId": "2000000000058593654", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 8562527, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/13", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "3AunvApnPM2lPuZ6wg1jcB8h8Z55JOjf49CwA5fa1Wc=", "Uri": "//store-images.s-microsoft.com/image/apps.3036.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.5a0e3769-183d-4791-aff0-afaeae652772", "Width": 3840 }, { "FileId": "2000000000058593398", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 9771946, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/14", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "z9YW9Iccs8NgtY5faAneXn1sgkhtYa6bODoUgFEqs48=", "Uri": "//store-images.s-microsoft.com/image/apps.54991.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.0b9a7d70-7e27-42af-8535-42460a34f040", "Width": 3840 }, { "FileId": "2000000000058593655", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 7175494, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/15", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "AGjtuVgHpV8IKm34MrFN91VMyqrF/aJWbm7hGpl5/7g=", "Uri": "//store-images.s-microsoft.com/image/apps.26624.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.4bfb0a25-0fab-4bf1-946f-488e8d8a6a21", "Width": 3840 }, { "FileId": "2000000000058593417", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3017334, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/16", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "Cr6H9AnwoxXCAvO1fszgCW19Tr5eCN2W5yom7/QkhVw=", "Uri": "//store-images.s-microsoft.com/image/apps.48650.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.5d0d8e93-80f1-4ccc-aa31-d38b32a188fb", "Width": 3840 }, { "FileId": "2000000000058593517", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 8927322, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/17", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "NGV/nU0K9ZVX2bzYdLC6Cz9AJG08QLFW2ZC/PzJmic8=", "Uri": "//store-images.s-microsoft.com/image/apps.25908.67185831113154542.823e899c-d262-40a0-91f6-eee04bdc3713.ce6950bb-bb08-4c20-8653-711aed1e91a2", "Width": 3840 }, { "FileId": "2000000000058593418", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 11110628, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/18", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "ljoH26RFu2p8EO0QF+UUxelCH6cYcDaFJWVsVf+priE=", "Uri": "//store-images.s-microsoft.com/image/apps.14998.67185831113154542.823e899c-d262-40a0-91f6-eee04bdc3713.a8d8160b-bf9f-41c3-b0de-48f1626d8949", "Width": 3840 }, { "FileId": "2000000000058593880", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 5438404, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/19", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "wooEys+6puCAevs/IwY98aP4tv3NoTML4gT10WF3Jdw=", "Uri": "//store-images.s-microsoft.com/image/apps.35522.67185831113154542.823e899c-d262-40a0-91f6-eee04bdc3713.b25c8579-9be4-4e5e-a60d-5792f4f9ffaf", "Width": 3840 }, { "FileId": "2000000000061992043", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 8789620, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/20", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "1SYO+kXLPiSppaLMSkaCWpy38qLrKgRiETtxWT1ijzM=", "Uri": "//store-images.s-microsoft.com/image/apps.9941.67185831113154542.db6b9d82-f45f-41f1-94c6-b2c0dcd63ae2.184f4fe7-7780-4012-97de-67ec8b80223b", "Width": 3840 }, { "FileId": "2000000000061992091", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 10179503, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/21", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "V6kbjbCkPxGZzgMM64R0UXrNRc64nIvK0seAJp38Z4w=", "Uri": "//store-images.s-microsoft.com/image/apps.43351.67185831113154542.db6b9d82-f45f-41f1-94c6-b2c0dcd63ae2.1c778473-743c-42f8-bfa8-1e9b6e3d4ab0", "Width": 3840 }, { "FileId": "2000000000061992034", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 10119668, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/22", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "4Q0LmFnEo+TivuzHqk5de200BsR4FIlz8wPGwadQzvE=", "Uri": "//store-images.s-microsoft.com/image/apps.3553.67185831113154542.db6b9d82-f45f-41f1-94c6-b2c0dcd63ae2.6fa69052-c392-4b4a-8fc8-5c2b49159006", "Width": 3840 } ], "ProductTitle": "Call of Duty®: Modern Warfare®" } ], "MarketProperties": [ { "OriginalReleaseDate": "2019-10-25T00:00:00.0000000Z", "UsageData": [ { "AggregateTimeSpan": "7Days", "AverageRating": 3.1, "RatingCount": 131 }, { "AggregateTimeSpan": "30Days", "AverageRating": 3.1, "RatingCount": 320 }, { "AggregateTimeSpan": "AllTime", "AverageRating": 3.0, "RatingCount": 539 } ] } ], "ProductBSchema": "ProductGame;1", "ProductId": "C5DTJ99626K3", "PartD": "", "ProductFamily": "Games", "ProductKind": "Game", "DisplaySkuAvailabilities": [ { "Availabilities": [ { "Actions": ["Details", "Browse", "Curate", "Fulfill", "Redeem"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "TaxesNotIncluded", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } } ] } ] }, { "LocalizedProperties": [ { "Images": [ { "FileId": "2000000000072443471", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 588525, "ForegroundColor": "", "Height": 800, "ImagePositionInfo": "", "ImagePurpose": "BrandedKeyArt", "UnscaledImageSHA256Hash": "gwb9B+IEp/RchUB1S6vJVF3bR64JnvBH96CJFZHN9fo=", "Uri": "//store-images.s-microsoft.com/image/apps.1667.70702278257994163.96f95b28-99b7-4173-86ca-82ee6064d142.e5521247-c031-4fda-ae4c-b40ec2b242cf", "Width": 584 }, { "FileId": "2000000000072443408", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 1214089, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "Poster", "UnscaledImageSHA256Hash": "TFMVJ0ruaPStqbvtKfmMUKDYYa5ed08LB8a6wFt7OBA=", "Uri": "//store-images.s-microsoft.com/image/apps.21324.70702278257994163.96f95b28-99b7-4173-86ca-82ee6064d142.7477ea20-8acc-413a-a102-d22099ed9a91", "Width": 720 }, { "FileId": "2000000000072443501", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3158928, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "SuperHeroArt", "UnscaledImageSHA256Hash": "XEa7KINqVPCia0MX668O7wWSpxWMubUyX6xMefyBqHY=", "Uri": "//store-images.s-microsoft.com/image/apps.18012.70702278257994163.96f95b28-99b7-4173-86ca-82ee6064d142.462351c2-0b9f-4ebe-a005-231cb69d30fc", "Width": 1920 }, { "FileId": "2000000000042305228", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 1304464, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "FeaturePromotionalSquareArt", "UnscaledImageSHA256Hash": "N5wTjR572iTHFLN7N0Kaxm4X2US4/VvjsossxReBhqE=", "Uri": "//store-images.s-microsoft.com/image/apps.39991.70702278257994163.e25e1cb1-ae4e-49b9-bbeb-a8db9942f1e6.20bdd72b-6007-4ed4-8e77-6e8cb2fa1fde", "Width": 1080 }, { "FileId": "2000000000072443470", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 1714408, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "BoxArt", "UnscaledImageSHA256Hash": "7BpkmOYN8/5kUrp1iFtEV5wiJPccd4A7SCBKbDjs4Ec=", "Uri": "//store-images.s-microsoft.com/image/apps.6892.70702278257994163.96f95b28-99b7-4173-86ca-82ee6064d142.6dcaef91-ac45-4bd0-8dc5-285bb018b03d", "Width": 1080 }, { "FileId": "2000000000074404672", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3252590, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/0", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "ZDXJKITlvz+geNmq6Z2LRo3b73JkiP47agVvKY/2MoI=", "Uri": "//store-images.s-microsoft.com/image/apps.13668.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.37554502-6356-4748-9bc6-5d97e0f4ae52", "Width": 1920 }, { "FileId": "2000000000072443502", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 2587662, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "TitledHeroArt", "UnscaledImageSHA256Hash": "5NMc3ywvRwWMbKwKosviQjbbnsMi9gWNd0aVpLlEG/Q=", "Uri": "//store-images.s-microsoft.com/image/apps.54244.70702278257994163.96f95b28-99b7-4173-86ca-82ee6064d142.fc52f2c3-3aaf-4bf2-be66-bcfe4992236c", "Width": 1920 }, { "FileId": "2000000000074404674", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3041205, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/1", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "Vr5bw4JGsIVVEFMi+cMiFnBBlU+j732RVsGscbVUA6s=", "Uri": "//store-images.s-microsoft.com/image/apps.48726.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.5e21110c-aea8-440b-bbf1-838149eb8389", "Width": 1920 }, { "FileId": "2000000000074404578", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3033345, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/2", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "bNwMnPFS4RRMIEypZtObjTHTgUXItV/ErvI98sXgegU=", "Uri": "//store-images.s-microsoft.com/image/apps.56428.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.3bc67742-2956-4bd6-a6bc-735988b7e28c", "Width": 1920 }, { "FileId": "2000000000074404579", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 2980035, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/3", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "OWiwXYApsuutDe/PdSAs6vgB4c0fcIL5DRg1C0Hzvko=", "Uri": "//store-images.s-microsoft.com/image/apps.26681.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.6663ae04-5f02-452c-adb5-d2ee2f805d68", "Width": 1920 }, { "FileId": "2000000000074404675", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3608567, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/4", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "hhIEdhjOEDn+Ct1fRFPLFLiRv1c8W0QL4iPt4P6d6wY=", "Uri": "//store-images.s-microsoft.com/image/apps.4742.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.83029273-df50-47da-9a1e-dd78689899dc", "Width": 1920 }, { "FileId": "2000000000074404760", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 1962436, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/5", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "3WU7UQsPL5Jo6uNvHAYG0OML+zrBBsvo8Ta2hx8Z7i4=", "Uri": "//store-images.s-microsoft.com/image/apps.26077.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.a5f639ec-9134-42ef-907c-e14c53d9d7aa", "Width": 1920 }, { "FileId": "2000000000074404677", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 2391544, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/6", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "WdYMO+oEe7CWZwQcnmbzqf6leUrXVSQYbfFCNX8SlNo=", "Uri": "//store-images.s-microsoft.com/image/apps.54873.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.63c91704-639e-4cc8-894b-6d8176fbb2b3", "Width": 1920 }, { "FileId": "2000000000074404763", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3724819, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/7", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "egZdRUmht3gvWzU63C7Z9ts5IRr6y6bOZp5DP/xoxSk=", "Uri": "//store-images.s-microsoft.com/image/apps.1658.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.dbd8efff-9018-40a3-ac54-0bd6d1bdc142", "Width": 1920 }, { "FileId": "2000000000074404782", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 2134625, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/8", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "R2Ral7ztla9WKzmlLaUW9REZCy5uFELoignlx55OPns=", "Uri": "//store-images.s-microsoft.com/image/apps.25671.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.020fc875-6749-4b41-a3cc-1189a2bedd71", "Width": 1920 }, { "FileId": "2000000000074404765", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 2820679, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/9", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "ZH18nSvwlUncFl7AUf+CAj80xwlIeGGWNlgK6g6aobo=", "Uri": "//store-images.s-microsoft.com/image/apps.32100.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.972dc9bb-57a9-4060-ae10-10b2e18b0960", "Width": 1920 } ], "ProductTitle": "Fortnite" } ], "MarketProperties": [ { "OriginalReleaseDate": "2017-07-25T00:00:00.0000000Z", "UsageData": [ { "AggregateTimeSpan": "7Days", "AverageRating": 2.7, "RatingCount": 892 }, { "AggregateTimeSpan": "30Days", "AverageRating": 3.0, "RatingCount": 4794 }, { "AggregateTimeSpan": "AllTime", "AverageRating": 3.2, "RatingCount": 202178 } ] } ], "ProductBSchema": "ProductGame;1", "ProductId": "BT5P2X999VH2", "PartD": "", "ProductFamily": "Games", "ProductKind": "Game", "DisplaySkuAvailabilities": [ { "Availabilities": [ { "Actions": [ "Details", "Fulfill", "Purchase", "Browse", "Curate", "Redeem" ], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "TaxesNotIncluded", "WholesaleCurrencyCode": "USD", "WholesalePrice": 0.0 } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } }, { "Actions": ["License", "Browse", "Details"], "OrderManagementData": { "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } } } ] } ] } ] } python-xbox-webapi-2.1.0/tests/data/responses/catalog_browse_details.json000066400000000000000000006076371465040003600267660ustar00rootroot00000000000000{ "Products": [ { "LastModifiedDate": "2020-10-05T00:12:07.2747672Z", "LocalizedProperties": [ { "DeveloperName": "Infinity Ward", "PublisherName": "Activision", "PublisherWebsiteUri": "", "SupportUri": "", "EligibilityProperties": { "Remediations": [ { "RemediationId": "9ZH7BH6P9RM7", "Description": "Go Gold today to take advantage of exclusive Xbox discounts, special deals, and offers." } ], "Affirmations": [] }, "Franchises": [], "Images": [ { "FileId": "2000000000058677580", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 728371, "ForegroundColor": "", "Height": 800, "ImagePositionInfo": "", "ImagePurpose": "BrandedKeyArt", "UnscaledImageSHA256Hash": "431nalmBrmMxmf3hQpxS5m4AL1TSyptzGPmuvuqgvO0=", "Uri": "//store-images.s-microsoft.com/image/apps.32227.67185831113154542.0ad26b9c-c5b5-4694-982e-0daabb5fbe91.3aa23aad-c062-498c-b944-29b6355f1d23", "Width": 584 }, { "FileId": "2000000000058676265", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3477771, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "TitledHeroArt", "UnscaledImageSHA256Hash": "3Qv/NQu57SLk4XaXVAp2zT68C0/pVLS8YPzhleG/O9Y=", "Uri": "//store-images.s-microsoft.com/image/apps.3037.67185831113154542.0ad26b9c-c5b5-4694-982e-0daabb5fbe91.a7cf1f65-bba2-4f20-94b1-cf71098228db", "Width": 1920 }, { "FileId": "2000000000057802341", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 1548866, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "BoxArt", "UnscaledImageSHA256Hash": "ZWckiRZL9Gou7c/XJAkMr1R+Z3xUTJK2ea4UNek9HCU=", "Uri": "//store-images.s-microsoft.com/image/apps.26469.67185831113154542.5dc49779-431f-4ed6-8ced-0dc20d007d8a.47203177-71e3-4a97-a177-0797e81f724b", "Width": 1080 }, { "FileId": "2000000000058675808", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 1907993, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "FeaturePromotionalSquareArt", "UnscaledImageSHA256Hash": "z2N3WOaOGu5Qn+slk95a/i9QnG0ugYkzmPDpzbp+W2w=", "Uri": "//store-images.s-microsoft.com/image/apps.25551.67185831113154542.0ad26b9c-c5b5-4694-982e-0daabb5fbe91.f9174844-7ee0-4135-9fd7-58d2b6300a61", "Width": 1080 }, { "FileId": "2000000000058676506", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 1182006, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "Poster", "UnscaledImageSHA256Hash": "RBt5xWErRfyG/qna0iZyLizRUVA7o2zLSlHmihFn0gk=", "Uri": "//store-images.s-microsoft.com/image/apps.6980.67185831113154542.0ad26b9c-c5b5-4694-982e-0daabb5fbe91.40efa790-c085-49d6-9f85-022a59a86047", "Width": 720 }, { "FileId": "2000000000058676248", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3864086, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "SuperHeroArt", "UnscaledImageSHA256Hash": "G3us8TuZAs/lmpkuysiJuA1Es3tnGnY3lNmqVXNViVg=", "Uri": "//store-images.s-microsoft.com/image/apps.31515.67185831113154542.0ad26b9c-c5b5-4694-982e-0daabb5fbe91.06b0f9d9-1012-411f-8b66-5661a6a16153", "Width": 1920 }, { "FileId": "2000000000058578870", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 12979443, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/0", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "fy3sZV4hmSAWJJW0bbhwqdFVs6AlGC/ESiP5uySuxRM=", "Uri": "//store-images.s-microsoft.com/image/apps.11647.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.47fd5935-9fdb-43a0-9726-4d35e96a9f16", "Width": 3840 }, { "FileId": "2000000000057802330", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 133792, "ForegroundColor": "", "Height": 300, "ImagePositionInfo": "", "ImagePurpose": "Logo", "UnscaledImageSHA256Hash": "Itiyq5JSbcYyR979UxBLtzxViMb7a/5zkc8PHYfZniQ=", "Uri": "//store-images.s-microsoft.com/image/apps.55330.67185831113154542.5dc49779-431f-4ed6-8ced-0dc20d007d8a.e11b9de7-0aa2-4c56-8dd7-2f092d75c5b0", "Width": 300 }, { "FileId": "2000000000058578495", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 17244785, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/1", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "RlPl4PASd0U89KOGhkCb30+e0PewQ7enNRclTs4+hH4=", "Uri": "//store-images.s-microsoft.com/image/apps.21318.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.82c06e08-847f-485c-8f32-35d071f119a4", "Width": 3840 }, { "FileId": "2000000000058578454", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 9636732, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/2", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "Vp9TDdEH/oetViqqSMcV5+x49Y+XzAmJ0Bt97xBhQSU=", "Uri": "//store-images.s-microsoft.com/image/apps.40790.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.c64b94de-1c42-4771-a898-d5b7f6e594ce", "Width": 3840 }, { "FileId": "2000000000058578861", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 12274027, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/3", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "QGigYRftquaTccg23xZo3VZn4eaH0NtxoVRLGEizP8E=", "Uri": "//store-images.s-microsoft.com/image/apps.26688.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.8483645c-b1f3-4856-a863-6a880a304b60", "Width": 3840 }, { "FileId": "2000000000058578703", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 13404562, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/4", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "bYfKt4LokJZul+/7bsO1wuU86XfJHinsKO4VUJHSjrQ=", "Uri": "//store-images.s-microsoft.com/image/apps.34669.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.1df283a0-fe6d-4584-a0c1-5727f93965eb", "Width": 3840 }, { "FileId": "2000000000058578496", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 12372872, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/5", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "QaoobN2AXsdpNoSA0tizhRjWrBDnLbrmEVEavk3CGxk=", "Uri": "//store-images.s-microsoft.com/image/apps.43585.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.3bce667d-6dc5-45c6-a2e0-4c277024d46b", "Width": 3840 }, { "FileId": "2000000000058578497", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 12158673, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/6", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "eQyLrrtxvCEtQP9n6M0XaMx3stqXaBdInWApTgaAuEA=", "Uri": "//store-images.s-microsoft.com/image/apps.3193.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.0bec5ead-5edd-45b6-bef8-9bba0a1c5244", "Width": 3840 }, { "FileId": "2000000000058578873", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 10802932, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/7", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "zsUKEKmxVx4PE/PAQcRRI8CmpRx2kg9e2ZkmffkJFXI=", "Uri": "//store-images.s-microsoft.com/image/apps.50638.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.82b88ab9-6049-4208-b470-9ee5fe843160", "Width": 3840 }, { "FileId": "2000000000058578706", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 9145549, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/8", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "WKHKaMeaeNoFDId3eF76LvZ8oYdbaFuROHnLTXUXqrE=", "Uri": "//store-images.s-microsoft.com/image/apps.41304.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.7eaf689f-7211-4cd1-a8c6-df9d49e5167a", "Width": 3840 }, { "FileId": "2000000000058578862", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 12114605, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/9", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "aFu2BNuBHLDGnO70YYsuSNIUBRN4bCsULvXCu6euqvg=", "Uri": "//store-images.s-microsoft.com/image/apps.23400.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.bc0a2b10-6943-4cff-a66b-0ac2bec58ee8", "Width": 3840 }, { "FileId": "2000000000058593397", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 7093256, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/10", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "7VBwQbhOgU/6svYu+5ZUFIXCQ6qReVtHrTKQezUmKpo=", "Uri": "//store-images.s-microsoft.com/image/apps.20717.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.08095c95-990a-445d-8976-63bf9c4e57a8", "Width": 3840 }, { "FileId": "2000000000058593516", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 8313688, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/11", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "RM/uC5nl9sPNByDONDQYTlE37wfy1q2OyMVkWylal9A=", "Uri": "//store-images.s-microsoft.com/image/apps.53060.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.22a7052a-55a3-4dc2-811f-badc099c04b7", "Width": 3840 }, { "FileId": "2000000000058593429", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 10871348, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/12", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "fMiRHmWbkOaLBMqDBZ7EiVPInjhMa0tl9PxykXA0PPs=", "Uri": "//store-images.s-microsoft.com/image/apps.51324.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.da05ac29-1549-4f73-9491-41087fe09d69", "Width": 3840 }, { "FileId": "2000000000058593654", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 8562527, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/13", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "3AunvApnPM2lPuZ6wg1jcB8h8Z55JOjf49CwA5fa1Wc=", "Uri": "//store-images.s-microsoft.com/image/apps.3036.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.5a0e3769-183d-4791-aff0-afaeae652772", "Width": 3840 }, { "FileId": "2000000000058593398", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 9771946, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/14", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "z9YW9Iccs8NgtY5faAneXn1sgkhtYa6bODoUgFEqs48=", "Uri": "//store-images.s-microsoft.com/image/apps.54991.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.0b9a7d70-7e27-42af-8535-42460a34f040", "Width": 3840 }, { "FileId": "2000000000058593655", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 7175494, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/15", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "AGjtuVgHpV8IKm34MrFN91VMyqrF/aJWbm7hGpl5/7g=", "Uri": "//store-images.s-microsoft.com/image/apps.26624.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.4bfb0a25-0fab-4bf1-946f-488e8d8a6a21", "Width": 3840 }, { "FileId": "2000000000058593417", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3017334, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/16", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "Cr6H9AnwoxXCAvO1fszgCW19Tr5eCN2W5yom7/QkhVw=", "Uri": "//store-images.s-microsoft.com/image/apps.48650.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.5d0d8e93-80f1-4ccc-aa31-d38b32a188fb", "Width": 3840 }, { "FileId": "2000000000058593517", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 8927322, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/17", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "NGV/nU0K9ZVX2bzYdLC6Cz9AJG08QLFW2ZC/PzJmic8=", "Uri": "//store-images.s-microsoft.com/image/apps.25908.67185831113154542.823e899c-d262-40a0-91f6-eee04bdc3713.ce6950bb-bb08-4c20-8653-711aed1e91a2", "Width": 3840 }, { "FileId": "2000000000058593418", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 11110628, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/18", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "ljoH26RFu2p8EO0QF+UUxelCH6cYcDaFJWVsVf+priE=", "Uri": "//store-images.s-microsoft.com/image/apps.14998.67185831113154542.823e899c-d262-40a0-91f6-eee04bdc3713.a8d8160b-bf9f-41c3-b0de-48f1626d8949", "Width": 3840 }, { "FileId": "2000000000058593880", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 5438404, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/19", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "wooEys+6puCAevs/IwY98aP4tv3NoTML4gT10WF3Jdw=", "Uri": "//store-images.s-microsoft.com/image/apps.35522.67185831113154542.823e899c-d262-40a0-91f6-eee04bdc3713.b25c8579-9be4-4e5e-a60d-5792f4f9ffaf", "Width": 3840 }, { "FileId": "2000000000061992043", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 8789620, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/20", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "1SYO+kXLPiSppaLMSkaCWpy38qLrKgRiETtxWT1ijzM=", "Uri": "//store-images.s-microsoft.com/image/apps.9941.67185831113154542.db6b9d82-f45f-41f1-94c6-b2c0dcd63ae2.184f4fe7-7780-4012-97de-67ec8b80223b", "Width": 3840 }, { "FileId": "2000000000061992091", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 10179503, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/21", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "V6kbjbCkPxGZzgMM64R0UXrNRc64nIvK0seAJp38Z4w=", "Uri": "//store-images.s-microsoft.com/image/apps.43351.67185831113154542.db6b9d82-f45f-41f1-94c6-b2c0dcd63ae2.1c778473-743c-42f8-bfa8-1e9b6e3d4ab0", "Width": 3840 }, { "FileId": "2000000000061992034", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 10119668, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "Xbox/22", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "4Q0LmFnEo+TivuzHqk5de200BsR4FIlz8wPGwadQzvE=", "Uri": "//store-images.s-microsoft.com/image/apps.3553.67185831113154542.db6b9d82-f45f-41f1-94c6-b2c0dcd63ae2.6fa69052-c392-4b4a-8fc8-5c2b49159006", "Width": 3840 } ], "Videos": [ { "Uri": "http://universalstore.streaming.mediaservices.windows.net/8eb2400a-e8f0-4baf-a569-be958cf885d6/d01d4cef-87a5-4006-be88-e3712664.ism/manifest", "VideoPurpose": "trailer", "Height": 1080, "Width": 1920, "AudioEncoding": "", "VideoEncoding": "avc1", "VideoPositionInfo": "Video/0", "Caption": "Story Trailer - Call of Duty®: Modern Warfare®", "FileSizeInBytes": 847315726, "PreviewImage": { "FileId": "2000000000048079458", "EISListingIdentifier": null, "BackgroundColor": null, "Caption": "Story Trailer - Call of Duty®: Modern Warfare®", "FileSizeInBytes": 2266031, "ForegroundColor": null, "Height": 1080, "ImagePositionInfo": null, "ImagePurpose": "trailer", "UnscaledImageSHA256Hash": "ViR8V2VxKg45xloXIXfDexLr2MIf3NfsDrX6YkfW2Qs=", "Uri": "//store-images.s-microsoft.com/image/apps.9302.67185831113154542.7404ca69-65d6-4644-87b6-bd472a58b161.f091461b-9963-4bd3-a1fc-bc11d1617f52", "Width": 1920 }, "SortOrder": 1 }, { "Uri": "http://universalstore.streaming.mediaservices.windows.net/ee5a1ad5-1950-4a0b-a282-7be0f4c625e7/2217cd29-4de0-4754-a186-927aec91.ism/manifest", "VideoPurpose": "trailer", "Height": 1080, "Width": 1920, "AudioEncoding": "", "VideoEncoding": "avc1", "VideoPositionInfo": "Video/0", "Caption": "Multiplayer Trailer - Call of Duty®: Modern Warfare®", "FileSizeInBytes": 1074657379, "PreviewImage": { "FileId": "2000000000048080888", "EISListingIdentifier": null, "BackgroundColor": null, "Caption": "Multiplayer Trailer - Call of Duty®: Modern Warfare®", "FileSizeInBytes": 2840835, "ForegroundColor": null, "Height": 1080, "ImagePositionInfo": null, "ImagePurpose": "trailer", "UnscaledImageSHA256Hash": "Cg4G5SjUT2Y0Av0SZk8q3aDrm7Te8tjmOKddVPhpIGc=", "Uri": "//store-images.s-microsoft.com/image/apps.3594.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.fd0b6d04-1901-4bab-9830-4751b9d14cfb", "Width": 1920 }, "SortOrder": 2 }, { "Uri": "http://universalstore.streaming.mediaservices.windows.net/b1781775-3308-4788-9d61-0e6a98dbac3e/94e36e46-c0fc-4ca3-93a6-4670c8be.ism/manifest", "VideoPurpose": "trailer", "Height": 1080, "Width": 1920, "AudioEncoding": "", "VideoEncoding": "avc1", "VideoPositionInfo": "Video/0", "Caption": "Special Ops Trailer - Call of Duty®: Modern Warfare®", "FileSizeInBytes": 598088561, "PreviewImage": { "FileId": "2000000000048081772", "EISListingIdentifier": null, "BackgroundColor": null, "Caption": "Special Ops Trailer - Call of Duty®: Modern Warfare®", "FileSizeInBytes": 2860228, "ForegroundColor": null, "Height": 1080, "ImagePositionInfo": null, "ImagePurpose": "trailer", "UnscaledImageSHA256Hash": "Q7VYhifvn5hfFmGtrzUrxFGeiX1cq6X0a3PaQMAohws=", "Uri": "//store-images.s-microsoft.com/image/apps.46403.67185831113154542.b21a4854-a857-41cf-983a-039eba42f274.b9120d7d-8d6d-4ac8-8954-85befbd840aa", "Width": 1920 }, "SortOrder": 3 }, { "Uri": "http://universalstore.streaming.mediaservices.windows.net/ac661a2c-5534-40fb-a123-e58c7e3908ae/ee258470-e0cc-40a2-bd89-aaa7f5b7.ism/manifest", "VideoPurpose": "HeroTrailer", "Height": 1080, "Width": 1920, "AudioEncoding": "", "VideoEncoding": "avc1", "VideoPositionInfo": "Video/0", "Caption": "Official Trailer - Call of Duty®: Warzone", "FileSizeInBytes": 556887071, "PreviewImage": { "FileId": "2000000000058572516", "EISListingIdentifier": null, "BackgroundColor": null, "Caption": "Official Trailer - Call of Duty®: Warzone", "FileSizeInBytes": 2152123, "ForegroundColor": null, "Height": 1080, "ImagePositionInfo": null, "ImagePurpose": "trailer", "UnscaledImageSHA256Hash": "Bu6W+w07F7T8/zMnXdgGgNpbaAYTltax7xeqpHnBtWY=", "Uri": "//store-images.s-microsoft.com/image/apps.60934.67185831113154542.6b9c43e9-6edb-4dde-93cb-8c1d16bb284c.5744707e-2d04-47db-8843-27dd68fcbd68", "Width": 1920 }, "SortOrder": 4 } ], "ProductDescription": "The stakes have never been higher as players take on the role of lethal Tier One operators in a heart-racing saga that will affect the global balance of power. Call of Duty®: Modern Warfare® engulfs fans in an incredibly raw, gritty, provocative narrative that brings unrivaled intensity and shines a light on the changing nature of modern war. Developed by the studio that started it all, Infinity Ward delivers an epic reimagining of the iconic Modern Warfare® series from the ground up.\r\n\r\nIn the visceral and dramatic single-player story campaign, Call of Duty®: Modern Warfare® pushes boundaries and breaks rules the way only Modern Warfare® can. Players will engage in breathtaking covert operations alongside a diverse cast of international special forces throughout iconic European cities and volatile expanses of the Middle East.\r\n\r\nAnd the story doesn’t end there.\r\n\r\nIn Call of Duty®: Modern Warfare®, players will be thrust into an immersive narrative spanning the entire game. Experience the ultimate online playground with classic Multiplayer and Special Operations challenges, or drop into Warzone - the new free-to-play experience for all platforms.\r\n\r\n\r\n© 2019-2020 Activision Publishing, Inc. ACTIVISION, CALL OF DUTY, and MODERN WARFARE are trademarks of Activision Publishing, Inc. All other trademarks and trade names are the properties of their respective owners.", "ProductTitle": "Call of Duty®: Modern Warfare®", "ShortTitle": "Call of Duty®: Modern Warfare®", "SortTitle": "CODMW 03", "FriendlyTitle": null, "ShortDescription": "Experience the ultimate online playground with a visceral campaign and thrilling multiplayer modes, or squad up and drop into Warzone - the new game mode within Modern Warfare® that is free for everyone.", "SearchTitles": [], "VoiceTitle": "Call of Duty Modern Warfare", "RenderGroupDetails": null, "ProductDisplayRanks": [], "InteractiveModelConfig": null, "Interactive3DEnabled": false, "Language": "en-us", "Markets": [ "US", "DZ", "AR", "AU", "AT", "BH", "BD", "BE", "BR", "BG", "CA", "CL", "CN", "CO", "CR", "HR", "CY", "CZ", "DK", "EG", "EE", "FI", "FR", "DE", "GR", "GT", "HK", "HU", "IS", "IN", "ID", "IQ", "IE", "IL", "IT", "JP", "JO", "KZ", "KE", "KW", "LV", "LB", "LI", "LT", "LU", "MY", "MT", "MR", "MX", "MA", "NL", "NZ", "NG", "NO", "OM", "PK", "PE", "PH", "PL", "PT", "QA", "RO", "RU", "SA", "RS", "SG", "SK", "SI", "ZA", "KR", "ES", "SE", "CH", "TW", "TH", "TT", "TN", "TR", "UA", "AE", "GB", "VN", "YE", "LY", "LK", "UY", "VE", "AF", "AX", "AL", "AS", "AO", "AI", "AQ", "AG", "AM", "AW", "BO", "BQ", "BA", "BW", "BV", "IO", "BN", "BF", "BI", "KH", "CM", "CV", "KY", "CF", "TD", "TL", "DJ", "DM", "DO", "EC", "SV", "GQ", "ER", "ET", "FK", "FO", "FJ", "GF", "PF", "TF", "GA", "GM", "GE", "GH", "GI", "GL", "GD", "GP", "GU", "GG", "GN", "GW", "GY", "HT", "HM", "HN", "AZ", "BS", "BB", "BY", "BZ", "BJ", "BM", "BT", "KM", "CG", "CD", "CK", "CX", "CC", "CI", "CW", "JM", "SJ", "JE", "KI", "KG", "LA", "LS", "LR", "MO", "MK", "MG", "MW", "IM", "MH", "MQ", "MU", "YT", "FM", "MD", "MN", "MS", "MZ", "MM", "NA", "NR", "NP", "MV", "ML", "NC", "NI", "NE", "NU", "NF", "PW", "PS", "PA", "PG", "PY", "RE", "RW", "BL", "MF", "WS", "ST", "SN", "MP", "PN", "SX", "SB", "SO", "SC", "SL", "GS", "SH", "KN", "LC", "PM", "VC", "TJ", "TZ", "TG", "TK", "TO", "TM", "TC", "TV", "UM", "UG", "VI", "VG", "WF", "EH", "ZM", "ZW", "UZ", "VU", "SR", "SZ", "AD", "MC", "SM", "ME", "VA", "NEUTRAL" ] } ], "MarketProperties": [ { "OriginalReleaseDate": "2019-10-25T00:00:00.0000000Z", "MinimumUserAge": 16, "ContentRatings": [ { "RatingSystem": "ESRB", "RatingId": "ESRB:M", "RatingDescriptors": [ "ESRB:BloGor", "ESRB:SugThe", "ESRB:UseDru", "ESRB:StrLan", "ESRB:Vio" ], "RatingDisclaimers": [], "InteractiveElements": ["ESRB:UseInt", "ESRB:InGamPur"] }, { "RatingSystem": "PEGI", "RatingId": "PEGI:18", "RatingDescriptors": ["PEGI:BadLan", "PEGI:Vio"], "RatingDisclaimers": [], "InteractiveElements": ["PEGI:InGamPur"] }, { "RatingSystem": "DJCTQ", "RatingId": "DJCTQ:18", "RatingDescriptors": ["DJCTQ:ExtVio"], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "USK", "RatingId": "USK:18", "RatingDescriptors": [], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "COB-AU", "RatingId": "COB-AU:MA", "RatingDescriptors": ["COB-AU:WarThe", "COB-AU:StrBloVio"], "RatingDisclaimers": ["COB-AU:OnlAct"], "InteractiveElements": [] }, { "RatingSystem": "PCBP", "RatingId": "PCBP:18", "RatingDescriptors": [], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "CSRR", "RatingId": "CSRR:R", "RatingDescriptors": ["CSRR:InaLan", "CSRR:Vio"], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "Microsoft", "RatingId": "Microsoft:16", "RatingDescriptors": [], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "CERO", "RatingId": "CERO:D", "RatingDescriptors": ["CERO:Cri", "CERO:Vio"], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "OFLC-NZ", "RatingId": "OFLC-NZ:R16", "RatingDescriptors": [ "OFLC-NZ:Cru", "OFLC-NZ:GraVio", "OFLC-NZ:OffLan" ], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "FPB", "RatingId": "FPB:18", "RatingDescriptors": ["FPB:Lan", "FPB:Vio", "FPB:ComInt"], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "IARC", "RatingId": "IARC:18", "RatingDescriptors": ["IARC:ExtVio", "IARC:StrLan"], "RatingDisclaimers": [], "InteractiveElements": ["IARC:UseInt", "IARC:IncRanIte"] }, { "RatingSystem": "GRB", "RatingId": "GRB:15", "RatingDescriptors": [ "GRB:Vio", "GRB:Sxu", "GRB:AlcTobDru", "GRB:Lan" ], "RatingDisclaimers": [], "InteractiveElements": ["GRB:UseInt", "GRB:IncRanIte"] }, { "RatingSystem": "CCC", "RatingId": "CCC:18", "RatingDescriptors": [], "RatingDisclaimers": [], "InteractiveElements": [] } ], "RelatedProducts": [ { "RelatedProductId": "9N8962NWCGNF", "RelationshipType": "SellableBy" }, { "RelatedProductId": "BPVCDP3TM6T0", "RelationshipType": "Bundle" }, { "RelatedProductId": "BQ55HQMNMC92", "RelationshipType": "Bundle" }, { "RelatedProductId": "BTL7FB5XHH8P", "RelationshipType": "Bundle" }, { "RelatedProductId": "BWWDM4047JT0", "RelationshipType": "Bundle" }, { "RelatedProductId": "9NNWHP7NNGTX", "RelationshipType": "Bundle" }, { "RelatedProductId": "9N7FTW8BWHH8", "RelationshipType": "Bundle" }, { "RelatedProductId": "9MVCN36C6R9B", "RelationshipType": "Bundle" }, { "RelatedProductId": "9NVD608BD8VC", "RelationshipType": "Bundle" }, { "RelatedProductId": "9NVQBQ3F6W9W", "RelationshipType": "Bundle" }, { "RelatedProductId": "9MWWNMH6Z0JH", "RelationshipType": "Bundle" } ], "UsageData": [ { "AggregateTimeSpan": "7Days", "AverageRating": 3.1, "PlayCount": 0, "RatingCount": 131, "RentalCount": "0", "TrialCount": "0", "PurchaseCount": "0" }, { "AggregateTimeSpan": "30Days", "AverageRating": 3.1, "PlayCount": 0, "RatingCount": 320, "RentalCount": "0", "TrialCount": "0", "PurchaseCount": "0" }, { "AggregateTimeSpan": "AllTime", "AverageRating": 3.0, "PlayCount": 0, "RatingCount": 539, "RentalCount": "0", "TrialCount": "0", "PurchaseCount": "0" } ], "BundleConfig": null, "Markets": ["US"] } ], "ProductASchema": "Product;3", "ProductBSchema": "ProductGame;1", "ProductId": "C5DTJ99626K3", "Properties": { "Attributes": [ { "Name": "XblLocalCoop", "Minimum": 2, "Maximum": 2, "ApplicablePlatforms": null, "Group": null }, { "Name": "XblOnlineCoop", "Minimum": 2, "Maximum": 4, "ApplicablePlatforms": null, "Group": null }, { "Name": "XblLocalMultiPlayer", "Minimum": 2, "Maximum": 2, "ApplicablePlatforms": null, "Group": null }, { "Name": "XblOnlineMultiPlayer", "Minimum": 2, "Maximum": 20, "ApplicablePlatforms": null, "Group": null }, { "Name": "BroadcastSupport", "Minimum": null, "Maximum": null, "ApplicablePlatforms": null, "Group": null }, { "Name": "XblCrossPlatformMultiPlayer", "Minimum": null, "Maximum": null, "ApplicablePlatforms": null, "Group": null }, { "Name": "Capability4k", "Minimum": null, "Maximum": null, "ApplicablePlatforms": ["Xbox"], "Group": null }, { "Name": "CapabilityHDR", "Minimum": null, "Maximum": null, "ApplicablePlatforms": ["Xbox"], "Group": null }, { "Name": "SinglePlayer", "Minimum": null, "Maximum": null, "ApplicablePlatforms": ["Xbox"], "Group": null }, { "Name": "SharedSplitScreen", "Minimum": null, "Maximum": null, "ApplicablePlatforms": ["Xbox"], "Group": null }, { "Name": "XblCrossPlatformCoop", "Minimum": null, "Maximum": null, "ApplicablePlatforms": ["Xbox", "Desktop"], "Group": null }, { "Name": "CapabilityXboxEnhanced", "Minimum": null, "Maximum": null, "ApplicablePlatforms": null, "Group": null }, { "Name": "XblAchievements", "Minimum": null, "Maximum": null, "ApplicablePlatforms": null, "Group": null }, { "Name": "XblPresence", "Minimum": null, "Maximum": null, "ApplicablePlatforms": null, "Group": null }, { "Name": "XblCloudSaves", "Minimum": null, "Maximum": null, "ApplicablePlatforms": null, "Group": null }, { "Name": "XboxLive", "Minimum": null, "Maximum": null, "ApplicablePlatforms": null, "Group": null } ], "CanInstallToSDCard": true, "Category": "Shooter", "Categories": ["Shooter"], "Subcategory": null, "IsAccessible": false, "IsDemo": false, "IsLineOfBusinessApp": false, "IsPublishedToLegacyWindowsPhoneStore": false, "IsPublishedToLegacyWindowsStore": false, "PackageFamilyName": "38985CA0.BaseGame_5bkah9njm3e9g", "PackageIdentityName": "38985CA0.BaseGame", "PublisherCertificateName": "CN=07A9AC0F-5502-4D92-BA69-01D5D39D1E92", "PublisherId": "10115950", "SkuDisplayGroups": [ { "Id": "01", "Treatment": "MergeAvailabilities" } ], "XboxLiveTier": "Full", "XboxXPA": null, "XboxCrossGenSetId": null, "XboxConsoleGenOptimized": ["ConsoleGen8"], "XboxConsoleGenCompatible": ["ConsoleGen8", "ConsoleGen9"], "XboxLiveGoldRequired": false, "OwnershipType": null, "PdpBackgroundColor": "#FFFFFF", "HasAddOns": true, "RevisionId": "2020-10-05T00:18:01.6214938Z", "ProductGroupId": "232456af-972e-4184-aba1-0c4b2ea58e95", "ProductGroupName": "Call of Duty: Modern Warfare (2019)" }, "AlternateIds": [ { "IdType": "LegacyWindowsStoreProductId", "Value": "f2e0fabb-ce22-45c0-b39e-ff5b453305b4" }, { "IdType": "LegacyWindowsPhoneProductId", "Value": "9d6e414e-a88b-45a3-83e2-ffc6ff472f4b" }, { "IdType": "XboxTitleId", "Value": "609700427" }, { "IdType": "LegacyXboxProductId", "Value": "758effe0-d901-4cb5-9916-ca22376dd6ac" } ], "DomainDataVersion": null, "IngestionSource": "DCE", "IsMicrosoftProduct": false, "PreferredSkuId": "0001", "ProductType": "Game", "ValidationData": { "PassedValidation": false, "RevisionId": "2020-10-05T00:18:01.6214938Z||.||af23b5f0-7516-4519-8a91-b8674993acaa||1152921505691839493||RETAIL||fullrelease", "ValidationResultUri": "" }, "MerchandizingTags": [], "PartD": "", "SandboxId": "RETAIL", "ProductFamily": "Games", "SchemaVersion": "3", "IsSandboxedProduct": true, "ProductKind": "Game", "DisplaySkuAvailabilities": [ { "Sku": { "LastModifiedDate": "2020-10-05T00:12:07.2747672Z", "LocalizedProperties": [ { "Contributors": [], "Features": [], "MinimumNotes": "", "RecommendedNotes": "", "ReleaseNotes": "", "DisplayPlatformProperties": null, "SkuDescription": "The stakes have never been higher as players take on the role of lethal Tier One operators in a heart-racing saga that will affect the global balance of power. Call of Duty®: Modern Warfare® engulfs fans in an incredibly raw, gritty, provocative narrative that brings unrivaled intensity and shines a light on the changing nature of modern war. Developed by the studio that started it all, Infinity Ward delivers an epic reimagining of the iconic Modern Warfare® series from the ground up.\r\n\r\nIn the visceral and dramatic single-player story campaign, Call of Duty®: Modern Warfare® pushes boundaries and breaks rules the way only Modern Warfare® can. Players will engage in breathtaking covert operations alongside a diverse cast of international special forces throughout iconic European cities and volatile expanses of the Middle East.\r\n\r\nAnd the story doesn’t end there.\r\n\r\nIn Call of Duty®: Modern Warfare®, players will be thrust into an immersive narrative spanning the entire game. Experience the ultimate online playground with classic Multiplayer and Special Operations challenges, or drop into Warzone - the new free-to-play experience for all platforms.\r\n\r\n\r\n© 2019-2020 Activision Publishing, Inc. ACTIVISION, CALL OF DUTY, and MODERN WARFARE are trademarks of Activision Publishing, Inc. All other trademarks and trade names are the properties of their respective owners.", "SkuTitle": "Call of Duty®: Modern Warfare®", "SkuButtonTitle": "", "DeliveryDateOverlay": null, "SkuDisplayRank": [], "TextResources": null, "Images": [], "LegalText": { "AdditionalLicenseTerms": "", "Copyright": "", "CopyrightUri": "", "PrivacyPolicy": "", "PrivacyPolicyUri": "https://www.activision.com/legal/privacy-policy", "Tou": "", "TouUri": "" }, "Language": "en-us", "Markets": [ "US", "DZ", "AU", "BH", "BD", "BE", "BG", "CA", "CN", "CR", "HR", "CY", "CZ", "DK", "EG", "EE", "FI", "FR", "GR", "GT", "HU", "IS", "IN", "ID", "IQ", "IE", "IL", "JO", "KZ", "KE", "KW", "LV", "LB", "LI", "LT", "LU", "MY", "MT", "MR", "MA", "NL", "NZ", "NG", "NO", "OM", "PK", "PE", "PH", "PT", "QA", "RO", "RS", "SG", "SK", "SI", "ZA", "SE", "TH", "TT", "TN", "TR", "UA", "GB", "VN", "YE", "LY", "LK", "UY", "VE", "AF", "AX", "AL", "AS", "AO", "AI", "AQ", "AG", "AM", "AW", "BO", "BQ", "BA", "BW", "BV", "IO", "BN", "BF", "BI", "KH", "CM", "CV", "KY", "CF", "TD", "TL", "DJ", "DM", "DO", "EC", "SV", "GQ", "ER", "ET", "FK", "FO", "FJ", "GF", "PF", "TF", "GA", "GM", "GE", "GH", "GI", "GL", "GD", "GP", "GU", "GG", "GN", "GW", "GY", "HT", "HM", "HN", "AZ", "BS", "BB", "BY", "BZ", "BJ", "BM", "BT", "KM", "CG", "CD", "CK", "CX", "CC", "CI", "CW", "JM", "SJ", "JE", "KI", "KG", "LA", "LS", "LR", "MO", "MK", "MG", "MW", "IM", "MH", "MQ", "MU", "YT", "FM", "MD", "MN", "MS", "MZ", "MM", "NA", "NR", "NP", "MV", "ML", "NC", "NI", "NE", "NU", "NF", "PW", "PS", "PA", "PG", "PY", "RE", "RW", "BL", "MF", "WS", "ST", "SN", "MP", "PN", "SX", "SB", "SO", "SC", "SL", "GS", "SH", "KN", "LC", "PM", "VC", "TJ", "TZ", "TG", "TK", "TO", "TM", "TC", "TV", "UM", "UG", "VI", "VG", "WF", "EH", "ZM", "ZW", "UZ", "VU", "SR", "SZ", "AD", "MC", "SM", "ME", "VA", "NEUTRAL", "AR", "CL", "CO", "MX", "AT", "DE", "CH", "BR", "HK", "KR", "TW", "IT", "ES", "JP", "PL", "RU", "SA", "AE" ] } ], "MarketProperties": [ { "FirstAvailableDate": "2019-10-25T00:00:00.0000000Z", "SupportedLanguages": [ "en-us", "it", "pt-br", "da", "ko", "en", "nb", "sv", "pl", "zh-sg", "pt", "de", "es", "ja", "nl", "zh-tw", "es-mx", "fi", "fr", "ru", "es-us", "ar", "zh", "tr", "zh-hk", "pt-pt", "he", "en-ca", "en-cz", "en-gr", "en-hu", "en-ie", "en-il", "en-sa", "en-sk", "en-ae", "en-gb", "fr-be", "fr-ca", "fr-fr", "fr-ch", "de-at", "de-ch", "es-es" ], "PIFilter": null, "Markets": ["US"] } ], "ProductId": "C5DTJ99626K3", "Properties": { "EarlyAdopterEnrollmentUrl": null, "FulfillmentData": { "ProductId": "C5DTJ99626K3", "WuBundleId": "be16e048-e167-473d-95af-b2b01d503341", "WuCategoryId": "2f63408c-8193-4dcf-832f-66de2a8bff58", "PackageFamilyName": "38985CA0.BaseGame_5bkah9njm3e9g", "SkuId": "0001", "Content": null, "PackageFeatures": null }, "FulfillmentType": "XVC", "FulfillmentPluginId": null, "HasThirdPartyIAPs": false, "LastUpdateDate": "2020-10-05T00:12:07.0000000Z", "HardwareProperties": { "MinimumHardware": [], "RecommendedHardware": [], "MinimumProcessor": "", "RecommendedProcessor": "", "MinimumGraphics": "", "RecommendedGraphics": "" }, "HardwareRequirements": [], "HardwareWarningList": [], "InstallationTerms": "InstallationTermsRestrictiveXbox", "Packages": [ { "Applications": [], "Architectures": ["x64"], "Capabilities": [], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "", "HashAlgorithm": "", "IsStreamingApp": false, "Languages": [], "MaxDownloadSizeInBytes": 108710256640, "MaxInstallSizeInBytes": 0, "PackageFormat": "XVC", "PackageFamilyName": null, "MainPackageFamilyNameForDlc": null, "PackageFullName": "", "PackageId": "bca4159f-4efa-49d5-9a0d-efaaffbce180", "ContentId": "bca4159f-4efa-49d5-9a0d-efaaffbce180", "KeyId": "ee4966bc-f438-4ae2-be6a-09b1ed05fae4", "PackageRank": 50000, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 0, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ], "PlatformDependencyXmlBlob": "", "ResourceId": "", "Version": "0", "PackageDownloadUris": [ { "Rank": 0, "Uri": "http://assets1.xboxlive.com/15/c594732d-d388-4bf5-8353-a80baccb80bc/bca4159f-4efa-49d5-9a0d-efaaffbce180/1.0.35.10471.f987b74c-18ae-4adf-a9f9-a91d3f877080/iw8Submission-EN-FR_1.0.35.10471_x64__ht1qfjb0gaftw" }, { "Rank": 1, "Uri": "http://assets2.xboxlive.com/15/c594732d-d388-4bf5-8353-a80baccb80bc/bca4159f-4efa-49d5-9a0d-efaaffbce180/1.0.35.10471.f987b74c-18ae-4adf-a9f9-a91d3f877080/iw8Submission-EN-FR_1.0.35.10471_x64__ht1qfjb0gaftw" } ], "DriverDependencies": [], "FulfillmentData": { "ProductId": "C5DTJ99626K3", "WuBundleId": "be16e048-e167-473d-95af-b2b01d503341", "WuCategoryId": "2f63408c-8193-4dcf-832f-66de2a8bff58", "PackageFamilyName": "38985CA0.BaseGame_5bkah9njm3e9g", "SkuId": "0001", "Content": null, "PackageFeatures": null } } ], "VersionString": "", "SkuDisplayGroupIds": ["01"], "XboxXPA": false, "BundledSkus": [], "IsRepurchasable": false, "SkuDisplayRank": 1, "DisplayPhysicalStoreInventory": null, "VisibleToB2BServiceIds": [], "AdditionalIdentifiers": [], "IsTrial": false, "IsPreOrder": false, "IsBundle": false }, "SkuASchema": "Sku;3", "SkuBSchema": "SkuGame;1", "SkuId": "0001", "SkuType": "full", "RecurrencePolicy": null, "SubscriptionPolicyId": null }, "Availabilities": [ { "Actions": ["Details", "Browse", "Curate", "Fulfill", "Redeem"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "B393KMVHHK4D", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2019-05-30T17:00:00.0000000Z" }, "LastModifiedDate": "2020-10-05T00:17:14.3929027Z", "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "PIFilter": { "ExclusionProperties": [], "InclusionProperties": [] }, "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "TaxesNotIncluded", "WholesaleCurrencyCode": "" } }, "Properties": { "OriginalReleaseDate": "2019-10-25T00:00:00.0000000Z" }, "SkuId": "0001", "DisplayRank": 0, "AlternateIds": [ { "IdType": "LegacyTokenIdentifier", "Value": "758effe0-d901-4cb5-9916-ca22376dd6ac" } ], "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9VCVMCDZT912", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2019-05-30T17:00:00.0000000Z" }, "LastModifiedDate": "2020-10-05T00:17:14.3929027Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:9d6e414e-a88b-45a3-83e2-ffc6ff472f4b:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f2e0fabb-ce22-45c0-b39e-ff5b453305b4:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 1, "AlternateIds": [ { "IdType": "LegacyTokenIdentifier", "Value": "758effe0-d901-4cb5-9916-ca22376dd6ac" } ], "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9SG46TS8V37B", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2019-05-30T17:00:00.0000000Z" }, "LastModifiedDate": "2020-10-05T00:17:14.3929027Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:BPVCDP3TM6T0:0003"], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": ["big:BPVCDP3TM6T0:0001"], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameV2:dbd73aa9-d999-4f24-9e40-51c7de2d0d9d:Presale" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameV2:dbd73aa9-d999-4f24-9e40-51c7de2d0d9d:Full" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameContent:dbd73aa9-d999-4f24-9e40-51c7de2d0d9d:Presale" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameContent:dbd73aa9-d999-4f24-9e40-51c7de2d0d9d:Full" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:9d6e414e-a88b-45a3-83e2-ffc6ff472f4b:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f2e0fabb-ce22-45c0-b39e-ff5b453305b4:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 2, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "B2P4R2SQKT2Q", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2019-05-30T17:00:00.0000000Z" }, "LastModifiedDate": "2020-10-05T00:17:14.3929027Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:BQ55HQMNMC92:0003"], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": ["big:BQ55HQMNMC92:0001"], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameV2:a6b6383a-05c5-4bd1-886e-590a827b4c20:Presale" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameV2:a6b6383a-05c5-4bd1-886e-590a827b4c20:Full" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameContent:a6b6383a-05c5-4bd1-886e-590a827b4c20:Presale" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameContent:a6b6383a-05c5-4bd1-886e-590a827b4c20:Full" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:9d6e414e-a88b-45a3-83e2-ffc6ff472f4b:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f2e0fabb-ce22-45c0-b39e-ff5b453305b4:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 3, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "B197R32S0P1J", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2019-05-30T17:00:00.0000000Z" }, "LastModifiedDate": "2020-10-05T00:17:14.3929027Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:BTL7FB5XHH8P:0003"], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": ["big:BTL7FB5XHH8P:0001"], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameV2:a3ff7ed1-f25d-4bd7-a7b3-2ddc9b3bbce8:Presale" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameV2:a3ff7ed1-f25d-4bd7-a7b3-2ddc9b3bbce8:Full" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameContent:a3ff7ed1-f25d-4bd7-a7b3-2ddc9b3bbce8:Presale" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameContent:a3ff7ed1-f25d-4bd7-a7b3-2ddc9b3bbce8:Full" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:9d6e414e-a88b-45a3-83e2-ffc6ff472f4b:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f2e0fabb-ce22-45c0-b39e-ff5b453305b4:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 4, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "B4BZMPCPLS3L", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2019-05-30T17:00:00.0000000Z" }, "LastModifiedDate": "2020-10-05T00:17:14.3929027Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:BWWDM4047JT0:0003"], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": ["big:BWWDM4047JT0:0001"], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameV2:ae992aa5-7591-4c8a-ab47-45a5e8822f06:Presale" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameV2:ae992aa5-7591-4c8a-ab47-45a5e8822f06:Full" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameContent:ae992aa5-7591-4c8a-ab47-45a5e8822f06:Presale" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": [ "xbx:GameContent:ae992aa5-7591-4c8a-ab47-45a5e8822f06:Full" ], "LicensingKeyIds": ["1"], "PreOrderReleaseDate": "2019-10-25T01:00:00.0000000Z" }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:9d6e414e-a88b-45a3-83e2-ffc6ff472f4b:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f2e0fabb-ce22-45c0-b39e-ff5b453305b4:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 5, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9NVHHPR29FGF", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2019-05-30T17:00:00.0000000Z" }, "LastModifiedDate": "2020-10-05T00:17:14.3929027Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:9NNWHP7NNGTX:0017"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9NNWHP7NNGTX:0010"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:9d6e414e-a88b-45a3-83e2-ffc6ff472f4b:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f2e0fabb-ce22-45c0-b39e-ff5b453305b4:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 6, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9VZNHTPPSC7C", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2019-05-30T17:00:00.0000000Z" }, "LastModifiedDate": "2020-10-05T00:17:14.3929027Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:9N7FTW8BWHH8:0017"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9N7FTW8BWHH8:0010"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:9d6e414e-a88b-45a3-83e2-ffc6ff472f4b:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f2e0fabb-ce22-45c0-b39e-ff5b453305b4:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 7, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9XR8684DDPGV", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2019-05-30T17:00:00.0000000Z" }, "LastModifiedDate": "2020-10-05T00:17:14.3929027Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:9MVCN36C6R9B:0017"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9MVCN36C6R9B:0010"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:9d6e414e-a88b-45a3-83e2-ffc6ff472f4b:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f2e0fabb-ce22-45c0-b39e-ff5b453305b4:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 8, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9SHFZB14748L", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2019-05-30T17:00:00.0000000Z" }, "LastModifiedDate": "2020-10-05T00:17:14.3929027Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:9NVD608BD8VC:0017"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9NVD608BD8VC:0010"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:9d6e414e-a88b-45a3-83e2-ffc6ff472f4b:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f2e0fabb-ce22-45c0-b39e-ff5b453305b4:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 9, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9RXTNWSCZMFQ", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2019-05-30T17:00:00.0000000Z" }, "LastModifiedDate": "2020-10-05T00:17:14.3929027Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:9NVQBQ3F6W9W:0017"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9NVQBQ3F6W9W:0010"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:9d6e414e-a88b-45a3-83e2-ffc6ff472f4b:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f2e0fabb-ce22-45c0-b39e-ff5b453305b4:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 10, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9SHJGBCWBZHM", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2019-05-30T17:00:00.0000000Z" }, "LastModifiedDate": "2020-10-05T00:17:14.3929027Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:9MWWNMH6Z0JH:0017"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9MWWNMH6Z0JH:0010"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:9d6e414e-a88b-45a3-83e2-ffc6ff472f4b:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f2e0fabb-ce22-45c0-b39e-ff5b453305b4:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C5DTJ99626K3:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 11, "RemediationRequired": false } ] } ] }, { "LastModifiedDate": "2020-10-07T20:58:12.7313453Z", "LocalizedProperties": [ { "DeveloperName": "Epic Games Inc.", "PublisherName": "Epic Games Inc.", "PublisherWebsiteUri": "www.fortnite.com", "SupportUri": "http://fortnitehelp.epicgames.com/", "EligibilityProperties": { "Remediations": [ { "RemediationId": "9ZH7BH6P9RM7", "Description": "Go Gold today to take advantage of exclusive Xbox discounts, special deals, and offers." } ], "Affirmations": [] }, "Franchises": [], "Images": [ { "FileId": "2000000000072443471", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 588525, "ForegroundColor": "", "Height": 800, "ImagePositionInfo": "", "ImagePurpose": "BrandedKeyArt", "UnscaledImageSHA256Hash": "gwb9B+IEp/RchUB1S6vJVF3bR64JnvBH96CJFZHN9fo=", "Uri": "//store-images.s-microsoft.com/image/apps.1667.70702278257994163.96f95b28-99b7-4173-86ca-82ee6064d142.e5521247-c031-4fda-ae4c-b40ec2b242cf", "Width": 584 }, { "FileId": "2000000000072443408", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 1214089, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "Poster", "UnscaledImageSHA256Hash": "TFMVJ0ruaPStqbvtKfmMUKDYYa5ed08LB8a6wFt7OBA=", "Uri": "//store-images.s-microsoft.com/image/apps.21324.70702278257994163.96f95b28-99b7-4173-86ca-82ee6064d142.7477ea20-8acc-413a-a102-d22099ed9a91", "Width": 720 }, { "FileId": "2000000000072443501", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3158928, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "SuperHeroArt", "UnscaledImageSHA256Hash": "XEa7KINqVPCia0MX668O7wWSpxWMubUyX6xMefyBqHY=", "Uri": "//store-images.s-microsoft.com/image/apps.18012.70702278257994163.96f95b28-99b7-4173-86ca-82ee6064d142.462351c2-0b9f-4ebe-a005-231cb69d30fc", "Width": 1920 }, { "FileId": "2000000000042305228", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 1304464, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "FeaturePromotionalSquareArt", "UnscaledImageSHA256Hash": "N5wTjR572iTHFLN7N0Kaxm4X2US4/VvjsossxReBhqE=", "Uri": "//store-images.s-microsoft.com/image/apps.39991.70702278257994163.e25e1cb1-ae4e-49b9-bbeb-a8db9942f1e6.20bdd72b-6007-4ed4-8e77-6e8cb2fa1fde", "Width": 1080 }, { "FileId": "2000000000072443470", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 1714408, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "BoxArt", "UnscaledImageSHA256Hash": "7BpkmOYN8/5kUrp1iFtEV5wiJPccd4A7SCBKbDjs4Ec=", "Uri": "//store-images.s-microsoft.com/image/apps.6892.70702278257994163.96f95b28-99b7-4173-86ca-82ee6064d142.6dcaef91-ac45-4bd0-8dc5-285bb018b03d", "Width": 1080 }, { "FileId": "2000000000074404672", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3252590, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/0", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "ZDXJKITlvz+geNmq6Z2LRo3b73JkiP47agVvKY/2MoI=", "Uri": "//store-images.s-microsoft.com/image/apps.13668.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.37554502-6356-4748-9bc6-5d97e0f4ae52", "Width": 1920 }, { "FileId": "2000000000072443502", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 2587662, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "", "ImagePurpose": "TitledHeroArt", "UnscaledImageSHA256Hash": "5NMc3ywvRwWMbKwKosviQjbbnsMi9gWNd0aVpLlEG/Q=", "Uri": "//store-images.s-microsoft.com/image/apps.54244.70702278257994163.96f95b28-99b7-4173-86ca-82ee6064d142.fc52f2c3-3aaf-4bf2-be66-bcfe4992236c", "Width": 1920 }, { "FileId": "2000000000074404674", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3041205, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/1", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "Vr5bw4JGsIVVEFMi+cMiFnBBlU+j732RVsGscbVUA6s=", "Uri": "//store-images.s-microsoft.com/image/apps.48726.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.5e21110c-aea8-440b-bbf1-838149eb8389", "Width": 1920 }, { "FileId": "2000000000074404578", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3033345, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/2", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "bNwMnPFS4RRMIEypZtObjTHTgUXItV/ErvI98sXgegU=", "Uri": "//store-images.s-microsoft.com/image/apps.56428.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.3bc67742-2956-4bd6-a6bc-735988b7e28c", "Width": 1920 }, { "FileId": "2000000000074404579", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 2980035, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/3", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "OWiwXYApsuutDe/PdSAs6vgB4c0fcIL5DRg1C0Hzvko=", "Uri": "//store-images.s-microsoft.com/image/apps.26681.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.6663ae04-5f02-452c-adb5-d2ee2f805d68", "Width": 1920 }, { "FileId": "2000000000074404675", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3608567, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/4", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "hhIEdhjOEDn+Ct1fRFPLFLiRv1c8W0QL4iPt4P6d6wY=", "Uri": "//store-images.s-microsoft.com/image/apps.4742.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.83029273-df50-47da-9a1e-dd78689899dc", "Width": 1920 }, { "FileId": "2000000000074404760", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 1962436, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/5", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "3WU7UQsPL5Jo6uNvHAYG0OML+zrBBsvo8Ta2hx8Z7i4=", "Uri": "//store-images.s-microsoft.com/image/apps.26077.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.a5f639ec-9134-42ef-907c-e14c53d9d7aa", "Width": 1920 }, { "FileId": "2000000000074404677", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 2391544, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/6", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "WdYMO+oEe7CWZwQcnmbzqf6leUrXVSQYbfFCNX8SlNo=", "Uri": "//store-images.s-microsoft.com/image/apps.54873.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.63c91704-639e-4cc8-894b-6d8176fbb2b3", "Width": 1920 }, { "FileId": "2000000000074404763", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 3724819, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/7", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "egZdRUmht3gvWzU63C7Z9ts5IRr6y6bOZp5DP/xoxSk=", "Uri": "//store-images.s-microsoft.com/image/apps.1658.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.dbd8efff-9018-40a3-ac54-0bd6d1bdc142", "Width": 1920 }, { "FileId": "2000000000074404782", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 2134625, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/8", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "R2Ral7ztla9WKzmlLaUW9REZCy5uFELoignlx55OPns=", "Uri": "//store-images.s-microsoft.com/image/apps.25671.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.020fc875-6749-4b41-a3cc-1189a2bedd71", "Width": 1920 }, { "FileId": "2000000000074404765", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 2820679, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/9", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "ZH18nSvwlUncFl7AUf+CAj80xwlIeGGWNlgK6g6aobo=", "Uri": "//store-images.s-microsoft.com/image/apps.32100.70702278257994163.51cf782d-9573-4ec2-8347-77f00ba58489.972dc9bb-57a9-4060-ae10-10b2e18b0960", "Width": 1920 } ], "Videos": [ { "Uri": "http://universalstore.streaming.mediaservices.windows.net/0edeaeb7-ca5b-40fc-aad7-de9d15fdfbab/c49aa927-32fc-437d-9afd-95fd6262.ism/manifest", "VideoPurpose": "trailer", "Height": 1080, "Width": 1920, "AudioEncoding": "", "VideoEncoding": "avc1", "VideoPositionInfo": "Video/0", "Caption": "Fortnite Chapter 2 - Season 4 | Battle Pass Trailer", "FileSizeInBytes": 490012114, "PreviewImage": { "FileId": "2000000000072457918", "EISListingIdentifier": null, "BackgroundColor": null, "Caption": "Fortnite Chapter 2 - Season 4 | Battle Pass Trailer", "FileSizeInBytes": 3414606, "ForegroundColor": null, "Height": 1080, "ImagePositionInfo": null, "ImagePurpose": "trailer", "UnscaledImageSHA256Hash": "7HlATn0sdJPJ498xznx1hnZz110H2oa3dK9wloCR7/c=", "Uri": "//store-images.s-microsoft.com/image/apps.31212.70702278257994163.96f95b28-99b7-4173-86ca-82ee6064d142.3700177c-302e-4ccb-b08b-1b5c8ff9d244", "Width": 1920 }, "SortOrder": 1 }, { "Uri": "http://universalstore.streaming.mediaservices.windows.net/a44649af-4cb7-4b4a-937b-24cd1e3ae659/0cca54ec-d1d3-41be-ba87-49736601.ism/manifest", "VideoPurpose": "HeroTrailer", "Height": 1080, "Width": 1920, "AudioEncoding": "", "VideoEncoding": "avc1", "VideoPositionInfo": "Video/0", "Caption": "Fortnite Chapter 2 - Season 4 | Cinematic Trailer", "FileSizeInBytes": 557958537, "PreviewImage": { "FileId": "2000000000072457960", "EISListingIdentifier": null, "BackgroundColor": null, "Caption": "Fortnite Chapter 2 - Season 4 | Cinematic Trailer", "FileSizeInBytes": 5564331, "ForegroundColor": null, "Height": 1080, "ImagePositionInfo": null, "ImagePurpose": "trailer", "UnscaledImageSHA256Hash": "Aq6mgVI93OwQog1e/t+1d1p+Sbr4Xwm4e/azR7RcoQc=", "Uri": "//store-images.s-microsoft.com/image/apps.44546.70702278257994163.96f95b28-99b7-4173-86ca-82ee6064d142.bb06bbaf-e471-4f9b-aded-a0d24ee8edd8", "Width": 1920 }, "SortOrder": 2 } ], "ProductDescription": "Xbox Live Gold required. Currently in Early Access.\r\n\r\nDrop into Fortnite Chapter 2 - Season 4: Nexus War and join forces with the Heroes and Villians of Marvel. Suit up as Iron Man, Thor, Storm and more as you prepare to stop Galactus, the Devourer of Worlds. Take on new super-powers, equip the Stark Industries Assault Rifle, and explore iconic locations from the world of Marvel.\r\n\r\nFortnite is the completely free multiplayer game where you and your friends collaborate to create your dream Fortnite world or battle to be the last one standing. Play both Battle Royale and Fortnite Creative for FREE. Download now and jump into the action.\r\n\r\nThis download also gives you a path to purchase the Save the World co-op PvE campaign during Fortnite’s Early Access season.", "ProductTitle": "Fortnite", "ShortTitle": "Fortnite", "SortTitle": "Fortnite", "FriendlyTitle": null, "ShortDescription": "Drop into Fortnite Chapter 2 - Season 4: Nexus War and join forces with the Heroes and Villians of Marvel. Suit up as Iron Man, Thor, Storm and more as you prepare to stop Galactus, the Devourer of Worlds. Take on new super-powers, equip the Stark Industries Assault Rifle, and explore iconic locations from the world of Marvel.\r\n\r\nFortnite is the completely free multiplayer game where you and your friends can jump into Battle Royale or Fortnite Creative. Download now for FREE and jump into the action.", "SearchTitles": [ { "SearchTitleString": "Fortnight", "SearchTitleType": "SearchHint" }, { "SearchTitleString": "Fort Night", "SearchTitleType": "SearchHint" }, { "SearchTitleString": "Battle Royale", "SearchTitleType": "SearchHint" }, { "SearchTitleString": "Building", "SearchTitleType": "SearchHint" }, { "SearchTitleString": "Free", "SearchTitleType": "SearchHint" }, { "SearchTitleString": "Free to Play", "SearchTitleType": "SearchHint" }, { "SearchTitleString": "F2P", "SearchTitleType": "SearchHint" } ], "VoiceTitle": "Fortnite", "RenderGroupDetails": null, "ProductDisplayRanks": [], "InteractiveModelConfig": null, "Interactive3DEnabled": false, "Language": "en-us", "Markets": [ "US", "DZ", "AR", "AU", "AT", "BH", "BD", "BE", "BR", "BG", "CA", "CL", "CN", "CO", "CR", "HR", "CY", "CZ", "DK", "EG", "EE", "FI", "FR", "DE", "GR", "GT", "HK", "HU", "IS", "IN", "ID", "IQ", "IE", "IL", "IT", "JP", "JO", "KZ", "KE", "KW", "LV", "LB", "LI", "LT", "LU", "MY", "MT", "MR", "MX", "MA", "NL", "NZ", "NG", "NO", "OM", "PK", "PE", "PH", "PL", "PT", "QA", "RO", "RU", "SA", "RS", "SG", "SK", "SI", "ZA", "KR", "ES", "SE", "CH", "TW", "TH", "TT", "TN", "TR", "UA", "AE", "GB", "VN", "YE", "LY", "LK", "UY", "VE", "AF", "AX", "AL", "AS", "AO", "AI", "AQ", "AG", "AM", "AW", "BO", "BQ", "BA", "BW", "BV", "IO", "BN", "BF", "BI", "KH", "CM", "CV", "KY", "CF", "TD", "TL", "DJ", "DM", "DO", "EC", "SV", "GQ", "ER", "ET", "FK", "FO", "FJ", "GF", "PF", "TF", "GA", "GM", "GE", "GH", "GI", "GL", "GD", "GP", "GU", "GG", "GN", "GW", "GY", "HT", "HM", "HN", "AZ", "BS", "BB", "BY", "BZ", "BJ", "BM", "BT", "KM", "CG", "CD", "CK", "CX", "CC", "CI", "CW", "JM", "SJ", "JE", "KI", "KG", "LA", "LS", "LR", "MO", "MK", "MG", "MW", "IM", "MH", "MQ", "MU", "YT", "FM", "MD", "MN", "MS", "MZ", "MM", "NA", "NR", "NP", "MV", "ML", "NC", "NI", "NE", "NU", "NF", "PW", "PS", "PA", "PG", "PY", "RE", "RW", "BL", "MF", "WS", "ST", "SN", "MP", "PN", "SX", "SB", "SO", "SC", "SL", "GS", "SH", "KN", "LC", "PM", "VC", "TJ", "TZ", "TG", "TK", "TO", "TM", "TC", "TV", "UM", "UG", "VI", "VG", "WF", "EH", "ZM", "ZW", "UZ", "VU", "SR", "SZ", "AD", "MC", "SM", "ME", "VA", "NEUTRAL" ] } ], "MarketProperties": [ { "OriginalReleaseDate": "2017-07-25T00:00:00.0000000Z", "MinimumUserAge": 12, "ContentRatings": [ { "RatingSystem": "ESRB", "RatingId": "ESRB:T", "RatingDescriptors": ["ESRB:Vio"], "RatingDisclaimers": ["ESRB:EsrOrn"], "InteractiveElements": ["ESRB:UseInt", "ESRB:InGamPur"] }, { "RatingSystem": "PEGI", "RatingId": "PEGI:12", "RatingDescriptors": ["PEGI:Vio"], "RatingDisclaimers": [], "InteractiveElements": ["PEGI:UseInt", "PEGI:InGamPur"] }, { "RatingSystem": "DJCTQ", "RatingId": "DJCTQ:12", "RatingDescriptors": ["DJCTQ:Vio"], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "USK", "RatingId": "USK:12", "RatingDescriptors": ["USK:Vio"], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "COB-AU", "RatingId": "COB-AU:M", "RatingDescriptors": ["COB-AU:Vio"], "RatingDisclaimers": ["COB-AU:OnlAct"], "InteractiveElements": [] }, { "RatingSystem": "GRB", "RatingId": "GRB:12", "RatingDescriptors": ["GRB:Vio"], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "PCBP", "RatingId": "PCBP:12", "RatingDescriptors": [], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "OFLC-NZ", "RatingId": "OFLC-NZ:M", "RatingDescriptors": ["OFLC-NZ:Vio"], "RatingDisclaimers": ["OFLC-NZ:OnlAct"], "InteractiveElements": [] }, { "RatingSystem": "CERO", "RatingId": "CERO:C", "RatingDescriptors": ["CERO:Vio"], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "IARC", "RatingId": "IARC:12", "RatingDescriptors": ["IARC:ModVio"], "RatingDisclaimers": [], "InteractiveElements": ["IARC:UseInt", "IARC:InGamPur"] }, { "RatingSystem": "CSRR", "RatingId": "CSRR:PG15", "RatingDescriptors": ["CSRR:AntSocCha"], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "CCC", "RatingId": "CCC:14", "RatingDescriptors": [], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "Microsoft", "RatingId": "Microsoft:12", "RatingDescriptors": [], "RatingDisclaimers": [], "InteractiveElements": [] } ], "RelatedProducts": [ { "RelatedProductId": "BTLQD7D8BWWH", "RelationshipType": "Bundle" }, { "RelatedProductId": "C4H7CNMKZ9JG", "RelationshipType": "Bundle" }, { "RelatedProductId": "C3JP8MVVZWDS", "RelationshipType": "Bundle" }, { "RelatedProductId": "C4WF26J8X2CS", "RelationshipType": "Bundle" }, { "RelatedProductId": "BVWG1S6MK7CX", "RelationshipType": "Bundle" }, { "RelatedProductId": "BZZVS9QWNDP1", "RelationshipType": "Bundle" }, { "RelatedProductId": "C4S9KWR9HRH9", "RelationshipType": "Bundle" }, { "RelatedProductId": "BSWHDB4N2BW8", "RelationshipType": "Bundle" }, { "RelatedProductId": "BRD01SWKX9WS", "RelationshipType": "Bundle" }, { "RelatedProductId": "BWWG58N9HFKF", "RelationshipType": "Bundle" }, { "RelatedProductId": "BTC5H6VZBHPF", "RelationshipType": "Bundle" }, { "RelatedProductId": "BXWNX8ST04JS", "RelationshipType": "Bundle" }, { "RelatedProductId": "9P5KHCQZLF3H", "RelationshipType": "Bundle" } ], "UsageData": [ { "AggregateTimeSpan": "7Days", "AverageRating": 2.7, "PlayCount": 0, "RatingCount": 892, "RentalCount": "0", "TrialCount": "0", "PurchaseCount": "0" }, { "AggregateTimeSpan": "30Days", "AverageRating": 3.0, "PlayCount": 0, "RatingCount": 4794, "RentalCount": "0", "TrialCount": "0", "PurchaseCount": "0" }, { "AggregateTimeSpan": "AllTime", "AverageRating": 3.2, "PlayCount": 0, "RatingCount": 202178, "RentalCount": "0", "TrialCount": "0", "PurchaseCount": "0" } ], "BundleConfig": null, "Markets": ["US"] } ], "ProductASchema": "Product;3", "ProductBSchema": "ProductGame;1", "ProductId": "BT5P2X999VH2", "Properties": { "Attributes": [ { "Name": "XblOnlineCoop", "Minimum": 2, "Maximum": 4, "ApplicablePlatforms": null, "Group": null }, { "Name": "XblOnlineMultiPlayer", "Minimum": 2, "Maximum": 100, "ApplicablePlatforms": null, "Group": null }, { "Name": "BroadcastSupport", "Minimum": null, "Maximum": null, "ApplicablePlatforms": null, "Group": null }, { "Name": "Capability4k", "Minimum": null, "Maximum": null, "ApplicablePlatforms": ["Xbox"], "Group": null }, { "Name": "CapabilityXboxEnhanced", "Minimum": null, "Maximum": null, "ApplicablePlatforms": null, "Group": null }, { "Name": "XboxLive", "Minimum": null, "Maximum": null, "ApplicablePlatforms": null, "Group": null } ], "CanInstallToSDCard": true, "Category": "Action & adventure", "Categories": [ "Action & adventure", "Other", "Shooter", "Simulation", "Strategy" ], "Subcategory": null, "IsAccessible": false, "IsDemo": false, "IsLineOfBusinessApp": false, "IsPublishedToLegacyWindowsPhoneStore": false, "IsPublishedToLegacyWindowsStore": false, "PackageFamilyName": "436609B6.FortniteClient_9ncxwbgmmv7m8", "PackageIdentityName": "436609B6.FortniteClient", "PublisherCertificateName": "CN=490B3D56-2210-4C4C-9B45-E8C720DB34B2", "PublisherId": "25364920", "SkuDisplayGroups": [ { "Id": "01", "Treatment": "MergeAvailabilities" } ], "XboxLiveTier": "Full", "XboxXPA": null, "XboxCrossGenSetId": null, "XboxConsoleGenOptimized": ["ConsoleGen8"], "XboxConsoleGenCompatible": ["ConsoleGen8", "ConsoleGen9"], "XboxLiveGoldRequired": true, "OwnershipType": null, "PdpBackgroundColor": "#FFFFFF", "HasAddOns": true, "RevisionId": "2020-10-07T21:05:55.5809068Z", "ProductGroupId": "ef24de27-7970-481f-b036-47c9566c63c5", "ProductGroupName": "Fortnite" }, "AlternateIds": [ { "IdType": "LegacyWindowsStoreProductId", "Value": "f51d8aaf-ab77-4504-8063-df2e75da2e8f" }, { "IdType": "LegacyWindowsPhoneProductId", "Value": "bf5fbf34-d1c7-47d8-8682-40b3850e354c" }, { "IdType": "XboxTitleId", "Value": "267695549" }, { "IdType": "LegacyXboxProductId", "Value": "cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea" } ], "DomainDataVersion": null, "IngestionSource": "DCE", "IsMicrosoftProduct": false, "PreferredSkuId": "0001", "ProductType": "Game", "ValidationData": { "PassedValidation": false, "RevisionId": "2020-10-07T21:05:55.5809068Z||.||b9921e3d-f2c6-4704-a324-0f189555b850||1152921505691771782||RETAIL||fullrelease", "ValidationResultUri": "" }, "MerchandizingTags": [], "PartD": "", "SandboxId": "RETAIL", "ProductFamily": "Games", "SchemaVersion": "3", "IsSandboxedProduct": true, "ProductKind": "Game", "DisplaySkuAvailabilities": [ { "Sku": { "LastModifiedDate": "2020-10-07T20:58:12.7313453Z", "LocalizedProperties": [ { "Contributors": [], "Features": [], "MinimumNotes": "", "RecommendedNotes": "", "ReleaseNotes": "", "DisplayPlatformProperties": null, "SkuDescription": "Xbox Live Gold required. Currently in Early Access.\r\n\r\nDrop into Fortnite Chapter 2 - Season 4: Nexus War and join forces with the Heroes and Villians of Marvel. Suit up as Iron Man, Thor, Storm and more as you prepare to stop Galactus, the Devourer of Worlds. Take on new super-powers, equip the Stark Industries Assault Rifle, and explore iconic locations from the world of Marvel.\r\n\r\nFortnite is the completely free multiplayer game where you and your friends collaborate to create your dream Fortnite world or battle to be the last one standing. Play both Battle Royale and Fortnite Creative for FREE. Download now and jump into the action.\r\n\r\nThis download also gives you a path to purchase the Save the World co-op PvE campaign during Fortnite’s Early Access season.", "SkuTitle": "Fortnite", "SkuButtonTitle": "", "DeliveryDateOverlay": null, "SkuDisplayRank": [], "TextResources": null, "Images": [], "LegalText": { "AdditionalLicenseTerms": "", "Copyright": "", "CopyrightUri": "", "PrivacyPolicy": "", "PrivacyPolicyUri": "https://www.epicgames.com/site/en-US/privacypolicy", "Tou": "", "TouUri": "" }, "Language": "en-us", "Markets": [ "US", "DZ", "AR", "AU", "AT", "BH", "BD", "BE", "BR", "BG", "CA", "CL", "CN", "CO", "CR", "HR", "CY", "CZ", "DK", "EG", "EE", "FI", "FR", "DE", "GR", "GT", "HK", "HU", "IS", "IN", "ID", "IQ", "IE", "IL", "IT", "JP", "JO", "KZ", "KE", "KW", "LV", "LB", "LI", "LT", "LU", "MY", "MT", "MR", "MX", "MA", "NL", "NZ", "NG", "NO", "OM", "PK", "PE", "PH", "PL", "PT", "QA", "RO", "RU", "SA", "RS", "SG", "SK", "SI", "ZA", "KR", "ES", "SE", "CH", "TW", "TH", "TT", "TN", "TR", "UA", "AE", "GB", "VN", "YE", "LY", "LK", "UY", "VE", "AF", "AX", "AL", "AS", "AO", "AI", "AQ", "AG", "AM", "AW", "BO", "BQ", "BA", "BW", "BV", "IO", "BN", "BF", "BI", "KH", "CM", "CV", "KY", "CF", "TD", "TL", "DJ", "DM", "DO", "EC", "SV", "GQ", "ER", "ET", "FK", "FO", "FJ", "GF", "PF", "TF", "GA", "GM", "GE", "GH", "GI", "GL", "GD", "GP", "GU", "GG", "GN", "GW", "GY", "HT", "HM", "HN", "AZ", "BS", "BB", "BY", "BZ", "BJ", "BM", "BT", "KM", "CG", "CD", "CK", "CX", "CC", "CI", "CW", "JM", "SJ", "JE", "KI", "KG", "LA", "LS", "LR", "MO", "MK", "MG", "MW", "IM", "MH", "MQ", "MU", "YT", "FM", "MD", "MN", "MS", "MZ", "MM", "NA", "NR", "NP", "MV", "ML", "NC", "NI", "NE", "NU", "NF", "PW", "PS", "PA", "PG", "PY", "RE", "RW", "BL", "MF", "WS", "ST", "SN", "MP", "PN", "SX", "SB", "SO", "SC", "SL", "GS", "SH", "KN", "LC", "PM", "VC", "TJ", "TZ", "TG", "TK", "TO", "TM", "TC", "TV", "UM", "UG", "VI", "VG", "WF", "EH", "ZM", "ZW", "UZ", "VU", "SR", "SZ", "AD", "MC", "SM", "ME", "VA", "NEUTRAL" ] } ], "MarketProperties": [ { "FirstAvailableDate": "2017-07-25T00:00:00.0000000Z", "SupportedLanguages": [ "en-us", "fr", "de", "it", "nl", "tr", "ru", "fi", "ja", "es", "ko", "da", "pt", "es-mx", "pl", "nb", "sv", "ar", "en" ], "PackageIds": null, "PIFilter": null, "Markets": ["US"] } ], "ProductId": "BT5P2X999VH2", "Properties": { "EarlyAdopterEnrollmentUrl": null, "FulfillmentData": { "ProductId": "BT5P2X999VH2", "WuBundleId": "272f73f0-07d2-4b57-ba27-c6b9ec0fcc97", "WuCategoryId": "29309215-3ad6-4f72-aa5d-a477c6b0de77", "PackageFamilyName": "436609B6.FortniteClient_9ncxwbgmmv7m8", "SkuId": "0001", "Content": null, "PackageFeatures": null }, "FulfillmentType": "XVC", "FulfillmentPluginId": null, "HasThirdPartyIAPs": false, "LastUpdateDate": "2020-10-07T20:58:12.0000000Z", "HardwareProperties": { "MinimumHardware": [], "RecommendedHardware": [], "MinimumProcessor": "", "RecommendedProcessor": "", "MinimumGraphics": "", "RecommendedGraphics": "" }, "HardwareRequirements": [], "HardwareWarningList": [], "InstallationTerms": "InstallationTermsRestrictiveXbox", "Packages": [ { "Applications": [], "Architectures": ["x64"], "Capabilities": [], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "", "HashAlgorithm": "", "IsStreamingApp": false, "Languages": [], "MaxDownloadSizeInBytes": 39006248960, "MaxInstallSizeInBytes": 0, "PackageFormat": "XVC", "PackageFamilyName": null, "MainPackageFamilyNameForDlc": null, "PackageFullName": "", "PackageId": "4a617fcb-3c09-4ac5-9c4c-dc46b5263876", "ContentId": "4a617fcb-3c09-4ac5-9c4c-dc46b5263876", "KeyId": "aa1b5f31-9012-41f9-88e0-bc694fa74230", "PackageRank": 50000, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 0, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ], "PlatformDependencyXmlBlob": "", "ResourceId": "", "Version": "0", "PackageDownloadUris": [ { "Rank": 0, "Uri": "http://assets1.xboxlive.com/8/75f93571-b5e6-45f7-b7f3-29ae21d8981c/4a617fcb-3c09-4ac5-9c4c-dc46b5263876/1.0.1438.2452.2607b44a-4c7a-4b69-adc7-4cfce0dec5d1/Fortnite_1.0.1438.2452_neutral__d5xxtpggmzx6p" }, { "Rank": 1, "Uri": "http://assets2.xboxlive.com/8/75f93571-b5e6-45f7-b7f3-29ae21d8981c/4a617fcb-3c09-4ac5-9c4c-dc46b5263876/1.0.1438.2452.2607b44a-4c7a-4b69-adc7-4cfce0dec5d1/Fortnite_1.0.1438.2452_neutral__d5xxtpggmzx6p" } ], "DriverDependencies": [], "FulfillmentData": { "ProductId": "BT5P2X999VH2", "WuBundleId": "272f73f0-07d2-4b57-ba27-c6b9ec0fcc97", "WuCategoryId": "29309215-3ad6-4f72-aa5d-a477c6b0de77", "PackageFamilyName": "436609B6.FortniteClient_9ncxwbgmmv7m8", "SkuId": "0001", "Content": null, "PackageFeatures": null } } ], "VersionString": "", "SkuDisplayGroupIds": ["01"], "XboxXPA": false, "BundledSkus": [], "IsRepurchasable": false, "SkuDisplayRank": 0, "DisplayPhysicalStoreInventory": null, "VisibleToB2BServiceIds": [], "AdditionalIdentifiers": [], "IsTrial": false, "IsPreOrder": false, "IsBundle": false }, "SkuASchema": "Sku;3", "SkuBSchema": "SkuGame;1", "SkuId": "0001", "SkuType": "full", "RecurrencePolicy": null, "SubscriptionPolicyId": null }, "Availabilities": [ { "Actions": [ "Details", "Fulfill", "Purchase", "Browse", "Curate", "Redeem" ], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "B3157BXFMS19", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "PIFilter": { "ExclusionProperties": [], "InclusionProperties": [] }, "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "TaxesNotIncluded", "WholesaleCurrencyCode": "USD", "WholesalePrice": 0.0 } }, "Properties": { "OriginalReleaseDate": "2017-07-25T00:00:00.0000000Z" }, "SkuId": "0001", "DisplayRank": 0, "AlternateIds": [ { "IdType": "LegacyTokenIdentifier", "Value": "cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea" } ], "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9T4F3NJ0VW7C", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:bf5fbf34-d1c7-47d8-8682-40b3850e354c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f51d8aaf-ab77-4504-8063-df2e75da2e8f:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 1, "AlternateIds": [ { "IdType": "LegacyTokenIdentifier", "Value": "cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea" } ], "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9XZ9XQ798LK1", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:BTLQD7D8BWWH:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BTLQD7D8BWWH:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:6a5dc8d6-6943-4e94-bab5-564c4b72ee9c:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:6a5dc8d6-6943-4e94-bab5-564c4b72ee9c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:6a5dc8d6-6943-4e94-bab5-564c4b72ee9c:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:6a5dc8d6-6943-4e94-bab5-564c4b72ee9c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:bf5fbf34-d1c7-47d8-8682-40b3850e354c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f51d8aaf-ab77-4504-8063-df2e75da2e8f:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 2, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9T3F43TVT633", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:C4H7CNMKZ9JG:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C4H7CNMKZ9JG:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:00ee3e64-9f78-4a06-b940-0b4023b1bafb:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:00ee3e64-9f78-4a06-b940-0b4023b1bafb:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:00ee3e64-9f78-4a06-b940-0b4023b1bafb:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:00ee3e64-9f78-4a06-b940-0b4023b1bafb:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:bf5fbf34-d1c7-47d8-8682-40b3850e354c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f51d8aaf-ab77-4504-8063-df2e75da2e8f:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 3, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9V0QJZJZJ1DB", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:C3JP8MVVZWDS:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C3JP8MVVZWDS:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:a5384d12-30b8-4288-8fa2-b0fda0d9a788:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:a5384d12-30b8-4288-8fa2-b0fda0d9a788:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:a5384d12-30b8-4288-8fa2-b0fda0d9a788:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:a5384d12-30b8-4288-8fa2-b0fda0d9a788:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:bf5fbf34-d1c7-47d8-8682-40b3850e354c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f51d8aaf-ab77-4504-8063-df2e75da2e8f:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 4, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "B2SPC16SR91J", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:C4WF26J8X2CS:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C4WF26J8X2CS:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:36e4a30e-0e95-4428-a6d9-e9ab936e57de:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:36e4a30e-0e95-4428-a6d9-e9ab936e57de:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:36e4a30e-0e95-4428-a6d9-e9ab936e57de:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:36e4a30e-0e95-4428-a6d9-e9ab936e57de:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:bf5fbf34-d1c7-47d8-8682-40b3850e354c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f51d8aaf-ab77-4504-8063-df2e75da2e8f:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 5, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9WXKBLM310CZ", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:BVWG1S6MK7CX:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BVWG1S6MK7CX:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:5f911efe-63a2-4fa3-9825-798b80e04e21:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:5f911efe-63a2-4fa3-9825-798b80e04e21:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:5f911efe-63a2-4fa3-9825-798b80e04e21:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:5f911efe-63a2-4fa3-9825-798b80e04e21:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:bf5fbf34-d1c7-47d8-8682-40b3850e354c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f51d8aaf-ab77-4504-8063-df2e75da2e8f:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 6, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9TN0G25R3NQZ", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:BZZVS9QWNDP1:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BZZVS9QWNDP1:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:e51698e2-083a-48fd-bf21-6b75a7c043b9:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:e51698e2-083a-48fd-bf21-6b75a7c043b9:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:e51698e2-083a-48fd-bf21-6b75a7c043b9:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:e51698e2-083a-48fd-bf21-6b75a7c043b9:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:bf5fbf34-d1c7-47d8-8682-40b3850e354c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f51d8aaf-ab77-4504-8063-df2e75da2e8f:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 7, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9WL200J0JT7G", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:C4S9KWR9HRH9:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:C4S9KWR9HRH9:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:e58301a1-1149-43dd-8700-f17cf067b1a2:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:e58301a1-1149-43dd-8700-f17cf067b1a2:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:e58301a1-1149-43dd-8700-f17cf067b1a2:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:e58301a1-1149-43dd-8700-f17cf067b1a2:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:bf5fbf34-d1c7-47d8-8682-40b3850e354c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f51d8aaf-ab77-4504-8063-df2e75da2e8f:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 8, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9PD9RVXGBTZR", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:BSWHDB4N2BW8:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BSWHDB4N2BW8:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:241011e7-a1cf-4fb4-9afe-3c7c38fe5465:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:241011e7-a1cf-4fb4-9afe-3c7c38fe5465:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:241011e7-a1cf-4fb4-9afe-3c7c38fe5465:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:241011e7-a1cf-4fb4-9afe-3c7c38fe5465:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:bf5fbf34-d1c7-47d8-8682-40b3850e354c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f51d8aaf-ab77-4504-8063-df2e75da2e8f:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 9, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9RDJG2XSWQSS", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:BRD01SWKX9WS:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BRD01SWKX9WS:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:369267a1-3e63-4b6e-82be-286d741d7370:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:369267a1-3e63-4b6e-82be-286d741d7370:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:369267a1-3e63-4b6e-82be-286d741d7370:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:369267a1-3e63-4b6e-82be-286d741d7370:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:bf5fbf34-d1c7-47d8-8682-40b3850e354c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f51d8aaf-ab77-4504-8063-df2e75da2e8f:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 10, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "B23MD6WK5G67", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:BWWG58N9HFKF:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BWWG58N9HFKF:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:8b2e873d-4dba-4367-9bb9-0c2b0951918a:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:8b2e873d-4dba-4367-9bb9-0c2b0951918a:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:8b2e873d-4dba-4367-9bb9-0c2b0951918a:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:8b2e873d-4dba-4367-9bb9-0c2b0951918a:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:bf5fbf34-d1c7-47d8-8682-40b3850e354c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f51d8aaf-ab77-4504-8063-df2e75da2e8f:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 11, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "B3LPFJB6SC22", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:BTC5H6VZBHPF:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BTC5H6VZBHPF:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:e3c292c9-9337-41e8-ba90-e96b85002f68:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:e3c292c9-9337-41e8-ba90-e96b85002f68:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:e3c292c9-9337-41e8-ba90-e96b85002f68:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:e3c292c9-9337-41e8-ba90-e96b85002f68:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:bf5fbf34-d1c7-47d8-8682-40b3850e354c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f51d8aaf-ab77-4504-8063-df2e75da2e8f:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 12, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9WS6MM66W81V", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:BXWNX8ST04JS:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BXWNX8ST04JS:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:b0e02cfe-8d1e-4aa0-a02b-e64fa7263617:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:b0e02cfe-8d1e-4aa0-a02b-e64fa7263617:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:b0e02cfe-8d1e-4aa0-a02b-e64fa7263617:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameContent:b0e02cfe-8d1e-4aa0-a02b-e64fa7263617:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:bf5fbf34-d1c7-47d8-8682-40b3850e354c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f51d8aaf-ab77-4504-8063-df2e75da2e8f:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 13, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "B09J0HP8850L", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "2017-09-26T16:00:00.0000000Z" }, "LastModifiedDate": "2020-10-07T21:04:59.3294085Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:9P5KHCQZLF3H:0017"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9P5KHCQZLF3H:0010"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:bf5fbf34-d1c7-47d8-8682-40b3850e354c:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:f51d8aaf-ab77-4504-8063-df2e75da2e8f:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:cb6fbdda-c872-476d-80bc-5c3d6cd5e6ea:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:BT5P2X999VH2:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0001", "DisplayRank": 14, "RemediationRequired": false } ] } ] } ] } python-xbox-webapi-2.1.0/tests/data/responses/catalog_product_lookup.json000066400000000000000000005316751465040003600270270ustar00rootroot00000000000000{ "BigIds": ["9WZDNCRFJ3TJ"], "HasMorePages": false, "Products": [ { "LastModifiedDate": "2020-10-09T18:02:12.6570851Z", "LocalizedProperties": [ { "DeveloperName": "", "DisplayPlatformProperties": null, "PublisherName": "Netflix, Inc.", "PublisherWebsiteUri": "http://www.netflix.com/", "SupportUri": "https://contactus.netflix.com/Help", "EligibilityProperties": null, "Franchises": [], "Images": [ { "FileId": "2000000000072347014", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 956, "ForegroundColor": "", "Height": 50, "ImagePositionInfo": "", "ImagePurpose": "Logo", "UnscaledImageSHA256Hash": "LsuIkwA6lGKfAPofYUpnKg3B6p4HLVk70Q3QCRviWEk=", "Uri": "//store-images.s-microsoft.com/image/apps.52014.9007199266246365.c2b9376d-d1a2-40c9-95ef-cff0f4ba91ca.0b056c35-6486-4947-852e-7149d9ab5851", "Width": 50 }, { "FileId": "2000000000072347040", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 1503, "ForegroundColor": "", "Height": 75, "ImagePositionInfo": "", "ImagePurpose": "Logo", "UnscaledImageSHA256Hash": "WeQgusypQlBh3coam7AlFaMX7RTR4wNcVKDI8N9h7I8=", "Uri": "//store-images.s-microsoft.com/image/apps.58457.9007199266246365.3746ed8c-09d0-4007-9d2f-8ba20a9f4705.3292d53d-3ad8-4f34-943f-13d6d3c8ce3a", "Width": 75 }, { "FileId": "2000000000072347012", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 2140, "ForegroundColor": "", "Height": 100, "ImagePositionInfo": "", "ImagePurpose": "Logo", "UnscaledImageSHA256Hash": "JP364/KAZY1xbViqGWzChg6OKjA7Tp+1CuE1UFpjgRU=", "Uri": "//store-images.s-microsoft.com/image/apps.64804.9007199266246365.9e04b4a8-0637-4cbc-97b8-433eda07b081.64b4abe2-2f6d-4e87-a7af-900f58c8d4ae", "Width": 100 }, { "FileId": "2000000000072347015", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 2272, "ForegroundColor": "", "Height": 150, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "jsnB/K6bXIuyDpPXu4zAzYelVN3T4dbn/Jx5QTQYLuM=", "Uri": "//store-images.s-microsoft.com/image/apps.51598.9007199266246365.9538e419-4ced-4bb5-b027-e23a78887cd2.c4963fa6-7627-4a17-b2a8-fb1321b226d0", "Width": 150 }, { "FileId": "2000000000072347041", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 3378, "ForegroundColor": "", "Height": 225, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "SzSfQgEgBEYLTb6uYdA1nrjKLTfJjLUnuMnG2ToXy4k=", "Uri": "//store-images.s-microsoft.com/image/apps.13387.9007199266246365.4d313a91-19f5-4900-9c7f-4e3f8085e869.3806d656-7896-4389-ba98-65f0b161eac0", "Width": 225 }, { "FileId": "2000000000072347007", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 4949, "ForegroundColor": "", "Height": 300, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "VybSV+2Tqmda3p4wZ+Oz61aIjPHl6LOBSc7f1QoT4J4=", "Uri": "//store-images.s-microsoft.com/image/apps.9815.9007199266246365.7dc5d343-fe4a-40c3-93dd-c78e77f97331.45eebdef-f725-4799-bbf8-9ad8391a8279", "Width": 300 }, { "FileId": "2000000000072347025", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 834, "ForegroundColor": "", "Height": 44, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "89cTEkobrZYY+Bv1uh1Y2BlYzVyKQw7OCBeVdSQ+00E=", "Uri": "//store-images.s-microsoft.com/image/apps.55283.9007199266246365.92a7f7d2-b5a8-4e3b-b093-2ce286d163f7.e7c178ca-fc0f-4357-bc23-28a6809d79f1", "Width": 44 }, { "FileId": "2000000000072347050", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 1292, "ForegroundColor": "", "Height": 66, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "fHoFBrOG4g2vbvmZobtVumDu4BSB6XZb9cDPByEyWzo=", "Uri": "//store-images.s-microsoft.com/image/apps.31356.9007199266246365.a955d0b2-934a-40df-9e26-f0085299a7b3.9f250d3a-ab30-4adf-9971-5c0ddcb34bfd", "Width": 66 }, { "FileId": "2000000000072346999", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 1841, "ForegroundColor": "", "Height": 88, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "490CuYQ2n11lpU4+dJlfhDNYhD4imyRWC34FPPc9X5I=", "Uri": "//store-images.s-microsoft.com/image/apps.56803.9007199266246365.df3025a0-c29c-43e4-8976-741647270c26.ba1fe8d7-0c07-4aed-9675-8d950c30637a", "Width": 88 }, { "FileId": "2000000000072347016", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 5154, "ForegroundColor": "", "Height": 310, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "eN/i5Qn7MmW1MCmbF9UOHwST4IE18jJ1F2s3da3rkf0=", "Uri": "//store-images.s-microsoft.com/image/apps.57208.9007199266246365.9aa1d4bb-c3b4-48d6-93cf-f6674fb40e8d.0bf15307-86b5-4f68-924c-9ecb2001a85a", "Width": 310 }, { "FileId": "2000000000072347029", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 8502, "ForegroundColor": "", "Height": 465, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "csqXF1GotwvYfOCCAPGUnBp4ITdVpQva4zenmHlLfio=", "Uri": "//store-images.s-microsoft.com/image/apps.51826.9007199266246365.4a31a46b-0288-4248-9dfb-cfff182818e9.7ca531f7-bdf8-4a82-9d3d-d0cecbfc19e5", "Width": 465 }, { "FileId": "2000000000072347020", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 13157, "ForegroundColor": "", "Height": 620, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "9ci+J2nZh9wWYu7ip7aeXLnn8Ql3zIWrt3z2F55jNFw=", "Uri": "//store-images.s-microsoft.com/image/apps.51445.9007199266246365.c6dce6b1-5edd-4e64-a117-0e45b8165403.c7938026-2c39-48b0-b8f8-067273b77187", "Width": 620 }, { "FileId": "2000000000072347034", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 1445, "ForegroundColor": "", "Height": 71, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "2TSwOl7rhajG8DN4/CmEjsKL3Br19vAhoC7tAxpjof8=", "Uri": "//store-images.s-microsoft.com/image/apps.13529.9007199266246365.25e80878-8386-4369-86e6-d58a6bdfa53f.5abac0fb-6cd2-4496-8b3d-c7455db0e5c4", "Width": 71 }, { "FileId": "2000000000072347042", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 2362, "ForegroundColor": "", "Height": 107, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "ounSPvPq8jMPEQWBN3IJoDGgdgwakXrB466qO3pn0h4=", "Uri": "//store-images.s-microsoft.com/image/apps.59810.9007199266246365.d14eb120-7f2d-457d-a4b0-cb1a3bde44a8.c46c249a-a6c1-478a-8ec2-231650c67fa4", "Width": 107 }, { "FileId": "2000000000072347021", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 3395, "ForegroundColor": "", "Height": 142, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "VigAz/TpRsdUIIgK09mLYknu1N09Cn4PAiEhOSON26w=", "Uri": "//store-images.s-microsoft.com/image/apps.10326.9007199266246365.7067ae39-fd29-4b3b-90c7-bea207312e70.3883898b-7f30-4227-937a-a05330d3df53", "Width": 142 }, { "FileId": "2000000000072347033", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 4114, "ForegroundColor": "", "Height": 150, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "OoywViH1L5i7JaWjucFHoZzMqppnpXNvZ2nIhni4krU=", "Uri": "//store-images.s-microsoft.com/image/apps.35898.9007199266246365.f1a052c7-8ec1-42c2-b97c-ede1c1304e46.215d2a9b-5718-4a0d-9d4d-9aaa0b80ae71", "Width": 310 }, { "FileId": "2000000000072347037", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 6616, "ForegroundColor": "", "Height": 225, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "5MYdONTXb4CpAIaxkgUytqVYQhxHrSS3d9zMFXwl/mk=", "Uri": "//store-images.s-microsoft.com/image/apps.50916.9007199266246365.2a757954-4d70-4d41-a224-aff3d7b9bcc6.6cdae504-11a7-4b11-82f1-76c2d85e4a16", "Width": 465 }, { "FileId": "2000000000072347013", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 10118, "ForegroundColor": "", "Height": 300, "ImagePositionInfo": "", "ImagePurpose": "Tile", "UnscaledImageSHA256Hash": "i2443NWbgRAqdj+HSijWf5ycUv+XcvN0ioFdT+FvyvA=", "Uri": "//store-images.s-microsoft.com/image/apps.28299.9007199266246365.75015a39-4585-418e-b169-dc023bde061c.5a53befa-4a1d-4db7-8f68-482fcaa8a61f", "Width": 620 }, { "FileId": "1152921504606999752", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 34740, "ForegroundColor": "", "Height": 468, "ImagePositionInfo": "", "ImagePurpose": "Hero", "UnscaledImageSHA256Hash": "SxrdQz3t5GnWVny2jwbxyW45Htq8v0dcalJFjaCB0u0=", "Uri": "//store-images.microsoft.com/image/apps.6731.9007199266246365.6d6d6d51-7bdc-45fa-b753-b6c94934f29d.f1b3ec1f-f15f-4f55-b299-0381031dec52", "Width": 846 }, { "FileId": "1152921504606999975", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 35305, "ForegroundColor": "", "Height": 756, "ImagePositionInfo": "", "ImagePurpose": "Hero", "UnscaledImageSHA256Hash": "uqWgLSKfis9rQ1FWuQ+yIR4yshq8t3n9BRYOfCwlnbg=", "Uri": "//store-images.microsoft.com/image/apps.42426.9007199266246365.5a617abc-89f6-407e-b972-d98abef1641f.6450ed42-2199-43fe-bf8c-f0b8699c856c", "Width": 558 }, { "FileId": "1152921504606999754", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 25992, "ForegroundColor": "", "Height": 468, "ImagePositionInfo": "", "ImagePurpose": "Hero", "UnscaledImageSHA256Hash": "xM/CjBseWP4CiqNd2JP6DyCZMhVIGkcelwLQza8TUmA=", "Uri": "//store-images.microsoft.com/image/apps.53188.9007199266246365.726115d0-7838-4bdc-b258-8d6aff8fdee4.240fcf51-0794-414c-8689-62f3dee4554e", "Width": 414 }, { "FileId": "1152921504606999753", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 17241, "ForegroundColor": "", "Height": 180, "ImagePositionInfo": "", "ImagePurpose": "Hero", "UnscaledImageSHA256Hash": "IZlRV1m/aLYfqALEirTW4ig1BvbGgdUbAFv+etAXBZI=", "Uri": "//store-images.microsoft.com/image/apps.39201.9007199266246365.2a024a35-1e3b-40fb-b8b3-e678027a8fad.507c33d8-aae2-4303-8e8a-9dd70f03c67f", "Width": 414 }, { "FileId": "2000000000068936641", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 2444680, "ForegroundColor": "", "Height": 1920, "ImagePositionInfo": "Mobile/0", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "OEOlvSR3aRst44dSvHAKh3O41PyDWTg9Aex9xydIw5I=", "Uri": "//store-images.s-microsoft.com/image/apps.17208.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.63794f19-99db-44a1-a0d8-3c0ed656085d", "Width": 1080 }, { "FileId": "2000000000068936644", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 1985861, "ForegroundColor": "", "Height": 1920, "ImagePositionInfo": "Mobile/1", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "7GpTGDHKWsoRCu74hp2pKePBJMD1oQivWy73P1Sa9pY=", "Uri": "//store-images.s-microsoft.com/image/apps.27372.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.12fc42eb-9cca-426e-b151-4438728c935a", "Width": 1080 }, { "FileId": "2000000000068936675", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 1822167, "ForegroundColor": "", "Height": 1920, "ImagePositionInfo": "Mobile/3", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "A8bu2elhwcxGXtoHeLimnAukf0vwU3VEUwPOBMLpybY=", "Uri": "//store-images.s-microsoft.com/image/apps.50691.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.ae0eaab0-e300-4674-b947-693b1e6ecf42", "Width": 1080 }, { "FileId": "2000000000068936671", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 1524326, "ForegroundColor": "", "Height": 1920, "ImagePositionInfo": "Mobile/2", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "6SCBT/vdy8dXFtX3weuqsKCV2EmultabmqEtG8zJSPk=", "Uri": "//store-images.s-microsoft.com/image/apps.8425.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.c4f4222f-417e-4713-a6d1-6493c0a731ba", "Width": 1080 }, { "FileId": "2000000000068936792", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 2885717, "ForegroundColor": "", "Height": 1920, "ImagePositionInfo": "Mobile/4", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "7Hs7yBqZ2a4jxPBiIPCLzTTe4VKmCzpTNr+tVIYy/0I=", "Uri": "//store-images.s-microsoft.com/image/apps.31724.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.2514f39d-8e35-4e3b-b4e5-44968d2300c5", "Width": 1080 }, { "FileId": "2000000000068936874", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 3044495, "ForegroundColor": "", "Height": 1920, "ImagePositionInfo": "Mobile/5", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "23xX2XWqKC+OSJZ+Ji7mnuLLakOBIF/0RaPrMq/zjWk=", "Uri": "//store-images.s-microsoft.com/image/apps.31963.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.ae6e92fe-6ffc-4185-93df-6e70197936c4", "Width": 1080 }, { "FileId": "2000000000068936879", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 3518542, "ForegroundColor": "", "Height": 1920, "ImagePositionInfo": "Mobile/6", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "kTSkd8IOQyEvgrdo1KzLO6DiEx9uQ7ykHLJxqMyVQhE=", "Uri": "//store-images.s-microsoft.com/image/apps.13457.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.40c234de-2e46-43aa-8976-295be71640e3", "Width": 1080 }, { "FileId": "2000000000068936903", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 2070430, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Desktop/1", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "JFjfks2Cm7u16sTfYJLrCPe6C2kXZUmyfjCuA4uf9XA=", "Uri": "//store-images.s-microsoft.com/image/apps.22564.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.caa00164-3db9-4a6c-8cde-380e6eb80ba0", "Width": 1920 }, { "FileId": "2000000000068936904", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 1530467, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Desktop/2", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "Cb/9BUNgZUCdVWzbx1VhUv4LQNaW7vHOA9ZuGVtR9aE=", "Uri": "//store-images.s-microsoft.com/image/apps.48905.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.2c11047b-929a-42bc-bd10-a2d89e0f7033", "Width": 1920 }, { "FileId": "2000000000068936905", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 2853810, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Desktop/3", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "p4KAHNmtQyhI+jxsHuoJQHFyskJBFp4R6eyKJs5Gzlg=", "Uri": "//store-images.s-microsoft.com/image/apps.33447.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.4451173a-58aa-4e7d-8e7f-80df8f170ec7", "Width": 1920 }, { "FileId": "2000000000068936906", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 1951319, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Desktop/4", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "kvZGNfxX8CWsDGCxw2OPtLXAtcFKYxajT3+eQuJ+Ypw=", "Uri": "//store-images.s-microsoft.com/image/apps.63122.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.3754a3be-ef04-4a73-87ce-08e68100184f", "Width": 1920 }, { "FileId": "2000000000068936907", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 2470078, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Desktop/5", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "3X4nLKMNvvRjiJlFPhVM0Awx9jRmbea++bGaYIFv+VU=", "Uri": "//store-images.s-microsoft.com/image/apps.32477.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.0edb30ed-871a-41ab-85dc-4287bd812939", "Width": 1920 }, { "FileId": "2000000000068936941", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 3930222, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Desktop/7", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "J8LUHpiICezD+eduimg+48RKjsqGoMTvqH1eKRxxFvI=", "Uri": "//store-images.s-microsoft.com/image/apps.49703.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.6748f60f-869e-4173-bd41-c0de92cd6d89", "Width": 1920 }, { "FileId": "2000000000068936901", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 2256820, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Desktop/0", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "vCsolecePGGTJZEffwcQNjtHXDzTsbWt5aHL6TQh3yM=", "Uri": "//store-images.s-microsoft.com/image/apps.11196.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.470710fc-4dec-4479-8d36-a3e79acebd65", "Width": 1920 }, { "FileId": "2000000000068936908", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 2905175, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Desktop/6", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "DAsJFGwP8T+umK7qmtjboLdXRNxZ1O2rOM5qSEl8ZbM=", "Uri": "//store-images.s-microsoft.com/image/apps.2828.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.b9c8711d-8ace-446b-bf78-fad9c4e5dd22", "Width": 1920 }, { "FileId": "2000000000068936943", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 2693771, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/1", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "ln7zhXFqnDUL5yEC6Pxrly9dl4cy3RWC5aiPUf5NzG8=", "Uri": "//store-images.s-microsoft.com/image/apps.32406.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.cd0b2b61-58e8-4ae3-8db5-b5722c131206", "Width": 1920 }, { "FileId": "2000000000068936942", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 3297769, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/0", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "EJLAZw0urLQLPUk1A4Ij1snHxrTgsVPwssncUmww56k=", "Uri": "//store-images.s-microsoft.com/image/apps.37392.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.6a791e47-a096-41ff-bcf5-5bc1a5cd8855", "Width": 1920 }, { "FileId": "2000000000068936944", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 3473788, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/2", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "+mRMKxUPQhP3r74NhJA396O9SKqauRe/QmJPHURGhkw=", "Uri": "//store-images.s-microsoft.com/image/apps.25850.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.a3a0ede1-1a4b-4a39-b593-61eeb2a7b0fe", "Width": 1920 }, { "FileId": "2000000000068936945", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 2717135, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/3", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "TqUJ1ic+YoYlrkPDmdmsR5r3UxAqKqhoIt9cmO2Zz58=", "Uri": "//store-images.s-microsoft.com/image/apps.42318.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.fc8fd224-86da-4fa6-8fc5-65167ce7b540", "Width": 1920 }, { "FileId": "2000000000068936946", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 2518061, "ForegroundColor": "", "Height": 1080, "ImagePositionInfo": "Xbox/4", "ImagePurpose": "Screenshot", "UnscaledImageSHA256Hash": "nnZxfDrpeTXZXRrjCk8MAup4MAjs648bZNgi800335w=", "Uri": "//store-images.s-microsoft.com/image/apps.30366.9007199266246365.fc3e1dac-58ff-4db5-9d08-4cca1b6f53e3.5deebc32-c626-4246-9c3a-2bdfaeaf1bee", "Width": 1920 }, { "FileId": "2000000000076292302", "EISListingIdentifier": null, "BackgroundColor": "#000000", "Caption": "", "FileSizeInBytes": 5091, "ForegroundColor": "", "Height": 300, "ImagePositionInfo": "", "ImagePurpose": "Logo", "UnscaledImageSHA256Hash": "Ydu5wZruM5w6znIrK6Q/QptnSjGxhgw25/l/M0XpcV0=", "Uri": "//store-images.s-microsoft.com/image/apps.56161.9007199266246365.1d5a6a53-3c49-4f80-95d7-78d76b0e05d0.a3e87fea-e03e-4c0a-8f26-9ecef205fa7b", "Width": 300 }, { "FileId": "2000000000076313496", "EISListingIdentifier": null, "BackgroundColor": "", "Caption": "", "FileSizeInBytes": 8779790, "ForegroundColor": "", "Height": 2160, "ImagePositionInfo": "", "ImagePurpose": "SuperHeroArt", "UnscaledImageSHA256Hash": "U36a96Na9LKfty7hp7CoapzMlthhX5ymgf1sucHCWM8=", "Uri": "//store-images.s-microsoft.com/image/apps.32339.9007199266246365.1d5a6a53-3c49-4f80-95d7-78d76b0e05d0.ac2899bf-ba6c-4f7b-b2d4-c854cc7a6f55", "Width": 3840 } ], "Videos": [], "ProductDescription": "Netflix has something for everyone. Watch TV shows and movies recommended just for you, including award-winning Netflix original series, movies, and documentaries. There’s even a safe watching experience just for kids with family-friendly entertainment.\r\n\r\nNow on Windows, you can enjoy every detail of the world’s favorite shows in 4K Ultra HD on Netflix. Download many of your favorite series and movies with the simple click of the download button. You can watch while you’re on the go or without an Internet connection on your PC, tablet or laptop with Windows 10. \r\n\r\nHow does Netflix work?\r\n- Instantly watch TV shows and movies through thousands of internet-connected devices. You can play, pause, and resume watching, all without commercials.\r\n- Netflix adds new content all the time. Browse titles or search for your favorites.\r\n- The more you watch, the better Netflix gets at recommending TV shows and movies that you’ll love — just for you. \r\n- You can create up to five individual profiles within a single Netflix account. Profiles allow different members of your household to have their own personalized Netflix experience built around the movies and TV shows they enjoy. \r\n\r\nIf you decide Netflix isn't for you - no problem. No contract, no cancellation fees, no commitment. Cancel online anytime.\r\n\r\nBy clicking INSTALL, you consent to the installation of the Netflix application and any updates or upgrades thereto.", "ProductTitle": "Netflix", "ShortTitle": "", "SortTitle": "", "FriendlyTitle": null, "ShortDescription": "", "SearchTitles": [ { "SearchTitleString": "netflix", "SearchTitleType": "SearchHint" }, { "SearchTitleString": "streaming", "SearchTitleType": "SearchHint" }, { "SearchTitleString": "movie", "SearchTitleType": "SearchHint" }, { "SearchTitleString": "movies", "SearchTitleType": "SearchHint" }, { "SearchTitleString": "video", "SearchTitleType": "SearchHint" }, { "SearchTitleString": "The Irishman", "SearchTitleType": "SearchHint" } ], "VoiceTitle": "", "RenderGroupDetails": null, "ProductDisplayRanks": [], "InteractiveModelConfig": null, "Interactive3DEnabled": false, "Language": "en-us", "Markets": [ "US", "DZ", "AR", "AU", "AT", "BH", "BD", "BE", "BR", "BG", "CA", "CL", "CN", "CO", "CR", "HR", "CY", "CZ", "DK", "EG", "EE", "FI", "FR", "DE", "GR", "GT", "HK", "HU", "IS", "IN", "ID", "IQ", "IE", "IL", "IT", "JP", "JO", "KZ", "KE", "KW", "LV", "LB", "LI", "LT", "LU", "MY", "MT", "MR", "MX", "MA", "NL", "NZ", "NG", "NO", "OM", "PK", "PE", "PH", "PL", "PT", "QA", "RO", "RU", "SA", "RS", "SG", "SK", "SI", "ZA", "KR", "ES", "SE", "CH", "TW", "TH", "TT", "TN", "TR", "UA", "AE", "GB", "VN", "YE", "LY", "LK", "UY", "VE", "AF", "AX", "AL", "AS", "AO", "AI", "AQ", "AG", "AM", "AW", "BO", "BQ", "BA", "BW", "BV", "IO", "BN", "BF", "BI", "KH", "CM", "CV", "KY", "CF", "TD", "TL", "DJ", "DM", "DO", "EC", "SV", "GQ", "ER", "ET", "FK", "FO", "FJ", "GF", "PF", "TF", "GA", "GM", "GE", "GH", "GI", "GL", "GD", "GP", "GU", "GG", "GN", "GW", "GY", "HT", "HM", "HN", "AZ", "BS", "BB", "BY", "BZ", "BJ", "BM", "BT", "KM", "CG", "CD", "CK", "CX", "CC", "CI", "CW", "JM", "SJ", "JE", "KI", "KG", "LA", "LS", "LR", "MO", "MK", "MG", "MW", "IM", "MH", "MQ", "MU", "YT", "FM", "MD", "MN", "MS", "MZ", "MM", "NA", "NR", "NP", "MV", "ML", "NC", "NI", "NE", "NU", "NF", "PW", "PS", "PA", "PG", "PY", "RE", "RW", "BL", "MF", "WS", "ST", "SN", "MP", "PN", "SX", "SB", "SO", "SC", "SL", "GS", "SH", "KN", "LC", "PM", "VC", "TJ", "TZ", "TG", "TK", "TO", "TM", "TC", "TV", "UM", "UG", "VI", "VG", "WF", "EH", "ZM", "ZW", "UZ", "VU", "SR", "SZ", "AD", "MC", "SM", "ME", "VA", "NEUTRAL" ] } ], "MarketProperties": [ { "OriginalReleaseDate": "2010-10-18T20:04:26.4400000Z", "OriginalReleaseDateFriendlyName": "", "MinimumUserAge": 12, "ContentRatings": [ { "RatingSystem": "ESRB", "RatingId": "ESRB:T", "RatingDescriptors": ["ESRB:DivConDisAdv"], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "PEGI", "RatingId": "PEGI:!", "RatingDescriptors": ["PEGI:ParGuiRec"], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "DJCTQ", "RatingId": "DJCTQ:16", "RatingDescriptors": [ "DJCTQ:Vio", "DJCTQ:SexCon", "DJCTQ:IllDru" ], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "USK", "RatingId": "USK:16", "RatingDescriptors": ["USK:ConDifAge"], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "IARC", "RatingId": "IARC:12", "RatingDescriptors": ["IARC:ParGuiRec"], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "PCBP", "RatingId": "PCBP:18", "RatingDescriptors": [], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "CSRR", "RatingId": "CSRR:PG15", "RatingDescriptors": [], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "Microsoft", "RatingId": "Microsoft:12", "RatingDescriptors": [], "RatingDisclaimers": [], "InteractiveElements": [] }, { "RatingSystem": "CCC", "RatingId": "CCC:14", "RatingDescriptors": [], "RatingDisclaimers": [], "InteractiveElements": [] } ], "RelatedProducts": [], "UsageData": [ { "AggregateTimeSpan": "7Days", "AverageRating": 3.6, "PlayCount": 0, "RatingCount": 201, "RentalCount": "0", "TrialCount": "0", "PurchaseCount": "0" }, { "AggregateTimeSpan": "30Days", "AverageRating": 3.3, "PlayCount": 0, "RatingCount": 947, "RentalCount": "0", "TrialCount": "0", "PurchaseCount": "0" }, { "AggregateTimeSpan": "AllTime", "AverageRating": 4.0, "PlayCount": 0, "RatingCount": 685202, "RentalCount": "0", "TrialCount": "0", "PurchaseCount": "0" } ], "BundleConfig": null, "Markets": ["US"] } ], "ProductASchema": "Product;3", "ProductBSchema": "ProductUnifiedApp;3", "ProductId": "9WZDNCRFJ3TJ", "Properties": { "Attributes": [], "CanInstallToSDCard": true, "Category": "Entertainment", "SubCategory": "", "Categories": null, "Extensions": null, "IsAccessible": false, "IsLineOfBusinessApp": false, "IsPublishedToLegacyWindowsPhoneStore": true, "IsPublishedToLegacyWindowsStore": true, "IsSettingsApp": false, "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "PackageIdentityName": "4DF9E0F8.NETFLIX", "PublisherCertificateName": "CN=52120C15-ACFA-47FC-A7E3-4974DBA79445", "PublisherId": "10101050", "XboxLiveTier": null, "XboxXPA": null, "XboxCrossGenSetId": null, "XboxConsoleGenOptimized": null, "XboxConsoleGenCompatible": null, "XboxLiveGoldRequired": false, "OwnershipType": null, "PdpBackgroundColor": "#FFFFFF", "HasAddOns": false, "RevisionId": "2020-10-09T18:03:52.1324696Z", "ProductGroupId": "f6c7aeef-99e9-4096-b9fc-b0ddc1f8749b", "ProductGroupName": "Netflix" }, "AlternateIds": [ { "IdType": "LegacyWindowsStoreProductId", "Value": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa" }, { "IdType": "LegacyWindowsPhoneProductId", "Value": "c3a509cd-61d6-df11-a844-00237de2db9e" }, { "IdType": "XboxTitleId", "Value": "327370029" }, { "IdType": "SRAProductId", "Value": "337f7d51-bc20-4b9b-ad6c-2a2395a42ecb" } ], "DomainDataVersion": null, "IngestionSource": "DCE", "IsMicrosoftProduct": false, "PreferredSkuId": "0010", "ProductType": "Application", "ValidationData": { "PassedValidation": false, "RevisionId": "2020-10-09T18:03:52.1324696Z||.||7319fa59-58e1-4130-9142-e5d991b61b73||1152921505691950666||Null||fullrelease", "ValidationResultUri": "" }, "MerchandizingTags": [], "PartD": "", "ProductFamily": "Apps", "SchemaVersion": "3", "ProductKind": "Application", "DisplaySkuAvailabilities": [ { "Sku": { "LastModifiedDate": "2020-10-09T18:02:12.6570851Z", "LocalizedProperties": [ { "Contributors": [], "Features": [], "MinimumNotes": "", "RecommendedNotes": "", "ReleaseNotes": "", "DisplayPlatformProperties": null, "SkuDescription": "Netflix has something for everyone. Watch TV shows and movies recommended just for you, including award-winning Netflix original series, movies, and documentaries. There’s even a safe watching experience just for kids with family-friendly entertainment.\r\n\r\nNow on Windows, you can enjoy every detail of the world’s favorite shows in 4K Ultra HD on Netflix. Download many of your favorite series and movies with the simple click of the download button. You can watch while you’re on the go or without an Internet connection on your PC, tablet or laptop with Windows 10. \r\n\r\nHow does Netflix work?\r\n- Instantly watch TV shows and movies through thousands of internet-connected devices. You can play, pause, and resume watching, all without commercials.\r\n- Netflix adds new content all the time. Browse titles or search for your favorites.\r\n- The more you watch, the better Netflix gets at recommending TV shows and movies that you’ll love — just for you. \r\n- You can create up to five individual profiles within a single Netflix account. Profiles allow different members of your household to have their own personalized Netflix experience built around the movies and TV shows they enjoy. \r\n\r\nIf you decide Netflix isn't for you - no problem. No contract, no cancellation fees, no commitment. Cancel online anytime.\r\n\r\nBy clicking INSTALL, you consent to the installation of the Netflix application and any updates or upgrades thereto.", "SkuTitle": "Netflix", "SkuButtonTitle": "", "DeliveryDateOverlay": null, "SkuDisplayRank": [], "TextResources": null, "Images": [], "LegalText": { "AdditionalLicenseTerms": "By downloading this application you agree to the Netflix Terms of Use and Privacy Policy, located at www.netflix.com.\r\n \r\nInternet access and valid payment method are required. Your Netflix membership is a month-to-month subscription that you can cancel at any time. Go to \"Your Account\" on the Netflix website for cancellation instructions. No refund or credit for partial monthly subscription periods. The Netflix service is only available in the country where you originally signed up. A device that streams from Netflix (manufactured and sold separately) and broadband Internet connection are required to watch instantly. For complete terms and conditions, please visit http://www.netflix.com/TermsOfUse.", "Copyright": "© 1997-2018 Netflix, Inc.", "CopyrightUri": "", "PrivacyPolicy": "", "PrivacyPolicyUri": "https://signup.netflix.com/PrivacyPolicy", "Tou": "By downloading this application you agree to the Netflix Terms of Use and Privacy Policy, located at www.netflix.com.\r\n \r\nInternet access and valid payment method are required. Your Netflix membership is a month-to-month subscription that you can cancel at any time. Go to \"Your Account\" on the Netflix website for cancellation instructions. No refund or credit for partial monthly subscription periods. The Netflix service is only available in the country where you originally signed up. A device that streams from Netflix (manufactured and sold separately) and broadband Internet connection are required to watch instantly. For complete terms and conditions, please visit http://www.netflix.com/TermsOfUse.", "TouUri": "" }, "Language": "en-us", "Markets": [ "US", "DZ", "AR", "AU", "AT", "BH", "BD", "BE", "BR", "BG", "CA", "CL", "CN", "CO", "CR", "HR", "CY", "CZ", "DK", "EG", "EE", "FI", "FR", "DE", "GR", "GT", "HK", "HU", "IS", "IN", "ID", "IQ", "IE", "IL", "IT", "JP", "JO", "KZ", "KE", "KW", "LV", "LB", "LI", "LT", "LU", "MY", "MT", "MR", "MX", "MA", "NL", "NZ", "NG", "NO", "OM", "PK", "PE", "PH", "PL", "PT", "QA", "RO", "RU", "SA", "RS", "SG", "SK", "SI", "ZA", "KR", "ES", "SE", "CH", "TW", "TH", "TT", "TN", "TR", "UA", "AE", "GB", "VN", "YE", "LY", "LK", "UY", "VE", "AF", "AX", "AL", "AS", "AO", "AI", "AQ", "AG", "AM", "AW", "BO", "BQ", "BA", "BW", "BV", "IO", "BN", "BF", "BI", "KH", "CM", "CV", "KY", "CF", "TD", "TL", "DJ", "DM", "DO", "EC", "SV", "GQ", "ER", "ET", "FK", "FO", "FJ", "GF", "PF", "TF", "GA", "GM", "GE", "GH", "GI", "GL", "GD", "GP", "GU", "GG", "GN", "GW", "GY", "HT", "HM", "HN", "AZ", "BS", "BB", "BY", "BZ", "BJ", "BM", "BT", "KM", "CG", "CD", "CK", "CX", "CC", "CI", "CW", "JM", "SJ", "JE", "KI", "KG", "LA", "LS", "LR", "MO", "MK", "MG", "MW", "IM", "MH", "MQ", "MU", "YT", "FM", "MD", "MN", "MS", "MZ", "MM", "NA", "NR", "NP", "MV", "ML", "NC", "NI", "NE", "NU", "NF", "PW", "PS", "PA", "PG", "PY", "RE", "RW", "BL", "MF", "WS", "ST", "SN", "MP", "PN", "SX", "SB", "SO", "SC", "SL", "GS", "SH", "KN", "LC", "PM", "VC", "TJ", "TZ", "TG", "TK", "TO", "TM", "TC", "TV", "UM", "UG", "VI", "VG", "WF", "EH", "ZM", "ZW", "UZ", "VU", "SR", "SZ", "AD", "MC", "SM", "ME", "VA", "NEUTRAL" ] } ], "MarketProperties": [ { "FirstAvailableDate": "2010-10-18T20:04:26.4400000Z", "SupportedLanguages": [ "en-us", "da", "es", "fi", "fr", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "de", "fr-ca", "en-au", "es-es", "it", "ja", "pt-pt", "pt-br", "da-dk", "fi-fi", "nl-nl", "sv-se", "es-mx", "nb-no", "de-de", "fr-fr", "en", "ko", "zh-cn", "zh-tw", "ar", "zh-hant", "pl", "tr", "th", "ro", "he", "el", "id", "cs", "hu", "vi", "en-in" ], "PackageIds": null, "PIFilter": null, "Markets": ["US"] } ], "ProductId": "9WZDNCRFJ3TJ", "Properties": { "EarlyAdopterEnrollmentUrl": null, "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0010", "Content": null, "PackageFeatures": null }, "FulfillmentType": "WindowsUpdate", "FulfillmentPluginId": null, "HasThirdPartyIAPs": false, "LastUpdateDate": "2020-10-09T18:02:12.0000000Z", "HardwareProperties": { "MinimumHardware": [], "RecommendedHardware": [], "MinimumProcessor": null, "RecommendedProcessor": null, "MinimumGraphics": null, "RecommendedGraphics": null }, "HardwareRequirements": [], "HardwareWarningList": [], "InstallationTerms": "InstallationTermsStandard", "Packages": [ { "Applications": [ { "ApplicationId": "Netflix.App", "DeclarationOrder": 0, "Extensions": [ "search-search", "protocol-netflix", "backgroundTasks-backgroundTasks" ] } ], "Architectures": ["x64", "arm", "x86"], "Capabilities": [ "internetClient", "internetClientServer", "privateNetworkClientServer" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "5JwYk5NZCfrPpZUg2YhKU0W+m6HUP3Vx+3+mS4rXN5Q=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "en-in", "ar", "bg", "cs", "da", "de", "el", "es", "fi", "fr", "he", "hu", "it", "ja", "ko", "nb", "nl", "pt", "pl", "ro", "tr", "sv", "zh-hant", "th", "vi" ], "MaxDownloadSizeInBytes": 7250253, "MaxInstallSizeInBytes": 7610368, "PackageFormat": "AppxBundle", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_6.97.752.0_neutral_~_mcm4njqhnhss8", "PackageId": "c76eb995-37f6-0df7-3573-95c498140c24-X86-X64-Arm", "ContentId": "6f5a9e8f-f920-1658-72ff-16c1448402f9", "KeyId": null, "PackageRank": 30003, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 2814750438195200, "MinVersion": 2814750438195200, "PlatformName": "Windows.Desktop" }, { "MaxTested": 2814750438195200, "MinVersion": 2814750438195200, "PlatformName": "Windows.Holographic" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.bundledPackages\":[\"4DF9E0F8.Netflix_6.97.752.0_x64__mcm4njqhnhss8\",\"4DF9E0F8.Netflix_6.97.752.0_arm__mcm4njqhnhss8\",\"4DF9E0F8.Netflix_6.97.752.0_x86__mcm4njqhnhss8\"],\"content.isMain\":false,\"content.packageId\":\"4DF9E0F8.Netflix_6.97.752.0_neutral_~_mcm4njqhnhss8\",\"content.productId\":\"c3a509cd-61d6-df11-a844-00237de2db9e\",\"content.targetPlatforms\":[{\"platform.maxVersionTested\":2814750438195200,\"platform.minVersion\":2814750438195200,\"platform.target\":3},{\"platform.maxVersionTested\":2814750438195200,\"platform.minVersion\":2814750438195200,\"platform.target\":10}],\"content.type\":7,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "~", "Version": "1689266521374720", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0010", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "App", "DeclarationOrder": 0, "Extensions": [ "DialProtocol-Netflix", "protocol-netflix", "appUriHandler-appUriHandler" ] } ], "Architectures": ["x64"], "Capabilities": [ "internetClient", "internetClientServer", "privateNetworkClientServer", "hevcPlayback" ], "DeviceCapabilities": [ "6a7e5907-885c-4bcb-b40a-073c067bd3d5" ], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 3940651496505344, "PackageIdentity": "Microsoft.VCLibs.140.00" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "06P4J+OstU7MzIf5HE769f3XL8mSikambNQFuqzFgaA=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": ["en-us"], "MaxDownloadSizeInBytes": 81100341, "MaxInstallSizeInBytes": 81489920, "PackageFormat": "EMsixBundle", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_8.38.0.70_neutral_~_mcm4njqhnhss8", "PackageId": "f9ceeb09-ebef-6107-dcbd-e1d3537b3d03-X64", "ContentId": "6ab456e6-b2e4-5f12-9459-2267c3bd2e01", "KeyId": "6ab456e6-b2e4-5f12-9459-2267c3bd2e01", "PackageRank": 30012, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 2814750970478592, "MinVersion": 2814750931222528, "PlatformName": "Windows.Xbox" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.bundledPackages\":[\"4DF9E0F8.Netflix_8.38.0.70_x64__mcm4njqhnhss8\"],\"content.isMain\":false,\"content.packageId\":\"4DF9E0F8.Netflix_8.38.0.70_neutral_~_mcm4njqhnhss8\",\"content.productId\":\"c3a509cd-61d6-df11-a844-00237de2db9e\",\"content.targetPlatforms\":[{\"platform.maxVersionTested\":2814750970478592,\"platform.minVersion\":2814750931222528,\"platform.target\":5}],\"content.type\":7,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "~", "Version": "2251963022442566", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0010", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "WP", "DeclarationOrder": 0, "Extensions": [] } ], "Architectures": ["neutral"], "Capabilities": [ "ID_CAP_IDENTITY_DEVICE", "ID_CAP_MEDIALIB", "ID_CAP_NETWORKING", "ID_FNCTNL_SILVERLIGHT_FRAMEWORK", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "", "HashAlgorithm": "", "IsStreamingApp": false, "Languages": [ "da-dk", "de-de", "en", "en-gb", "en-us", "es-es", "fi-fi", "fr-ca", "fr-fr", "nb-no", "nl-nl", "pt-br", "sv-se" ], "MaxDownloadSizeInBytes": 2124298, "MaxInstallSizeInBytes": null, "PackageFormat": "Xap", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "", "PackageId": "6851614b-8337-4b5f-9025-1b1d21966cf0", "ContentId": "b7bc0da1-a0ff-8753-d972-13d41ea223e1", "KeyId": null, "PackageRank": 10000, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 2251804108652544, "MinVersion": 2251799813685248, "PlatformName": "Windows.WindowsPhone8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.payloadId\":\"6851614b-8337-4b5f-9025-1b1d21966cf0\",\"content.productId\":\"c3a509cd-61d6-df11-a844-00237de2db9e\",\"content.type\":1,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "562992917970944", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0010", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "WP", "DeclarationOrder": 0, "Extensions": [] } ], "Architectures": ["neutral"], "Capabilities": [ "ID_CAP_IDENTITY_DEVICE", "ID_CAP_MEDIALIB_PLAYBACK", "ID_CAP_NETWORKING", "ID_FNCTNL_SILVERLIGHT_FRAMEWORK", "ID_RESOLUTION_HD720P", "ID_RESOLUTION_WVGA", "ID_RESOLUTION_WXGA", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "", "HashAlgorithm": "", "IsStreamingApp": false, "Languages": [ "da-dk", "de-de", "en-gb", "en-us", "es-mx", "fi-fi", "fr-ca", "fr-fr", "nb-no", "nl-nl", "pt-br", "sv-se" ], "MaxDownloadSizeInBytes": 2079578, "MaxInstallSizeInBytes": null, "PackageFormat": "Xap", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "", "PackageId": "c828f646-52ec-4c11-847f-768bcf8a6eae", "ContentId": "b7bc0da1-a0ff-8753-d972-13d41ea223e1", "KeyId": null, "PackageRank": 11000, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 2251804108652544, "MinVersion": 2251799813685248, "PlatformName": "Windows.WindowsPhone8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.payloadId\":\"c828f646-52ec-4c11-847f-768bcf8a6eae\",\"content.productId\":\"c3a509cd-61d6-df11-a844-00237de2db9e\",\"content.type\":2,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "844454994903063", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0010", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "WP", "DeclarationOrder": 0, "Extensions": [] } ], "Architectures": ["neutral"], "Capabilities": [ "internetClient", "ID_RESOLUTION_WVGA", "ID_RESOLUTION_WXGA", "ID_RESOLUTION_HD720P", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": ["microphone"], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 562993039212545, "PackageIdentity": "Microsoft.Media.PlayReadyClient.Phone.2" }, { "MaxTested": 0, "MinVersion": 3377701694013440, "PackageIdentity": "Microsoft.VCLibs.120.00.Phone" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "GsUkUC+HXkRvEE6PU5EjQnKAR9VfEoEq+WWNCX8MxoA=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "da", "de", "es", "fi", "fr", "fr-ca", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "en-au", "es-es", "it", "ja", "ko", "pl", "pt-pt", "th", "tr", "zh-cn", "zh-tw" ], "MaxDownloadSizeInBytes": 7948191, "MaxInstallSizeInBytes": 11083776, "PackageFormat": "Appx", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_4.15.0.62_arm__mcm4njqhnhss8", "PackageId": "4c9dc6c4-e410-466a-9e98-eee520f15b5e-Neutral", "ContentId": "6a97cc96-9d91-fff0-912f-d26c240e578b", "KeyId": null, "PackageRank": 17000, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 2251804108652544, "MinVersion": 2251804108652544, "PlatformName": "Windows.WindowsPhone8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.maxOSTested\":1688862745231360,\"content.minOS\":1688862745231360,\"content.packageId\":\"4DF9E0F8.Netflix_4.15.0.62_arm__mcm4njqhnhss8\",\"content.productId\":\"c3a509cd-61d6-df11-a844-00237de2db9e\",\"content.type\":4,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "1125964331352126", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0010", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "App", "DeclarationOrder": 0, "Extensions": ["search-search", "protocol-netflix"] } ], "Architectures": ["x64"], "Capabilities": [ "internetClient", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 562962948292608, "PackageIdentity": "Microsoft.Media.PlayReadyClient" }, { "MaxTested": 0, "MinVersion": 3096228093100033, "PackageIdentity": "Microsoft.VCLibs.110.00" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "42X7uS/LytxrsxrF7PGreVD3fb8n+u5p6/W9KXeGfgc=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "da", "de", "es", "fi", "fr", "fr-ca", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "en-au", "es-es", "it", "ja", "ko", "pl", "pt-pt", "th", "tr", "zh-cn", "zh-tw" ], "MaxDownloadSizeInBytes": 5747705, "MaxInstallSizeInBytes": 10559488, "PackageFormat": "appx", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_1.33.0.109_x64__mcm4njqhnhss8", "PackageId": "e20498c8-c01f-440c-a167-5213d4ed9914-X64", "ContentId": "f1ebc660-8f05-a12f-4aa3-4d888433c435", "KeyId": null, "PackageRank": 20002, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 1688858450264064, "MinVersion": 1688858450264064, "PlatformName": "Windows.Windows8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.maxOSTested\":1688858450264064,\"content.minOS\":1688858450264064,\"content.packageId\":\"4DF9E0F8.Netflix_1.33.0.109_x64__mcm4njqhnhss8\",\"content.type\":5,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "281616710631533", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0010", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "App", "DeclarationOrder": 0, "Extensions": ["search-search", "protocol-netflix"] } ], "Architectures": ["x86"], "Capabilities": [ "internetClient", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 562962948292608, "PackageIdentity": "Microsoft.Media.PlayReadyClient" }, { "MaxTested": 0, "MinVersion": 3096228093100033, "PackageIdentity": "Microsoft.VCLibs.110.00" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "z7PFAh/WD46LPrHKm0DcT6UloZp0iaTZjf/2nBvdcnc=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "da", "de", "es", "fi", "fr", "fr-ca", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "en-au", "es-es", "it", "ja", "ko", "pl", "pt-pt", "th", "tr", "zh-cn", "zh-tw" ], "MaxDownloadSizeInBytes": 5733181, "MaxInstallSizeInBytes": 10518528, "PackageFormat": "appx", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_1.33.0.109_x86__mcm4njqhnhss8", "PackageId": "b4cf45f0-2677-4520-b7ef-18728082c0ec-X86", "ContentId": "f1ebc660-8f05-a12f-4aa3-4d888433c435", "KeyId": null, "PackageRank": 20001, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 1688858450264064, "MinVersion": 1688858450264064, "PlatformName": "Windows.Windows8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.maxOSTested\":1688858450264064,\"content.minOS\":1688858450264064,\"content.packageId\":\"4DF9E0F8.Netflix_1.33.0.109_x86__mcm4njqhnhss8\",\"content.type\":5,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "281616710631533", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0010", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "App", "DeclarationOrder": 0, "Extensions": ["search-search", "protocol-netflix"] } ], "Architectures": ["arm"], "Capabilities": [ "internetClient", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 562962948292608, "PackageIdentity": "Microsoft.Media.PlayReadyClient" }, { "MaxTested": 0, "MinVersion": 3096228093100033, "PackageIdentity": "Microsoft.VCLibs.110.00" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "OMZ/IIRve1/aBnMmSb/u639E8E0jXUVlXvoBHqtixYc=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "da", "de", "es", "fi", "fr", "fr-ca", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "en-au", "es-es", "it", "ja", "ko", "pl", "pt-pt", "th", "tr", "zh-cn", "zh-tw" ], "MaxDownloadSizeInBytes": 5744175, "MaxInstallSizeInBytes": 10526720, "PackageFormat": "appx", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_1.33.0.109_arm__mcm4njqhnhss8", "PackageId": "896936b6-abe8-485d-9542-706b7b1f6fc4-Arm", "ContentId": "f1ebc660-8f05-a12f-4aa3-4d888433c435", "KeyId": null, "PackageRank": 20003, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 1688858450264064, "MinVersion": 1688858450264064, "PlatformName": "Windows.Windows8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.maxOSTested\":1688858450264064,\"content.minOS\":1688858450264064,\"content.packageId\":\"4DF9E0F8.Netflix_1.33.0.109_arm__mcm4njqhnhss8\",\"content.type\":5,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "281616710631533", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0010", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "App", "DeclarationOrder": 0, "Extensions": ["search-search", "protocol-netflix"] } ], "Architectures": ["x86"], "Capabilities": [ "internetClient", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 562997339226112, "PackageIdentity": "Microsoft.Media.PlayReadyClient.2" }, { "MaxTested": 0, "MinVersion": 3377701097111553, "PackageIdentity": "Microsoft.VCLibs.120.00" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "IvNSqzzyRmD5ZgCFVU/2x7QddCSw25ak2ix9oMmyh4E=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "da", "de", "es", "fi", "fr", "fr-ca", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "en-au", "es-es", "it", "ja", "ko", "pl", "pt-pt", "th", "tr", "zh-cn", "zh-tw" ], "MaxDownloadSizeInBytes": 5925423, "MaxInstallSizeInBytes": 10891264, "PackageFormat": "appx", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_2.22.0.39_x86__mcm4njqhnhss8", "PackageId": "3789cd7b-3858-441a-aa0c-523366516efd-X86", "ContentId": "f1ebc660-8f05-a12f-4aa3-4d888433c435", "KeyId": null, "PackageRank": 20011, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 1688862745165824, "MinVersion": 1688862745165824, "PlatformName": "Windows.Windows8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.maxOSTested\":1688862745165824,\"content.minOS\":1688862745165824,\"content.packageId\":\"4DF9E0F8.Netflix_2.22.0.39_x86__mcm4njqhnhss8\",\"content.type\":6,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "563044442701863", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0010", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "App", "DeclarationOrder": 0, "Extensions": ["search-search", "protocol-netflix"] } ], "Architectures": ["x64"], "Capabilities": [ "internetClient", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 562997339226112, "PackageIdentity": "Microsoft.Media.PlayReadyClient.2" }, { "MaxTested": 0, "MinVersion": 3377701097111553, "PackageIdentity": "Microsoft.VCLibs.120.00" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "fA7AhxxOocoGdURdUaAWp9rjM2Kr4JPJE3YQAxznYtw=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "da", "de", "es", "fi", "fr", "fr-ca", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "en-au", "es-es", "it", "ja", "ko", "pl", "pt-pt", "th", "tr", "zh-cn", "zh-tw" ], "MaxDownloadSizeInBytes": 5939929, "MaxInstallSizeInBytes": 10952704, "PackageFormat": "appx", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_2.22.0.39_x64__mcm4njqhnhss8", "PackageId": "671978e9-fefc-4766-8bc8-0eb62503c5d4-X64", "ContentId": "f1ebc660-8f05-a12f-4aa3-4d888433c435", "KeyId": null, "PackageRank": 20012, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 1688862745165824, "MinVersion": 1688862745165824, "PlatformName": "Windows.Windows8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.maxOSTested\":1688862745165824,\"content.minOS\":1688862745165824,\"content.packageId\":\"4DF9E0F8.Netflix_2.22.0.39_x64__mcm4njqhnhss8\",\"content.type\":6,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "563044442701863", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0010", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "App", "DeclarationOrder": 0, "Extensions": ["search-search", "protocol-netflix"] } ], "Architectures": ["arm"], "Capabilities": [ "internetClient", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 562997339226112, "PackageIdentity": "Microsoft.Media.PlayReadyClient.2" }, { "MaxTested": 0, "MinVersion": 3377701097111553, "PackageIdentity": "Microsoft.VCLibs.120.00" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "F4dbkqdksFrGfBVewsJJkQd7NHxc3GfFCEFeOa9m56A=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "da", "de", "es", "fi", "fr", "fr-ca", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "en-au", "es-es", "it", "ja", "ko", "pl", "pt-pt", "th", "tr", "zh-cn", "zh-tw" ], "MaxDownloadSizeInBytes": 5935941, "MaxInstallSizeInBytes": 10903552, "PackageFormat": "appx", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_2.22.0.39_arm__mcm4njqhnhss8", "PackageId": "5f2e3a30-363d-4f64-bc6a-fea9bd3a69a7-Arm", "ContentId": "f1ebc660-8f05-a12f-4aa3-4d888433c435", "KeyId": null, "PackageRank": 20013, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 1688862745165824, "MinVersion": 1688862745165824, "PlatformName": "Windows.Windows8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.maxOSTested\":1688862745165824,\"content.minOS\":1688862745165824,\"content.packageId\":\"4DF9E0F8.Netflix_2.22.0.39_arm__mcm4njqhnhss8\",\"content.type\":6,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "563044442701863", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0010", "Content": null, "PackageFeatures": null } } ], "VersionString": "", "VisibleToB2BServiceIds": [], "XboxXPA": false, "BundledSkus": [], "IsRepurchasable": false, "SkuDisplayRank": 0, "DisplayPhysicalStoreInventory": null, "AdditionalIdentifiers": [], "IsTrial": false, "IsPreOrder": false, "IsBundle": false }, "SkuASchema": "Sku;3", "SkuBSchema": "SkuUnifiedApp;3", "SkuId": "0010", "SkuType": "full", "RecurrencePolicy": null, "SubscriptionPolicyId": null }, "Availabilities": [ { "Actions": [ "Details", "Fulfill", "Purchase", "Browse", "Curate", "Redeem" ], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityUnifiedApp;3", "AvailabilityId": "9NF83GM638LJ", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Desktop" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Mobile" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.8828080" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "1753-01-01T00:00:00.0000000Z" }, "LastModifiedDate": "2020-10-09T18:02:17.8524346Z", "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "PIFilter": { "ExclusionProperties": [], "InclusionProperties": [] }, "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "TaxesNotIncluded", "WholesaleCurrencyCode": "" } }, "Properties": { "OriginalReleaseDate": "2010-10-18T20:04:26.4400000Z" }, "SkuId": "0010", "DisplayRank": 0, "RemediationRequired": false }, { "Actions": ["License", "Browse", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityUnifiedApp;3", "AvailabilityId": "9PVM1DW12FV2", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Desktop" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Mobile" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.8828080" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "1753-01-01T00:00:00.0000000Z" }, "LastModifiedDate": "2020-10-09T18:02:17.8524346Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:9WZDNCRFJ3TJ:0010"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:c3a509cd-61d6-df11-a844-00237de2db9e:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9WZDNCRFJ3TJ:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9WZDNCRFJ3TJ:0002"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:337f7d51-bc20-4b9b-ad6c-2a2395a42ecb:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:337f7d51-bc20-4b9b-ad6c-2a2395a42ecb:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9VWGNH0VBZR3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9VWGNH0VBZR3:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0010", "DisplayRank": 1, "RemediationRequired": false }, { "Actions": ["License", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityUnifiedApp;3", "AvailabilityId": "9NFKK7NRXLPL", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Team" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Holographic" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Core" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "1753-01-01T00:00:00.0000000Z" }, "LastModifiedDate": "2020-10-09T18:02:17.8524346Z", "LicensingData": { "SatisfyingEntitlementKeys": [ { "EntitlementKeys": ["big:9WZDNCRFJ3TJ:0010"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:c3a509cd-61d6-df11-a844-00237de2db9e:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "wes:App:d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9WZDNCRFJ3TJ:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9WZDNCRFJ3TJ:0002"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:337f7d51-bc20-4b9b-ad6c-2a2395a42ecb:Full" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": [ "xbx:GameV2:337f7d51-bc20-4b9b-ad6c-2a2395a42ecb:Presale" ], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9VWGNH0VBZR3:0001"], "LicensingKeyIds": ["1"] }, { "EntitlementKeys": ["big:9VWGNH0VBZR3:0003"], "LicensingKeyIds": ["1"] } ] }, "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0010", "DisplayRank": 2, "RemediationRequired": false } ] }, { "Sku": { "LastModifiedDate": "2020-10-09T18:02:12.6570851Z", "LocalizedProperties": [ { "Contributors": [], "Features": [], "MinimumNotes": "", "RecommendedNotes": "", "ReleaseNotes": "", "DisplayPlatformProperties": null, "SkuDescription": "Netflix has something for everyone. Watch TV shows and movies recommended just for you, including award-winning Netflix original series, movies, and documentaries. There’s even a safe watching experience just for kids with family-friendly entertainment.\r\n\r\nNow on Windows, you can enjoy every detail of the world’s favorite shows in 4K Ultra HD on Netflix. Download many of your favorite series and movies with the simple click of the download button. You can watch while you’re on the go or without an Internet connection on your PC, tablet or laptop with Windows 10. \r\n\r\nHow does Netflix work?\r\n- Instantly watch TV shows and movies through thousands of internet-connected devices. You can play, pause, and resume watching, all without commercials.\r\n- Netflix adds new content all the time. Browse titles or search for your favorites.\r\n- The more you watch, the better Netflix gets at recommending TV shows and movies that you’ll love — just for you. \r\n- You can create up to five individual profiles within a single Netflix account. Profiles allow different members of your household to have their own personalized Netflix experience built around the movies and TV shows they enjoy. \r\n\r\nIf you decide Netflix isn't for you - no problem. No contract, no cancellation fees, no commitment. Cancel online anytime.\r\n\r\nBy clicking INSTALL, you consent to the installation of the Netflix application and any updates or upgrades thereto.", "SkuTitle": "Netflix", "SkuButtonTitle": "", "DeliveryDateOverlay": null, "SkuDisplayRank": [], "TextResources": null, "Images": [], "LegalText": { "AdditionalLicenseTerms": "By downloading this application you agree to the Netflix Terms of Use and Privacy Policy, located at www.netflix.com.\r\n \r\nInternet access and valid payment method are required. Your Netflix membership is a month-to-month subscription that you can cancel at any time. Go to \"Your Account\" on the Netflix website for cancellation instructions. No refund or credit for partial monthly subscription periods. The Netflix service is only available in the country where you originally signed up. A device that streams from Netflix (manufactured and sold separately) and broadband Internet connection are required to watch instantly. For complete terms and conditions, please visit http://www.netflix.com/TermsOfUse.", "Copyright": "© 1997-2018 Netflix, Inc.", "CopyrightUri": "", "PrivacyPolicy": "", "PrivacyPolicyUri": "https://signup.netflix.com/PrivacyPolicy", "Tou": "By downloading this application you agree to the Netflix Terms of Use and Privacy Policy, located at www.netflix.com.\r\n \r\nInternet access and valid payment method are required. Your Netflix membership is a month-to-month subscription that you can cancel at any time. Go to \"Your Account\" on the Netflix website for cancellation instructions. No refund or credit for partial monthly subscription periods. The Netflix service is only available in the country where you originally signed up. A device that streams from Netflix (manufactured and sold separately) and broadband Internet connection are required to watch instantly. For complete terms and conditions, please visit http://www.netflix.com/TermsOfUse.", "TouUri": "" }, "Language": "en-us", "Markets": [ "US", "DZ", "AR", "AU", "AT", "BH", "BD", "BE", "BR", "BG", "CA", "CL", "CN", "CO", "CR", "HR", "CY", "CZ", "DK", "EG", "EE", "FI", "FR", "DE", "GR", "GT", "HK", "HU", "IS", "IN", "ID", "IQ", "IE", "IL", "IT", "JP", "JO", "KZ", "KE", "KW", "LV", "LB", "LI", "LT", "LU", "MY", "MT", "MR", "MX", "MA", "NL", "NZ", "NG", "NO", "OM", "PK", "PE", "PH", "PL", "PT", "QA", "RO", "RU", "SA", "RS", "SG", "SK", "SI", "ZA", "KR", "ES", "SE", "CH", "TW", "TH", "TT", "TN", "TR", "UA", "AE", "GB", "VN", "YE", "LY", "LK", "UY", "VE", "AF", "AX", "AL", "AS", "AO", "AI", "AQ", "AG", "AM", "AW", "BO", "BQ", "BA", "BW", "BV", "IO", "BN", "BF", "BI", "KH", "CM", "CV", "KY", "CF", "TD", "TL", "DJ", "DM", "DO", "EC", "SV", "GQ", "ER", "ET", "FK", "FO", "FJ", "GF", "PF", "TF", "GA", "GM", "GE", "GH", "GI", "GL", "GD", "GP", "GU", "GG", "GN", "GW", "GY", "HT", "HM", "HN", "AZ", "BS", "BB", "BY", "BZ", "BJ", "BM", "BT", "KM", "CG", "CD", "CK", "CX", "CC", "CI", "CW", "JM", "SJ", "JE", "KI", "KG", "LA", "LS", "LR", "MO", "MK", "MG", "MW", "IM", "MH", "MQ", "MU", "YT", "FM", "MD", "MN", "MS", "MZ", "MM", "NA", "NR", "NP", "MV", "ML", "NC", "NI", "NE", "NU", "NF", "PW", "PS", "PA", "PG", "PY", "RE", "RW", "BL", "MF", "WS", "ST", "SN", "MP", "PN", "SX", "SB", "SO", "SC", "SL", "GS", "SH", "KN", "LC", "PM", "VC", "TJ", "TZ", "TG", "TK", "TO", "TM", "TC", "TV", "UM", "UG", "VI", "VG", "WF", "EH", "ZM", "ZW", "UZ", "VU", "SR", "SZ", "AD", "MC", "SM", "ME", "VA", "NEUTRAL" ] } ], "MarketProperties": [ { "FirstAvailableDate": "2010-10-18T20:04:26.4400000Z", "SupportedLanguages": [ "en-us", "da", "es", "fi", "fr", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "de", "fr-ca", "en-au", "es-es", "it", "ja", "pt-pt", "pt-br", "da-dk", "fi-fi", "nl-nl", "sv-se", "es-mx", "nb-no", "de-de", "fr-fr", "en", "ko", "zh-cn", "zh-tw", "ar", "zh-hant", "pl", "tr", "th", "ro", "he", "el", "id", "cs", "hu", "vi", "en-in" ], "PackageIds": null, "PIFilter": null, "Markets": ["US"] } ], "ProductId": "9WZDNCRFJ3TJ", "Properties": { "EarlyAdopterEnrollmentUrl": null, "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0011", "Content": null, "PackageFeatures": null }, "FulfillmentType": "WindowsUpdate", "FulfillmentPluginId": null, "HasThirdPartyIAPs": false, "LastUpdateDate": "2020-10-09T18:02:12.0000000Z", "HardwareProperties": { "MinimumHardware": [], "RecommendedHardware": [], "MinimumProcessor": null, "RecommendedProcessor": null, "MinimumGraphics": null, "RecommendedGraphics": null }, "HardwareRequirements": [], "HardwareWarningList": [], "InstallationTerms": "InstallationTermsStandard", "Packages": [ { "Applications": [ { "ApplicationId": "Netflix.App", "DeclarationOrder": 0, "Extensions": [ "search-search", "protocol-netflix", "backgroundTasks-backgroundTasks" ] } ], "Architectures": ["x64", "arm", "x86"], "Capabilities": [ "internetClient", "internetClientServer", "privateNetworkClientServer" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "5JwYk5NZCfrPpZUg2YhKU0W+m6HUP3Vx+3+mS4rXN5Q=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "en-in", "ar", "bg", "cs", "da", "de", "el", "es", "fi", "fr", "he", "hu", "it", "ja", "ko", "nb", "nl", "pt", "pl", "ro", "tr", "sv", "zh-hant", "th", "vi" ], "MaxDownloadSizeInBytes": 7250253, "MaxInstallSizeInBytes": 7610368, "PackageFormat": "AppxBundle", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_6.97.752.0_neutral_~_mcm4njqhnhss8", "PackageId": "c76eb995-37f6-0df7-3573-95c498140c24-X86-X64-Arm", "ContentId": "6f5a9e8f-f920-1658-72ff-16c1448402f9", "KeyId": null, "PackageRank": 30003, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 2814750438195200, "MinVersion": 2814750438195200, "PlatformName": "Windows.Desktop" }, { "MaxTested": 2814750438195200, "MinVersion": 2814750438195200, "PlatformName": "Windows.Holographic" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.bundledPackages\":[\"4DF9E0F8.Netflix_6.97.752.0_x64__mcm4njqhnhss8\",\"4DF9E0F8.Netflix_6.97.752.0_arm__mcm4njqhnhss8\",\"4DF9E0F8.Netflix_6.97.752.0_x86__mcm4njqhnhss8\"],\"content.isMain\":false,\"content.packageId\":\"4DF9E0F8.Netflix_6.97.752.0_neutral_~_mcm4njqhnhss8\",\"content.productId\":\"c3a509cd-61d6-df11-a844-00237de2db9e\",\"content.targetPlatforms\":[{\"platform.maxVersionTested\":2814750438195200,\"platform.minVersion\":2814750438195200,\"platform.target\":3},{\"platform.maxVersionTested\":2814750438195200,\"platform.minVersion\":2814750438195200,\"platform.target\":10}],\"content.type\":7,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "~", "Version": "1689266521374720", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0011", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "App", "DeclarationOrder": 0, "Extensions": [ "DialProtocol-Netflix", "protocol-netflix", "appUriHandler-appUriHandler" ] } ], "Architectures": ["x64"], "Capabilities": [ "internetClient", "internetClientServer", "privateNetworkClientServer", "hevcPlayback" ], "DeviceCapabilities": [ "6a7e5907-885c-4bcb-b40a-073c067bd3d5" ], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 3940651496505344, "PackageIdentity": "Microsoft.VCLibs.140.00" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "06P4J+OstU7MzIf5HE769f3XL8mSikambNQFuqzFgaA=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": ["en-us"], "MaxDownloadSizeInBytes": 81100341, "MaxInstallSizeInBytes": 81489920, "PackageFormat": "EMsixBundle", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_8.38.0.70_neutral_~_mcm4njqhnhss8", "PackageId": "f9ceeb09-ebef-6107-dcbd-e1d3537b3d03-X64", "ContentId": "6ab456e6-b2e4-5f12-9459-2267c3bd2e01", "KeyId": "6ab456e6-b2e4-5f12-9459-2267c3bd2e01", "PackageRank": 30012, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 2814750970478592, "MinVersion": 2814750931222528, "PlatformName": "Windows.Xbox" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.bundledPackages\":[\"4DF9E0F8.Netflix_8.38.0.70_x64__mcm4njqhnhss8\"],\"content.isMain\":false,\"content.packageId\":\"4DF9E0F8.Netflix_8.38.0.70_neutral_~_mcm4njqhnhss8\",\"content.productId\":\"c3a509cd-61d6-df11-a844-00237de2db9e\",\"content.targetPlatforms\":[{\"platform.maxVersionTested\":2814750970478592,\"platform.minVersion\":2814750931222528,\"platform.target\":5}],\"content.type\":7,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "~", "Version": "2251963022442566", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0011", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "WP", "DeclarationOrder": 0, "Extensions": [] } ], "Architectures": ["neutral"], "Capabilities": [ "ID_CAP_IDENTITY_DEVICE", "ID_CAP_MEDIALIB", "ID_CAP_NETWORKING", "ID_FNCTNL_SILVERLIGHT_FRAMEWORK", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "", "HashAlgorithm": "", "IsStreamingApp": false, "Languages": [ "da-dk", "de-de", "en", "en-gb", "en-us", "es-es", "fi-fi", "fr-ca", "fr-fr", "nb-no", "nl-nl", "pt-br", "sv-se" ], "MaxDownloadSizeInBytes": 2124298, "MaxInstallSizeInBytes": null, "PackageFormat": "Xap", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "", "PackageId": "6851614b-8337-4b5f-9025-1b1d21966cf0", "ContentId": "b7bc0da1-a0ff-8753-d972-13d41ea223e1", "KeyId": null, "PackageRank": 10000, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 2251804108652544, "MinVersion": 2251799813685248, "PlatformName": "Windows.WindowsPhone8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.payloadId\":\"6851614b-8337-4b5f-9025-1b1d21966cf0\",\"content.productId\":\"c3a509cd-61d6-df11-a844-00237de2db9e\",\"content.type\":1,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "562992917970944", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0011", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "WP", "DeclarationOrder": 0, "Extensions": [] } ], "Architectures": ["neutral"], "Capabilities": [ "ID_CAP_IDENTITY_DEVICE", "ID_CAP_MEDIALIB_PLAYBACK", "ID_CAP_NETWORKING", "ID_FNCTNL_SILVERLIGHT_FRAMEWORK", "ID_RESOLUTION_HD720P", "ID_RESOLUTION_WVGA", "ID_RESOLUTION_WXGA", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "", "HashAlgorithm": "", "IsStreamingApp": false, "Languages": [ "da-dk", "de-de", "en-gb", "en-us", "es-mx", "fi-fi", "fr-ca", "fr-fr", "nb-no", "nl-nl", "pt-br", "sv-se" ], "MaxDownloadSizeInBytes": 2079578, "MaxInstallSizeInBytes": null, "PackageFormat": "Xap", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "", "PackageId": "c828f646-52ec-4c11-847f-768bcf8a6eae", "ContentId": "b7bc0da1-a0ff-8753-d972-13d41ea223e1", "KeyId": null, "PackageRank": 11000, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 2251804108652544, "MinVersion": 2251799813685248, "PlatformName": "Windows.WindowsPhone8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.payloadId\":\"c828f646-52ec-4c11-847f-768bcf8a6eae\",\"content.productId\":\"c3a509cd-61d6-df11-a844-00237de2db9e\",\"content.type\":2,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "844454994903063", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0011", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "WP", "DeclarationOrder": 0, "Extensions": [] } ], "Architectures": ["neutral"], "Capabilities": [ "internetClient", "ID_RESOLUTION_WVGA", "ID_RESOLUTION_WXGA", "ID_RESOLUTION_HD720P", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": ["microphone"], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 562993039212545, "PackageIdentity": "Microsoft.Media.PlayReadyClient.Phone.2" }, { "MaxTested": 0, "MinVersion": 3377701694013440, "PackageIdentity": "Microsoft.VCLibs.120.00.Phone" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "GsUkUC+HXkRvEE6PU5EjQnKAR9VfEoEq+WWNCX8MxoA=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "da", "de", "es", "fi", "fr", "fr-ca", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "en-au", "es-es", "it", "ja", "ko", "pl", "pt-pt", "th", "tr", "zh-cn", "zh-tw" ], "MaxDownloadSizeInBytes": 7948191, "MaxInstallSizeInBytes": 11083776, "PackageFormat": "Appx", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_4.15.0.62_arm__mcm4njqhnhss8", "PackageId": "4c9dc6c4-e410-466a-9e98-eee520f15b5e-Neutral", "ContentId": "6a97cc96-9d91-fff0-912f-d26c240e578b", "KeyId": null, "PackageRank": 17000, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 2251804108652544, "MinVersion": 2251804108652544, "PlatformName": "Windows.WindowsPhone8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.maxOSTested\":1688862745231360,\"content.minOS\":1688862745231360,\"content.packageId\":\"4DF9E0F8.Netflix_4.15.0.62_arm__mcm4njqhnhss8\",\"content.productId\":\"c3a509cd-61d6-df11-a844-00237de2db9e\",\"content.type\":4,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "1125964331352126", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0011", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "App", "DeclarationOrder": 0, "Extensions": ["search-search", "protocol-netflix"] } ], "Architectures": ["x64"], "Capabilities": [ "internetClient", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 562962948292608, "PackageIdentity": "Microsoft.Media.PlayReadyClient" }, { "MaxTested": 0, "MinVersion": 3096228093100033, "PackageIdentity": "Microsoft.VCLibs.110.00" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "42X7uS/LytxrsxrF7PGreVD3fb8n+u5p6/W9KXeGfgc=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "da", "de", "es", "fi", "fr", "fr-ca", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "en-au", "es-es", "it", "ja", "ko", "pl", "pt-pt", "th", "tr", "zh-cn", "zh-tw" ], "MaxDownloadSizeInBytes": 5747705, "MaxInstallSizeInBytes": 10559488, "PackageFormat": "appx", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_1.33.0.109_x64__mcm4njqhnhss8", "PackageId": "e20498c8-c01f-440c-a167-5213d4ed9914-X64", "ContentId": "f1ebc660-8f05-a12f-4aa3-4d888433c435", "KeyId": null, "PackageRank": 20002, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 1688858450264064, "MinVersion": 1688858450264064, "PlatformName": "Windows.Windows8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.maxOSTested\":1688858450264064,\"content.minOS\":1688858450264064,\"content.packageId\":\"4DF9E0F8.Netflix_1.33.0.109_x64__mcm4njqhnhss8\",\"content.type\":5,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "281616710631533", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0011", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "App", "DeclarationOrder": 0, "Extensions": ["search-search", "protocol-netflix"] } ], "Architectures": ["x86"], "Capabilities": [ "internetClient", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 562962948292608, "PackageIdentity": "Microsoft.Media.PlayReadyClient" }, { "MaxTested": 0, "MinVersion": 3096228093100033, "PackageIdentity": "Microsoft.VCLibs.110.00" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "z7PFAh/WD46LPrHKm0DcT6UloZp0iaTZjf/2nBvdcnc=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "da", "de", "es", "fi", "fr", "fr-ca", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "en-au", "es-es", "it", "ja", "ko", "pl", "pt-pt", "th", "tr", "zh-cn", "zh-tw" ], "MaxDownloadSizeInBytes": 5733181, "MaxInstallSizeInBytes": 10518528, "PackageFormat": "appx", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_1.33.0.109_x86__mcm4njqhnhss8", "PackageId": "b4cf45f0-2677-4520-b7ef-18728082c0ec-X86", "ContentId": "f1ebc660-8f05-a12f-4aa3-4d888433c435", "KeyId": null, "PackageRank": 20001, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 1688858450264064, "MinVersion": 1688858450264064, "PlatformName": "Windows.Windows8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.maxOSTested\":1688858450264064,\"content.minOS\":1688858450264064,\"content.packageId\":\"4DF9E0F8.Netflix_1.33.0.109_x86__mcm4njqhnhss8\",\"content.type\":5,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "281616710631533", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0011", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "App", "DeclarationOrder": 0, "Extensions": ["search-search", "protocol-netflix"] } ], "Architectures": ["arm"], "Capabilities": [ "internetClient", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 562962948292608, "PackageIdentity": "Microsoft.Media.PlayReadyClient" }, { "MaxTested": 0, "MinVersion": 3096228093100033, "PackageIdentity": "Microsoft.VCLibs.110.00" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "OMZ/IIRve1/aBnMmSb/u639E8E0jXUVlXvoBHqtixYc=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "da", "de", "es", "fi", "fr", "fr-ca", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "en-au", "es-es", "it", "ja", "ko", "pl", "pt-pt", "th", "tr", "zh-cn", "zh-tw" ], "MaxDownloadSizeInBytes": 5744175, "MaxInstallSizeInBytes": 10526720, "PackageFormat": "appx", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_1.33.0.109_arm__mcm4njqhnhss8", "PackageId": "896936b6-abe8-485d-9542-706b7b1f6fc4-Arm", "ContentId": "f1ebc660-8f05-a12f-4aa3-4d888433c435", "KeyId": null, "PackageRank": 20003, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 1688858450264064, "MinVersion": 1688858450264064, "PlatformName": "Windows.Windows8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.maxOSTested\":1688858450264064,\"content.minOS\":1688858450264064,\"content.packageId\":\"4DF9E0F8.Netflix_1.33.0.109_arm__mcm4njqhnhss8\",\"content.type\":5,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "281616710631533", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0011", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "App", "DeclarationOrder": 0, "Extensions": ["search-search", "protocol-netflix"] } ], "Architectures": ["x86"], "Capabilities": [ "internetClient", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 562997339226112, "PackageIdentity": "Microsoft.Media.PlayReadyClient.2" }, { "MaxTested": 0, "MinVersion": 3377701097111553, "PackageIdentity": "Microsoft.VCLibs.120.00" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "IvNSqzzyRmD5ZgCFVU/2x7QddCSw25ak2ix9oMmyh4E=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "da", "de", "es", "fi", "fr", "fr-ca", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "en-au", "es-es", "it", "ja", "ko", "pl", "pt-pt", "th", "tr", "zh-cn", "zh-tw" ], "MaxDownloadSizeInBytes": 5925423, "MaxInstallSizeInBytes": 10891264, "PackageFormat": "appx", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_2.22.0.39_x86__mcm4njqhnhss8", "PackageId": "3789cd7b-3858-441a-aa0c-523366516efd-X86", "ContentId": "f1ebc660-8f05-a12f-4aa3-4d888433c435", "KeyId": null, "PackageRank": 20011, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 1688862745165824, "MinVersion": 1688862745165824, "PlatformName": "Windows.Windows8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.maxOSTested\":1688862745165824,\"content.minOS\":1688862745165824,\"content.packageId\":\"4DF9E0F8.Netflix_2.22.0.39_x86__mcm4njqhnhss8\",\"content.type\":6,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "563044442701863", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0011", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "App", "DeclarationOrder": 0, "Extensions": ["search-search", "protocol-netflix"] } ], "Architectures": ["x64"], "Capabilities": [ "internetClient", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 562997339226112, "PackageIdentity": "Microsoft.Media.PlayReadyClient.2" }, { "MaxTested": 0, "MinVersion": 3377701097111553, "PackageIdentity": "Microsoft.VCLibs.120.00" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "fA7AhxxOocoGdURdUaAWp9rjM2Kr4JPJE3YQAxznYtw=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "da", "de", "es", "fi", "fr", "fr-ca", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "en-au", "es-es", "it", "ja", "ko", "pl", "pt-pt", "th", "tr", "zh-cn", "zh-tw" ], "MaxDownloadSizeInBytes": 5939929, "MaxInstallSizeInBytes": 10952704, "PackageFormat": "appx", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_2.22.0.39_x64__mcm4njqhnhss8", "PackageId": "671978e9-fefc-4766-8bc8-0eb62503c5d4-X64", "ContentId": "f1ebc660-8f05-a12f-4aa3-4d888433c435", "KeyId": null, "PackageRank": 20012, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 1688862745165824, "MinVersion": 1688862745165824, "PlatformName": "Windows.Windows8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.maxOSTested\":1688862745165824,\"content.minOS\":1688862745165824,\"content.packageId\":\"4DF9E0F8.Netflix_2.22.0.39_x64__mcm4njqhnhss8\",\"content.type\":6,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "563044442701863", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0011", "Content": null, "PackageFeatures": null } }, { "Applications": [ { "ApplicationId": "App", "DeclarationOrder": 0, "Extensions": ["search-search", "protocol-netflix"] } ], "Architectures": ["arm"], "Capabilities": [ "internetClient", "Microsoft.storeFilter.core.notSupported_8wekyb3d8bbwe" ], "DeviceCapabilities": [], "ExperienceIds": [], "FrameworkDependencies": [ { "MaxTested": 0, "MinVersion": 562997339226112, "PackageIdentity": "Microsoft.Media.PlayReadyClient.2" }, { "MaxTested": 0, "MinVersion": 3377701097111553, "PackageIdentity": "Microsoft.VCLibs.120.00" } ], "HardwareDependencies": [], "HardwareRequirements": [], "Hash": "F4dbkqdksFrGfBVewsJJkQd7NHxc3GfFCEFeOa9m56A=", "HashAlgorithm": "SHA256", "IsStreamingApp": false, "Languages": [ "en-us", "da", "de", "es", "fi", "fr", "fr-ca", "nb", "nl", "pt", "sv", "en-gb", "en-ca", "en-au", "es-es", "it", "ja", "ko", "pl", "pt-pt", "th", "tr", "zh-cn", "zh-tw" ], "MaxDownloadSizeInBytes": 5935941, "MaxInstallSizeInBytes": 10903552, "PackageFormat": "appx", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "MainPackageFamilyNameForDlc": null, "PackageFullName": "4DF9E0F8.Netflix_2.22.0.39_arm__mcm4njqhnhss8", "PackageId": "5f2e3a30-363d-4f64-bc6a-fea9bd3a69a7-Arm", "ContentId": "f1ebc660-8f05-a12f-4aa3-4d888433c435", "KeyId": null, "PackageRank": 20013, "PackageUri": "https://productingestionbin1.blob.core.windows.net", "PlatformDependencies": [ { "MaxTested": 1688862745165824, "MinVersion": 1688862745165824, "PlatformName": "Windows.Windows8x" } ], "PlatformDependencyXmlBlob": "{\"blob.version\":1688867040526336,\"content.isMain\":false,\"content.maxOSTested\":1688862745165824,\"content.minOS\":1688862745165824,\"content.packageId\":\"4DF9E0F8.Netflix_2.22.0.39_arm__mcm4njqhnhss8\",\"content.type\":6,\"policy\":{\"category.first\":\"app\",\"category.second\":\"Entertainment\",\"optOut.backupRestore\":false,\"optOut.removeableMedia\":false},\"policy2\":{\"ageRating\":3,\"optOut.DVR\":false,\"thirdPartyAppRatings\":[{\"level\":9,\"systemId\":3},{\"level\":81,\"systemId\":5},{\"level\":52,\"systemId\":12},{\"level\":30,\"systemId\":9},{\"level\":78,\"systemId\":16},{\"level\":72,\"systemId\":15},{\"level\":67,\"systemId\":13}]}}", "ResourceId": "", "Version": "563044442701863", "PackageDownloadUris": null, "DriverDependencies": [], "FulfillmentData": { "ProductId": "9WZDNCRFJ3TJ", "WuBundleId": "cb9ef3a5-ffd4-438f-9291-6874513df1dc", "WuCategoryId": "d8d75bb2-c5cd-44f2-8c26-c1d1ae5b13fa", "PackageFamilyName": "4DF9E0F8.Netflix_mcm4njqhnhss8", "SkuId": "0011", "Content": null, "PackageFeatures": null } } ], "VersionString": "", "VisibleToB2BServiceIds": [], "XboxXPA": false, "BundledSkus": [], "IsRepurchasable": false, "SkuDisplayRank": 2, "DisplayPhysicalStoreInventory": null, "AdditionalIdentifiers": [], "IsTrial": true, "IsPreOrder": false, "IsBundle": false }, "SkuASchema": "Sku;3", "SkuBSchema": "SkuUnifiedApp;3", "SkuId": "0011", "SkuType": "trial", "RecurrencePolicy": null, "SubscriptionPolicyId": null }, "Availabilities": [ { "Actions": ["Details", "Fulfill"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityUnifiedApp;3", "AvailabilityId": "9V8PWXLLKR4Z", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Desktop" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Mobile" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.8828080" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "1753-01-01T00:00:00.0000000Z" }, "LastModifiedDate": "2020-10-09T18:02:17.8524346Z", "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0011", "DisplayRank": 0, "RemediationRequired": false }, { "Actions": ["License", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityUnifiedApp;3", "AvailabilityId": "9W02NT053STL", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Desktop" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Mobile" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Xbox" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.8828080" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "1753-01-01T00:00:00.0000000Z" }, "LastModifiedDate": "2020-10-09T18:02:17.8524346Z", "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0011", "DisplayRank": 1, "RemediationRequired": false }, { "Actions": ["License", "Details"], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityUnifiedApp;3", "AvailabilityId": "B290Z3766JN5", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Team" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Holographic" }, { "MaxVersion": 2147483647, "MinVersion": 0, "PlatformName": "Windows.Core" } ] }, "EndDate": "9998-12-30T00:00:00.0000000Z", "ResourceSetIds": ["1"], "StartDate": "1753-01-01T00:00:00.0000000Z" }, "LastModifiedDate": "2020-10-09T18:02:17.8524346Z", "Markets": ["US"], "OrderManagementData": { "GrantedEntitlementKeys": [], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "", "WholesaleCurrencyCode": "" } }, "Properties": {}, "SkuId": "0011", "DisplayRank": 2, "RemediationRequired": false } ] } ] } ], "TotalResultCount": 1 } python-xbox-webapi-2.1.0/tests/data/responses/catalog_product_lookup_legacy.json000066400000000000000000000453551465040003600303460ustar00rootroot00000000000000{ "BigIds": [ "9VWGNH0VBZJX" ], "HasMorePages": false, "Products": [ { "LastModifiedDate": "2014-10-21T17:30:01.0000000+00:00", "LocalizedProperties": [ { "Images": [ { "FileSizeInBytes": 0, "Height": 1080, "ImagePositionInfo": "Xbox", "ImagePurpose": "FullScreenPromotionalImageArt", "SortOrder": "0", "Uri": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcbx57bBxf63xu2Ef8acP3S7Uz80NbHc5nza..4R00GT3TpkhKZnhydxYtKFxwHBNmBe3nm0gbY1SGMzpjCREKuFE7OUlmD5jY5UhUQkdSYcG1i6Z_Zoyxj81YtMVkOZKq._E90jUpSde8NnKZbYFeQDjVZ.fwBEfx8rwKK6N3ZDo-", "Width": 1920 }, { "FileSizeInBytes": 0, "Height": 1080, "ImagePositionInfo": "Xbox", "ImagePurpose": "AppIconWideArt", "SortOrder": "0", "Uri": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcbx57bBxf63xu2Ef8acP3S7Uz80NbHc5nza..4R00GT3Vhl6qdN3yRZz1iUBIx0f_x5HbYepJaOe4GfngEKeHZ0YsAbckio9ff1H2ahZpOu6yHdZUf6E4lzlhZAVTVFgL3iMYDEQexDLM6EyvwsCM2GLwmZ_vwYIDt3HREKHTKpU-", "Width": 720 }, { "FileSizeInBytes": 0, "Height": 1080, "ImagePositionInfo": "Xbox", "ImagePurpose": "AppIconSquareArt", "SortOrder": "0", "Uri": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcbx57bBxf63xu2Ef8acP3S7Uz80NbHc5nza..4R00GT3bPOfucWJp5lITpN6LBi2.RIFs1loO5rfN1RkVbwdanq6f6rJB3Yjf29pD1BvOviAQJL5YOH1bshgqmQ2FuNWK9uDtGhwuLyHDqfNpgW0XdV7KFbdMYoniljMJaoBIMYo-", "Width": 1080 }, { "FileSizeInBytes": 0, "Height": 1080, "ImagePositionInfo": "Xbox", "ImagePurpose": "AppIconWideArt", "SortOrder": "0", "Uri": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcbx57bBxf63xu2Ef8acP3S7Uz80NbHc5nza..4R00GT3Vhl6qdN3yRZz1iUBIx0f_x5HbYepJaOe4GfngEKeHZ0YsAbckio9ff1H2ahZpOu6yHdZUf6E4lzlhZAVTVFgL3iMYDEQexDLM6EyvwsCM2GLwmZ_vwYIDt3HREKHTKpU-", "Width": 720 }, { "FileSizeInBytes": 0, "Height": 1080, "ImagePositionInfo": "Xbox", "ImagePurpose": "AppIconSquareArt", "SortOrder": "0", "Uri": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcbx57bBxf63xu2Ef8acP3S7Uz80NbHc5nza..4R00GT3bPOfucWJp5lITpN6LBi2.RIFs1loO5rfN1RkVbwdanq6f6rJB3Yjf29pD1BvOviAQJL5YOH1bshgqmQ2FuNWK9uDtGhwuLyHDqfNpgW0XdV7KFbdMYoniljMJaoBIMYo-", "Width": 1080 }, { "FileSizeInBytes": 0, "Height": 1080, "ImagePositionInfo": "Xbox", "ImagePurpose": "BoxArt", "SortOrder": "0", "Uri": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcbx57bBxf63xu2Ef8acP3S7Uz80NbHc5nza..4R00GT2RaXRyhzXE7q9uoc8ixscIHKJwVp3JHsEoV1OI3ujWdVz90buFTVep8W78ZlGO01pqCyh2dQ8iGRZ9_41RY9kg2ponhmT9TpW4.cAMRqcs96I01RALEachexCMJLeCd7s-", "Width": 1080 }, { "FileSizeInBytes": 0, "Height": 1080, "ImagePositionInfo": "Xbox", "ImagePurpose": "Poster", "SortOrder": "0", "Uri": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcbx57bBxf63xu2Ef8acP3S7Uz80NbHc5nza..4R00GT07uY5._I1wWELBCS3I0oeCu_yLwfA6f3E633UxvTe3YzKh89R2CX4jGNBO_Wp0DkzmkVDbYuopOlaj6VYrwx9GEqJhouA4PsSSOe48nPoKooUY1ojnwnCiU2WEP5wL9.4-", "Width": 720 }, { "FileSizeInBytes": 0, "Height": 1080, "ImagePositionInfo": "Xbox", "ImagePurpose": "FeaturePromotionalSquareArt", "SortOrder": "0", "Uri": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcbx57bBxf63xu2Ef8acP3S7Uz80NbHc5nza..4R00GT1V5G760cdfX7Hl0uIHdHCbkzTikdvNE0TedhKgQfQy.2gjOGbd8kXZXzy4VzeJiNPLhLq2QUQbo8q3sVoSPaw73J4BxM7gaNX8V8qLcWtO5sn6vgbTso51OaEIn4zeAiw-", "Width": 1080 }, { "FileSizeInBytes": 0, "Height": 1080, "ImagePositionInfo": "Xbox", "ImagePurpose": "TitledHeroArt", "SortOrder": "0", "Uri": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcbx57bBxf63xu2Ef8acP3S7Uz80NbHc5nza..4R00GT3cFGmGwGG6ro2yifQzyNGjTq.D5CRkcrBTRQpk6Y_MkX9omP_sw2VpCFMK9oDb6gViF5y6KlBOqsaeQqwQlICoKPBFCWrcfAGDORxTFBMXDOt6mbC46.C0ZhBWQTLRCVQ-", "Width": 1920 }, { "FileSizeInBytes": 0, "Height": 1080, "ImagePositionInfo": "Xbox", "ImagePurpose": "SuperHeroArt", "SortOrder": "0", "Uri": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcbx57bBxf63xu2Ef8acP3S7Uz80NbHc5nza..4R00GT2KJEmQ5G2SYRs6GxnoJkwzZIP86FmkD7HgUzPQWBa9xtuc0IISeloZZ7SBAZ1FcAmEPRiGd.Fkn.7Cb_IgTdZStf8VIn0UfvyTMLX.B92D0rvvYTIMv_Txje0a4MG2kJo-", "Width": 1920 } ], "Language": "en-US", "PublisherName": "Microsoft", "SearchTitles": [ { "SearchTitleString": "TV", "SearchTitleType": "SearchHint" } ], "ShortTitle": "TV", "SortTitle": "TV", "Videos": [], "VoiceTitle": "TV", "ProductDescription": "", "ProductTitle": "TV", "Markets": [ "CN", "AT", "AU", "BR", "CA", "DE", "ES", "FR", "GB", "IE", "IT", "MX", "US", "NZ", "AE", "AR", "BE", "CL", "CO", "CZ", "DK", "FI", "GR", "HK", "HU", "IN", "IL", "JP", "KR", "NL", "NO", "PL", "PT", "RU", "SA", "SG", "SK", "SE", "TW", "CH", "TR", "ZA", "Neutral" ] } ], "MarketProperties": [ { "ContentRatings": [ { "RatingDescriptors": [], "RatingDisclaimers": [], "RatingId": "Microsoft:3", "RatingSystem": "Microsoft" } ], "OriginalReleaseDate": "2013-09-24T00:00:00.0000000Z", "UsageData": [ { "AggregateTimeSpan": "7Days", "AverageRating": 0.0, "PlayCount": 0, "RatingCount": 0, "RentalCount": "0", "TrialCount": "0", "PurchaseCount": "0" }, { "AggregateTimeSpan": "30Days", "AverageRating": 0.0, "PlayCount": 0, "RatingCount": 0, "RentalCount": "0", "TrialCount": "0", "PurchaseCount": "0" }, { "AggregateTimeSpan": "AllTime", "AverageRating": 4.0, "PlayCount": 0, "RatingCount": 1404, "RentalCount": "0", "TrialCount": "0", "PurchaseCount": "0" } ], "RelatedProducts": [], "Markets": [ "US" ] } ], "ProductASchema": "Product;3", "ProductBSchema": "ProductUnifiedApp;3", "ProductId": "9VWGNH0VBZJX", "Properties": { "AllowedUrls": [], "Categories": [ "Video" ], "PublisherId": "", "SkuDisplayGroups": [], "RevisionId": "2014-10-21T17:30:01.0000000+00:00" }, "AlternateIds": [ { "IdType": "LegacyXboxProductId", "Value": "71e7df12-89e0-4dc7-a5ff-a182fc2df94f" }, { "IdType": "XboxTitleId", "Value": "371594669" } ], "DomainDataVersion": "", "IngestionSource": "Bingbox App", "IsMicrosoftProduct": false, "ProductType": "Application", "ValidationData": null, "MerchandizingTags": null, "SandboxId": "RETAIL", "ProductFamily": "Apps", "SchemaVersion": "1", "IsSandboxedProduct": true, "ProductKind": "Application", "DisplaySkuAvailabilities": [ { "Sku": { "LastModifiedDate": "2014-10-21T17:30:01.0000000+00:00", "LocalizedProperties": [ { "Language": "en-US", "SkuDescription": "", "SkuTitle": "TV", "Markets": [ "CN", "AT", "AU", "BR", "CA", "DE", "ES", "FR", "GB", "IE", "IT", "MX", "US", "NZ", "AE", "AR", "BE", "CL", "CO", "CZ", "DK", "FI", "GR", "HK", "HU", "IN", "IL", "JP", "KR", "NL", "NO", "PL", "PT", "RU", "SA", "SG", "SK", "SE", "TW", "CH", "TR", "ZA", "Neutral" ] } ], "MarketProperties": [ { "FirstAvailableDate": "2013-09-24T00:00:00.0000000Z", "RedemptionUrl": "https://www.microsoft.com/redeem", "Markets": [ "US" ], "PIFilter": { "ExclusionProperties": [ "xboxonlycontent" ], "InclusionProperties": [] } } ], "ProductId": "9VWGNH0VBZJX", "Properties": { "BundledSkus": [], "DisplayRank": [], "FulfillmentType": "XUS", "InstallationTerms": "InstallationTermsRestrictiveXbox", "LicensingPolicyType": "Online", "Packages": [], "SkuDisplayGroupIds": [ "01" ], "SkuDisplayRank": 0, "LastUpdateDate": "", "VisibleToB2BServiceIds": [], "AdditionalIdentifiers": [], "IsTrial": false, "IsPreOrder": false, "IsBundle": false, "IsRepurchasable": false }, "SkuASchema": "SKU;3", "SkuBSchema": "SkuUnifiedApp;3", "SkuId": "0001", "SkuType": "Full", "RecurrencePolicy": null, "SubscriptionPolicyId": null }, "Availabilities": [ { "Actions": [ "Redeem", "Details" ], "AvailabilityASchema": "Availability;3", "AvailabilityBSchema": "AvailabilityGame;1", "AvailabilityId": "9V7BWNGN8D91", "Conditions": { "ClientConditions": { "AllowedPlatforms": [ { "PlatformName": "Windows.Xbox" } ] }, "EndDate": "2030-01-01T00:00:00Z", "ResourceSetIds": [ "1" ], "StartDate": "2013-01-01T00:00:00Z" }, "LastModifiedDate": "2014-10-21T17:30:01.0000000+00:00", "Markets": [ "US" ], "OrderManagementData": { "GrantedEntitlementKeys": [ "big:9VWGNH0VBZJX:0001" ], "Price": { "CurrencyCode": "USD", "IsPIRequired": false, "ListPrice": 0.0, "MSRP": 0.0, "TaxType": "TaxesNotIncluded", "WholesaleCurrencyCode": "USD", "WholesalePrice": 0.0 } }, "Properties": { "OriginalReleaseDate": "2013-09-24T00:00:00.0000000Z" }, "SkuId": "0001", "DisplayRank": 0, "AlternateIds": [ { "IdType": "LegacyTokenIdentifier", "Value": "71e7df12-89e0-4dc7-a5ff-a182fc2df94f" } ], "RemediationRequired": false } ] } ] } ], "TotalResultCount": 1 }python-xbox-webapi-2.1.0/tests/data/responses/catalog_search.json000066400000000000000000000122751465040003600252110ustar00rootroot00000000000000{ "Results": [ { "ProductFamilyName": "Games", "Products": [ { "BackgroundColor": "", "Height": 2160, "ImageType": "BoxArt", "Width": 2160, "PlatformProperties": [], "Icon": "//store-images.s-microsoft.com/image/apps.10960.68655995542193491.ba715372-3c52-40a9-9cc1-033bdedd4a66.64369d33-5ea2-4727-9eef-12c901bd2b31", "ProductId": "BPQ955FQFPH6", "Type": "Game", "Title": "Destiny 2" } ] }, { "ProductFamilyName": "Games", "Products": [ { "BackgroundColor": "#FFFFFF", "Height": 2160, "ImageType": "BoxArt", "Width": 2160, "PlatformProperties": [], "Icon": "//store-images.s-microsoft.com/image/apps.39901.14491519069757754.144ce769-0fc7-434b-8308-6a341e7d536e.54086bae-6b7f-4deb-9098-84b4f9c0f70c", "ProductId": "9NXXNTRZBS0Z", "Type": "Durable", "Title": "Destiny 2: Beyond Light" } ] }, { "ProductFamilyName": "Games", "Products": [ { "BackgroundColor": "#FFFFFF", "Height": 2160, "ImageType": "BoxArt", "Width": 2160, "PlatformProperties": [], "Icon": "//store-images.s-microsoft.com/image/apps.33742.14500351146667236.2c17de7c-efd6-4b42-92fb-389c61e837c1.31646dee-7365-4a6e-9506-2a82e1d61333", "ProductId": "9P22KP1XQ1X7", "Type": "Durable", "Title": "Destiny 2: Season of Arrivals Silver Bundle" } ] }, { "ProductFamilyName": "Games", "Products": [ { "BackgroundColor": "", "Height": 1080, "ImageType": "BoxArt", "Width": 1080, "PlatformProperties": [], "Icon": "//store-images.s-microsoft.com/image/apps.9427.65506807380982023.0e494b93-8e27-4f0d-aa29-8b32bb48a45b.36af2922-8c20-4ecc-8055-d0fe060dbd32", "ProductId": "C2JQRC2C49B0", "Type": "Game", "Title": "Destiny" } ] }, { "ProductFamilyName": "Games", "Products": [ { "BackgroundColor": "#FFFFFF", "Height": 1080, "ImageType": "BoxArt", "Width": 1080, "PlatformProperties": [], "Icon": "//store-images.s-microsoft.com/image/apps.45524.66018148425285849.6f707177-ab12-444d-bf83-d920657b8311.f1dd14f0-987f-449f-971a-e04dd9628441", "ProductId": "C3GDK9QKWLRD", "Type": "Game", "Title": "Destiny - The Collection" } ] }, { "ProductFamilyName": "Games", "Products": [ { "BackgroundColor": "", "Height": 1080, "ImageType": "BoxArt", "Width": 1080, "PlatformProperties": [], "Icon": "//store-images.s-microsoft.com/image/apps.19713.65351860421990305.c537a3e9-568d-44bb-aa5d-f6ae04152bb0.695eedd5-39f2-4cec-9d3e-3122d54b4b23", "ProductId": "C2B3MCDF0C4L", "Type": "Consumable", "Title": "Destiny 2 Silver" } ] }, { "ProductFamilyName": "Apps", "Products": [ { "BackgroundColor": "#152133", "Height": 620, "ImageType": "Tile", "Width": 620, "PlatformProperties": [], "Icon": "//store-images.s-microsoft.com/image/apps.30247.14271590451520900.3621a7fc-148b-4a85-a8c8-caf72ccf1c94.ceae7d0a-2005-44d1-9c05-cd7143000b58", "ProductId": "9PK8H9HDT0PP", "Type": "Application", "Title": "Destination America GO" } ] }, { "ProductFamilyName": "Games", "Products": [ { "BackgroundColor": "", "Height": 1080, "ImageType": "BoxArt", "Width": 1080, "PlatformProperties": [], "Icon": "//store-images.s-microsoft.com/image/apps.53787.64088737257749842.f6a3dfa2-1d08-47a5-ae76-4fe49d83d146.8f0b7a7c-fb39-4624-bbdd-06ae2e25541c", "ProductId": "BZ6ZB8RGHDJZ", "Type": "Durable", "Title": "Destiny 2 - Coldheart Pre-Order Pack" } ] }, { "ProductFamilyName": "Games", "Products": [ { "BackgroundColor": "", "Height": 1080, "ImageType": "BoxArt", "Width": 1080, "PlatformProperties": [], "Icon": "//store-images.s-microsoft.com/image/apps.47149.68331807765411716.aa4ceb76-e992-46a5-83ba-5a5c948cd534.d109d0f1-00db-49bd-83b3-fe5367057b54", "ProductId": "BQ56JMH9S69F", "Type": "Durable", "Title": "Destiny 2: Forsaken" } ] }, { "ProductFamilyName": "Games", "Products": [ { "BackgroundColor": "", "Height": 2160, "ImageType": "BoxArt", "Width": 2160, "PlatformProperties": [], "Icon": "//store-images.s-microsoft.com/image/apps.48387.13678370117067710.1218a7fe-a12c-4b72-ab48-1609d37bb31e.c59042d7-353e-4ed2-8f2b-cce803e50670", "ProductId": "9NJDJVZZ2613", "Type": "Durable", "Title": "Destiny 2: Shadowkeep + Season" } ] } ], "TotalResultCount": 10 } python-xbox-webapi-2.1.0/tests/data/responses/cqs_get_channel_list.json000066400000000000000000000113601465040003600264140ustar00rootroot00000000000000{ "Channels": [ { "Id": "1d19a6f5-64a3-778e-623e-656cf9841f34_SKYSELEC_370", "ChannelId": "1d19a6f5-64a3-778e-623e-656cf9841f34", "CallSign": "SKYSELEC", "ChannelNumber": "370", "StartDate": "2017-06-20T22:00:00Z", "EndDate": "2099-01-01T22:59:59Z", "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1oyKz2QptY6ALQdWtuSrWQd0HrSHo.H1B8G7Mbcr4rit6CdLDgbE54aFvbx7UUbWwrKAV2Tvw1aNLdhE6S6UEdG8VCI1.zWVuslCEKK67U6a3A--", "ForeColor": "White" } ] }, { "Id": "2bfd3c7d-36b7-6929-7386-e44e212ecf98_KIKAHD_552", "ChannelId": "2bfd3c7d-36b7-6929-7386-e44e212ecf98", "CallSign": "KIKAHD", "ChannelNumber": "552", "IsHD": true, "StartDate": "2017-06-20T22:00:00Z", "EndDate": "2099-01-01T22:59:59Z", "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1oyKz2QptY6ALQdWtuSrWQd0j_QK.05WDVvEdrAHuL2PhM9FIhJYGMqGsHNaucMm3fuH8HL.sjWE0yWGurmyO2kOgYi7ePWUSJ2Z.YRDds_azw--", "ForeColor": "White" } ] }, { "Id": "baf9fa66-9e45-7fd5-6d74-4e9ff4948ef1_BBCWHDEU_709", "ChannelId": "baf9fa66-9e45-7fd5-6d74-4e9ff4948ef1", "CallSign": "BBCWHDEU", "ChannelNumber": "709", "IsHD": true, "StartDate": "2017-01-10T23:00:00Z", "EndDate": "2099-01-01T22:59:59Z", "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1ozkOwlnpLOl42yc_pjzBaI5TiEFfhIzpwgFIN7AVgJ5VKGPOJTl_r0zBsDeRjZEbnYmeLln3KSK2WZntJL7Au92AmxM80ReivOTsu7HYbOX0Q--", "ForeColor": "White" } ] }, { "Id": "269cbf41-6fe4-a013-bbcd-cb8a2d98dd1a_SKYNEWHQ_730", "ChannelId": "269cbf41-6fe4-a013-bbcd-cb8a2d98dd1a", "CallSign": "SKYNEWHQ", "ChannelNumber": "730", "StartDate": "2017-06-20T22:00:00Z", "EndDate": "2099-01-01T22:59:59Z", "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1oxI0UWm3lzkJD8Pz9dhr43tn_2M__IBdeuOlC6kOx1VjTOI2W2prz_1D.bgQ93sbsc-", "ForeColor": "White" } ] }, { "Id": "508fde2f-3d27-5073-15e9-16da264d49a3_FRANCE24_735", "ChannelId": "508fde2f-3d27-5073-15e9-16da264d49a3", "CallSign": "FRANCE24", "ChannelNumber": "735", "StartDate": "2017-06-20T22:00:00Z", "EndDate": "2099-01-01T22:59:59Z", "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1ozkOwlnpLOl42yc_pjzBaI5E_5wwwlT.fX2kIVfsKvtwGIgmHOB57LSTp1FNZFDAweAkUp47rjXRapt8glWbicDNJWOTAM1tPqqddyWALrG.g--", "ForeColor": "White" } ] }, { "Id": "4ae0e898-ef5c-48db-eb33-f20fd048bc19_MDR1THÜR_845", "ChannelId": "4ae0e898-ef5c-48db-eb33-f20fd048bc19", "CallSign": "MDR1THÜR", "ChannelNumber": "845", "StartDate": "2017-06-20T22:00:00Z", "EndDate": "2099-01-01T22:59:59Z", "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1oyQV5VzvQs_QOJaKBWCmVOTJDociceI03E5A.khvzzQzNRkC2AcA2.ECiUfr.uq_w24MtoRdSmlML_D.gIVp1rAPx4MHbwQ6uHnUyX18VRkDw--", "ForeColor": "White" } ] }, { "Id": "b1d35371-7de4-3467-3fb8-b109e8219e58_MESHOPNE_930", "ChannelId": "b1d35371-7de4-3467-3fb8-b109e8219e58", "CallSign": "MESHOPNE", "ChannelNumber": "930", "StartDate": "2017-06-20T22:00:00Z", "EndDate": "2099-01-01T22:59:59Z", "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1oyKz2QptY6ALQdWtuSrWQd0nerIXpJXdXDWX7OeUwojmWGStIKjCrEoHDowUmkTXeQ0uSxUKan80nbDLXeB033muypEQJ8bX4sUdi1bPQBWDA--", "ForeColor": "White" } ] }, { "Id": "16f5712a-2608-67d9-e8b1-9f14786a7268_KTVFERNS_973", "ChannelId": "16f5712a-2608-67d9-e8b1-9f14786a7268", "CallSign": "KTVFERNS", "ChannelNumber": "973", "StartDate": "2017-06-20T22:00:00Z", "EndDate": "2099-01-01T22:59:59Z", "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1oyKz2QptY6ALQdWtuSrWQd0j_QK.05WDVvEdrAHuL2PhHjTMrp91QZvXlGt4Lk27u3O05f1KWuJ0wPDjgtAFRCO", "ForeColor": "White" } ] } ] }python-xbox-webapi-2.1.0/tests/data/responses/cqs_get_schedule.json000066400000000000000000000446531465040003600255600ustar00rootroot00000000000000{ "Channels": [ { "Id": "1d19a6f5-64a3-778e-623e-656cf9841f34_SKYSELEC_370", "Name": "Sky Select (Germany)", "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1oyKz2QptY6ALQdWtuSrWQd0HrSHo.H1B8G7Mbcr4rit6CdLDgbE54aFvbx7UUbWwrKAV2Tvw1aNLdhE6S6UEdG8VCI1.zWVuslCEKK67U6a3A--", "ForeColor": "White" } ], "Programs": [ { "Id": "600b199a-4d88-5cd3-8e4e-afcac192c926", "MediaItemType": "TVShow", "StartDate": "2018-03-20T23:00:00Z", "EndDate": "2018-03-21T23:00:00Z", "Name": "Programm von Sky Select", "IsRepeat": true, "ParentalControl": {}, "Genres": [ { "Name": "Sonstige" } ], "CategoryId": 0 } ] }, { "Id": "2bfd3c7d-36b7-6929-7386-e44e212ecf98_KIKAHD_552", "Name": "Ki.Ka (Der Kinderkanal) HDTV", "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1oyKz2QptY6ALQdWtuSrWQd0j_QK.05WDVvEdrAHuL2PhM9FIhJYGMqGsHNaucMm3fuH8HL.sjWE0yWGurmyO2kOgYi7ePWUSJ2Z.YRDds_azw--", "ForeColor": "White" } ], "Programs": [ { "Id": "b515d8f8-28e4-5371-bd56-c3585a28e9d0", "MediaItemType": "TVSeries", "StartDate": "2018-03-20T20:00:00Z", "EndDate": "2018-03-21T05:00:00Z", "Name": "Sendepause", "Description": "Programm von 20.15 Uhr bis 05.45 Uhr.", "IsRepeat": true, "ParentalControl": {}, "Genres": [ { "Name": "Sonstige" } ], "ParentSeries": { "Id": "b515d8f8-28e4-5371-bd56-c3585a28e9d0", "Name": "Sendepause" }, "CategoryId": 0 } ] }, { "Id": "baf9fa66-9e45-7fd5-6d74-4e9ff4948ef1_BBCWHDEU_709", "Name": "BBC World News Europe HDTV", "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1ozkOwlnpLOl42yc_pjzBaI5TiEFfhIzpwgFIN7AVgJ5VKGPOJTl_r0zBsDeRjZEbnYmeLln3KSK2WZntJL7Au92AmxM80ReivOTsu7HYbOX0Q--", "ForeColor": "White" } ], "Programs": [ { "Id": "d4dd9eb1-b9ee-5665-9abf-ad967d8f2f49", "MediaItemType": "TVSeries", "StartDate": "2018-03-20T23:45:00Z", "EndDate": "2018-03-21T00:00:00Z", "Name": "Sport Today", "Description": "Sport headlines from the BBC.", "IsRepeat": true, "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1owsO.1H.Usg1FpvDQefFv5yDLAuf.reB2xavH1NLtJRg0wIUpL3EvreGihtYyCGCRu4FvNlEVvb8havVYuafCrpLaWfLBTzV9H8QOBeUyonQw--", "ForeColor": "White" } ], "ParentalControl": {}, "Genres": [ { "Name": "newscast" }, { "Name": "newsmagazine" }, { "Name": "sports stuff" } ], "ParentSeries": { "Id": "d4dd9eb1-b9ee-5665-9abf-ad967d8f2f49", "Name": "Sport Today" }, "CategoryId": 0 }, { "Id": "a62b1ab2-ee6e-5b84-8bb6-729401b80a06", "MediaItemType": "TVSeries", "StartDate": "2018-03-21T00:00:00Z", "EndDate": "2018-03-21T00:30:00Z", "Name": "Newsday", "Description": "The bulletin gives an overview of the day's big news stories, as well as the latest updates from the business and sports worlds.", "IsRepeat": true, "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1oybYYqVfVQ2f1jzR42VyTBCUJSy8Uk1lSGoSWDzZNYVF6ffugrk_a4pYyHTql.q5nZwOib7jGuBmTKnBJW5I854", "ForeColor": "White" } ], "ParentalControl": {}, "Genres": [ { "Name": "current affairs" }, { "Name": "finance" }, { "Name": "newscast" }, { "Name": "newsmagazine" } ], "ParentSeries": { "Id": "a62b1ab2-ee6e-5b84-8bb6-729401b80a06", "Name": "Newsday" }, "CategoryId": 0 }, { "Id": "fc4a6b77-4e2a-596f-9f57-d3a84ad05d2a", "MediaItemType": "TVSeries", "StartDate": "2018-03-21T00:30:00Z", "EndDate": "2018-03-21T00:45:00Z", "Name": "Asia Business Report", "Description": "Business news from Asia is featured.", "IsRepeat": true, "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1oxjpG2kNy_W0Zqj1Qf_UvP.SPFWLeEPRaYmw7ObzLslIadU25prCBIGZf1A3R2SAbqw3LQaAG.W7DOryYp7K9MT", "ForeColor": "White" } ], "ParentalControl": {}, "Genres": [ { "Name": "business & finance" }, { "Name": "current affairs" }, { "Name": "newsmagazine" } ], "ParentSeries": { "Id": "fc4a6b77-4e2a-596f-9f57-d3a84ad05d2a", "Name": "Asia Business Report" }, "CategoryId": 0 }, { "Id": "d4dd9eb1-b9ee-5665-9abf-ad967d8f2f49", "MediaItemType": "TVSeries", "StartDate": "2018-03-21T00:45:00Z", "EndDate": "2018-03-21T01:00:00Z", "Name": "Sport Today", "Description": "Sport headlines from the BBC.", "IsRepeat": true, "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1owsO.1H.Usg1FpvDQefFv5yDLAuf.reB2xavH1NLtJRg0wIUpL3EvreGihtYyCGCRu4FvNlEVvb8havVYuafCrpLaWfLBTzV9H8QOBeUyonQw--", "ForeColor": "White" } ], "ParentalControl": {}, "Genres": [ { "Name": "newscast" }, { "Name": "newsmagazine" }, { "Name": "sports stuff" } ], "ParentSeries": { "Id": "d4dd9eb1-b9ee-5665-9abf-ad967d8f2f49", "Name": "Sport Today" }, "CategoryId": 0 } ] }, { "Id": "269cbf41-6fe4-a013-bbcd-cb8a2d98dd1a_SKYNEWHQ_730", "Name": "Sky News HQ", "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1oxI0UWm3lzkJD8Pz9dhr43tn_2M__IBdeuOlC6kOx1VjTOI2W2prz_1D.bgQ93sbsc-", "ForeColor": "White" } ], "Programs": [ { "Id": "c0182650-b80e-5c25-bbb1-976d5d2807d1", "MediaItemType": "TVSeries", "StartDate": "2018-03-20T23:30:00Z", "EndDate": "2018-03-21T00:00:00Z", "Name": "Press Preview", "Description": "A full review of the best stories in tomorrow's national newspapers.", "IsRepeat": true, "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1owsqQjMlxdbwaA6TnxbcMI4WIX0V7a5lWVRTYrnLb.vl5qNUiXl9hRcjYBofOjJB8ZVUxSaL51xQ6F.Sh2Wo_ru", "ForeColor": "White" } ], "ParentalControl": {}, "Genres": [ { "Name": "other" } ], "ParentSeries": { "Id": "c0182650-b80e-5c25-bbb1-976d5d2807d1", "Name": "Press Preview" }, "CategoryId": 0 }, { "Id": "526bff66-4e42-5cbf-b24f-366eea4bef44", "MediaItemType": "TVSeries", "StartDate": "2018-03-21T00:00:00Z", "EndDate": "2018-03-21T00:30:00Z", "Name": "Sky Midnight News", "Description": "A roundup of the day's leading stories and a look ahead to the morning news.", "IsRepeat": true, "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1ozl6RaGveVvOp7RjRT.c9HeqBpaIcjLQ3sl8YW6jt9bNMdXQ.dRIu_OvQUkyyT8mwE-", "ForeColor": "White" } ], "ParentalControl": {}, "Genres": [ { "Name": "newscast" } ], "ParentSeries": { "Id": "526bff66-4e42-5cbf-b24f-366eea4bef44", "Name": "Sky Midnight News" }, "CategoryId": 0 }, { "Id": "c0182650-b80e-5c25-bbb1-976d5d2807d1", "MediaItemType": "TVSeries", "StartDate": "2018-03-21T00:30:00Z", "EndDate": "2018-03-21T01:00:00Z", "Name": "Press Preview", "Description": "A full review of the best stories in tomorrow's national newspapers.", "IsRepeat": true, "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1owsqQjMlxdbwaA6TnxbcMI4WIX0V7a5lWVRTYrnLb.vl5qNUiXl9hRcjYBofOjJB8ZVUxSaL51xQ6F.Sh2Wo_ru", "ForeColor": "White" } ], "ParentalControl": {}, "Genres": [ { "Name": "other" } ], "ParentSeries": { "Id": "c0182650-b80e-5c25-bbb1-976d5d2807d1", "Name": "Press Preview" }, "CategoryId": 0 } ] }, { "Id": "508fde2f-3d27-5073-15e9-16da264d49a3_FRANCE24_735", "Name": "France 24 (France)", "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1ozkOwlnpLOl42yc_pjzBaI5E_5wwwlT.fX2kIVfsKvtwGIgmHOB57LSTp1FNZFDAweAkUp47rjXRapt8glWbicDNJWOTAM1tPqqddyWALrG.g--", "ForeColor": "White" } ], "Programs": [ { "Id": "a9bec6f6-41ee-5402-afaa-dcaad51c69e7", "MediaItemType": "TVSeries", "StartDate": "2018-03-20T23:42:00Z", "EndDate": "2018-03-20T23:58:00Z", "Name": "Le débat", "Description": "Raphaël Kahane et ses invités débattent, commentent et analysent le grand sujet d'actualité du jour. Les internautes et les téléspectateurs peuvent interagir en direct sur les réseaux sociaux : #DebatF24.", "IsRepeat": true, "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1ozn2E_rFWN2OTAzyMrFtf4rXaHIjr9XA28Jt3VLloUtPeNEzlbgkmMRA8OfJMpEYXAR02y3JlyYB8OjVVReZWw6", "ForeColor": "White" } ], "ParentalControl": {}, "Genres": [ { "Name": "Actualités" }, { "Name": "Débat" }, { "Name": "discussion" } ], "ParentSeries": { "Id": "a9bec6f6-41ee-5402-afaa-dcaad51c69e7", "Name": "Le débat" }, "CategoryId": 0 }, { "Id": "cf7b6e23-af91-5ae2-b234-b84b91f2b130", "MediaItemType": "TVSeries", "StartDate": "2018-03-20T23:58:00Z", "EndDate": "2018-03-21T00:00:00Z", "Name": "Météo", "Description": "Une météo mondiale tout en images comprenant les prévisions sur 5 jours.", "IsRepeat": true, "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1ox1f0JzbDM0xt607v6zYIBGyXk1aKUGDa5HMeYJXn64YuPik0rb7d5fijv3AF2ykdAz.Kfq0mInbFZ065RQ4eNMjg924QhUK_wPOGJ2ehbZYf9.WMexA2Y5A1NjpuySum0-", "ForeColor": "White" } ], "ParentalControl": {}, "Genres": [ { "Name": "informations" }, { "Name": "météo" } ], "ParentSeries": { "Id": "cf7b6e23-af91-5ae2-b234-b84b91f2b130", "Name": "Météo" }, "CategoryId": 0 }, { "Id": "cd689741-cba3-54fe-9740-c7582fcfedf8", "MediaItemType": "TVSeries", "StartDate": "2018-03-21T00:00:00Z", "EndDate": "2018-03-21T00:15:00Z", "Name": "Le journal", "Description": "24h/24, 7j/7 un bulletin d'informations est présenté en direct depuis la rédaction.", "IsRepeat": true, "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1ozn2E_rFWN2OTAzyMrFtf4roxdF98RBACWVAdMVTAZFHJGQ3Vasb46pG2a3ZCUkn7PSnAKltDkjiuTycWRw_in9FQRHFPtABJJjWqdOO5ZyWg--", "ForeColor": "White" } ], "ParentalControl": {}, "Genres": [ { "Name": "Actualités" }, { "Name": "informations" } ], "ParentSeries": { "Id": "cd689741-cba3-54fe-9740-c7582fcfedf8", "Name": "Le journal" }, "CategoryId": 0 }, { "Id": "87815bc1-6b40-5ce2-b9ca-28a7e12c3228", "MediaItemType": "TVSeries", "StartDate": "2018-03-21T00:15:00Z", "EndDate": "2018-03-21T00:28:00Z", "Name": "Le journal de l'Afrique", "Description": "Un journal dédié au continent africain pour rendre compte de l'actualité du jour avec l'appui des correspondants et des invités en plateau.", "IsRepeat": true, "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1ozn2E_rFWN2OTAzyMrFtf4rmk2O7ooiMwB38yhwrrOlVd.uIN4dSlqDdqhY8UalQs.VwI84pY6rxm_8y7Rf3a40H03x1rO88dIH5GXh11hrSBiQPWRlaSR6_CYjhOcrm1k-", "ForeColor": "White" } ], "ParentalControl": {}, "Genres": [ { "Name": "Actualités" }, { "Name": "Autre" } ], "ParentSeries": { "Id": "87815bc1-6b40-5ce2-b9ca-28a7e12c3228", "Name": "Le journal de l'Afrique" }, "CategoryId": 0 }, { "Id": "cf7b6e23-af91-5ae2-b234-b84b91f2b130", "MediaItemType": "TVSeries", "StartDate": "2018-03-21T00:28:00Z", "EndDate": "2018-03-21T00:30:00Z", "Name": "Météo", "Description": "Une météo mondiale tout en images comprenant les prévisions sur 5 jours.", "IsRepeat": true, "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1ox1f0JzbDM0xt607v6zYIBGyXk1aKUGDa5HMeYJXn64YuPik0rb7d5fijv3AF2ykdAz.Kfq0mInbFZ065RQ4eNMjg924QhUK_wPOGJ2ehbZYf9.WMexA2Y5A1NjpuySum0-", "ForeColor": "White" } ], "ParentalControl": {}, "Genres": [ { "Name": "informations" }, { "Name": "météo" } ], "ParentSeries": { "Id": "cf7b6e23-af91-5ae2-b234-b84b91f2b130", "Name": "Météo" }, "CategoryId": 0 }, { "Id": "cd689741-cba3-54fe-9740-c7582fcfedf8", "MediaItemType": "TVSeries", "StartDate": "2018-03-21T00:30:00Z", "EndDate": "2018-03-21T00:45:00Z", "Name": "Le journal", "Description": "24h/24, 7j/7 un bulletin d'informations est présenté en direct depuis la rédaction.", "IsRepeat": true, "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1ozn2E_rFWN2OTAzyMrFtf4roxdF98RBACWVAdMVTAZFHJGQ3Vasb46pG2a3ZCUkn7PSnAKltDkjiuTycWRw_in9FQRHFPtABJJjWqdOO5ZyWg--", "ForeColor": "White" } ], "ParentalControl": {}, "Genres": [ { "Name": "Actualités" }, { "Name": "informations" } ], "ParentSeries": { "Id": "cd689741-cba3-54fe-9740-c7582fcfedf8", "Name": "Le journal" }, "CategoryId": 0 }, { "Id": "d0dc890c-b818-5f33-a7cf-36ab9ce167af", "MediaItemType": "TVSeries", "StartDate": "2018-03-21T00:45:00Z", "EndDate": "2018-03-21T00:58:00Z", "Name": "À l'affiche", "Description": "Rencontres avec des cinéastes, des écrivains, des photographes ou encore des musiciens qui font l'actualité en France et à l'étranger.", "IsRepeat": true, "Images": [ { "Purpose": "Logo", "ResizeUri": "http://images-eds.xboxlive.com/image?url=cOC861nTwwD6fdaNNqSphYhIoPdt3SpAXZveWYNx1ozn2E_rFWN2OTAzyMrFtf4rky89ohEuX.FbTyUEAoJLl9y70CV6EmYZrSH9YiwEygNufx6.rbWOeREMG7O52jNi_7F4gHkjNCV_0Y3DjI2JYg--", "ForeColor": "White" } ], "ParentalControl": {}, "Genres": [ { "Name": "Divertissement" }, { "Name": "Magazine" } ], "ParentSeries": { "Id": "d0dc890c-b818-5f33-a7cf-36ab9ce167af", "Name": "À l'affiche" }, "CategoryId": 0 } ] } ] }python-xbox-webapi-2.1.0/tests/data/responses/gameclips_recent_community.json000066400000000000000000005526061465040003600276710ustar00rootroot00000000000000{ "gameClips": [ { "gameClipId": "0a41be34-e8c0-411c-819b-7ce8fbb9b22a", "state": "Published", "datePublished": "2018-03-28T11:48:58.486421Z", "dateRecorded": "2018-03-28T11:33:23Z", "lastModified": "2018-03-28T11:48:58.486421Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "29667b8d-def2-455e-8a8a-7c6ecb6d9c3b0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3001.xboxlive.com/xuid-2535435578204478-public/0a41be34-e8c0-411c-819b-7ce8fbb9b22a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3001.xboxlive.com/xuid-2535435578204478-public/0a41be34-e8c0-411c-819b-7ce8fbb9b22a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3001.xboxlive.com/xuid-2535435578204478-private/0a41be34-e8c0-411c-819b-7ce8fbb9b22a.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Mj5xR%2FfYdLekvX84dZOAuZ9q7MbZhl%2FUEviMUCfZLc0%3D&__gda__=1522241343_6a1062922633426971b798195856dac6", "fileSize": 53116833, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535435578204478", "clipName": "", "titleName": "System", "gameClipLocale": "en-NZ", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "de1a919a-64ad-4ebb-ae54-6a35bb0e7591", "state": "Published", "datePublished": "2018-03-28T11:48:31.2552634Z", "dateRecorded": "2018-03-28T11:29:34Z", "lastModified": "2018-03-28T11:48:31.2552634Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "1b296fd3-a1a2-4e6d-a081-6fb133312caa0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3025.xboxlive.com/xuid-2533274983109787-public/de1a919a-64ad-4ebb-ae54-6a35bb0e7591_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3025.xboxlive.com/xuid-2533274983109787-public/de1a919a-64ad-4ebb-ae54-6a35bb0e7591_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3025.xboxlive.com/xuid-2533274983109787-private/de1a919a-64ad-4ebb-ae54-6a35bb0e7591.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=AfcHeo0D0lknsQ6e3awvbOzINflH7CAyvvzzC%2Bb55JE%3D&__gda__=1522241343_cd0d51dba9294283a864aee448f392e0", "fileSize": 21763716, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274983109787", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "3334452e-7937-4095-9423-5d51cc975eb4", "state": "Published", "datePublished": "2018-03-28T11:48:20.8723466Z", "dateRecorded": "2018-03-28T11:45:07Z", "lastModified": "2018-03-28T11:48:20.8723466Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "00662419-7ce7-49ab-a358-5c60f07c04fd0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535437576382525-public/3334452e-7937-4095-9423-5d51cc975eb4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535437576382525-public/3334452e-7937-4095-9423-5d51cc975eb4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3024.xboxlive.com/xuid-2535437576382525-private/3334452e-7937-4095-9423-5d51cc975eb4.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2Bx83rZo4S8xld6sYe3FjkUmwWCeCSjPfoxxmMUSBqo0%3D&__gda__=1522241343_7e7cc79bdfeaf7dd1a487d655e7908ec", "fileSize": 24647761, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535437576382525", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5c2edfc5-dd03-4905-833b-03659fe39c26", "state": "Published", "datePublished": "2018-03-28T11:48:14.0518003Z", "dateRecorded": "2018-03-28T11:07:09Z", "lastModified": "2018-03-28T11:48:14.0518003Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "722c0c6c-184c-44bf-ae79-7ff222d9127e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2002.xboxlive.com/xuid-2533274877845060-public/5c2edfc5-dd03-4905-833b-03659fe39c26_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2002.xboxlive.com/xuid-2533274877845060-public/5c2edfc5-dd03-4905-833b-03659fe39c26_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2002.xboxlive.com/xuid-2533274877845060-private/5c2edfc5-dd03-4905-833b-03659fe39c26.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xVOa7N2qK7II7fWV%2Fvn%2F%2Bu%2BUVkOsXwJ55sbDtmt%2B18c%3D&__gda__=1522241343_1744b566e8ec00febf48adcd4a257fac", "fileSize": 47579955, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274877845060", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "a9d15c0f-e699-4d5b-8829-3bf98feda797", "state": "Published", "datePublished": "2018-03-28T11:48:10.4236621Z", "dateRecorded": "2018-03-28T10:55:33Z", "lastModified": "2018-03-28T11:48:10.4236621Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "9e39daa9-3bb9-47ba-b223-ecf347c84f1e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2004.xboxlive.com/xuid-2535410564295910-public/a9d15c0f-e699-4d5b-8829-3bf98feda797_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2004.xboxlive.com/xuid-2535410564295910-public/a9d15c0f-e699-4d5b-8829-3bf98feda797_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2004.xboxlive.com/xuid-2535410564295910-private/a9d15c0f-e699-4d5b-8829-3bf98feda797.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3l1f26bAn4SVsUOQ9dlCVQNWSuBBsjg9nEdiWALmxEA%3D&__gda__=1522241343_7aeef5feff5d84b7c8fb648089de2b46", "fileSize": 23848326, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "96475f08-3df2-4c17-aed8-7b9e2c84b7db", "state": "Published", "datePublished": "2018-03-28T11:47:04.9077806Z", "dateRecorded": "2018-03-28T10:54:05Z", "lastModified": "2018-03-28T11:47:04.9077806Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "efc81765-2724-45b2-8c7a-15d2bf74d1e00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535410564295910-public/96475f08-3df2-4c17-aed8-7b9e2c84b7db_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535410564295910-public/96475f08-3df2-4c17-aed8-7b9e2c84b7db_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3012.xboxlive.com/xuid-2535410564295910-private/96475f08-3df2-4c17-aed8-7b9e2c84b7db.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hA51ZG2vKyNxGqL2eDCXg0ikymS3PB%2BtKbGyPmh%2BZqc%3D&__gda__=1522241343_29a2d4fc0086e5e7164c2603668e4623", "fileSize": 24388085, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "86a12cd7-493c-4c0b-a85d-8d6d06044ccc", "state": "Published", "datePublished": "2018-03-28T11:46:47.0924342Z", "dateRecorded": "2018-03-28T09:36:16Z", "lastModified": "2018-03-28T11:46:47.0924342Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 57, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "b9ca499d-77d3-4bd8-8e78-8fa97ec34e4e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2012.xboxlive.com/xuid-2533274829848710-public/86a12cd7-493c-4c0b-a85d-8d6d06044ccc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2012.xboxlive.com/xuid-2533274829848710-public/86a12cd7-493c-4c0b-a85d-8d6d06044ccc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2012.xboxlive.com/xuid-2533274829848710-private/86a12cd7-493c-4c0b-a85d-8d6d06044ccc.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=fl%2B39WRGDFuYgoyvuksyPEnknxIE%2FKzwUYyjkg8EAak%3D&__gda__=1522241343_19d97621f4a741afb9d1371d42ef29ec", "fileSize": 41266438, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274829848710", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "234597e3-9367-45f1-9c0f-37a15d5952e3", "state": "Published", "datePublished": "2018-03-28T11:46:37.6233502Z", "dateRecorded": "2018-03-28T11:33:55Z", "lastModified": "2018-03-28T11:46:37.6233502Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d2cbe992-f8e0-4200-993f-6f9397a2609a0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3001.xboxlive.com/xuid-2533274904138652-public/234597e3-9367-45f1-9c0f-37a15d5952e3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3001.xboxlive.com/xuid-2533274904138652-public/234597e3-9367-45f1-9c0f-37a15d5952e3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3001.xboxlive.com/xuid-2533274904138652-private/234597e3-9367-45f1-9c0f-37a15d5952e3.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0l6MFypkgX8QHgH7FxPuabBjEQ%2FALLK4vckBwR3e0dQ%3D&__gda__=1522241343_42d9a942840e415c6117abcd1e054c9b", "fileSize": 24354892, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274904138652", "clipName": "", "titleName": "System", "gameClipLocale": "it-IT", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6c58a8fa-2f8e-4bc7-b57f-8da5d59308b9", "state": "Published", "datePublished": "2018-03-28T11:46:24.9724773Z", "dateRecorded": "2018-03-28T11:46:13Z", "lastModified": "2018-03-28T11:46:24.9724773Z", "userCaption": "H5 TS Extermination", "type": "UserGenerated", "durationInSeconds": 17, "scid": "03a80100-9ff3-46ea-be76-e00e7fe465df", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "31359f9f-95b9-41d2-a258-e432473a3d90;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2535432257769214-public/6c58a8fa-2f8e-4bc7-b57f-8da5d59308b9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2535432257769214-public/6c58a8fa-2f8e-4bc7-b57f-8da5d59308b9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3013.xboxlive.com/xuid-2535432257769214-private/6c58a8fa-2f8e-4bc7-b57f-8da5d59308b9.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=7O%2FkRpocqiv1ePmmuqmxbCKn0rys0616%2F6U4U%2FpGNyA%3D&__gda__=1522241343_b50fe7c3aae8842139f0ccf1db4c7a9e", "fileSize": 9061373, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535432257769214", "clipName": "", "titleName": "Upload Studio", "gameClipLocale": "en-CA", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5f2be533-0833-4cd3-b6b2-1356149cb268", "state": "Published", "datePublished": "2018-03-28T11:45:57.3661164Z", "dateRecorded": "2018-03-28T10:53:36Z", "lastModified": "2018-03-28T11:45:57.3661164Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "bb3208cd-94da-4ea6-89ec-a1bca455371f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3004.xboxlive.com/xuid-2535410564295910-public/5f2be533-0833-4cd3-b6b2-1356149cb268_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3004.xboxlive.com/xuid-2535410564295910-public/5f2be533-0833-4cd3-b6b2-1356149cb268_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3004.xboxlive.com/xuid-2535410564295910-private/5f2be533-0833-4cd3-b6b2-1356149cb268.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=u1GwrGFV4vfigx8f8MHwa%2Bs9RQXiFr1ADxfCkioVrz0%3D&__gda__=1522241343_2605839da50f229de5c25d75761f3f62", "fileSize": 24408846, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "9a5422a9-4327-4ee1-822c-be4530aa8d57", "state": "Published", "datePublished": "2018-03-28T11:45:56.8913223Z", "dateRecorded": "2018-03-28T11:29:21Z", "lastModified": "2018-03-28T11:45:56.8913223Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "3e11ba64-17bb-42ca-8ab4-ef669753a9f10;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533274860602795-public/9a5422a9-4327-4ee1-822c-be4530aa8d57_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533274860602795-public/9a5422a9-4327-4ee1-822c-be4530aa8d57_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3013.xboxlive.com/xuid-2533274860602795-private/9a5422a9-4327-4ee1-822c-be4530aa8d57.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=D49%2Fto0Gt7UZNx5XfQZO2%2B%2FfMSTTAKWjUbaaVOnBXoA%3D&__gda__=1522241343_0335b78b29f859d2b3e2b7a71be1f16c", "fileSize": 25248145, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274860602795", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "89185b6b-93af-4685-a3e5-6fa0c4236d32", "state": "Published", "datePublished": "2018-03-28T11:45:24.0632031Z", "dateRecorded": "2018-03-28T11:26:31Z", "lastModified": "2018-03-28T11:45:24.0632031Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a7e7858b-a41d-426d-9afc-ca3a9ecee12e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3016.xboxlive.com/xuid-2535460947257261-public/89185b6b-93af-4685-a3e5-6fa0c4236d32_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3016.xboxlive.com/xuid-2535460947257261-public/89185b6b-93af-4685-a3e5-6fa0c4236d32_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3016.xboxlive.com/xuid-2535460947257261-private/89185b6b-93af-4685-a3e5-6fa0c4236d32.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jjRgueVKl6tdymp1x5tpRyTQG%2BrhZfJkcJEJNIScshw%3D&__gda__=1522241343_961d5f295cd34bb95ae2e28e2b113f4d", "fileSize": 19662979, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535460947257261", "clipName": "", "titleName": "System", "gameClipLocale": "es-MX", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "05dea01e-bfec-439b-b42c-c28ba32a59b4", "state": "Published", "datePublished": "2018-03-28T11:45:20.2964636Z", "dateRecorded": "2018-03-28T10:47:37Z", "lastModified": "2018-03-28T11:45:20.2964636Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "fff66f0f-5e99-45ac-9be2-0a6a635019670;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2002.xboxlive.com/xuid-2533274827845099-public/05dea01e-bfec-439b-b42c-c28ba32a59b4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2002.xboxlive.com/xuid-2533274827845099-public/05dea01e-bfec-439b-b42c-c28ba32a59b4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2002.xboxlive.com/xuid-2533274827845099-private/05dea01e-bfec-439b-b42c-c28ba32a59b4.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=sPvF8NWJSKi6TTQCwPgx%2FFa%2BwnpWtlCm59x%2B83449BE%3D&__gda__=1522241343_36d53972024f1af1816eea09d1cd5349", "fileSize": 43421295, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274827845099", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f76fb938-e4ed-46d5-acbe-30e72c04bf34", "state": "Published", "datePublished": "2018-03-28T11:44:51.9088515Z", "dateRecorded": "2018-03-28T10:53:26Z", "lastModified": "2018-03-28T11:44:51.9088515Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a577bf20-7153-42bf-b7b6-445d457483280;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2019.xboxlive.com/xuid-2535410564295910-public/f76fb938-e4ed-46d5-acbe-30e72c04bf34_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2019.xboxlive.com/xuid-2535410564295910-public/f76fb938-e4ed-46d5-acbe-30e72c04bf34_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2019.xboxlive.com/xuid-2535410564295910-private/f76fb938-e4ed-46d5-acbe-30e72c04bf34.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=NogzuXazRIpX56A5Z6BEib6uz11FTRxRYWGSuXyJFJg%3D&__gda__=1522241343_8fdf621630182c2c09e624704df8ae6d", "fileSize": 23533558, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "d79b201a-45e5-4154-9eef-09804ade876e", "state": "Published", "datePublished": "2018-03-28T11:44:40.0331113Z", "dateRecorded": "2018-03-28T09:16:16Z", "lastModified": "2018-03-28T11:44:40.0331113Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 94, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a763f048-7d9f-477a-8f8a-43b5946ab6b00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533274814489324-public/d79b201a-45e5-4154-9eef-09804ade876e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533274814489324-public/d79b201a-45e5-4154-9eef-09804ade876e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3019.xboxlive.com/xuid-2533274814489324-private/d79b201a-45e5-4154-9eef-09804ade876e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=N%2FeTJTRY3dvsQEIbPtLa75jU5bAEGMN13NbVaO%2F7gtM%3D&__gda__=1522241343_2ebc3e4e5a8ba55a0784a74540e5bcb7", "fileSize": 52941389, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274814489324", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "ceed2313-6bbe-4cbc-9f91-fa9bde914f08", "state": "Published", "datePublished": "2018-03-28T11:44:02.1063895Z", "dateRecorded": "2018-03-28T11:33:29Z", "lastModified": "2018-03-28T11:44:02.1063895Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 13, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "24a90f05-c217-44e9-a28f-179af12b917f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533275025725783-public/ceed2313-6bbe-4cbc-9f91-fa9bde914f08_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533275025725783-public/ceed2313-6bbe-4cbc-9f91-fa9bde914f08_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3019.xboxlive.com/xuid-2533275025725783-private/ceed2313-6bbe-4cbc-9f91-fa9bde914f08.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ZCxt%2FGbC1vDzOW1nRe5pnQkoK7K04qc8mu8BSHAkP5o%3D&__gda__=1522241343_8d258f43aec78c345f58ae14143ffffd", "fileSize": 12241049, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533275025725783", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "01bdadc0-1743-466d-a5db-4492cc9df498", "state": "Published", "datePublished": "2018-03-28T11:43:46.5912118Z", "dateRecorded": "2018-03-28T10:49:06Z", "lastModified": "2018-03-28T11:43:46.5912118Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "54959b60-ddd8-4e33-a3fb-d21f86294ccc0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535410564295910-public/01bdadc0-1743-466d-a5db-4492cc9df498_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535410564295910-public/01bdadc0-1743-466d-a5db-4492cc9df498_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3023.xboxlive.com/xuid-2535410564295910-private/01bdadc0-1743-466d-a5db-4492cc9df498.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=zMay5JzRmzRb2Tl4P63IBFQv5QmYUHDbgXR17Caitn8%3D&__gda__=1522241343_2d31f11d9ab43d6c8c71f9b39f2c49e6", "fileSize": 26062918, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "d1d0dc96-5924-4d40-bded-6a994cc5453c", "state": "Published", "datePublished": "2018-03-28T11:43:30.270507Z", "dateRecorded": "2018-03-28T11:41:39Z", "lastModified": "2018-03-28T11:43:30.270507Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "940c893a-01d5-4607-b7f3-90df2139660f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2010.xboxlive.com/xuid-2533274973946057-public/d1d0dc96-5924-4d40-bded-6a994cc5453c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2010.xboxlive.com/xuid-2533274973946057-public/d1d0dc96-5924-4d40-bded-6a994cc5453c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2010.xboxlive.com/xuid-2533274973946057-private/d1d0dc96-5924-4d40-bded-6a994cc5453c.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=f%2BUkCI8RLVaYMP0zFkRL2IirAyFpqPpiuTVlayA8uzM%3D&__gda__=1522241343_781ad6fe4ea6d4b8bf63d8ea56848c7c", "fileSize": 24590335, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274973946057", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "7759c153-4d96-4f4f-8edd-915217d0fd0b", "state": "Published", "datePublished": "2018-03-28T11:43:21.1588635Z", "dateRecorded": "2018-03-28T11:29:34Z", "lastModified": "2018-03-28T11:43:21.1588635Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "60c0ee76-89b4-45fc-99d2-1840b57148c70;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2012.xboxlive.com/xuid-2535451404186500-public/7759c153-4d96-4f4f-8edd-915217d0fd0b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2012.xboxlive.com/xuid-2535451404186500-public/7759c153-4d96-4f4f-8edd-915217d0fd0b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2012.xboxlive.com/xuid-2535451404186500-private/7759c153-4d96-4f4f-8edd-915217d0fd0b.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=qYALhOuh2k00OhS3MljqbcRfbGDkR%2FiT9x5ggo2IASo%3D&__gda__=1522241343_3c38f8493e4c96aa0c011d9994af8e3c", "fileSize": 21248785, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535451404186500", "clipName": "", "titleName": "System", "gameClipLocale": "fr-FR", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "b84a5573-e2ae-4a95-a94c-c44fe45392fb", "state": "Published", "datePublished": "2018-03-28T11:43:10.5381395Z", "dateRecorded": "2018-03-25T20:38:51Z", "lastModified": "2018-03-28T11:43:10.5381395Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 58, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a7fe5f70-38f1-462c-8643-1a4fb25c97700;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2535436768738028-public/b84a5573-e2ae-4a95-a94c-c44fe45392fb_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2535436768738028-public/b84a5573-e2ae-4a95-a94c-c44fe45392fb_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3019.xboxlive.com/xuid-2535436768738028-private/b84a5573-e2ae-4a95-a94c-c44fe45392fb.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d1X2geHjTtpAO%2BFiSSEvkdRh%2Bc6mhGmX1fZsV1P3c6Y%3D&__gda__=1522241343_e782168722e401bd4c217b203e461110", "fileSize": 80970253, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535436768738028", "clipName": "", "titleName": "System", "gameClipLocale": "pt-BR", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "94a6063d-2170-4fed-8935-932637558ec8", "state": "Published", "datePublished": "2018-03-28T11:43:05.0646152Z", "dateRecorded": "2018-03-28T11:29:48Z", "lastModified": "2018-03-28T11:43:05.0646152Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "0e6a952d-2039-48c4-acfa-1962125954180;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2019.xboxlive.com/xuid-2535444423946735-public/94a6063d-2170-4fed-8935-932637558ec8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2019.xboxlive.com/xuid-2535444423946735-public/94a6063d-2170-4fed-8935-932637558ec8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2019.xboxlive.com/xuid-2535444423946735-private/94a6063d-2170-4fed-8935-932637558ec8.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=XysdUQIJ%2BcvMY5SXvuVkcz45YmxNYL5yf0KQOTt4aCo%3D&__gda__=1522241343_0cfd98f3762ede2a6702c5960afa364c", "fileSize": 24526659, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535444423946735", "clipName": "", "titleName": "System", "gameClipLocale": "ja-JP", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "b2f2909c-c49e-4612-93ba-ac60574f1ec6", "state": "Published", "datePublished": "2018-03-28T11:42:46.2424513Z", "dateRecorded": "2018-03-28T11:40:30Z", "lastModified": "2018-03-28T11:42:46.2424513Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a2b34533-5d57-46e0-86e9-d2c20abada300;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3007.xboxlive.com/xuid-2535432594624617-public/b2f2909c-c49e-4612-93ba-ac60574f1ec6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3007.xboxlive.com/xuid-2535432594624617-public/b2f2909c-c49e-4612-93ba-ac60574f1ec6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3007.xboxlive.com/xuid-2535432594624617-private/b2f2909c-c49e-4612-93ba-ac60574f1ec6.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=HV3gY2k7JQOoI6svFOhR%2F44nU8uzW5lQwuCNA7SCY%2Bc%3D&__gda__=1522241343_1a021e1f13e4310435069e16063e7366", "fileSize": 25662447, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535432594624617", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "7286efc1-da65-4499-9f51-fc5fa7947e1b", "state": "Published", "datePublished": "2018-03-28T11:42:33.6826116Z", "dateRecorded": "2018-03-28T10:48:46Z", "lastModified": "2018-03-28T11:42:33.6826116Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "3e11d952-8267-4c96-bae8-81302e1c166c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535410564295910-public/7286efc1-da65-4499-9f51-fc5fa7947e1b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535410564295910-public/7286efc1-da65-4499-9f51-fc5fa7947e1b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3022.xboxlive.com/xuid-2535410564295910-private/7286efc1-da65-4499-9f51-fc5fa7947e1b.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=aZ8B1zyVBGJAoxkYBiggkY9u4RUT209k5J3%2Bnh%2BSd9E%3D&__gda__=1522241343_6eb673e3dca0c47351016411a81b27fa", "fileSize": 26924985, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "58340615-bb39-4d70-a813-2e9ee5a8eeb8", "state": "Published", "datePublished": "2018-03-28T11:42:00.3662393Z", "dateRecorded": "2018-03-28T11:22:24Z", "lastModified": "2018-03-28T11:42:00.3662393Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "fdf3971f-c5bc-4bf1-9aaf-5b2ea18963450;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535442854923369-public/58340615-bb39-4d70-a813-2e9ee5a8eeb8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535442854923369-public/58340615-bb39-4d70-a813-2e9ee5a8eeb8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3022.xboxlive.com/xuid-2535442854923369-private/58340615-bb39-4d70-a813-2e9ee5a8eeb8.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=1rbmziuxFIcGiu%2FMv3lhvtiT3IGz7GPqwAASgCFJ5Bw%3D&__gda__=1522241343_3576628eebe9d9760722662869b1b8c7", "fileSize": 22803181, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535442854923369", "clipName": "", "titleName": "System", "gameClipLocale": "nb-NO", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "a16f0b69-34b4-4ccd-b8e1-6c0fc342fe5e", "state": "Published", "datePublished": "2018-03-28T11:41:51.8068932Z", "dateRecorded": "2018-03-28T11:40:23Z", "lastModified": "2018-03-28T11:41:51.8068932Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "08bf76ff-eaf2-47d6-80e8-98ee0ad7cf750;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2533274973946057-public/a16f0b69-34b4-4ccd-b8e1-6c0fc342fe5e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2533274973946057-public/a16f0b69-34b4-4ccd-b8e1-6c0fc342fe5e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3020.xboxlive.com/xuid-2533274973946057-private/a16f0b69-34b4-4ccd-b8e1-6c0fc342fe5e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4sqGVwahMca9cLnuxYCu0HwA2P%2BFpCKT1Oje4TW91Cs%3D&__gda__=1522241343_0456bca47e784bb8d0ab67d9a36719b8", "fileSize": 24385107, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274973946057", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "3c33a264-70e5-4c93-9bd1-ec9ee022423e", "state": "Published", "datePublished": "2018-03-28T11:41:45.1537959Z", "dateRecorded": "2018-03-26T01:25:30Z", "lastModified": "2018-03-28T11:41:45.1537959Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "312a4110-60a9-466f-b62f-2fe9fc8a58600;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535461037174745-public/3c33a264-70e5-4c93-9bd1-ec9ee022423e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535461037174745-public/3c33a264-70e5-4c93-9bd1-ec9ee022423e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3023.xboxlive.com/xuid-2535461037174745-private/3c33a264-70e5-4c93-9bd1-ec9ee022423e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ptO1qszkOXGmdOfbW6Per%2BDZlES1HW0tbdstEyZVNs4%3D&__gda__=1522241343_62877d0ae8827a5b67fff15648481d0d", "fileSize": 22086576, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535461037174745", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5657c730-bc16-4b21-844e-f6b839f061e6", "state": "Published", "datePublished": "2018-03-28T11:41:40.1571786Z", "dateRecorded": "2018-03-26T01:21:37Z", "lastModified": "2018-03-28T11:41:40.1571786Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "fbfad309-7c8f-4c9a-92ec-f02123ceb9790;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2008.xboxlive.com/xuid-2535461037174745-public/5657c730-bc16-4b21-844e-f6b839f061e6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2008.xboxlive.com/xuid-2535461037174745-public/5657c730-bc16-4b21-844e-f6b839f061e6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2008.xboxlive.com/xuid-2535461037174745-private/5657c730-bc16-4b21-844e-f6b839f061e6.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=j49QNNKo1DnGvKlV5hqYyvjFBpU37ZX8Ty0giqxtNJY%3D&__gda__=1522241343_f881e0191a909ba703694c83b0af39eb", "fileSize": 22325435, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535461037174745", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "3d1bfe1e-0567-4d56-955d-9d5a1569de30", "state": "Published", "datePublished": "2018-03-28T11:41:40.1506021Z", "dateRecorded": "2018-03-26T01:22:28Z", "lastModified": "2018-03-28T11:41:40.1506021Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "7e18e353-5ae0-4ac1-a458-40fbb212ee340;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535461037174745-public/3d1bfe1e-0567-4d56-955d-9d5a1569de30_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535461037174745-public/3d1bfe1e-0567-4d56-955d-9d5a1569de30_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3023.xboxlive.com/xuid-2535461037174745-private/3d1bfe1e-0567-4d56-955d-9d5a1569de30.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Q12gTcIREgmtwW4c%2F%2B1qDQqWUw5HOdflDVHWeppBbn0%3D&__gda__=1522241343_4a8d5bbc9169e88df6cab4fa29d17b64", "fileSize": 20990491, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535461037174745", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "d64d15e9-b863-4a05-a6de-44af437b9d1f", "state": "Published", "datePublished": "2018-03-28T11:41:19.5515477Z", "dateRecorded": "2018-03-28T10:48:15Z", "lastModified": "2018-03-28T11:41:19.5515477Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "ea097822-e8bb-47fd-bf48-ae446c62c9b30;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2008.xboxlive.com/xuid-2535410564295910-public/d64d15e9-b863-4a05-a6de-44af437b9d1f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2008.xboxlive.com/xuid-2535410564295910-public/d64d15e9-b863-4a05-a6de-44af437b9d1f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2008.xboxlive.com/xuid-2535410564295910-private/d64d15e9-b863-4a05-a6de-44af437b9d1f.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=gTd305L%2B%2FTZ6fU860i8f9r3Jt2ZiF52SvaTQPOfqCOY%3D&__gda__=1522241343_f9ccc773eb4617bf8575eb6da7495015", "fileSize": 23976283, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "31090d26-f34c-479c-8968-02564ed005e9", "state": "Published", "datePublished": "2018-03-28T11:40:48.8868913Z", "dateRecorded": "2018-03-28T11:20:23Z", "lastModified": "2018-03-28T11:40:48.8868913Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 3, "titleData": "", "systemProperties": "a2340d98-73bb-40d0-9b18-21f030bc2d3a0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535416054060863-public/31090d26-f34c-479c-8968-02564ed005e9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535416054060863-public/31090d26-f34c-479c-8968-02564ed005e9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3023.xboxlive.com/xuid-2535416054060863-private/31090d26-f34c-479c-8968-02564ed005e9.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=mppJpfw2ogqk%2B1k4q%2FNudWkBGJk59nQLk8OCoYYZveg%3D&__gda__=1522241343_3c1b15ebd8e21c4fe866db37462443ad", "fileSize": 22960881, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535416054060863", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "307a93aa-b9d0-4476-9f80-f681b8bebb96", "state": "Published", "datePublished": "2018-03-28T11:40:48.1674049Z", "dateRecorded": "2018-03-28T11:38:38Z", "lastModified": "2018-03-28T11:40:48.1674049Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "4d3ebff0-230d-4fb3-8365-a2e89d20be2e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533274973946057-public/307a93aa-b9d0-4476-9f80-f681b8bebb96_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533274973946057-public/307a93aa-b9d0-4476-9f80-f681b8bebb96_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3013.xboxlive.com/xuid-2533274973946057-private/307a93aa-b9d0-4476-9f80-f681b8bebb96.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=8VRXOQCeYDbWn8K9PMlM%2BhnTBicx%2BBtwmeOF2j74sCs%3D&__gda__=1522241343_9d70e1db2f4bf7848b08072d4b11bb1f", "fileSize": 25354287, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274973946057", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f7edceb2-7cdd-4363-b0f6-5ae7d10d4183", "state": "Published", "datePublished": "2018-03-28T11:40:13.9255914Z", "dateRecorded": "2018-03-28T10:47:01Z", "lastModified": "2018-03-28T11:40:13.9255914Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "45e550ec-9de3-4fa7-bf1e-e1be7a6662c70;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3025.xboxlive.com/xuid-2535410564295910-public/f7edceb2-7cdd-4363-b0f6-5ae7d10d4183_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3025.xboxlive.com/xuid-2535410564295910-public/f7edceb2-7cdd-4363-b0f6-5ae7d10d4183_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3025.xboxlive.com/xuid-2535410564295910-private/f7edceb2-7cdd-4363-b0f6-5ae7d10d4183.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ZQZGIOHPpj0tDafFO3x6oqOT5XcC%2B%2BPwSyw0pxqqtg4%3D&__gda__=1522241343_1d6790d1594dcc6b6386f76ffe86c3c1", "fileSize": 21351069, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5d612f90-8888-4bb3-a218-0db0df39f5d7", "state": "Published", "datePublished": "2018-03-28T11:39:49.3431832Z", "dateRecorded": "2018-03-28T01:54:36Z", "lastModified": "2018-03-28T11:39:49.3431832Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "321a21d7-8c34-45eb-9ddc-4fbd046472b00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3001.xboxlive.com/xuid-2533274922715795-public/5d612f90-8888-4bb3-a218-0db0df39f5d7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3001.xboxlive.com/xuid-2533274922715795-public/5d612f90-8888-4bb3-a218-0db0df39f5d7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3001.xboxlive.com/xuid-2533274922715795-private/5d612f90-8888-4bb3-a218-0db0df39f5d7.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=fZ2gQ9BsvNF1JsK0vrCG3XYBMK00ZAcGWV%2FRwjX0se8%3D&__gda__=1522241343_ca4a89ed0d638c03485ee5cbfadc52b5", "fileSize": 44256587, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274922715795", "clipName": "", "titleName": "System", "gameClipLocale": "es-ES", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f85150bf-1e82-40d0-8262-86ba7e0c302e", "state": "Published", "datePublished": "2018-03-28T11:39:27.5569253Z", "dateRecorded": "2018-03-28T11:37:08Z", "lastModified": "2018-03-28T11:39:27.5569253Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "f2d91b3f-f76a-4607-9050-ca5491e151500;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535432594624617-public/f85150bf-1e82-40d0-8262-86ba7e0c302e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535432594624617-public/f85150bf-1e82-40d0-8262-86ba7e0c302e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3012.xboxlive.com/xuid-2535432594624617-private/f85150bf-1e82-40d0-8262-86ba7e0c302e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=79xij46O9z6Q7yraUR8Cb1N%2Ff27UNxm6TyG%2BHbHJqMg%3D&__gda__=1522241343_04d9be28077e2eec9ecb858b968c285d", "fileSize": 26788833, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535432594624617", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "76acf2ea-1491-4969-a3de-2ee5f47d134e", "state": "Published", "datePublished": "2018-03-28T11:39:18.527847Z", "dateRecorded": "2018-03-28T11:38:03Z", "lastModified": "2018-03-28T11:39:18.527847Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "9433325f-85a6-465f-ad50-81c224f713fa0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535423775215370-public/76acf2ea-1491-4969-a3de-2ee5f47d134e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535423775215370-public/76acf2ea-1491-4969-a3de-2ee5f47d134e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3012.xboxlive.com/xuid-2535423775215370-private/76acf2ea-1491-4969-a3de-2ee5f47d134e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jspxTrVPJ9sXCQ1xZr6Vy04d4l6SgAu7GSmv29c3WPc%3D&__gda__=1522241343_13111c219f5dfe76a3445aa4010d5b3a", "fileSize": 20497063, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535423775215370", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "9e57063f-8774-4ba6-8311-e17c1dae7745", "state": "Published", "datePublished": "2018-03-28T11:39:14.648811Z", "dateRecorded": "2018-03-28T10:46:49Z", "lastModified": "2018-03-28T11:39:14.648811Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "b8e9ab2a-e48c-4413-a5b1-6d0540d243710;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/9e57063f-8774-4ba6-8311-e17c1dae7745_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/9e57063f-8774-4ba6-8311-e17c1dae7745_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535410564295910-private/9e57063f-8774-4ba6-8311-e17c1dae7745.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lHOqnydDM5c9UO7uXvxRv7ObyoiA5%2FNFtOJeZRlx1C8%3D&__gda__=1522241343_e66f0348d0d781b2f2c06492e0335e6a", "fileSize": 23950645, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f2a73cc1-3d45-4df6-8d2b-c0cacd689f7c", "state": "Published", "datePublished": "2018-03-28T11:38:25.0850543Z", "dateRecorded": "2018-03-28T11:37:09Z", "lastModified": "2018-03-28T11:38:25.0850543Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "2ee7ebd3-fee2-4047-a63c-15fb37575a0d0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535423775215370-public/f2a73cc1-3d45-4df6-8d2b-c0cacd689f7c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535423775215370-public/f2a73cc1-3d45-4df6-8d2b-c0cacd689f7c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535423775215370-private/f2a73cc1-3d45-4df6-8d2b-c0cacd689f7c.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=w1GA36O1K2EQ5L6XT5FJD3JVOfI6%2BjopBn9Iycjycjs%3D&__gda__=1522241343_423f507e6169201b8b3d2e0264846cf3", "fileSize": 21821044, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535423775215370", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "cddd61b4-d35c-422e-a14b-9ee7fd942b0f", "state": "Published", "datePublished": "2018-03-28T11:38:18.4799175Z", "dateRecorded": "2018-03-28T11:34:08Z", "lastModified": "2018-03-28T11:38:18.4799175Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "4d8a48da-c792-48e3-b452-cd9d7c46337c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2009.xboxlive.com/xuid-2533274940145700-public/cddd61b4-d35c-422e-a14b-9ee7fd942b0f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2009.xboxlive.com/xuid-2533274940145700-public/cddd61b4-d35c-422e-a14b-9ee7fd942b0f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2009.xboxlive.com/xuid-2533274940145700-private/cddd61b4-d35c-422e-a14b-9ee7fd942b0f.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0e3nChqs99PLG%2FxXdnvaFJzNWg8g0WJtngjSB116K2A%3D&__gda__=1522241343_7272e68431fbecefd4f0f4bdb06ea8e3", "fileSize": 19284215, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274940145700", "clipName": "", "titleName": "System", "gameClipLocale": "it-IT", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "d51ed655-6b57-4565-8c6d-33734ca81e1f", "state": "Published", "datePublished": "2018-03-28T11:38:07.7143994Z", "dateRecorded": "2018-03-28T10:46:29Z", "lastModified": "2018-03-28T11:38:07.7143994Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d26d4273-da7c-4a61-b25d-ea60642860f50;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535410564295910-public/d51ed655-6b57-4565-8c6d-33734ca81e1f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535410564295910-public/d51ed655-6b57-4565-8c6d-33734ca81e1f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3022.xboxlive.com/xuid-2535410564295910-private/d51ed655-6b57-4565-8c6d-33734ca81e1f.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=8Z53CqXOSGVzzzLybkUvPg4jzgvR1xGaL%2FlFPm2fgOA%3D&__gda__=1522241343_23089cfaa1a469e68d4599659aa35f8a", "fileSize": 30409999, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "942fe446-33ea-474c-afc8-06a5dbfdd3d1", "state": "Published", "datePublished": "2018-03-28T11:37:42.4401548Z", "dateRecorded": "2018-03-28T11:25:07Z", "lastModified": "2018-03-28T11:37:42.4401548Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 43, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "ef7f0601-f07d-4ee8-be20-4a3211af4c250;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2533274826057352-public/942fe446-33ea-474c-afc8-06a5dbfdd3d1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2533274826057352-public/942fe446-33ea-474c-afc8-06a5dbfdd3d1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/xuid-2533274826057352-private/942fe446-33ea-474c-afc8-06a5dbfdd3d1.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ks1EiyxTy8i7zRR1oQhCckvWnTzRCuXZSVaX4TWQ39s%3D&__gda__=1522241343_106f6905bd46af7446a075a7d1f4f037", "fileSize": 26316529, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274826057352", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5c736b8a-d4f3-47fd-b58e-bbb6ce04e02c", "state": "Published", "datePublished": "2018-03-28T11:36:46.7908152Z", "dateRecorded": "2018-03-28T11:27:13Z", "lastModified": "2018-03-28T11:36:46.7908152Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "2ac6ef22-0e7e-4daa-b224-f2e7bafd9f210;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3010.xboxlive.com/xuid-2535451857859978-public/5c736b8a-d4f3-47fd-b58e-bbb6ce04e02c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3010.xboxlive.com/xuid-2535451857859978-public/5c736b8a-d4f3-47fd-b58e-bbb6ce04e02c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3010.xboxlive.com/xuid-2535451857859978-private/5c736b8a-d4f3-47fd-b58e-bbb6ce04e02c.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=oo278acbb4GES1W7UFA4BbJkW%2BxaneIrW3SqTgEPXDU%3D&__gda__=1522241343_cdb69be9171d4c2cf6626304aa5f7579", "fileSize": 10930471, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535451857859978", "clipName": "", "titleName": "System", "gameClipLocale": "en-CA", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e8ef71fe-172f-45f4-8957-4e26fbfea462", "state": "Published", "datePublished": "2018-03-28T11:36:44.1098967Z", "dateRecorded": "2018-03-28T10:46:12Z", "lastModified": "2018-03-28T11:36:44.1098967Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6320ffa5-971c-496b-a0e7-23fb235f264c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/e8ef71fe-172f-45f4-8957-4e26fbfea462_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/e8ef71fe-172f-45f4-8957-4e26fbfea462_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535410564295910-private/e8ef71fe-172f-45f4-8957-4e26fbfea462.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=NKttx4JIFYz%2B7p%2BXEf656Hiia6zOa133r%2FnWxWICatY%3D&__gda__=1522241343_9c211507e57f02f8108e82ee6e6ef9d6", "fileSize": 29959617, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5a57dfa1-d80f-42cf-8fc2-dca498eabef8", "state": "Published", "datePublished": "2018-03-28T11:36:40.0407758Z", "dateRecorded": "2018-03-28T11:34:57Z", "lastModified": "2018-03-28T11:36:40.0407758Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6c5bec9f-1154-445d-bc29-653573c9d7a90;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535433029234653-public/5a57dfa1-d80f-42cf-8fc2-dca498eabef8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535433029234653-public/5a57dfa1-d80f-42cf-8fc2-dca498eabef8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3024.xboxlive.com/xuid-2535433029234653-private/5a57dfa1-d80f-42cf-8fc2-dca498eabef8.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=uHg%2BVMM6rCg%2FP%2BmZ5vRg%2FP3LQEkmQeO4iZTGZM%2BupKs%3D&__gda__=1522241343_012a86d83776af6fa84c12b1fd1160c3", "fileSize": 22576782, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535433029234653", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "96b33469-5cc9-405b-9598-1eb3ea47c43e", "state": "Published", "datePublished": "2018-03-28T11:36:32.6697918Z", "dateRecorded": "2018-03-28T11:35:04Z", "lastModified": "2018-03-28T11:36:32.6697918Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "8898235a-a7c6-430b-a592-93c39a01c6db0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535450012417438-public/96b33469-5cc9-405b-9598-1eb3ea47c43e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535450012417438-public/96b33469-5cc9-405b-9598-1eb3ea47c43e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3023.xboxlive.com/xuid-2535450012417438-private/96b33469-5cc9-405b-9598-1eb3ea47c43e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=owE0ReNsr3RpFnRaNEyJgCPi2cXC1xq6AhrLyuOfge4%3D&__gda__=1522241343_22c59f2dea4783c17ccfa8f85fa7003d", "fileSize": 37038120, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535450012417438", "clipName": "", "titleName": "System", "gameClipLocale": "en-IE", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e6e9152c-cda6-451a-8636-7aa9885fb7d0", "state": "Published", "datePublished": "2018-03-28T11:35:40.3659936Z", "dateRecorded": "2018-03-25T16:02:54Z", "lastModified": "2018-03-28T11:35:40.3659936Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "beaf34f9-2398-4b26-894c-0b38a4f894280;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2535452422438597-public/e6e9152c-cda6-451a-8636-7aa9885fb7d0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2535452422438597-public/e6e9152c-cda6-451a-8636-7aa9885fb7d0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3017.xboxlive.com/xuid-2535452422438597-private/e6e9152c-cda6-451a-8636-7aa9885fb7d0.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=1QwtR%2Bsnp1b9L3fbaet6pwjwFG1T6P3o1onEPREY1hY%3D&__gda__=1522241343_1790d4c7e113e087c78df8b762437968", "fileSize": 22591672, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535452422438597", "clipName": "", "titleName": "System", "gameClipLocale": "fr-FR", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "3323f9ac-621a-421c-9d31-1355b6fc2c33", "state": "Published", "datePublished": "2018-03-28T11:35:39.8274507Z", "dateRecorded": "2018-03-25T16:01:03Z", "lastModified": "2018-03-28T11:35:39.8274507Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c5d4041c-2633-4865-b2e1-6d9dd5d627ce0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2535452422438597-public/3323f9ac-621a-421c-9d31-1355b6fc2c33_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2535452422438597-public/3323f9ac-621a-421c-9d31-1355b6fc2c33_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3019.xboxlive.com/xuid-2535452422438597-private/3323f9ac-621a-421c-9d31-1355b6fc2c33.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=oZvT8sWInaST2Kukx8vcmYr%2BRtUMxDXUEHc0pQcgDB8%3D&__gda__=1522241343_33a71916be09274159d88053c19447a6", "fileSize": 23026030, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535452422438597", "clipName": "", "titleName": "System", "gameClipLocale": "fr-FR", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1677f6a3-a454-4c8e-823e-3a056ff04e03", "state": "Published", "datePublished": "2018-03-28T11:35:20.7881103Z", "dateRecorded": "2018-03-28T10:45:58Z", "lastModified": "2018-03-28T11:35:20.7881103Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d8f397cb-8637-4659-8a2e-5030bf1746e50;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2016.xboxlive.com/xuid-2535410564295910-public/1677f6a3-a454-4c8e-823e-3a056ff04e03_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2016.xboxlive.com/xuid-2535410564295910-public/1677f6a3-a454-4c8e-823e-3a056ff04e03_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2016.xboxlive.com/xuid-2535410564295910-private/1677f6a3-a454-4c8e-823e-3a056ff04e03.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jb2stk0YXVy8obNCsB1T4UN90JbOvocEyXPy9QSAysw%3D&__gda__=1522241343_eac5fd7b095b52186f5465646aa09376", "fileSize": 29266716, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "3077b34a-4064-4c14-a24e-d1c1b1c028ab", "state": "Published", "datePublished": "2018-03-28T11:35:20.6849873Z", "dateRecorded": "2018-03-28T11:11:56Z", "lastModified": "2018-03-28T11:35:20.6849873Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "ef7fa204-c35a-4bf1-b162-b7cbfb5c433c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3015.xboxlive.com/xuid-2533274860602795-public/3077b34a-4064-4c14-a24e-d1c1b1c028ab_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3015.xboxlive.com/xuid-2533274860602795-public/3077b34a-4064-4c14-a24e-d1c1b1c028ab_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3015.xboxlive.com/xuid-2533274860602795-private/3077b34a-4064-4c14-a24e-d1c1b1c028ab.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TlI1aiPhmCseuCNpn42ENxqBJP8QlOCiseHV6zUBbG4%3D&__gda__=1522241343_c3d0a50493ddaec53c3f1c60e128a0e9", "fileSize": 26896533, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274860602795", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f500f5de-5f7b-42e7-92d7-c8bd9d04b1d1", "state": "Published", "datePublished": "2018-03-28T11:35:10.8161121Z", "dateRecorded": "2018-03-28T11:14:56Z", "lastModified": "2018-03-28T11:35:10.8161121Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c5e9a88e-7321-4c31-a940-6cf4f20663450;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535472982560071-public/f500f5de-5f7b-42e7-92d7-c8bd9d04b1d1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535472982560071-public/f500f5de-5f7b-42e7-92d7-c8bd9d04b1d1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535472982560071-private/f500f5de-5f7b-42e7-92d7-c8bd9d04b1d1.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=tAjYKvJn%2BpUsU%2FlptT5s6QsCm%2BfzywXCaVMgWLEAiX4%3D&__gda__=1522241343_3cec08a734209312480cba836a04f368", "fileSize": 24084200, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535472982560071", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "9a112461-39d1-4400-b1e5-d9dab0fd141c", "state": "Published", "datePublished": "2018-03-28T11:34:57.6371987Z", "dateRecorded": "2018-03-28T11:18:20Z", "lastModified": "2018-03-28T11:34:57.6371987Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "1ba1e8ff-7704-4a7a-ac9e-4a1d2c2ec2ea0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535436776528556-public/9a112461-39d1-4400-b1e5-d9dab0fd141c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535436776528556-public/9a112461-39d1-4400-b1e5-d9dab0fd141c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3020.xboxlive.com/xuid-2535436776528556-private/9a112461-39d1-4400-b1e5-d9dab0fd141c.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3iURvXSRCqU%2BuoEh5N%2FG%2BScuxBw5PIixgHcyDiR4rXU%3D&__gda__=1522241343_a5b9577ea10173433882e1208c873333", "fileSize": 18728835, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535436776528556", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "108834d0-2bb9-4f5f-be46-c35e87d8db7f", "state": "Published", "datePublished": "2018-03-28T11:34:38.5122036Z", "dateRecorded": "2018-03-28T11:15:13Z", "lastModified": "2018-03-28T11:34:38.5122036Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 13, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "7d6622d6-6c77-46fc-a495-045f2b7a7db90;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2533274951167430-public/108834d0-2bb9-4f5f-be46-c35e87d8db7f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2533274951167430-public/108834d0-2bb9-4f5f-be46-c35e87d8db7f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3021.xboxlive.com/xuid-2533274951167430-private/108834d0-2bb9-4f5f-be46-c35e87d8db7f.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=v66Zvx0loHl%2FP8zXdJJmpD0N8eztzGlIPtAN%2FtbkppE%3D&__gda__=1522241343_c6869944ecd15f88d72786e34f2d1af9", "fileSize": 14438523, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274951167430", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6d65d90c-9acc-47cc-94db-1f705ffae580", "state": "Published", "datePublished": "2018-03-28T11:34:04.0070897Z", "dateRecorded": "2018-03-28T07:45:19Z", "lastModified": "2018-03-28T11:34:04.0070897Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 43, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "0d6bff8b-c033-4ee7-9d15-7158b992c6940;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2533274987615257-public/6d65d90c-9acc-47cc-94db-1f705ffae580_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2533274987615257-public/6d65d90c-9acc-47cc-94db-1f705ffae580_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3021.xboxlive.com/xuid-2533274987615257-private/6d65d90c-9acc-47cc-94db-1f705ffae580.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d8GWsbQvBIO81ttc10cNmOB7ZaP1kvw%2FMo2r4jy6P2k%3D&__gda__=1522241343_47dfe2129bb321f5d8ef87377fe56f25", "fileSize": 27080852, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274987615257", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "873a027c-e0dc-4783-b9ba-7c2e8c255a7d", "state": "Published", "datePublished": "2018-03-28T11:34:01.0509071Z", "dateRecorded": "2018-03-28T10:45:22Z", "lastModified": "2018-03-28T11:34:01.0509071Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "33792d68-067e-4f6d-bae3-e5966dc232330;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2019.xboxlive.com/xuid-2535410564295910-public/873a027c-e0dc-4783-b9ba-7c2e8c255a7d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2019.xboxlive.com/xuid-2535410564295910-public/873a027c-e0dc-4783-b9ba-7c2e8c255a7d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2019.xboxlive.com/xuid-2535410564295910-private/873a027c-e0dc-4783-b9ba-7c2e8c255a7d.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=o2PaySppqL5MuS1COcjjd4YmLUpwkkfwx1l8za4Y85Y%3D&__gda__=1522241343_05f0a169fbfa6c9f6c0edcfcdf54b9a4", "fileSize": 25534129, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "4f1e1b1b-9259-457e-a218-e3ffe380ecf8", "state": "Published", "datePublished": "2018-03-28T11:33:50.8769325Z", "dateRecorded": "2018-03-28T11:09:19Z", "lastModified": "2018-03-28T11:33:50.8769325Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "547c9718-c48d-42c2-ba8e-dd84ec6f421f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2009.xboxlive.com/xuid-2535457407253477-public/4f1e1b1b-9259-457e-a218-e3ffe380ecf8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2009.xboxlive.com/xuid-2535457407253477-public/4f1e1b1b-9259-457e-a218-e3ffe380ecf8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2009.xboxlive.com/xuid-2535457407253477-private/4f1e1b1b-9259-457e-a218-e3ffe380ecf8.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=LMTrV2cZhJUT6MIAXuG68FDHEPfp%2B6xbx8qg5da4P3U%3D&__gda__=1522241343_85e9a408de70f0091f2b8747d9b06b2a", "fileSize": 20385578, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535457407253477", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "a2bc4e3e-42a2-45c2-a348-ec5d03066d57", "state": "Published", "datePublished": "2018-03-28T11:33:14.177592Z", "dateRecorded": "2018-03-28T01:49:24Z", "lastModified": "2018-03-28T11:33:14.177592Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "5efb877f-163e-4e19-92d4-b626dcb08ec80;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533274922715795-public/a2bc4e3e-42a2-45c2-a348-ec5d03066d57_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533274922715795-public/a2bc4e3e-42a2-45c2-a348-ec5d03066d57_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3019.xboxlive.com/xuid-2533274922715795-private/a2bc4e3e-42a2-45c2-a348-ec5d03066d57.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=oN57DdEqGS9TCM9bUI%2BIrexv%2B82Yxz6QXguU%2BJNQQAE%3D&__gda__=1522241343_c1d2229159f9c7e02c0d80bcac556c79", "fileSize": 40945215, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274922715795", "clipName": "", "titleName": "System", "gameClipLocale": "es-ES", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "335c1075-610d-4617-9f02-9cd6bf5fd53b", "state": "Published", "datePublished": "2018-03-28T11:33:10.0758455Z", "dateRecorded": "2018-03-28T11:15:34Z", "lastModified": "2018-03-28T11:33:10.0758455Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "5978a900-4ad3-4e4c-9842-0394541c8cc60;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535442099396347-public/335c1075-610d-4617-9f02-9cd6bf5fd53b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535442099396347-public/335c1075-610d-4617-9f02-9cd6bf5fd53b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3020.xboxlive.com/xuid-2535442099396347-private/335c1075-610d-4617-9f02-9cd6bf5fd53b.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WRxE0CQL5k%2FHt4c2rVQnKb%2BYkxZX7%2BfTMeBb6AqDoiY%3D&__gda__=1522241343_e89e8204aeae1875573894a3eec6b682", "fileSize": 20229585, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535442099396347", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5d2ff3dc-fab0-4ef9-bcdd-0cc755bbcaac", "state": "Published", "datePublished": "2018-03-28T11:32:55.6908023Z", "dateRecorded": "2018-03-28T11:04:44Z", "lastModified": "2018-03-28T11:32:55.6908023Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "cfc18fcb-c37d-4f98-a2fb-29d489d479610;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535457407253477-public/5d2ff3dc-fab0-4ef9-bcdd-0cc755bbcaac_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535457407253477-public/5d2ff3dc-fab0-4ef9-bcdd-0cc755bbcaac_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3022.xboxlive.com/xuid-2535457407253477-private/5d2ff3dc-fab0-4ef9-bcdd-0cc755bbcaac.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=S2eY%2FxgpMPc4d5ShYnFsTmfAH%2F%2B7QyZHV38G0iJE9mg%3D&__gda__=1522241343_626b367ff4f74921d5f5946cdfde8240", "fileSize": 23926759, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535457407253477", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e576a456-7437-4940-bb8f-fdc6b6b6bc98", "state": "Published", "datePublished": "2018-03-28T11:32:49.7691064Z", "dateRecorded": "2018-03-28T11:27:28Z", "lastModified": "2018-03-28T11:32:49.7691064Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "e2af4996-da9e-49b1-8b64-d337bdabd7b10;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535430120417324-public/e576a456-7437-4940-bb8f-fdc6b6b6bc98_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535430120417324-public/e576a456-7437-4940-bb8f-fdc6b6b6bc98_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3012.xboxlive.com/xuid-2535430120417324-private/e576a456-7437-4940-bb8f-fdc6b6b6bc98.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WEfywSWyjHp%2FjLh%2FinPSvJzPaDMKfTKEYzftDCk%2FFrg%3D&__gda__=1522241343_a92cf202e422e3d7fd5cad83a4350ae3", "fileSize": 20020892, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535430120417324", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "acd1bf7a-5e9f-4f3f-93f5-b4ddaea38ba9", "state": "Published", "datePublished": "2018-03-28T11:32:48.1350621Z", "dateRecorded": "2018-03-28T11:26:49Z", "lastModified": "2018-03-28T11:32:48.1350621Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "8d89c3ed-da4e-4517-81dc-292836464ffe0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2009.xboxlive.com/xuid-2535409562125257-public/acd1bf7a-5e9f-4f3f-93f5-b4ddaea38ba9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2009.xboxlive.com/xuid-2535409562125257-public/acd1bf7a-5e9f-4f3f-93f5-b4ddaea38ba9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2009.xboxlive.com/xuid-2535409562125257-private/acd1bf7a-5e9f-4f3f-93f5-b4ddaea38ba9.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=sRpSctd9Gn%2FMDfCMkBFWzFpaEb%2FXKiP4q8pIe8yp1Q8%3D&__gda__=1522241343_1ef32b16a7255aa9a3dfc8a1f696df01", "fileSize": 16357134, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535409562125257", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "26cee46e-3e53-4dd5-bfc8-480358f8f4e1", "state": "Published", "datePublished": "2018-03-28T11:32:42.6970679Z", "dateRecorded": "2018-03-28T10:44:48Z", "lastModified": "2018-03-28T11:32:42.6970679Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "56a43432-0055-4715-87df-144ca8060ff00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3026.xboxlive.com/xuid-2535410564295910-public/26cee46e-3e53-4dd5-bfc8-480358f8f4e1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3026.xboxlive.com/xuid-2535410564295910-public/26cee46e-3e53-4dd5-bfc8-480358f8f4e1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3026.xboxlive.com/xuid-2535410564295910-private/26cee46e-3e53-4dd5-bfc8-480358f8f4e1.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WgQjlXkLOGdW0aEM%2B5P%2F9mVXCZa%2FsHNAUWXDOoP9L5E%3D&__gda__=1522241343_c0f2907d733834429b82f4fa2fdb9fb5", "fileSize": 28498239, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "d923a0b1-b4c2-4e48-96c0-0fd744e86c8a", "state": "Published", "datePublished": "2018-03-28T11:32:28.3363329Z", "dateRecorded": "2018-03-28T11:27:37Z", "lastModified": "2018-03-28T11:32:28.3363329Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "167d0fc2-cf1e-44c9-b090-e6441a5a902f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2002.xboxlive.com/xuid-2535410890309067-public/d923a0b1-b4c2-4e48-96c0-0fd744e86c8a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2002.xboxlive.com/xuid-2535410890309067-public/d923a0b1-b4c2-4e48-96c0-0fd744e86c8a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2002.xboxlive.com/xuid-2535410890309067-private/d923a0b1-b4c2-4e48-96c0-0fd744e86c8a.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=aGhIbmyBQe2R6ox%2B2WcdeCq2OmvKRkzC1Dt8c4iBgos%3D&__gda__=1522241343_37c055381ce82dba89cdf15603dad927", "fileSize": 39136914, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410890309067", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "287250b9-46b6-4b52-ae59-a77ce5ff2296", "state": "Published", "datePublished": "2018-03-28T11:32:21.9301682Z", "dateRecorded": "2018-03-28T11:29:32Z", "lastModified": "2018-03-28T11:32:21.9301682Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "76031f81-101b-4112-b4eb-138875b7359e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535453175259551-public/287250b9-46b6-4b52-ae59-a77ce5ff2296_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535453175259551-public/287250b9-46b6-4b52-ae59-a77ce5ff2296_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3024.xboxlive.com/xuid-2535453175259551-private/287250b9-46b6-4b52-ae59-a77ce5ff2296.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=uE9uySyNRYQDmy9dy6srav75%2FoQysaDgIIB7eOUYDSk%3D&__gda__=1522241343_d5d47a9e6e1cd03ebe8d079920513be4", "fileSize": 23595785, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535453175259551", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "199d5383-2849-43e5-a164-3cf16489c1e1", "state": "Published", "datePublished": "2018-03-28T11:32:21.2346591Z", "dateRecorded": "2018-03-28T11:30:08Z", "lastModified": "2018-03-28T11:32:21.2346591Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "249268bc-b966-4d06-a775-7e45549577030;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2008.xboxlive.com/xuid-2533274973946057-public/199d5383-2849-43e5-a164-3cf16489c1e1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2008.xboxlive.com/xuid-2533274973946057-public/199d5383-2849-43e5-a164-3cf16489c1e1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2008.xboxlive.com/xuid-2533274973946057-private/199d5383-2849-43e5-a164-3cf16489c1e1.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2mt%2FD1TqHJqtw5GTN5WE81tOb1Hl9KAdQaGvCU%2Bnes0%3D&__gda__=1522241343_1c75d2e697eabbe583e48ea890ee283c", "fileSize": 23569300, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274973946057", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "d5b74869-60a7-4280-8e8a-f854cf28318a", "state": "Published", "datePublished": "2018-03-28T11:32:13.7640356Z", "dateRecorded": "2018-03-27T20:56:06Z", "lastModified": "2018-03-28T11:32:13.7640356Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 600, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "e0d99b2f-2ea4-43b9-a88e-24caa419aa570;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2535456615302976-public/d5b74869-60a7-4280-8e8a-f854cf28318a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2535456615302976-public/d5b74869-60a7-4280-8e8a-f854cf28318a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3019.xboxlive.com/xuid-2535456615302976-private/d5b74869-60a7-4280-8e8a-f854cf28318a.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=keyQS88z5jI%2FCiA6W0Y7UiwZbVC3P9ZUVPs0To3mP00%3D&__gda__=1522241343_2f973f5a87fcc48953a47d7026e7d06a", "fileSize": 354761738, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535456615302976", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "49f78637-ce9f-431d-b412-056e0fd79fab", "state": "Published", "datePublished": "2018-03-28T11:32:13.7371679Z", "dateRecorded": "2018-03-27T21:06:24Z", "lastModified": "2018-03-28T11:32:13.7371679Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 599, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "efd9a39f-ec11-4688-8204-6c5e9b821d6c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535456615302976-public/49f78637-ce9f-431d-b412-056e0fd79fab_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535456615302976-public/49f78637-ce9f-431d-b412-056e0fd79fab_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3021.xboxlive.com/xuid-2535456615302976-private/49f78637-ce9f-431d-b412-056e0fd79fab.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=BAmsgnQBfZOxVeSCqjQ9IMZN3%2BiiNYYLSkTTRRX7xnw%3D&__gda__=1522241343_67c080411768c4ab6735c8d9ef1b268d", "fileSize": 339585895, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535456615302976", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1da707f0-d229-47d2-907d-d885c41e072d", "state": "Published", "datePublished": "2018-03-28T11:31:26.0952576Z", "dateRecorded": "2018-03-28T10:28:05Z", "lastModified": "2018-03-28T11:31:26.0952576Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "0c10fb68-f4a7-47f9-89c1-74d7c7269ef40;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3015.xboxlive.com/xuid-2535434500107928-public/1da707f0-d229-47d2-907d-d885c41e072d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3015.xboxlive.com/xuid-2535434500107928-public/1da707f0-d229-47d2-907d-d885c41e072d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3015.xboxlive.com/xuid-2535434500107928-private/1da707f0-d229-47d2-907d-d885c41e072d.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=6G3U0K07RW9exa8tW538Yv%2Fi7E2YjxlTPARZfcCcCN4%3D&__gda__=1522241343_27a7700ce5ad96192af1ea2fb9fe99b0", "fileSize": 24194726, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535434500107928", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "8290a49a-79bb-4aa3-926f-ad1c3300bddb", "state": "Published", "datePublished": "2018-03-28T11:31:25.4432456Z", "dateRecorded": "2018-03-28T10:28:11Z", "lastModified": "2018-03-28T11:31:25.4432456Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "cac66643-0f59-48be-9e00-907916ea5f970;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3025.xboxlive.com/xuid-2535434500107928-public/8290a49a-79bb-4aa3-926f-ad1c3300bddb_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3025.xboxlive.com/xuid-2535434500107928-public/8290a49a-79bb-4aa3-926f-ad1c3300bddb_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3025.xboxlive.com/xuid-2535434500107928-private/8290a49a-79bb-4aa3-926f-ad1c3300bddb.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=fnIYufzwtyPwUSNJUkvdpf%2BYONurN5oQuIxVtk146dA%3D&__gda__=1522241343_1a3695c9f489f66cbc2b2448ad6d877b", "fileSize": 23092382, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535434500107928", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "80656268-038c-42cc-8fd4-9ac148a1a9cd", "state": "Published", "datePublished": "2018-03-28T11:31:24.3661841Z", "dateRecorded": "2018-03-27T20:45:50Z", "lastModified": "2018-03-28T11:31:24.3661841Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "b020f9b5-23f1-48c5-8f36-6650c4b1a0a70;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2535410564295910-public/80656268-038c-42cc-8fd4-9ac148a1a9cd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2535410564295910-public/80656268-038c-42cc-8fd4-9ac148a1a9cd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3013.xboxlive.com/xuid-2535410564295910-private/80656268-038c-42cc-8fd4-9ac148a1a9cd.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=1UlzfHZI4jQosq1e4y8Iu4wUIZngz2HsFY49NR84aaI%3D&__gda__=1522241343_cf59d7cb65523bd034e166ea6cd270f0", "fileSize": 22360763, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "2b6019ad-e7b6-413b-bacb-6fab3b033d22", "state": "Published", "datePublished": "2018-03-28T11:31:24.1845918Z", "dateRecorded": "2018-03-28T11:27:46Z", "lastModified": "2018-03-28T11:31:24.1845918Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 22, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "788401dc-a52d-45dc-af14-551d6f54c8ea0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535459898619148-public/2b6019ad-e7b6-413b-bacb-6fab3b033d22_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535459898619148-public/2b6019ad-e7b6-413b-bacb-6fab3b033d22_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3021.xboxlive.com/xuid-2535459898619148-private/2b6019ad-e7b6-413b-bacb-6fab3b033d22.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3Nywjcl9SRo70ayEwW3MznrVuNlsyLMuHk2tNSMlJT0%3D&__gda__=1522241343_299a060af1172faba7d33f096dae4dfe", "fileSize": 7127999, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535459898619148", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "2cd2201e-daae-4b3e-8246-d6c64b72b6ae", "state": "Published", "datePublished": "2018-03-28T11:31:13.1800741Z", "dateRecorded": "2018-03-28T11:11:32Z", "lastModified": "2018-03-28T11:31:13.1800741Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 1, "titleData": "", "systemProperties": "65fcd0a7-7a57-4114-a363-3da73a3869810;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535441033416760-public/2cd2201e-daae-4b3e-8246-d6c64b72b6ae_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535441033416760-public/2cd2201e-daae-4b3e-8246-d6c64b72b6ae_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3024.xboxlive.com/xuid-2535441033416760-private/2cd2201e-daae-4b3e-8246-d6c64b72b6ae.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Btps3eXKovNf6tZDhWqHkilo4UPhHx%2FEAyW98psM5HY%3D&__gda__=1522241343_418847dda7ce57567142b85f12a9763a", "fileSize": 21216378, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535441033416760", "clipName": "", "titleName": "System", "gameClipLocale": "en-NZ", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "0adfb6bd-fa4b-4af5-8357-8d8c2c188c75", "state": "Published", "datePublished": "2018-03-28T11:30:30.5052306Z", "dateRecorded": "2018-03-28T11:27:06Z", "lastModified": "2018-03-28T11:30:30.5052306Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "dd6f0f04-8751-427c-a643-47a6149b70990;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/xuid-2535430120417324-public/0adfb6bd-fa4b-4af5-8357-8d8c2c188c75_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/xuid-2535430120417324-public/0adfb6bd-fa4b-4af5-8357-8d8c2c188c75_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/xuid-2535430120417324-private/0adfb6bd-fa4b-4af5-8357-8d8c2c188c75.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FOXxGPyBCxDgBl03M0uhd4BkAtef1DR0XDg%2BtaZXQpo%3D&__gda__=1522241343_22ae6aae289958d3c29d0d4beb1553b0", "fileSize": 24196568, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535430120417324", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "4fff27b3-5dd6-4983-a574-85d90cd298ac", "state": "Published", "datePublished": "2018-03-28T11:30:23.0414078Z", "dateRecorded": "2018-03-27T20:43:53Z", "lastModified": "2018-03-28T11:30:23.0414078Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d3d1e073-414d-4207-ac06-fff968d773730;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/4fff27b3-5dd6-4983-a574-85d90cd298ac_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/4fff27b3-5dd6-4983-a574-85d90cd298ac_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535410564295910-private/4fff27b3-5dd6-4983-a574-85d90cd298ac.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xknUDX3tRmh%2BNmRS05THo5MjmpNstzMcxzG1kug0bfg%3D&__gda__=1522241343_732d9f764b14401c96d7285885294245", "fileSize": 24430146, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "82e5e418-58a0-4bc6-a79b-07e18a41098d", "state": "Published", "datePublished": "2018-03-28T11:30:08.3366401Z", "dateRecorded": "2018-03-28T11:27:46Z", "lastModified": "2018-03-28T11:30:08.3366401Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 22, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "788401dc-a52d-45dc-af14-551d6f54c8ea0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535459898619148-public/82e5e418-58a0-4bc6-a79b-07e18a41098d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535459898619148-public/82e5e418-58a0-4bc6-a79b-07e18a41098d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3021.xboxlive.com/xuid-2535459898619148-private/82e5e418-58a0-4bc6-a79b-07e18a41098d.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=5DxBTAaDs31pCtc1yDrMC9lf59Chxd1uIzUAnYDFtWE%3D&__gda__=1522241343_eeb9bf75a721064f4985562d41aa0ccf", "fileSize": 7127999, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535459898619148", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "229a19cb-a567-4471-b5b4-e349f4a37ea9", "state": "Published", "datePublished": "2018-03-28T11:29:43.4230419Z", "dateRecorded": "2018-03-28T11:10:01Z", "lastModified": "2018-03-28T11:29:43.4230419Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "53ac15eb-000c-4cb3-865e-dfef22b377650;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535468671409107-public/229a19cb-a567-4471-b5b4-e349f4a37ea9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535468671409107-public/229a19cb-a567-4471-b5b4-e349f4a37ea9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535468671409107-private/229a19cb-a567-4471-b5b4-e349f4a37ea9.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=k4Ozi6lwyOgbwgdymdPODiAfTGGd2GAhtML9C4FgPMU%3D&__gda__=1522241343_2934cf2b1d6e217009e24e3892caa19a", "fileSize": 21855598, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535468671409107", "clipName": "", "titleName": "System", "gameClipLocale": "en-IE", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "b95eb362-6dda-43fd-951d-e680a3fa83f2", "state": "Published", "datePublished": "2018-03-28T11:29:42.4633563Z", "dateRecorded": "2018-03-27T15:56:50Z", "lastModified": "2018-03-28T11:29:42.4633563Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 44, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 2, "titleData": "", "systemProperties": "39d2dc4c-ba33-4e49-bb34-48d370befb060;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535414119789233-public/b95eb362-6dda-43fd-951d-e680a3fa83f2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535414119789233-public/b95eb362-6dda-43fd-951d-e680a3fa83f2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3024.xboxlive.com/xuid-2535414119789233-private/b95eb362-6dda-43fd-951d-e680a3fa83f2.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TLx%2BWeQtnBTeWWgI6HxXAfFrLDjMbr2EZTqRGkXhzo4%3D&__gda__=1522241343_1d9d38c2f5a01d278f60c8a529dc415b", "fileSize": 35275544, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535414119789233", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "77ad61e1-776a-4d4a-9213-acd5d5b2ad3e", "state": "Published", "datePublished": "2018-03-28T11:29:15.268892Z", "dateRecorded": "2018-03-27T20:17:45Z", "lastModified": "2018-03-28T11:29:15.268892Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "f2e5fdec-6dfe-493c-941c-587e79e540f90;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2535410564295910-public/77ad61e1-776a-4d4a-9213-acd5d5b2ad3e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2535410564295910-public/77ad61e1-776a-4d4a-9213-acd5d5b2ad3e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3017.xboxlive.com/xuid-2535410564295910-private/77ad61e1-776a-4d4a-9213-acd5d5b2ad3e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=BMxwINZW5HRImcSZkL7zLR3tHzW6bcmAOiR4%2FHzGOfU%3D&__gda__=1522241343_0f0da7a77fb2aa7843312eaa7014d07e", "fileSize": 25303784, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "06c50323-26e4-4b51-aa6f-e5f4fb364de1", "state": "Published", "datePublished": "2018-03-28T11:29:05.8506548Z", "dateRecorded": "2018-03-28T11:14:31Z", "lastModified": "2018-03-28T11:29:05.8506548Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 14, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c3a3611b-e2b2-4e8d-8017-32e316280eea0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2533274951167430-public/06c50323-26e4-4b51-aa6f-e5f4fb364de1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2533274951167430-public/06c50323-26e4-4b51-aa6f-e5f4fb364de1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/xuid-2533274951167430-private/06c50323-26e4-4b51-aa6f-e5f4fb364de1.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=XrEL3uhH0EUFUlz2tTCXZZ2eR45FrfZCYok7%2F7Ky728%3D&__gda__=1522241343_95c2b0565f40f463cfd841f20ca5f6e4", "fileSize": 14786118, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533274951167430", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "05607809-7409-438b-8743-cfec7879e266", "state": "Published", "datePublished": "2018-03-28T11:28:42.0970006Z", "dateRecorded": "2018-03-28T10:52:54Z", "lastModified": "2018-03-28T11:28:42.0970006Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "51e32f80-8b4c-4dd2-b736-5f4411de83e80;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535423881094439-public/05607809-7409-438b-8743-cfec7879e266_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535423881094439-public/05607809-7409-438b-8743-cfec7879e266_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3020.xboxlive.com/xuid-2535423881094439-private/05607809-7409-438b-8743-cfec7879e266.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=K35OsXHDW7TbOSlizNZszlx7t2jg%2BT1CMLqhtCDkuEo%3D&__gda__=1522241343_f69012262e417a5943a4a48471680219", "fileSize": 24145662, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535423881094439", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "dff58723-78f3-45b6-adcc-3cb5d1bf3086", "state": "Published", "datePublished": "2018-03-28T11:28:30.6042287Z", "dateRecorded": "2018-03-28T11:25:53Z", "lastModified": "2018-03-28T11:28:30.6042287Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "cb926df6-d1af-4621-9466-e636c24ed3fb0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2533274823314589-public/dff58723-78f3-45b6-adcc-3cb5d1bf3086_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2533274823314589-public/dff58723-78f3-45b6-adcc-3cb5d1bf3086_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/xuid-2533274823314589-private/dff58723-78f3-45b6-adcc-3cb5d1bf3086.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=obpP7GyFrB6jOZqkr0V9pT9NkpHdBeRe%2BNw9xdAskCc%3D&__gda__=1522241343_71d32a73a1d5f4fb55de998ccefb15d4", "fileSize": 50840156, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533274823314589", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "a7f366e0-3f4b-4f6e-a9ae-f68016ba1973", "state": "Published", "datePublished": "2018-03-28T11:28:23.9292644Z", "dateRecorded": "2018-03-28T10:52:42Z", "lastModified": "2018-03-28T11:28:23.9292644Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6e11a126-204f-4ff4-bfb1-c482b58fe2c50;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/xuid-2535423881094439-public/a7f366e0-3f4b-4f6e-a9ae-f68016ba1973_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/xuid-2535423881094439-public/a7f366e0-3f4b-4f6e-a9ae-f68016ba1973_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/xuid-2535423881094439-private/a7f366e0-3f4b-4f6e-a9ae-f68016ba1973.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lom7W5yb7BNLEvL3NiXlzBPyM6at72nQ8ITOAnHUxuE%3D&__gda__=1522241343_44dbfc052e30a2491c0825db732af2ee", "fileSize": 24567357, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535423881094439", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6fe3da24-577a-4b42-a144-315dca32e107", "state": "Published", "datePublished": "2018-03-28T11:28:17.7897296Z", "dateRecorded": "2018-03-28T11:13:04Z", "lastModified": "2018-03-28T11:28:17.7897296Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "aab981c1-87a9-4fd1-8aea-0849a033228b0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535433587742335-public/6fe3da24-577a-4b42-a144-315dca32e107_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535433587742335-public/6fe3da24-577a-4b42-a144-315dca32e107_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3022.xboxlive.com/xuid-2535433587742335-private/6fe3da24-577a-4b42-a144-315dca32e107.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RFGo9dGeflHbSTfLrNVJS25QdBhPkpwCeAvKpJVFMeA%3D&__gda__=1522241343_bfc87b7c1e122291f732a6b9f7b4a735", "fileSize": 6904363, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535433587742335", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "77438ecd-0b0b-4e72-9c9c-edb9099c09bd", "state": "Published", "datePublished": "2018-03-28T11:28:15.2532757Z", "dateRecorded": "2018-03-28T11:28:05Z", "lastModified": "2018-03-28T11:28:15.2532757Z", "userCaption": "halo 5", "type": "UserGenerated", "durationInSeconds": 17, "scid": "03a80100-9ff3-46ea-be76-e00e7fe465df", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6bc935e3-1eb6-4895-975e-9124975192d3;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533274803345346-public/77438ecd-0b0b-4e72-9c9c-edb9099c09bd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533274803345346-public/77438ecd-0b0b-4e72-9c9c-edb9099c09bd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3013.xboxlive.com/xuid-2533274803345346-private/77438ecd-0b0b-4e72-9c9c-edb9099c09bd.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4qjCIndgtK9sah%2FRycNoQ92%2BETWGdY14iLqdh24fZu8%3D&__gda__=1522241343_2590a44a9a84fac0424cb59dc64ed995", "fileSize": 9296195, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533274803345346", "clipName": "", "titleName": "Upload Studio", "gameClipLocale": "es-ES", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "57c9686c-3b26-4fca-8c8f-5e6a90889a8e", "state": "Published", "datePublished": "2018-03-28T11:28:05.494686Z", "dateRecorded": "2018-03-27T20:16:27Z", "lastModified": "2018-03-28T11:28:05.494686Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "1855d755-ec51-42ad-8454-c9e503e379490;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/57c9686c-3b26-4fca-8c8f-5e6a90889a8e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/57c9686c-3b26-4fca-8c8f-5e6a90889a8e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535410564295910-private/57c9686c-3b26-4fca-8c8f-5e6a90889a8e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=rWMLbWJ84f1HjyyIQhCEDFvb00gMfxt8u5sIKDj1VR4%3D&__gda__=1522241343_ae36c9683e42261b6a304655819a560c", "fileSize": 25862065, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "d2296bd4-1443-4550-a07a-4be9f2099255", "state": "Published", "datePublished": "2018-03-28T11:26:54.0699933Z", "dateRecorded": "2018-03-27T20:14:09Z", "lastModified": "2018-03-28T11:26:54.0699933Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "09bb3e03-c724-46b9-a709-75f16f67b6dd0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535410564295910-public/d2296bd4-1443-4550-a07a-4be9f2099255_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535410564295910-public/d2296bd4-1443-4550-a07a-4be9f2099255_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3022.xboxlive.com/xuid-2535410564295910-private/d2296bd4-1443-4550-a07a-4be9f2099255.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=eKBZ%2FQyvKZmAGZlJyWMfUGDplSDem%2FhWm1kbKcDPER4%3D&__gda__=1522241343_e4ed83cef1fe2752018f1307e4ffc4c1", "fileSize": 20790720, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "3c65259b-ac26-4075-a3b3-1c577f7aba51", "state": "Published", "datePublished": "2018-03-28T11:26:39.3681148Z", "dateRecorded": "2018-03-28T11:08:41Z", "lastModified": "2018-03-28T11:26:39.3681148Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "cadaebbc-ba08-4454-93fd-a5c4e5db3ac90;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3004.xboxlive.com/xuid-2533274983109787-public/3c65259b-ac26-4075-a3b3-1c577f7aba51_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3004.xboxlive.com/xuid-2533274983109787-public/3c65259b-ac26-4075-a3b3-1c577f7aba51_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3004.xboxlive.com/xuid-2533274983109787-private/3c65259b-ac26-4075-a3b3-1c577f7aba51.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YA0hpfLkGVJrRPd1t4n8xBwCka6xS5h20B%2Bp9zjgnSE%3D&__gda__=1522241343_026ce24238521e38d2d56c5232b41b6e", "fileSize": 20602757, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533274983109787", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "781729f7-284d-4436-bca5-a122011a32aa", "state": "Published", "datePublished": "2018-03-28T11:26:32.6083661Z", "dateRecorded": "2018-03-28T11:19:27Z", "lastModified": "2018-03-28T11:26:32.6083661Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 5, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "be7ca397-9554-49ab-9c18-6cae4a19a21f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2016.xboxlive.com/xuid-2533274991165897-public/781729f7-284d-4436-bca5-a122011a32aa_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2016.xboxlive.com/xuid-2533274991165897-public/781729f7-284d-4436-bca5-a122011a32aa_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2016.xboxlive.com/xuid-2533274991165897-private/781729f7-284d-4436-bca5-a122011a32aa.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=MQg36E2Y4RFIuSmw3gwY33uA5GsrbIq7X2CSFTfiE5E%3D&__gda__=1522241343_b948d57e9bf0b971497b337595b2ac3b", "fileSize": 8021814, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533274991165897", "clipName": "", "titleName": "System", "gameClipLocale": "sv-SE", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1af35276-eaf4-4e93-90ea-361f7d6fc18f", "state": "Published", "datePublished": "2018-03-28T11:26:28.5868227Z", "dateRecorded": "2018-03-28T11:23:29Z", "lastModified": "2018-03-28T11:26:28.5868227Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 1, "titleData": "", "systemProperties": "09a7e142-91d8-4518-88c0-a1ef11044d960;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3007.xboxlive.com/xuid-2535454091503628-public/1af35276-eaf4-4e93-90ea-361f7d6fc18f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3007.xboxlive.com/xuid-2535454091503628-public/1af35276-eaf4-4e93-90ea-361f7d6fc18f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3007.xboxlive.com/xuid-2535454091503628-private/1af35276-eaf4-4e93-90ea-361f7d6fc18f.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=uCO7w7JZ4odSihFuZ7e10zmshnNyIWZJxLo4k%2BrLsXU%3D&__gda__=1522241343_c37fcf96789b5a818f6467b95ca381ce", "fileSize": 24481720, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535454091503628", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "fed42b0a-72a8-46fb-b4c8-ef195e4de8c5", "state": "Published", "datePublished": "2018-03-28T11:26:26.0595719Z", "dateRecorded": "2018-03-28T09:16:14Z", "lastModified": "2018-03-28T11:26:26.0595719Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 94, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "3a2eac65-9711-4159-b423-57aa0e455d6c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533274814489324-public/fed42b0a-72a8-46fb-b4c8-ef195e4de8c5_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533274814489324-public/fed42b0a-72a8-46fb-b4c8-ef195e4de8c5_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3019.xboxlive.com/xuid-2533274814489324-private/fed42b0a-72a8-46fb-b4c8-ef195e4de8c5.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=O4wOlYA7vOy5sGI2jrz%2BAtxJGsF1eMRGMGsjwWwulGE%3D&__gda__=1522241343_b8fc311f75af30fde15a6dacd5e387b8", "fileSize": 53084938, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533274814489324", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "47d9bcba-f3d3-4314-8e7c-583c2068d4cb", "state": "Published", "datePublished": "2018-03-28T11:26:08.1958019Z", "dateRecorded": "2018-03-28T11:22:11Z", "lastModified": "2018-03-28T11:26:08.1958019Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d083c802-5460-4e13-868b-34bde81b33dc0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533275010275613-public/47d9bcba-f3d3-4314-8e7c-583c2068d4cb_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533275010275613-public/47d9bcba-f3d3-4314-8e7c-583c2068d4cb_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3013.xboxlive.com/xuid-2533275010275613-private/47d9bcba-f3d3-4314-8e7c-583c2068d4cb.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=eAVmX4W0gXDwW5T3XeT41Tlivu3JHAW8RwpnfiNc9lA%3D&__gda__=1522241343_9b9d661d17a14ebcfdf68f50436cd0f6", "fileSize": 23217788, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533275010275613", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "95bf1f44-d915-428c-b722-f9bba7041d95", "state": "Published", "datePublished": "2018-03-28T11:26:07.819213Z", "dateRecorded": "2018-03-28T10:51:00Z", "lastModified": "2018-03-28T11:26:07.819213Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 58, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "507bfb49-2958-4cec-8cc0-5a81240b6f4c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535417713503905-public/95bf1f44-d915-428c-b722-f9bba7041d95_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535417713503905-public/95bf1f44-d915-428c-b722-f9bba7041d95_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3020.xboxlive.com/xuid-2535417713503905-private/95bf1f44-d915-428c-b722-f9bba7041d95.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=iFcD5RT%2BsgGo5vAgdR3ldKpc%2Bt%2FPBxIW3x04%2B5YMtj0%3D&__gda__=1522241343_5f4e1f8dc29c2d9f95b2dc010f1b5df9", "fileSize": 41127745, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535417713503905", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "ffb9eb4c-c5fc-4a50-991d-289f503b689d", "state": "Published", "datePublished": "2018-03-28T11:25:59.3104666Z", "dateRecorded": "2018-03-28T11:25:34Z", "lastModified": "2018-03-28T11:25:59.3104666Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 25, "scid": "03a80100-9ff3-46ea-be76-e00e7fe465df", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "0c18cbc6-91ac-4d04-ab81-44c073abae78;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535423052088138-public/ffb9eb4c-c5fc-4a50-991d-289f503b689d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535423052088138-public/ffb9eb4c-c5fc-4a50-991d-289f503b689d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535423052088138-private/ffb9eb4c-c5fc-4a50-991d-289f503b689d.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RAPfuMyW2Z6pE8aigO%2FGymKnzbgUUjC%2FPBzjiF63WHU%3D&__gda__=1522241343_5b84cd953822b728d920211f5a5bba20", "fileSize": 13128997, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535423052088138", "clipName": "", "titleName": "Upload Studio", "gameClipLocale": "zh-HK", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6f76b771-d9af-4508-ab25-34ab22592ca5", "state": "Published", "datePublished": "2018-03-28T11:25:57.8377655Z", "dateRecorded": "2018-03-28T10:22:33Z", "lastModified": "2018-03-28T11:25:57.8377655Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c2e41e8a-28d5-4e9e-9aa5-49a4eca610ba0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2004.xboxlive.com/xuid-2535434864011606-public/6f76b771-d9af-4508-ab25-34ab22592ca5_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2004.xboxlive.com/xuid-2535434864011606-public/6f76b771-d9af-4508-ab25-34ab22592ca5_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2004.xboxlive.com/xuid-2535434864011606-private/6f76b771-d9af-4508-ab25-34ab22592ca5.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=6BhYwWJztv69UlxyrUY8uk6zRH30XE8JW2PdbZE2SCs%3D&__gda__=1522241343_eb5d82062c2424e8aa8bef0b3297b1a1", "fileSize": 21635397, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535434864011606", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "93ecc9a1-0a4c-44ff-b2d9-ef709bf0fcdc", "state": "Published", "datePublished": "2018-03-28T11:25:56.6113254Z", "dateRecorded": "2018-03-28T10:49:21Z", "lastModified": "2018-03-28T11:25:56.6113254Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "431481af-5c89-4704-8841-d89cfcf999290;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535411627799168-public/93ecc9a1-0a4c-44ff-b2d9-ef709bf0fcdc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535411627799168-public/93ecc9a1-0a4c-44ff-b2d9-ef709bf0fcdc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3021.xboxlive.com/xuid-2535411627799168-private/93ecc9a1-0a4c-44ff-b2d9-ef709bf0fcdc.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=zSegBKyG4etbw786ubeo3wd0jHPSUpJ%2Fn6LeQ2uF60w%3D&__gda__=1522241343_d92a2a63235ac392017979a428fa9fbb", "fileSize": 25775930, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535411627799168", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "75fb6ff0-aedd-485d-bb6c-ebf06f2819d3", "state": "Published", "datePublished": "2018-03-28T11:25:55.4764226Z", "dateRecorded": "2018-03-27T20:04:20Z", "lastModified": "2018-03-28T11:25:55.4764226Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "ffd0eba2-d8d8-43db-ad9d-acc678c9c6240;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535410564295910-public/75fb6ff0-aedd-485d-bb6c-ebf06f2819d3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535410564295910-public/75fb6ff0-aedd-485d-bb6c-ebf06f2819d3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3021.xboxlive.com/xuid-2535410564295910-private/75fb6ff0-aedd-485d-bb6c-ebf06f2819d3.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=CzFpZULYq8SYZp6gUVO%2FiHdzPT3kOdbsNYLheT%2BeO1M%3D&__gda__=1522241343_e159f19cdc5c035827235d272d0cde38", "fileSize": 22475329, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "b5363ad2-89da-49a4-881f-9ecc31156877", "state": "Published", "datePublished": "2018-03-28T11:25:33.088389Z", "dateRecorded": "2018-03-28T11:22:18Z", "lastModified": "2018-03-28T11:25:33.088389Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "e16e941a-0c01-4b72-9bed-994105e2ee290;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3018.xboxlive.com/xuid-2535453175259551-public/b5363ad2-89da-49a4-881f-9ecc31156877_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3018.xboxlive.com/xuid-2535453175259551-public/b5363ad2-89da-49a4-881f-9ecc31156877_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3018.xboxlive.com/xuid-2535453175259551-private/b5363ad2-89da-49a4-881f-9ecc31156877.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=UW30mkovr8xJNr0yZxb7o%2Fg0DkpTNwGla9Kyc1%2FThTU%3D&__gda__=1522241343_9ceedd76de74aa3ba969694848bef49a", "fileSize": 22872773, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535453175259551", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "dae92b6b-62e5-45cd-8a6c-7ce05a9a3336", "state": "Published", "datePublished": "2018-03-28T11:25:27.4845736Z", "dateRecorded": "2018-03-28T11:21:37Z", "lastModified": "2018-03-28T11:25:27.4845736Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "75849c8c-bb6d-404f-a494-96346033e6a80;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2535437576382525-public/dae92b6b-62e5-45cd-8a6c-7ce05a9a3336_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2535437576382525-public/dae92b6b-62e5-45cd-8a6c-7ce05a9a3336_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/xuid-2535437576382525-private/dae92b6b-62e5-45cd-8a6c-7ce05a9a3336.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=kfPLrNMjWglGj3vFC%2BNgoVoi5cr3hUJvtQ6UOkRjvvQ%3D&__gda__=1522241343_70661b312e17369981096d27245a3942", "fileSize": 22770591, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535437576382525", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1ffb2cd8-1c07-4979-a9a9-027ec5303d6b", "state": "Published", "datePublished": "2018-03-28T11:25:26.2099462Z", "dateRecorded": "2018-03-28T11:04:43Z", "lastModified": "2018-03-28T11:25:26.2099462Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "372a17c2-183a-4fe6-b66e-4a3ea3018ddc0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3018.xboxlive.com/xuid-2535442657589117-public/1ffb2cd8-1c07-4979-a9a9-027ec5303d6b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3018.xboxlive.com/xuid-2535442657589117-public/1ffb2cd8-1c07-4979-a9a9-027ec5303d6b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3018.xboxlive.com/xuid-2535442657589117-private/1ffb2cd8-1c07-4979-a9a9-027ec5303d6b.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Kftostdrdt9phyHjK2NLCrlYyRQIMN7A0YTtBUvBWB8%3D&__gda__=1522241343_6f83a2c3808c80136240772348eb15f4", "fileSize": 24138941, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535442657589117", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "9e240102-d6de-4df2-9527-c0243e075b90", "state": "Published", "datePublished": "2018-03-28T11:25:25.7187242Z", "dateRecorded": "2018-03-28T08:00:36Z", "lastModified": "2018-03-28T11:25:25.7187242Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 43, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "56dffe2f-4353-4f09-830f-cc5c67d2da940;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2006.xboxlive.com/xuid-2533274987615257-public/9e240102-d6de-4df2-9527-c0243e075b90_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2006.xboxlive.com/xuid-2533274987615257-public/9e240102-d6de-4df2-9527-c0243e075b90_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2006.xboxlive.com/xuid-2533274987615257-private/9e240102-d6de-4df2-9527-c0243e075b90.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=aann1UgY%2BUznaL%2BqBWqSxL6Pe2aLKuuz21ZMHKFPuKs%3D&__gda__=1522241343_d1d7031bc8bba41c70be10ef87138f8b", "fileSize": 29300766, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533274987615257", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "2b7bd10c-57cc-4285-98d5-e1c7e882c8a0", "state": "Published", "datePublished": "2018-03-28T11:25:21.9191026Z", "dateRecorded": "2018-03-28T11:04:41Z", "lastModified": "2018-03-28T11:25:21.9191026Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "37081687-516c-4edf-a8eb-de95ab6d77d40;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3015.xboxlive.com/xuid-2535451404186500-public/2b7bd10c-57cc-4285-98d5-e1c7e882c8a0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3015.xboxlive.com/xuid-2535451404186500-public/2b7bd10c-57cc-4285-98d5-e1c7e882c8a0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3015.xboxlive.com/xuid-2535451404186500-private/2b7bd10c-57cc-4285-98d5-e1c7e882c8a0.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=9BSvKXofrsq%2FvQLhXcyChP2gJ9hFBKSRWi4YeRSzJ20%3D&__gda__=1522241343_0179c407b68b0a741ac925c45c14b0cc", "fileSize": 30570434, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535451404186500", "clipName": "", "titleName": "System", "gameClipLocale": "fr-FR", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 } ], "pagingInfo": { "continuationToken": "abcde_vwxyzZAAAAA2" } }python-xbox-webapi-2.1.0/tests/data/responses/gameclips_recent_own.json000066400000000000000000001452151465040003600264420ustar00rootroot00000000000000{ "gameClips": [ { "gameClipId": "44b7e94d-b3e9-4b97-be73-417be9091e93", "state": "Published", "datePublished": "2017-11-10T07:12:27.4353527Z", "dateRecorded": "2017-11-10T06:29:39Z", "lastModified": "2017-11-10T07:12:27.4353527Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 822567888, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "6a7e1238-2f7b-4c66-835e-c7c799e310490;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3017.xboxlive.com/xuid-2669321029139235-private/44b7e94d-b3e9-4b97-be73-417be9091e93.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lRkjf6USrukD5PCVp3PonFdwX5fD%2FmuLPWpRkIS2ydw%3D&__gda__=1522241341_d651111247d5ca9c1bb8b9244a8cd361", "fileSize": 43595475, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Danger Zone", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 2, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f87cc6ac-c291-4998-9124-d8b36c059b6a", "state": "Published", "datePublished": "2016-08-16T05:51:40.1354298Z", "dateRecorded": "2016-08-16T05:40:30Z", "lastModified": "2016-08-16T05:51:40.1354298Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 653, "titleData": "", "systemProperties": "56d4ac4e-efcd-4808-8d53-7583859558a4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ikXCzETBJSBPvS8W%2FxoWTCJL%2FGY6PxKpQ0VG6qktnCQ%3D", "fileSize": 159667, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=y1S%2BxzFVrgmTql2ZuYDpe6EtL5Jxu%2BhBVMnb%2Ff7ZTMA%3D", "fileSize": 522262, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-d5448dbd-f45e-46ab-ae4e-a2e205a70e7c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ArSoLvy9EnQeBthGW6%2FbasedHHk0Jb6iXjI3EMq8oh8%3D&__gda__=1522241341_69f67a7a3533626ae90b52845664dc0c", "fileSize": 12662239, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 5, "likeCount": 62, "shareCount": 2, "partialViews": 0 }, { "gameClipId": "bebd3d48-6622-4339-8e28-794d1b1a2755", "state": "Published", "datePublished": "2016-08-15T06:25:58.1253078Z", "dateRecorded": "2016-08-15T06:15:51Z", "lastModified": "2016-08-15T06:25:58.1253078Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 419, "titleData": "", "systemProperties": "caa87cc1-29aa-4278-9c89-8d8e9878d572;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BKiArrxRSTuFgIC2U9zL11fcGTqyg5QN7IE13fGfb9Y%3D", "fileSize": 169327, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FvDgQcOqGiXUNNEJ%2BLI0FSh4k0IPOfOSrnYmLWXDEBE%3D", "fileSize": 560631, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-89737fe6-5b03-48f5-8ed3-e98555005708/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=D%2Bigy01bwJhig0IBR1PeddcG3jjbnRY7pVMajeGn8ow%3D&__gda__=1522241341_a7fc62384a631bab79fdd05bcdea55bd", "fileSize": 10955394, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 4, "likeCount": 44, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "80194c67-aa0e-4fc9-a7c9-a072eab6a58c", "state": "Published", "datePublished": "2016-08-15T06:16:35.5632265Z", "dateRecorded": "2016-08-15T06:05:31Z", "lastModified": "2016-08-15T06:16:35.5632265Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 146, "titleData": "", "systemProperties": "2f17ddff-10a1-4571-99d6-aeb6fdee1dda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ggh%2B98ziFOWYtFhkLqWi48oJYbwVunXmlbIkIv1LgIs%3D", "fileSize": 141131, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jHSNBytHUluIfePVBL4ONfY3%2F6ro1Lf%2BCGvYukP0%2Bs4%3D", "fileSize": 461383, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-d64cdc9c-ffc2-4811-a673-36523755755c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d8uSVktAu5ivZUJiPHchDbnrJOuU07%2BPBI2V%2BzkC2aU%3D&__gda__=1522241341_883b80fa63d862fd6159f12c2f3f5cc5", "fileSize": 12403813, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 25, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "daf3defb-d6fd-46a0-bcf2-ac732f4473e2", "state": "Published", "datePublished": "2016-08-13T04:31:49.242885Z", "dateRecorded": "2016-08-13T04:19:16Z", "lastModified": "2016-08-13T04:31:49.242885Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 281, "titleData": "", "systemProperties": "16481f6e-3d56-4714-ae19-703e697c8670;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xas0uCgwzYT5jdcGFfUQwWEOsdIh%2F706Tg4n0LhMQ9A%3D", "fileSize": 123085, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xeuTHzaM31N0uuwAxIE8tQAw8q%2FCHT6PeIrEFIaOamc%3D", "fileSize": 384234, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3007.xboxlive.com/asset-acc33ad2-2bea-46f8-8adc-6edf5227ac4a/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YCQSnIj5R5%2F%2BU3gxFYTgMOKbeAFnl7BvIOva%2BvnCCtQ%3D&__gda__=1522241341_443a14b9a121c06c710aac5f5f63d63e", "fileSize": 14350846, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 42, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1d64fe91-fe19-4f57-956e-1bb80fdcc063", "state": "Published", "datePublished": "2016-08-11T05:40:29.0010865Z", "dateRecorded": "2016-08-11T05:29:32Z", "lastModified": "2016-08-11T05:40:29.0010865Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 287, "titleData": "", "systemProperties": "0342eaea-9d89-4fb4-9d52-38f793085b22;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=mvfJLhmi3olAfpCxhEP6gkBwUJnB%2F%2Bfxiw1tVqBN2Pc%3D", "fileSize": 134312, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ZRdKvsr%2FUYSaIkVYNejY189sdwDgE2%2Fuvnr324%2B3MUg%3D", "fileSize": 426344, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-1a39ee9b-144a-4853-92fd-ee56387c7e1b/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=eiGxxQmHfBmgmEegsMGVFvq1%2F2jKB5MiMzOZXz4oEEw%3D&__gda__=1522241341_88e19c05fbd0b55d119e6ee4a5b50063", "fileSize": 12778757, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "398cbdf8-d2f9-4168-9bb0-3c59026800c7", "state": "Published", "datePublished": "2016-08-11T05:27:48.0234102Z", "dateRecorded": "2016-08-11T05:16:39Z", "lastModified": "2016-08-11T05:27:48.0234102Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 230, "titleData": "", "systemProperties": "a56efca9-73f5-46b4-a283-679586fb0733;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=utb0HiFqx7uEcbFSWf7yqZbgL4I5UAVTA9V2a8ppNlQ%3D", "fileSize": 145313, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3XB1gVdVHl3pyp2qR0BDg8SKOnCKqDXNZTSfQP1ctY8%3D", "fileSize": 466863, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-fab2d578-274e-4064-994c-e4dc834a107c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KmozXFmFYAGbgcGa7tZTWYQvOhTyqz%2B2Zldcx2DB4y8%3D&__gda__=1522241341_818f541effb04b1cf9fe5e6ebfb67758", "fileSize": 12402917, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "0fa0e046-14cd-49ff-937b-58730794595f", "state": "Published", "datePublished": "2016-08-09T06:46:55.4540818Z", "dateRecorded": "2016-08-09T06:33:10Z", "lastModified": "2016-08-09T06:46:55.4540818Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 196, "titleData": "", "systemProperties": "a17f3202-0b15-48b1-a3e4-96410a9fcdfb;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hoPVefXwbyXE2dn67KuXXx5g0iDTKhhychX%2FCsyVC%2BM%3D", "fileSize": 130661, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=8MAv2%2BMGkOidM4lyYnWys8Gm1FELuXn3IdAGONl8c1M%3D", "fileSize": 425362, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2020.xboxlive.com/asset-85df25eb-6e42-4aa0-aee2-454d70959ffa/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TWTiWz5QwtP67bY%2B5faKO1sCX8KJARTWO%2BjI6O6DhZc%3D&__gda__=1522241341_04875fe9bd70cd0f8b6a4a855b25039f", "fileSize": 15876835, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 33, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1606ffb0-00eb-41f5-bcdb-57ca48c45ae6", "state": "Published", "datePublished": "2016-08-09T06:20:06.8042651Z", "dateRecorded": "2016-08-09T06:11:00Z", "lastModified": "2016-08-09T06:20:06.8042651Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 107, "titleData": "", "systemProperties": "e9d641d4-ea1b-4358-8a52-c93bd80dd49d;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=sCN2DyIxC%2F7Gcm%2Fxf7BN6xCe6MEO6wSUXb9%2FhTT8Y6Y%3D", "fileSize": 143356, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=pf1gVCXGh5qscXwVZxqndRYlc1E7PiBmtv9BEWmpvz4%3D", "fileSize": 461094, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2017.xboxlive.com/asset-43c97401-fba6-4a1d-a09a-0ee24b085bf5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FSqjTHlmNKWn%2BJSGsTyMNtvugP0BxhL82IXjltQipro%3D&__gda__=1522241341_8b36e029ca5d362a3d09f5bab59c29e4", "fileSize": 10103719, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 30, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "04438e58-6133-4ef1-a1d1-2bb45d43ac1f", "state": "Published", "datePublished": "2016-08-09T04:39:43.3295887Z", "dateRecorded": "2016-08-09T04:28:11Z", "lastModified": "2016-08-09T04:39:43.3295887Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 69, "titleData": "", "systemProperties": "5b6347fd-d734-4219-8352-a90383ae44cd;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=NcUBNyJ8yzB50BuCzIucomCdCfWNu3rh1lB0Ne5W5Wo%3D", "fileSize": 846, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bYQkHKTrBqGP86%2FS95vTHaIMNVG0U%2Fla5oEsa6r8ETI%3D", "fileSize": 2291, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-65f40239-4630-4fd0-97bf-54aadda75681/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=QY3s%2FyCRcOR6LjTvRzwYmsWw4rQ9BnrXWD8bznxFOQM%3D&__gda__=1522241341_99219717ce015dda404f54f3f98b8cca", "fileSize": 13602524, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "07f057bc-2900-47ca-b9e5-d479125d4800", "state": "Published", "datePublished": "2016-08-09T03:50:38.4155978Z", "dateRecorded": "2016-08-09T03:27:25Z", "lastModified": "2016-08-09T03:50:38.4155978Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "b167a364-e132-4ae3-afc1-cea139389028;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YcLHYMC6GBMtfrWXBn51mCyyD%2FIs09HwgzWCGyMiAbs%3D", "fileSize": 161212, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jMhh88tfT7Foo74kviJUYS0LO06X8ujNsgs4zjCtfxM%3D", "fileSize": 537199, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/asset-613e623f-39ff-47b0-a34f-b89db44b3ea5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=B22QQnkqTjjxieNiidlDkoCvb2AKShnviBMhp1UXQx4%3D&__gda__=1522241341_99a7c86a07e65af9e776d983b1f66cd9", "fileSize": 12765388, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e86a4017-2b5c-4b66-a17c-8dae73508eb3", "state": "Published", "datePublished": "2016-08-09T03:39:48.3805891Z", "dateRecorded": "2016-08-09T03:18:32Z", "lastModified": "2016-08-09T03:39:48.3805891Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 52, "titleData": "", "systemProperties": "79a1a18b-c392-4a40-bf08-723ecf31ecda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bqISNzDAQwMEE6olJLYJ64SQtb4XSBzzlHvfTXp21nU%3D", "fileSize": 154434, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=t3zaSstRlE4c81HKEUVq9L82UN6Asmi736FkYNt%2BG3c%3D", "fileSize": 512870, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2016.xboxlive.com/asset-5d979e26-1d25-4dc4-9a4b-8000fc032bf8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=iAdCNYsb%2Bghu5sKgwnpuQWGA7Jqf7WYfLtc84w3Bln4%3D&__gda__=1522241341_34952263b16223002657f225a5d56dd2", "fileSize": 18767754, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "7fba1194-df21-4323-a7ff-09ba1a9dded6", "state": "Published", "datePublished": "2016-08-08T03:37:10.3575388Z", "dateRecorded": "2016-08-08T03:19:55Z", "lastModified": "2016-08-08T03:37:10.3575388Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 216, "titleData": "", "systemProperties": "bbb7cfd6-fb0c-4ed2-9974-fa01177c010f;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=k0sNPrezWKXsVmZ1eNCz8ZvTQRZrZ3n4bfloeB3ypp4%3D", "fileSize": 166819, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=URbCN3VxY1steXqHewu2%2BUG4sTk7JANIkWT%2FdSY2huA%3D", "fileSize": 570016, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-abc0f842-914d-4709-a66d-123e5a2dd7d8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d%2FHJXCBUcc4zNTevrfObV1ZpH7sU1mT%2BP5xkbT%2B%2FAXA%3D&__gda__=1522241341_215e279509e157968dbf7ee36bc1401f", "fileSize": 15282508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 40, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "7e50d8a9-bc52-4967-9384-b713d3931787", "state": "Published", "datePublished": "2016-08-08T03:22:24.2827731Z", "dateRecorded": "2016-08-08T03:04:47Z", "lastModified": "2016-08-08T03:22:24.2827731Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 71, "titleData": "", "systemProperties": "9055341b-54ac-42d0-b31b-bd470753b19b;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=70mm5JK2%2FiP9vLKEuY9fEgqoSSa5OOFIp871b%2FH415o%3D", "fileSize": 171718, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BFRz7wgiw7va1PQk%2FEImCxFxqfUO1gFAXmABybqFNXA%3D", "fileSize": 593941, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-0afe9baa-6ee2-4883-b90a-2bffcdfee2ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KlKI%2B2TqyaiDjCfq6Gm8Xk23PV%2BFzlIgvYQywOC2gsA%3D&__gda__=1522241341_7ffbd0e5772e9835ab441680eeed8078", "fileSize": 15680996, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 16, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6401f573-0ae3-42ba-869b-377318b731ff", "state": "Published", "datePublished": "2016-08-08T03:08:25.0722005Z", "dateRecorded": "2016-08-08T02:51:22Z", "lastModified": "2016-08-08T03:08:25.0722005Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 13, "titleData": "", "systemProperties": "65a00049-6ac7-4f84-9b55-a5706ae701ec;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hxr0EifANMZhx5XEPesfbkF6kWN76GBB55K1v%2B1j9sg%3D", "fileSize": 152500, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RiulfhLiZYIGnaXb2S88b1cKnUxV1eytschM8SPR%2BKY%3D", "fileSize": 503154, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=5Dhvrp5xlOSxh33XpFnhh8m58v3FRI5u%2FGE%2BLqElHf4%3D&__gda__=1522241341_67dbc0ab0d6e7ee3019b9773d2317d50", "fileSize": 17193811, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 6, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "8b13e76a-8e32-42b6-b2cf-174bc83650ac", "state": "Published", "datePublished": "2016-08-08T02:52:59.4242996Z", "dateRecorded": "2016-08-08T02:34:55Z", "lastModified": "2016-08-08T02:52:59.4242996Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 53, "titleData": "", "systemProperties": "8b5bba25-c164-41be-a28a-47482f1d4e00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WxzSRmVV9bUEtSQ6NQU64kMFVToEc3KalNODLxSZqzo%3D", "fileSize": 154456, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4GE3YR7O28kcjtW1gbKUUasq0yJNBomLi%2Fx%2BpkiTy10%3D", "fileSize": 518531, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-1c293367-009c-4fb4-9a8b-566422fb9a9f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ckQAYlzI8j4arc2xuLjKaL2%2BP6ZtSZQH0XeXFM5ZAho%3D&__gda__=1522241341_732637a3b3a0588615725c3b26985571", "fileSize": 14261457, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e0260327-3be0-48f2-85ca-e8d70aede88f", "state": "Published", "datePublished": "2016-08-08T02:32:51.6557428Z", "dateRecorded": "2016-08-08T02:16:02Z", "lastModified": "2016-08-08T02:32:51.6557428Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 36, "titleData": "", "systemProperties": "3cd1aedb-5311-401c-b4bd-91e64e9cd150;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Ad9z1AXF4zM1261YoveRCkvC%2BJqfwvFJKpy9fiNhc70%3D", "fileSize": 152626, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=FzYzRummUcnRbDHuk9bG9gidKSqbAJU6Ec1clh9BCrg%3D", "fileSize": 515025, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-ec4a13cf-6993-4323-8702-3c486551da1d/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2N8BbDwpNceGM2OWgbuvETPdjVQk%2F%2B%2FnVcBhjWsGJes%3D&__gda__=1522241341_5388e2403f26dd6f1c60f8a372b0e343", "fileSize": 18062502, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "60ef47c1-66e6-488c-a3a8-f4f8ce424d9e", "state": "Published", "datePublished": "2016-08-08T00:50:28.4566729Z", "dateRecorded": "2016-08-08T00:37:41Z", "lastModified": "2016-08-08T00:50:28.4566729Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 26, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 55, "titleData": "", "systemProperties": "d8417324-9c7a-4c29-9c7a-6ffaa3bc2055;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=cZRUKwOUsI5p3Jgu%2F4ZVrBY%2B63RQU5g12%2FxI9D4h08E%3D", "fileSize": 167717, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=SLYo7w%2FfVfBOxTTrUtBY2Kz0NLBunS3pyMEE%2BAgTy0A%3D", "fileSize": 583394, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-ceb4386b-b2df-43cb-83fd-90c146b0f4e0/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xqFYeQbxdfVOt%2F%2FYAnJ75SsV9AyKZ5qrHHMm0JQ%2BI%2Bo%3D&__gda__=1522241341_943d2049a106896d116e503105f68f96", "fileSize": 12427361, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "953f4bff-41fb-4dc1-9f86-7d6ae7b09460", "state": "Published", "datePublished": "2016-08-08T00:02:35.8017029Z", "dateRecorded": "2016-08-07T23:35:47Z", "lastModified": "2016-08-08T00:02:35.8017029Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 27, "titleData": "", "systemProperties": "260df3ab-a1f9-4964-b6cc-7d1bc449d2b4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4z5YKbZx2X6eC%2BnnVu5uRWew2vTrljJ7ZfpUh38NYwI%3D", "fileSize": 146135, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=oxpPcBxQqxZ1aU25kupeN4x9jT1xgdhZGRjwdTTUgs8%3D", "fileSize": 484198, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-577437f5-0c09-42aa-a884-b972fe485e5f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=DJiYWk9xqaa7vOy%2B6eGsnkaiR2cx4pm75O7ARER5PI0%3D&__gda__=1522241341_5f77d3926f4fcabccea548094d37888e", "fileSize": 15498840, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1fac6036-2a1c-46fe-b043-cd0eecb6a166", "state": "Published", "datePublished": "2016-08-07T23:48:02.9042951Z", "dateRecorded": "2016-08-07T23:31:53Z", "lastModified": "2016-08-07T23:48:02.9042951Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 35, "titleData": "", "systemProperties": "3a971619-4799-4581-b5d3-5d8e8a58c315;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0jfkhNBxTjixTJ0jJRnLDhTRrkCpAMuUJv3Noqcr%2Bqc%3D", "fileSize": 159452, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RHQlwOAZf%2BLyzbKQWLJcuhvsOf4rXffgBqZKCjFt3FI%3D", "fileSize": 540470, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-fdaa855c-4994-4499-ad34-a4fbba04e334/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Gj2lMWn%2B%2BFf5eOGcfeJfv4JWTv3GNzKgAucg4AxzY%2BI%3D&__gda__=1522241341_78e7297d5a55ea5cdb3a0fa123dded20", "fileSize": 15785332, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "91d38c25-035e-4fc6-9cc2-3b8e45af2476", "state": "Published", "datePublished": "2016-08-04T06:01:19.6199819Z", "dateRecorded": "2016-08-04T05:49:03Z", "lastModified": "2016-08-04T06:01:19.6199819Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 140, "titleData": "", "systemProperties": "44c2f550-5fa1-4e27-a59c-1e43134a4d47;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=7aPI94U9LtHU7YF%2B9EJHX33LSw%2BvLq%2FHdyJmZpCr6SE%3D", "fileSize": 132396, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2Boq1eN8WoHkXUdFa5YWaPJQSappxmqz1bJ7tiMR36%2Bo%3D", "fileSize": 434595, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3005.xboxlive.com/asset-380323f4-536b-4b1c-b5af-3fe7b518e329/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0rJYtD2ucdkNu%2F1SVDDrE8LvLoxOKj80SJ%2FPjQActtk%3D&__gda__=1522241341_3c01f15b573207d0b1228e8d06296119", "fileSize": 12053765, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e7ee4d33-5a97-42d9-a066-5cee0fea112d", "state": "Published", "datePublished": "2016-08-04T05:47:12.2956391Z", "dateRecorded": "2016-08-04T05:24:49Z", "lastModified": "2016-08-04T05:47:12.2956391Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 86, "titleData": "", "systemProperties": "14f64dd6-d70f-47df-94af-e524c15f0202;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ezCbrBYeazdtXxB%2FOaQK%2FONr2WWql8GxjtegLU5gX%2Bk%3D", "fileSize": 133247, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=9zlNVtdMeMbx7SA%2BSRlikXB9k%2FEtmvbN5BfkhguqkP4%3D", "fileSize": 433869, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3009.xboxlive.com/asset-1e73012c-3b38-407f-8d6e-6762e00924ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=prBJMsHP1m3PqKxK1zmSXV35bT22nUgKXLWrpq%2FLFRU%3D&__gda__=1522241341_961c28b2f072b40238d158159f5f9f3d", "fileSize": 12083445, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5f9623b9-0e84-4165-a585-5a8fe8b00929", "state": "Published", "datePublished": "2016-08-04T05:13:51.551794Z", "dateRecorded": "2016-08-04T04:41:34Z", "lastModified": "2016-08-04T05:13:51.551794Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 190, "titleData": "", "systemProperties": "693a8749-69ba-4f51-b42d-1bb8e6cbab96;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lMrzKRSRlPZpCql4C4AzVba%2BciSU9teisSdW3vT0XB8%3D", "fileSize": 155502, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bemOyyFRKPpMmaURA9MlMhcW7hR%2BtLkBhWb1SmqUSG0%3D", "fileSize": 516829, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2012.xboxlive.com/asset-6859aa8c-98ba-4ba8-a988-f8da9d93fae8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=HOs8oga%2FdkwdJSRjUcikECA7giprOP0MOlQuNl7n3Zo%3D&__gda__=1522241341_645d86be00ba8e8b27122b51b0bf29d7", "fileSize": 19094508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 26, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "37b675eb-b32c-43d7-b619-854af17a6d9a", "state": "Published", "datePublished": "2016-07-30T07:19:39.4368105Z", "dateRecorded": "2016-07-30T07:18:14Z", "lastModified": "2016-07-30T07:19:39.4368105Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 139, "titleData": "", "systemProperties": "2ace08e2-52d6-44b1-9bca-d6486323edaf;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=UoaeQjPS7PMkPrr3w8duqNq0Dos7x1iO%2BpJe%2F3Q%2BZCo%3D", "fileSize": 147176, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Kug%2FDkZJZioQr3kFWH1DPMr2qzCZWTfHGxpllZPmvl8%3D", "fileSize": 482960, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-f7478f4b-dca5-4fd1-b5d1-58dd34ff1b8c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3jaH5chqv5bgn5wma4NwYzR5No4GAbthS0DqN5fHCXI%3D&__gda__=1522241341_07807f7be87deab7c55804ecdf4e8586", "fileSize": 9808014, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 22, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f82d75db-465f-4f66-a514-a632364cb267", "state": "Published", "datePublished": "2016-07-28T06:53:57.9008157Z", "dateRecorded": "2016-07-28T06:52:41Z", "lastModified": "2016-07-28T06:53:57.9008157Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 197, "titleData": "", "systemProperties": "491dd431-2dbd-449d-99e1-e79da89a3663;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WlYi5a75scTDNzWQhFG8U1%2BOffTwxZD%2BWaNfDYqw64M%3D", "fileSize": 125344, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lesaHjOmw78tpf4D%2BXJrwC3%2F3ZMbYWBq7frDZZmOujI%3D", "fileSize": 407877, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-1e6ca1fb-682f-4846-9956-0c5afe1d9968/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BLrvPsGfmImgfrnkDQWQjWtv2%2BJmRZ8wSSooCOwA3PM%3D&__gda__=1522241341_38241379eceb359adf264add95ac80af", "fileSize": 13259227, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 8, "likeCount": 32, "shareCount": 0, "partialViews": 0 } ], "pagingInfo": { "continuationToken": "abcde_vwxyzGQAAAA2" } }python-xbox-webapi-2.1.0/tests/data/responses/gameclips_recent_own_titleid.json000066400000000000000000001452151465040003600301600ustar00rootroot00000000000000{ "gameClips": [ { "gameClipId": "44b7e94d-b3e9-4b97-be73-417be9091e93", "state": "Published", "datePublished": "2017-11-10T07:12:27.4353527Z", "dateRecorded": "2017-11-10T06:29:39Z", "lastModified": "2017-11-10T07:12:27.4353527Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 822567888, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "6a7e1238-2f7b-4c66-835e-c7c799e310490;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3017.xboxlive.com/xuid-2669321029139235-private/44b7e94d-b3e9-4b97-be73-417be9091e93.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lRkjf6USrukD5PCVp3PonFdwX5fD%2FmuLPWpRkIS2ydw%3D&__gda__=1522241341_d651111247d5ca9c1bb8b9244a8cd361", "fileSize": 43595475, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Danger Zone", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 2, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f87cc6ac-c291-4998-9124-d8b36c059b6a", "state": "Published", "datePublished": "2016-08-16T05:51:40.1354298Z", "dateRecorded": "2016-08-16T05:40:30Z", "lastModified": "2016-08-16T05:51:40.1354298Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 653, "titleData": "", "systemProperties": "56d4ac4e-efcd-4808-8d53-7583859558a4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ikXCzETBJSBPvS8W%2FxoWTCJL%2FGY6PxKpQ0VG6qktnCQ%3D", "fileSize": 159667, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=y1S%2BxzFVrgmTql2ZuYDpe6EtL5Jxu%2BhBVMnb%2Ff7ZTMA%3D", "fileSize": 522262, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-d5448dbd-f45e-46ab-ae4e-a2e205a70e7c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ArSoLvy9EnQeBthGW6%2FbasedHHk0Jb6iXjI3EMq8oh8%3D&__gda__=1522241341_69f67a7a3533626ae90b52845664dc0c", "fileSize": 12662239, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 5, "likeCount": 62, "shareCount": 2, "partialViews": 0 }, { "gameClipId": "bebd3d48-6622-4339-8e28-794d1b1a2755", "state": "Published", "datePublished": "2016-08-15T06:25:58.1253078Z", "dateRecorded": "2016-08-15T06:15:51Z", "lastModified": "2016-08-15T06:25:58.1253078Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 419, "titleData": "", "systemProperties": "caa87cc1-29aa-4278-9c89-8d8e9878d572;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BKiArrxRSTuFgIC2U9zL11fcGTqyg5QN7IE13fGfb9Y%3D", "fileSize": 169327, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FvDgQcOqGiXUNNEJ%2BLI0FSh4k0IPOfOSrnYmLWXDEBE%3D", "fileSize": 560631, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-89737fe6-5b03-48f5-8ed3-e98555005708/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=D%2Bigy01bwJhig0IBR1PeddcG3jjbnRY7pVMajeGn8ow%3D&__gda__=1522241341_a7fc62384a631bab79fdd05bcdea55bd", "fileSize": 10955394, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 4, "likeCount": 44, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "80194c67-aa0e-4fc9-a7c9-a072eab6a58c", "state": "Published", "datePublished": "2016-08-15T06:16:35.5632265Z", "dateRecorded": "2016-08-15T06:05:31Z", "lastModified": "2016-08-15T06:16:35.5632265Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 146, "titleData": "", "systemProperties": "2f17ddff-10a1-4571-99d6-aeb6fdee1dda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ggh%2B98ziFOWYtFhkLqWi48oJYbwVunXmlbIkIv1LgIs%3D", "fileSize": 141131, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jHSNBytHUluIfePVBL4ONfY3%2F6ro1Lf%2BCGvYukP0%2Bs4%3D", "fileSize": 461383, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-d64cdc9c-ffc2-4811-a673-36523755755c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d8uSVktAu5ivZUJiPHchDbnrJOuU07%2BPBI2V%2BzkC2aU%3D&__gda__=1522241341_883b80fa63d862fd6159f12c2f3f5cc5", "fileSize": 12403813, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 25, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "daf3defb-d6fd-46a0-bcf2-ac732f4473e2", "state": "Published", "datePublished": "2016-08-13T04:31:49.242885Z", "dateRecorded": "2016-08-13T04:19:16Z", "lastModified": "2016-08-13T04:31:49.242885Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 281, "titleData": "", "systemProperties": "16481f6e-3d56-4714-ae19-703e697c8670;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xas0uCgwzYT5jdcGFfUQwWEOsdIh%2F706Tg4n0LhMQ9A%3D", "fileSize": 123085, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xeuTHzaM31N0uuwAxIE8tQAw8q%2FCHT6PeIrEFIaOamc%3D", "fileSize": 384234, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3007.xboxlive.com/asset-acc33ad2-2bea-46f8-8adc-6edf5227ac4a/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YCQSnIj5R5%2F%2BU3gxFYTgMOKbeAFnl7BvIOva%2BvnCCtQ%3D&__gda__=1522241341_443a14b9a121c06c710aac5f5f63d63e", "fileSize": 14350846, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 42, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1d64fe91-fe19-4f57-956e-1bb80fdcc063", "state": "Published", "datePublished": "2016-08-11T05:40:29.0010865Z", "dateRecorded": "2016-08-11T05:29:32Z", "lastModified": "2016-08-11T05:40:29.0010865Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 287, "titleData": "", "systemProperties": "0342eaea-9d89-4fb4-9d52-38f793085b22;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=mvfJLhmi3olAfpCxhEP6gkBwUJnB%2F%2Bfxiw1tVqBN2Pc%3D", "fileSize": 134312, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ZRdKvsr%2FUYSaIkVYNejY189sdwDgE2%2Fuvnr324%2B3MUg%3D", "fileSize": 426344, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-1a39ee9b-144a-4853-92fd-ee56387c7e1b/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=eiGxxQmHfBmgmEegsMGVFvq1%2F2jKB5MiMzOZXz4oEEw%3D&__gda__=1522241341_88e19c05fbd0b55d119e6ee4a5b50063", "fileSize": 12778757, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "398cbdf8-d2f9-4168-9bb0-3c59026800c7", "state": "Published", "datePublished": "2016-08-11T05:27:48.0234102Z", "dateRecorded": "2016-08-11T05:16:39Z", "lastModified": "2016-08-11T05:27:48.0234102Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 230, "titleData": "", "systemProperties": "a56efca9-73f5-46b4-a283-679586fb0733;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=utb0HiFqx7uEcbFSWf7yqZbgL4I5UAVTA9V2a8ppNlQ%3D", "fileSize": 145313, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3XB1gVdVHl3pyp2qR0BDg8SKOnCKqDXNZTSfQP1ctY8%3D", "fileSize": 466863, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-fab2d578-274e-4064-994c-e4dc834a107c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KmozXFmFYAGbgcGa7tZTWYQvOhTyqz%2B2Zldcx2DB4y8%3D&__gda__=1522241341_818f541effb04b1cf9fe5e6ebfb67758", "fileSize": 12402917, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "0fa0e046-14cd-49ff-937b-58730794595f", "state": "Published", "datePublished": "2016-08-09T06:46:55.4540818Z", "dateRecorded": "2016-08-09T06:33:10Z", "lastModified": "2016-08-09T06:46:55.4540818Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 196, "titleData": "", "systemProperties": "a17f3202-0b15-48b1-a3e4-96410a9fcdfb;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hoPVefXwbyXE2dn67KuXXx5g0iDTKhhychX%2FCsyVC%2BM%3D", "fileSize": 130661, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=8MAv2%2BMGkOidM4lyYnWys8Gm1FELuXn3IdAGONl8c1M%3D", "fileSize": 425362, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2020.xboxlive.com/asset-85df25eb-6e42-4aa0-aee2-454d70959ffa/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TWTiWz5QwtP67bY%2B5faKO1sCX8KJARTWO%2BjI6O6DhZc%3D&__gda__=1522241341_04875fe9bd70cd0f8b6a4a855b25039f", "fileSize": 15876835, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 33, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1606ffb0-00eb-41f5-bcdb-57ca48c45ae6", "state": "Published", "datePublished": "2016-08-09T06:20:06.8042651Z", "dateRecorded": "2016-08-09T06:11:00Z", "lastModified": "2016-08-09T06:20:06.8042651Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 107, "titleData": "", "systemProperties": "e9d641d4-ea1b-4358-8a52-c93bd80dd49d;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=sCN2DyIxC%2F7Gcm%2Fxf7BN6xCe6MEO6wSUXb9%2FhTT8Y6Y%3D", "fileSize": 143356, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=pf1gVCXGh5qscXwVZxqndRYlc1E7PiBmtv9BEWmpvz4%3D", "fileSize": 461094, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2017.xboxlive.com/asset-43c97401-fba6-4a1d-a09a-0ee24b085bf5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FSqjTHlmNKWn%2BJSGsTyMNtvugP0BxhL82IXjltQipro%3D&__gda__=1522241341_8b36e029ca5d362a3d09f5bab59c29e4", "fileSize": 10103719, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 30, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "04438e58-6133-4ef1-a1d1-2bb45d43ac1f", "state": "Published", "datePublished": "2016-08-09T04:39:43.3295887Z", "dateRecorded": "2016-08-09T04:28:11Z", "lastModified": "2016-08-09T04:39:43.3295887Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 69, "titleData": "", "systemProperties": "5b6347fd-d734-4219-8352-a90383ae44cd;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=NcUBNyJ8yzB50BuCzIucomCdCfWNu3rh1lB0Ne5W5Wo%3D", "fileSize": 846, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bYQkHKTrBqGP86%2FS95vTHaIMNVG0U%2Fla5oEsa6r8ETI%3D", "fileSize": 2291, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-65f40239-4630-4fd0-97bf-54aadda75681/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=QY3s%2FyCRcOR6LjTvRzwYmsWw4rQ9BnrXWD8bznxFOQM%3D&__gda__=1522241341_99219717ce015dda404f54f3f98b8cca", "fileSize": 13602524, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "07f057bc-2900-47ca-b9e5-d479125d4800", "state": "Published", "datePublished": "2016-08-09T03:50:38.4155978Z", "dateRecorded": "2016-08-09T03:27:25Z", "lastModified": "2016-08-09T03:50:38.4155978Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "b167a364-e132-4ae3-afc1-cea139389028;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YcLHYMC6GBMtfrWXBn51mCyyD%2FIs09HwgzWCGyMiAbs%3D", "fileSize": 161212, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jMhh88tfT7Foo74kviJUYS0LO06X8ujNsgs4zjCtfxM%3D", "fileSize": 537199, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/asset-613e623f-39ff-47b0-a34f-b89db44b3ea5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=B22QQnkqTjjxieNiidlDkoCvb2AKShnviBMhp1UXQx4%3D&__gda__=1522241341_99a7c86a07e65af9e776d983b1f66cd9", "fileSize": 12765388, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e86a4017-2b5c-4b66-a17c-8dae73508eb3", "state": "Published", "datePublished": "2016-08-09T03:39:48.3805891Z", "dateRecorded": "2016-08-09T03:18:32Z", "lastModified": "2016-08-09T03:39:48.3805891Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 52, "titleData": "", "systemProperties": "79a1a18b-c392-4a40-bf08-723ecf31ecda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bqISNzDAQwMEE6olJLYJ64SQtb4XSBzzlHvfTXp21nU%3D", "fileSize": 154434, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=t3zaSstRlE4c81HKEUVq9L82UN6Asmi736FkYNt%2BG3c%3D", "fileSize": 512870, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2016.xboxlive.com/asset-5d979e26-1d25-4dc4-9a4b-8000fc032bf8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=iAdCNYsb%2Bghu5sKgwnpuQWGA7Jqf7WYfLtc84w3Bln4%3D&__gda__=1522241341_34952263b16223002657f225a5d56dd2", "fileSize": 18767754, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "7fba1194-df21-4323-a7ff-09ba1a9dded6", "state": "Published", "datePublished": "2016-08-08T03:37:10.3575388Z", "dateRecorded": "2016-08-08T03:19:55Z", "lastModified": "2016-08-08T03:37:10.3575388Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 216, "titleData": "", "systemProperties": "bbb7cfd6-fb0c-4ed2-9974-fa01177c010f;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=k0sNPrezWKXsVmZ1eNCz8ZvTQRZrZ3n4bfloeB3ypp4%3D", "fileSize": 166819, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=URbCN3VxY1steXqHewu2%2BUG4sTk7JANIkWT%2FdSY2huA%3D", "fileSize": 570016, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-abc0f842-914d-4709-a66d-123e5a2dd7d8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d%2FHJXCBUcc4zNTevrfObV1ZpH7sU1mT%2BP5xkbT%2B%2FAXA%3D&__gda__=1522241341_215e279509e157968dbf7ee36bc1401f", "fileSize": 15282508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 40, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "7e50d8a9-bc52-4967-9384-b713d3931787", "state": "Published", "datePublished": "2016-08-08T03:22:24.2827731Z", "dateRecorded": "2016-08-08T03:04:47Z", "lastModified": "2016-08-08T03:22:24.2827731Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 71, "titleData": "", "systemProperties": "9055341b-54ac-42d0-b31b-bd470753b19b;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=70mm5JK2%2FiP9vLKEuY9fEgqoSSa5OOFIp871b%2FH415o%3D", "fileSize": 171718, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BFRz7wgiw7va1PQk%2FEImCxFxqfUO1gFAXmABybqFNXA%3D", "fileSize": 593941, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-0afe9baa-6ee2-4883-b90a-2bffcdfee2ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KlKI%2B2TqyaiDjCfq6Gm8Xk23PV%2BFzlIgvYQywOC2gsA%3D&__gda__=1522241341_7ffbd0e5772e9835ab441680eeed8078", "fileSize": 15680996, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 16, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6401f573-0ae3-42ba-869b-377318b731ff", "state": "Published", "datePublished": "2016-08-08T03:08:25.0722005Z", "dateRecorded": "2016-08-08T02:51:22Z", "lastModified": "2016-08-08T03:08:25.0722005Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 13, "titleData": "", "systemProperties": "65a00049-6ac7-4f84-9b55-a5706ae701ec;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hxr0EifANMZhx5XEPesfbkF6kWN76GBB55K1v%2B1j9sg%3D", "fileSize": 152500, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RiulfhLiZYIGnaXb2S88b1cKnUxV1eytschM8SPR%2BKY%3D", "fileSize": 503154, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=5Dhvrp5xlOSxh33XpFnhh8m58v3FRI5u%2FGE%2BLqElHf4%3D&__gda__=1522241341_67dbc0ab0d6e7ee3019b9773d2317d50", "fileSize": 17193811, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 6, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "8b13e76a-8e32-42b6-b2cf-174bc83650ac", "state": "Published", "datePublished": "2016-08-08T02:52:59.4242996Z", "dateRecorded": "2016-08-08T02:34:55Z", "lastModified": "2016-08-08T02:52:59.4242996Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 53, "titleData": "", "systemProperties": "8b5bba25-c164-41be-a28a-47482f1d4e00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WxzSRmVV9bUEtSQ6NQU64kMFVToEc3KalNODLxSZqzo%3D", "fileSize": 154456, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4GE3YR7O28kcjtW1gbKUUasq0yJNBomLi%2Fx%2BpkiTy10%3D", "fileSize": 518531, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-1c293367-009c-4fb4-9a8b-566422fb9a9f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ckQAYlzI8j4arc2xuLjKaL2%2BP6ZtSZQH0XeXFM5ZAho%3D&__gda__=1522241341_732637a3b3a0588615725c3b26985571", "fileSize": 14261457, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e0260327-3be0-48f2-85ca-e8d70aede88f", "state": "Published", "datePublished": "2016-08-08T02:32:51.6557428Z", "dateRecorded": "2016-08-08T02:16:02Z", "lastModified": "2016-08-08T02:32:51.6557428Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 36, "titleData": "", "systemProperties": "3cd1aedb-5311-401c-b4bd-91e64e9cd150;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Ad9z1AXF4zM1261YoveRCkvC%2BJqfwvFJKpy9fiNhc70%3D", "fileSize": 152626, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=FzYzRummUcnRbDHuk9bG9gidKSqbAJU6Ec1clh9BCrg%3D", "fileSize": 515025, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-ec4a13cf-6993-4323-8702-3c486551da1d/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2N8BbDwpNceGM2OWgbuvETPdjVQk%2F%2B%2FnVcBhjWsGJes%3D&__gda__=1522241341_5388e2403f26dd6f1c60f8a372b0e343", "fileSize": 18062502, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "60ef47c1-66e6-488c-a3a8-f4f8ce424d9e", "state": "Published", "datePublished": "2016-08-08T00:50:28.4566729Z", "dateRecorded": "2016-08-08T00:37:41Z", "lastModified": "2016-08-08T00:50:28.4566729Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 26, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 55, "titleData": "", "systemProperties": "d8417324-9c7a-4c29-9c7a-6ffaa3bc2055;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=cZRUKwOUsI5p3Jgu%2F4ZVrBY%2B63RQU5g12%2FxI9D4h08E%3D", "fileSize": 167717, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=SLYo7w%2FfVfBOxTTrUtBY2Kz0NLBunS3pyMEE%2BAgTy0A%3D", "fileSize": 583394, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-ceb4386b-b2df-43cb-83fd-90c146b0f4e0/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xqFYeQbxdfVOt%2F%2FYAnJ75SsV9AyKZ5qrHHMm0JQ%2BI%2Bo%3D&__gda__=1522241341_943d2049a106896d116e503105f68f96", "fileSize": 12427361, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "953f4bff-41fb-4dc1-9f86-7d6ae7b09460", "state": "Published", "datePublished": "2016-08-08T00:02:35.8017029Z", "dateRecorded": "2016-08-07T23:35:47Z", "lastModified": "2016-08-08T00:02:35.8017029Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 27, "titleData": "", "systemProperties": "260df3ab-a1f9-4964-b6cc-7d1bc449d2b4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4z5YKbZx2X6eC%2BnnVu5uRWew2vTrljJ7ZfpUh38NYwI%3D", "fileSize": 146135, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=oxpPcBxQqxZ1aU25kupeN4x9jT1xgdhZGRjwdTTUgs8%3D", "fileSize": 484198, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-577437f5-0c09-42aa-a884-b972fe485e5f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=DJiYWk9xqaa7vOy%2B6eGsnkaiR2cx4pm75O7ARER5PI0%3D&__gda__=1522241341_5f77d3926f4fcabccea548094d37888e", "fileSize": 15498840, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1fac6036-2a1c-46fe-b043-cd0eecb6a166", "state": "Published", "datePublished": "2016-08-07T23:48:02.9042951Z", "dateRecorded": "2016-08-07T23:31:53Z", "lastModified": "2016-08-07T23:48:02.9042951Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 35, "titleData": "", "systemProperties": "3a971619-4799-4581-b5d3-5d8e8a58c315;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0jfkhNBxTjixTJ0jJRnLDhTRrkCpAMuUJv3Noqcr%2Bqc%3D", "fileSize": 159452, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RHQlwOAZf%2BLyzbKQWLJcuhvsOf4rXffgBqZKCjFt3FI%3D", "fileSize": 540470, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-fdaa855c-4994-4499-ad34-a4fbba04e334/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Gj2lMWn%2B%2BFf5eOGcfeJfv4JWTv3GNzKgAucg4AxzY%2BI%3D&__gda__=1522241341_78e7297d5a55ea5cdb3a0fa123dded20", "fileSize": 15785332, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "91d38c25-035e-4fc6-9cc2-3b8e45af2476", "state": "Published", "datePublished": "2016-08-04T06:01:19.6199819Z", "dateRecorded": "2016-08-04T05:49:03Z", "lastModified": "2016-08-04T06:01:19.6199819Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 140, "titleData": "", "systemProperties": "44c2f550-5fa1-4e27-a59c-1e43134a4d47;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=7aPI94U9LtHU7YF%2B9EJHX33LSw%2BvLq%2FHdyJmZpCr6SE%3D", "fileSize": 132396, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2Boq1eN8WoHkXUdFa5YWaPJQSappxmqz1bJ7tiMR36%2Bo%3D", "fileSize": 434595, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3005.xboxlive.com/asset-380323f4-536b-4b1c-b5af-3fe7b518e329/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0rJYtD2ucdkNu%2F1SVDDrE8LvLoxOKj80SJ%2FPjQActtk%3D&__gda__=1522241341_3c01f15b573207d0b1228e8d06296119", "fileSize": 12053765, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e7ee4d33-5a97-42d9-a066-5cee0fea112d", "state": "Published", "datePublished": "2016-08-04T05:47:12.2956391Z", "dateRecorded": "2016-08-04T05:24:49Z", "lastModified": "2016-08-04T05:47:12.2956391Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 86, "titleData": "", "systemProperties": "14f64dd6-d70f-47df-94af-e524c15f0202;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ezCbrBYeazdtXxB%2FOaQK%2FONr2WWql8GxjtegLU5gX%2Bk%3D", "fileSize": 133247, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=9zlNVtdMeMbx7SA%2BSRlikXB9k%2FEtmvbN5BfkhguqkP4%3D", "fileSize": 433869, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3009.xboxlive.com/asset-1e73012c-3b38-407f-8d6e-6762e00924ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=prBJMsHP1m3PqKxK1zmSXV35bT22nUgKXLWrpq%2FLFRU%3D&__gda__=1522241341_961c28b2f072b40238d158159f5f9f3d", "fileSize": 12083445, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5f9623b9-0e84-4165-a585-5a8fe8b00929", "state": "Published", "datePublished": "2016-08-04T05:13:51.551794Z", "dateRecorded": "2016-08-04T04:41:34Z", "lastModified": "2016-08-04T05:13:51.551794Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 190, "titleData": "", "systemProperties": "693a8749-69ba-4f51-b42d-1bb8e6cbab96;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lMrzKRSRlPZpCql4C4AzVba%2BciSU9teisSdW3vT0XB8%3D", "fileSize": 155502, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bemOyyFRKPpMmaURA9MlMhcW7hR%2BtLkBhWb1SmqUSG0%3D", "fileSize": 516829, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2012.xboxlive.com/asset-6859aa8c-98ba-4ba8-a988-f8da9d93fae8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=HOs8oga%2FdkwdJSRjUcikECA7giprOP0MOlQuNl7n3Zo%3D&__gda__=1522241341_645d86be00ba8e8b27122b51b0bf29d7", "fileSize": 19094508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 26, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "37b675eb-b32c-43d7-b619-854af17a6d9a", "state": "Published", "datePublished": "2016-07-30T07:19:39.4368105Z", "dateRecorded": "2016-07-30T07:18:14Z", "lastModified": "2016-07-30T07:19:39.4368105Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 139, "titleData": "", "systemProperties": "2ace08e2-52d6-44b1-9bca-d6486323edaf;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=UoaeQjPS7PMkPrr3w8duqNq0Dos7x1iO%2BpJe%2F3Q%2BZCo%3D", "fileSize": 147176, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Kug%2FDkZJZioQr3kFWH1DPMr2qzCZWTfHGxpllZPmvl8%3D", "fileSize": 482960, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-f7478f4b-dca5-4fd1-b5d1-58dd34ff1b8c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3jaH5chqv5bgn5wma4NwYzR5No4GAbthS0DqN5fHCXI%3D&__gda__=1522241341_07807f7be87deab7c55804ecdf4e8586", "fileSize": 9808014, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 22, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f82d75db-465f-4f66-a514-a632364cb267", "state": "Published", "datePublished": "2016-07-28T06:53:57.9008157Z", "dateRecorded": "2016-07-28T06:52:41Z", "lastModified": "2016-07-28T06:53:57.9008157Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 197, "titleData": "", "systemProperties": "491dd431-2dbd-449d-99e1-e79da89a3663;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WlYi5a75scTDNzWQhFG8U1%2BOffTwxZD%2BWaNfDYqw64M%3D", "fileSize": 125344, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lesaHjOmw78tpf4D%2BXJrwC3%2F3ZMbYWBq7frDZZmOujI%3D", "fileSize": 407877, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-1e6ca1fb-682f-4846-9956-0c5afe1d9968/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BLrvPsGfmImgfrnkDQWQjWtv2%2BJmRZ8wSSooCOwA3PM%3D&__gda__=1522241341_38241379eceb359adf264add95ac80af", "fileSize": 13259227, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 8, "likeCount": 32, "shareCount": 0, "partialViews": 0 } ], "pagingInfo": { "continuationToken": "abcde_vwxyzGQAAAA2" } }python-xbox-webapi-2.1.0/tests/data/responses/gameclips_recent_xuid.json000066400000000000000000001452151465040003600266100ustar00rootroot00000000000000{ "gameClips": [ { "gameClipId": "44b7e94d-b3e9-4b97-be73-417be9091e93", "state": "Published", "datePublished": "2017-11-10T07:12:27.4353527Z", "dateRecorded": "2017-11-10T06:29:39Z", "lastModified": "2017-11-10T07:12:27.4353527Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 822567888, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "6a7e1238-2f7b-4c66-835e-c7c799e310490;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3017.xboxlive.com/xuid-2669321029139235-private/44b7e94d-b3e9-4b97-be73-417be9091e93.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lRkjf6USrukD5PCVp3PonFdwX5fD%2FmuLPWpRkIS2ydw%3D&__gda__=1522241341_d651111247d5ca9c1bb8b9244a8cd361", "fileSize": 43595475, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Danger Zone", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 2, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f87cc6ac-c291-4998-9124-d8b36c059b6a", "state": "Published", "datePublished": "2016-08-16T05:51:40.1354298Z", "dateRecorded": "2016-08-16T05:40:30Z", "lastModified": "2016-08-16T05:51:40.1354298Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 653, "titleData": "", "systemProperties": "56d4ac4e-efcd-4808-8d53-7583859558a4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ikXCzETBJSBPvS8W%2FxoWTCJL%2FGY6PxKpQ0VG6qktnCQ%3D", "fileSize": 159667, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=y1S%2BxzFVrgmTql2ZuYDpe6EtL5Jxu%2BhBVMnb%2Ff7ZTMA%3D", "fileSize": 522262, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-d5448dbd-f45e-46ab-ae4e-a2e205a70e7c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ArSoLvy9EnQeBthGW6%2FbasedHHk0Jb6iXjI3EMq8oh8%3D&__gda__=1522241341_69f67a7a3533626ae90b52845664dc0c", "fileSize": 12662239, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 5, "likeCount": 62, "shareCount": 2, "partialViews": 0 }, { "gameClipId": "bebd3d48-6622-4339-8e28-794d1b1a2755", "state": "Published", "datePublished": "2016-08-15T06:25:58.1253078Z", "dateRecorded": "2016-08-15T06:15:51Z", "lastModified": "2016-08-15T06:25:58.1253078Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 419, "titleData": "", "systemProperties": "caa87cc1-29aa-4278-9c89-8d8e9878d572;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BKiArrxRSTuFgIC2U9zL11fcGTqyg5QN7IE13fGfb9Y%3D", "fileSize": 169327, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FvDgQcOqGiXUNNEJ%2BLI0FSh4k0IPOfOSrnYmLWXDEBE%3D", "fileSize": 560631, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-89737fe6-5b03-48f5-8ed3-e98555005708/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=D%2Bigy01bwJhig0IBR1PeddcG3jjbnRY7pVMajeGn8ow%3D&__gda__=1522241341_a7fc62384a631bab79fdd05bcdea55bd", "fileSize": 10955394, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 4, "likeCount": 44, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "80194c67-aa0e-4fc9-a7c9-a072eab6a58c", "state": "Published", "datePublished": "2016-08-15T06:16:35.5632265Z", "dateRecorded": "2016-08-15T06:05:31Z", "lastModified": "2016-08-15T06:16:35.5632265Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 146, "titleData": "", "systemProperties": "2f17ddff-10a1-4571-99d6-aeb6fdee1dda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ggh%2B98ziFOWYtFhkLqWi48oJYbwVunXmlbIkIv1LgIs%3D", "fileSize": 141131, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jHSNBytHUluIfePVBL4ONfY3%2F6ro1Lf%2BCGvYukP0%2Bs4%3D", "fileSize": 461383, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-d64cdc9c-ffc2-4811-a673-36523755755c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d8uSVktAu5ivZUJiPHchDbnrJOuU07%2BPBI2V%2BzkC2aU%3D&__gda__=1522241341_883b80fa63d862fd6159f12c2f3f5cc5", "fileSize": 12403813, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 25, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "daf3defb-d6fd-46a0-bcf2-ac732f4473e2", "state": "Published", "datePublished": "2016-08-13T04:31:49.242885Z", "dateRecorded": "2016-08-13T04:19:16Z", "lastModified": "2016-08-13T04:31:49.242885Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 281, "titleData": "", "systemProperties": "16481f6e-3d56-4714-ae19-703e697c8670;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xas0uCgwzYT5jdcGFfUQwWEOsdIh%2F706Tg4n0LhMQ9A%3D", "fileSize": 123085, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xeuTHzaM31N0uuwAxIE8tQAw8q%2FCHT6PeIrEFIaOamc%3D", "fileSize": 384234, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3007.xboxlive.com/asset-acc33ad2-2bea-46f8-8adc-6edf5227ac4a/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YCQSnIj5R5%2F%2BU3gxFYTgMOKbeAFnl7BvIOva%2BvnCCtQ%3D&__gda__=1522241341_443a14b9a121c06c710aac5f5f63d63e", "fileSize": 14350846, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 42, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1d64fe91-fe19-4f57-956e-1bb80fdcc063", "state": "Published", "datePublished": "2016-08-11T05:40:29.0010865Z", "dateRecorded": "2016-08-11T05:29:32Z", "lastModified": "2016-08-11T05:40:29.0010865Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 287, "titleData": "", "systemProperties": "0342eaea-9d89-4fb4-9d52-38f793085b22;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=mvfJLhmi3olAfpCxhEP6gkBwUJnB%2F%2Bfxiw1tVqBN2Pc%3D", "fileSize": 134312, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ZRdKvsr%2FUYSaIkVYNejY189sdwDgE2%2Fuvnr324%2B3MUg%3D", "fileSize": 426344, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-1a39ee9b-144a-4853-92fd-ee56387c7e1b/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=eiGxxQmHfBmgmEegsMGVFvq1%2F2jKB5MiMzOZXz4oEEw%3D&__gda__=1522241341_88e19c05fbd0b55d119e6ee4a5b50063", "fileSize": 12778757, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "398cbdf8-d2f9-4168-9bb0-3c59026800c7", "state": "Published", "datePublished": "2016-08-11T05:27:48.0234102Z", "dateRecorded": "2016-08-11T05:16:39Z", "lastModified": "2016-08-11T05:27:48.0234102Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 230, "titleData": "", "systemProperties": "a56efca9-73f5-46b4-a283-679586fb0733;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=utb0HiFqx7uEcbFSWf7yqZbgL4I5UAVTA9V2a8ppNlQ%3D", "fileSize": 145313, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3XB1gVdVHl3pyp2qR0BDg8SKOnCKqDXNZTSfQP1ctY8%3D", "fileSize": 466863, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-fab2d578-274e-4064-994c-e4dc834a107c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KmozXFmFYAGbgcGa7tZTWYQvOhTyqz%2B2Zldcx2DB4y8%3D&__gda__=1522241341_818f541effb04b1cf9fe5e6ebfb67758", "fileSize": 12402917, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "0fa0e046-14cd-49ff-937b-58730794595f", "state": "Published", "datePublished": "2016-08-09T06:46:55.4540818Z", "dateRecorded": "2016-08-09T06:33:10Z", "lastModified": "2016-08-09T06:46:55.4540818Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 196, "titleData": "", "systemProperties": "a17f3202-0b15-48b1-a3e4-96410a9fcdfb;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hoPVefXwbyXE2dn67KuXXx5g0iDTKhhychX%2FCsyVC%2BM%3D", "fileSize": 130661, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=8MAv2%2BMGkOidM4lyYnWys8Gm1FELuXn3IdAGONl8c1M%3D", "fileSize": 425362, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2020.xboxlive.com/asset-85df25eb-6e42-4aa0-aee2-454d70959ffa/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TWTiWz5QwtP67bY%2B5faKO1sCX8KJARTWO%2BjI6O6DhZc%3D&__gda__=1522241341_04875fe9bd70cd0f8b6a4a855b25039f", "fileSize": 15876835, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 33, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1606ffb0-00eb-41f5-bcdb-57ca48c45ae6", "state": "Published", "datePublished": "2016-08-09T06:20:06.8042651Z", "dateRecorded": "2016-08-09T06:11:00Z", "lastModified": "2016-08-09T06:20:06.8042651Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 107, "titleData": "", "systemProperties": "e9d641d4-ea1b-4358-8a52-c93bd80dd49d;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=sCN2DyIxC%2F7Gcm%2Fxf7BN6xCe6MEO6wSUXb9%2FhTT8Y6Y%3D", "fileSize": 143356, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=pf1gVCXGh5qscXwVZxqndRYlc1E7PiBmtv9BEWmpvz4%3D", "fileSize": 461094, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2017.xboxlive.com/asset-43c97401-fba6-4a1d-a09a-0ee24b085bf5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FSqjTHlmNKWn%2BJSGsTyMNtvugP0BxhL82IXjltQipro%3D&__gda__=1522241341_8b36e029ca5d362a3d09f5bab59c29e4", "fileSize": 10103719, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 30, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "04438e58-6133-4ef1-a1d1-2bb45d43ac1f", "state": "Published", "datePublished": "2016-08-09T04:39:43.3295887Z", "dateRecorded": "2016-08-09T04:28:11Z", "lastModified": "2016-08-09T04:39:43.3295887Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 69, "titleData": "", "systemProperties": "5b6347fd-d734-4219-8352-a90383ae44cd;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=NcUBNyJ8yzB50BuCzIucomCdCfWNu3rh1lB0Ne5W5Wo%3D", "fileSize": 846, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bYQkHKTrBqGP86%2FS95vTHaIMNVG0U%2Fla5oEsa6r8ETI%3D", "fileSize": 2291, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-65f40239-4630-4fd0-97bf-54aadda75681/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=QY3s%2FyCRcOR6LjTvRzwYmsWw4rQ9BnrXWD8bznxFOQM%3D&__gda__=1522241341_99219717ce015dda404f54f3f98b8cca", "fileSize": 13602524, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "07f057bc-2900-47ca-b9e5-d479125d4800", "state": "Published", "datePublished": "2016-08-09T03:50:38.4155978Z", "dateRecorded": "2016-08-09T03:27:25Z", "lastModified": "2016-08-09T03:50:38.4155978Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "b167a364-e132-4ae3-afc1-cea139389028;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YcLHYMC6GBMtfrWXBn51mCyyD%2FIs09HwgzWCGyMiAbs%3D", "fileSize": 161212, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jMhh88tfT7Foo74kviJUYS0LO06X8ujNsgs4zjCtfxM%3D", "fileSize": 537199, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/asset-613e623f-39ff-47b0-a34f-b89db44b3ea5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=B22QQnkqTjjxieNiidlDkoCvb2AKShnviBMhp1UXQx4%3D&__gda__=1522241341_99a7c86a07e65af9e776d983b1f66cd9", "fileSize": 12765388, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e86a4017-2b5c-4b66-a17c-8dae73508eb3", "state": "Published", "datePublished": "2016-08-09T03:39:48.3805891Z", "dateRecorded": "2016-08-09T03:18:32Z", "lastModified": "2016-08-09T03:39:48.3805891Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 52, "titleData": "", "systemProperties": "79a1a18b-c392-4a40-bf08-723ecf31ecda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bqISNzDAQwMEE6olJLYJ64SQtb4XSBzzlHvfTXp21nU%3D", "fileSize": 154434, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=t3zaSstRlE4c81HKEUVq9L82UN6Asmi736FkYNt%2BG3c%3D", "fileSize": 512870, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2016.xboxlive.com/asset-5d979e26-1d25-4dc4-9a4b-8000fc032bf8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=iAdCNYsb%2Bghu5sKgwnpuQWGA7Jqf7WYfLtc84w3Bln4%3D&__gda__=1522241341_34952263b16223002657f225a5d56dd2", "fileSize": 18767754, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "7fba1194-df21-4323-a7ff-09ba1a9dded6", "state": "Published", "datePublished": "2016-08-08T03:37:10.3575388Z", "dateRecorded": "2016-08-08T03:19:55Z", "lastModified": "2016-08-08T03:37:10.3575388Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 216, "titleData": "", "systemProperties": "bbb7cfd6-fb0c-4ed2-9974-fa01177c010f;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=k0sNPrezWKXsVmZ1eNCz8ZvTQRZrZ3n4bfloeB3ypp4%3D", "fileSize": 166819, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=URbCN3VxY1steXqHewu2%2BUG4sTk7JANIkWT%2FdSY2huA%3D", "fileSize": 570016, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-abc0f842-914d-4709-a66d-123e5a2dd7d8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d%2FHJXCBUcc4zNTevrfObV1ZpH7sU1mT%2BP5xkbT%2B%2FAXA%3D&__gda__=1522241341_215e279509e157968dbf7ee36bc1401f", "fileSize": 15282508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 40, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "7e50d8a9-bc52-4967-9384-b713d3931787", "state": "Published", "datePublished": "2016-08-08T03:22:24.2827731Z", "dateRecorded": "2016-08-08T03:04:47Z", "lastModified": "2016-08-08T03:22:24.2827731Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 71, "titleData": "", "systemProperties": "9055341b-54ac-42d0-b31b-bd470753b19b;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=70mm5JK2%2FiP9vLKEuY9fEgqoSSa5OOFIp871b%2FH415o%3D", "fileSize": 171718, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BFRz7wgiw7va1PQk%2FEImCxFxqfUO1gFAXmABybqFNXA%3D", "fileSize": 593941, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-0afe9baa-6ee2-4883-b90a-2bffcdfee2ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KlKI%2B2TqyaiDjCfq6Gm8Xk23PV%2BFzlIgvYQywOC2gsA%3D&__gda__=1522241341_7ffbd0e5772e9835ab441680eeed8078", "fileSize": 15680996, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 16, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6401f573-0ae3-42ba-869b-377318b731ff", "state": "Published", "datePublished": "2016-08-08T03:08:25.0722005Z", "dateRecorded": "2016-08-08T02:51:22Z", "lastModified": "2016-08-08T03:08:25.0722005Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 13, "titleData": "", "systemProperties": "65a00049-6ac7-4f84-9b55-a5706ae701ec;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hxr0EifANMZhx5XEPesfbkF6kWN76GBB55K1v%2B1j9sg%3D", "fileSize": 152500, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RiulfhLiZYIGnaXb2S88b1cKnUxV1eytschM8SPR%2BKY%3D", "fileSize": 503154, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=5Dhvrp5xlOSxh33XpFnhh8m58v3FRI5u%2FGE%2BLqElHf4%3D&__gda__=1522241341_67dbc0ab0d6e7ee3019b9773d2317d50", "fileSize": 17193811, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 6, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "8b13e76a-8e32-42b6-b2cf-174bc83650ac", "state": "Published", "datePublished": "2016-08-08T02:52:59.4242996Z", "dateRecorded": "2016-08-08T02:34:55Z", "lastModified": "2016-08-08T02:52:59.4242996Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 53, "titleData": "", "systemProperties": "8b5bba25-c164-41be-a28a-47482f1d4e00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WxzSRmVV9bUEtSQ6NQU64kMFVToEc3KalNODLxSZqzo%3D", "fileSize": 154456, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4GE3YR7O28kcjtW1gbKUUasq0yJNBomLi%2Fx%2BpkiTy10%3D", "fileSize": 518531, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-1c293367-009c-4fb4-9a8b-566422fb9a9f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ckQAYlzI8j4arc2xuLjKaL2%2BP6ZtSZQH0XeXFM5ZAho%3D&__gda__=1522241341_732637a3b3a0588615725c3b26985571", "fileSize": 14261457, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e0260327-3be0-48f2-85ca-e8d70aede88f", "state": "Published", "datePublished": "2016-08-08T02:32:51.6557428Z", "dateRecorded": "2016-08-08T02:16:02Z", "lastModified": "2016-08-08T02:32:51.6557428Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 36, "titleData": "", "systemProperties": "3cd1aedb-5311-401c-b4bd-91e64e9cd150;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Ad9z1AXF4zM1261YoveRCkvC%2BJqfwvFJKpy9fiNhc70%3D", "fileSize": 152626, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=FzYzRummUcnRbDHuk9bG9gidKSqbAJU6Ec1clh9BCrg%3D", "fileSize": 515025, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-ec4a13cf-6993-4323-8702-3c486551da1d/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2N8BbDwpNceGM2OWgbuvETPdjVQk%2F%2B%2FnVcBhjWsGJes%3D&__gda__=1522241341_5388e2403f26dd6f1c60f8a372b0e343", "fileSize": 18062502, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "60ef47c1-66e6-488c-a3a8-f4f8ce424d9e", "state": "Published", "datePublished": "2016-08-08T00:50:28.4566729Z", "dateRecorded": "2016-08-08T00:37:41Z", "lastModified": "2016-08-08T00:50:28.4566729Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 26, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 55, "titleData": "", "systemProperties": "d8417324-9c7a-4c29-9c7a-6ffaa3bc2055;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=cZRUKwOUsI5p3Jgu%2F4ZVrBY%2B63RQU5g12%2FxI9D4h08E%3D", "fileSize": 167717, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=SLYo7w%2FfVfBOxTTrUtBY2Kz0NLBunS3pyMEE%2BAgTy0A%3D", "fileSize": 583394, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-ceb4386b-b2df-43cb-83fd-90c146b0f4e0/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xqFYeQbxdfVOt%2F%2FYAnJ75SsV9AyKZ5qrHHMm0JQ%2BI%2Bo%3D&__gda__=1522241341_943d2049a106896d116e503105f68f96", "fileSize": 12427361, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "953f4bff-41fb-4dc1-9f86-7d6ae7b09460", "state": "Published", "datePublished": "2016-08-08T00:02:35.8017029Z", "dateRecorded": "2016-08-07T23:35:47Z", "lastModified": "2016-08-08T00:02:35.8017029Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 27, "titleData": "", "systemProperties": "260df3ab-a1f9-4964-b6cc-7d1bc449d2b4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4z5YKbZx2X6eC%2BnnVu5uRWew2vTrljJ7ZfpUh38NYwI%3D", "fileSize": 146135, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=oxpPcBxQqxZ1aU25kupeN4x9jT1xgdhZGRjwdTTUgs8%3D", "fileSize": 484198, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-577437f5-0c09-42aa-a884-b972fe485e5f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=DJiYWk9xqaa7vOy%2B6eGsnkaiR2cx4pm75O7ARER5PI0%3D&__gda__=1522241341_5f77d3926f4fcabccea548094d37888e", "fileSize": 15498840, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1fac6036-2a1c-46fe-b043-cd0eecb6a166", "state": "Published", "datePublished": "2016-08-07T23:48:02.9042951Z", "dateRecorded": "2016-08-07T23:31:53Z", "lastModified": "2016-08-07T23:48:02.9042951Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 35, "titleData": "", "systemProperties": "3a971619-4799-4581-b5d3-5d8e8a58c315;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0jfkhNBxTjixTJ0jJRnLDhTRrkCpAMuUJv3Noqcr%2Bqc%3D", "fileSize": 159452, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RHQlwOAZf%2BLyzbKQWLJcuhvsOf4rXffgBqZKCjFt3FI%3D", "fileSize": 540470, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-fdaa855c-4994-4499-ad34-a4fbba04e334/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Gj2lMWn%2B%2BFf5eOGcfeJfv4JWTv3GNzKgAucg4AxzY%2BI%3D&__gda__=1522241341_78e7297d5a55ea5cdb3a0fa123dded20", "fileSize": 15785332, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "91d38c25-035e-4fc6-9cc2-3b8e45af2476", "state": "Published", "datePublished": "2016-08-04T06:01:19.6199819Z", "dateRecorded": "2016-08-04T05:49:03Z", "lastModified": "2016-08-04T06:01:19.6199819Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 140, "titleData": "", "systemProperties": "44c2f550-5fa1-4e27-a59c-1e43134a4d47;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=7aPI94U9LtHU7YF%2B9EJHX33LSw%2BvLq%2FHdyJmZpCr6SE%3D", "fileSize": 132396, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2Boq1eN8WoHkXUdFa5YWaPJQSappxmqz1bJ7tiMR36%2Bo%3D", "fileSize": 434595, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3005.xboxlive.com/asset-380323f4-536b-4b1c-b5af-3fe7b518e329/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0rJYtD2ucdkNu%2F1SVDDrE8LvLoxOKj80SJ%2FPjQActtk%3D&__gda__=1522241341_3c01f15b573207d0b1228e8d06296119", "fileSize": 12053765, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e7ee4d33-5a97-42d9-a066-5cee0fea112d", "state": "Published", "datePublished": "2016-08-04T05:47:12.2956391Z", "dateRecorded": "2016-08-04T05:24:49Z", "lastModified": "2016-08-04T05:47:12.2956391Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 86, "titleData": "", "systemProperties": "14f64dd6-d70f-47df-94af-e524c15f0202;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ezCbrBYeazdtXxB%2FOaQK%2FONr2WWql8GxjtegLU5gX%2Bk%3D", "fileSize": 133247, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=9zlNVtdMeMbx7SA%2BSRlikXB9k%2FEtmvbN5BfkhguqkP4%3D", "fileSize": 433869, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3009.xboxlive.com/asset-1e73012c-3b38-407f-8d6e-6762e00924ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=prBJMsHP1m3PqKxK1zmSXV35bT22nUgKXLWrpq%2FLFRU%3D&__gda__=1522241341_961c28b2f072b40238d158159f5f9f3d", "fileSize": 12083445, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5f9623b9-0e84-4165-a585-5a8fe8b00929", "state": "Published", "datePublished": "2016-08-04T05:13:51.551794Z", "dateRecorded": "2016-08-04T04:41:34Z", "lastModified": "2016-08-04T05:13:51.551794Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 190, "titleData": "", "systemProperties": "693a8749-69ba-4f51-b42d-1bb8e6cbab96;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lMrzKRSRlPZpCql4C4AzVba%2BciSU9teisSdW3vT0XB8%3D", "fileSize": 155502, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bemOyyFRKPpMmaURA9MlMhcW7hR%2BtLkBhWb1SmqUSG0%3D", "fileSize": 516829, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2012.xboxlive.com/asset-6859aa8c-98ba-4ba8-a988-f8da9d93fae8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=HOs8oga%2FdkwdJSRjUcikECA7giprOP0MOlQuNl7n3Zo%3D&__gda__=1522241341_645d86be00ba8e8b27122b51b0bf29d7", "fileSize": 19094508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 26, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "37b675eb-b32c-43d7-b619-854af17a6d9a", "state": "Published", "datePublished": "2016-07-30T07:19:39.4368105Z", "dateRecorded": "2016-07-30T07:18:14Z", "lastModified": "2016-07-30T07:19:39.4368105Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 139, "titleData": "", "systemProperties": "2ace08e2-52d6-44b1-9bca-d6486323edaf;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=UoaeQjPS7PMkPrr3w8duqNq0Dos7x1iO%2BpJe%2F3Q%2BZCo%3D", "fileSize": 147176, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Kug%2FDkZJZioQr3kFWH1DPMr2qzCZWTfHGxpllZPmvl8%3D", "fileSize": 482960, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-f7478f4b-dca5-4fd1-b5d1-58dd34ff1b8c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3jaH5chqv5bgn5wma4NwYzR5No4GAbthS0DqN5fHCXI%3D&__gda__=1522241341_07807f7be87deab7c55804ecdf4e8586", "fileSize": 9808014, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 22, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f82d75db-465f-4f66-a514-a632364cb267", "state": "Published", "datePublished": "2016-07-28T06:53:57.9008157Z", "dateRecorded": "2016-07-28T06:52:41Z", "lastModified": "2016-07-28T06:53:57.9008157Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 197, "titleData": "", "systemProperties": "491dd431-2dbd-449d-99e1-e79da89a3663;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WlYi5a75scTDNzWQhFG8U1%2BOffTwxZD%2BWaNfDYqw64M%3D", "fileSize": 125344, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lesaHjOmw78tpf4D%2BXJrwC3%2F3ZMbYWBq7frDZZmOujI%3D", "fileSize": 407877, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-1e6ca1fb-682f-4846-9956-0c5afe1d9968/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BLrvPsGfmImgfrnkDQWQjWtv2%2BJmRZ8wSSooCOwA3PM%3D&__gda__=1522241341_38241379eceb359adf264add95ac80af", "fileSize": 13259227, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 8, "likeCount": 32, "shareCount": 0, "partialViews": 0 } ], "pagingInfo": { "continuationToken": "abcde_vwxyzGQAAAA2" } }python-xbox-webapi-2.1.0/tests/data/responses/gameclips_recent_xuid_titleid.json000066400000000000000000001452151465040003600303260ustar00rootroot00000000000000{ "gameClips": [ { "gameClipId": "44b7e94d-b3e9-4b97-be73-417be9091e93", "state": "Published", "datePublished": "2017-11-10T07:12:27.4353527Z", "dateRecorded": "2017-11-10T06:29:39Z", "lastModified": "2017-11-10T07:12:27.4353527Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 822567888, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "6a7e1238-2f7b-4c66-835e-c7c799e310490;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3017.xboxlive.com/xuid-2669321029139235-private/44b7e94d-b3e9-4b97-be73-417be9091e93.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lRkjf6USrukD5PCVp3PonFdwX5fD%2FmuLPWpRkIS2ydw%3D&__gda__=1522241341_d651111247d5ca9c1bb8b9244a8cd361", "fileSize": 43595475, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Danger Zone", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 2, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f87cc6ac-c291-4998-9124-d8b36c059b6a", "state": "Published", "datePublished": "2016-08-16T05:51:40.1354298Z", "dateRecorded": "2016-08-16T05:40:30Z", "lastModified": "2016-08-16T05:51:40.1354298Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 653, "titleData": "", "systemProperties": "56d4ac4e-efcd-4808-8d53-7583859558a4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ikXCzETBJSBPvS8W%2FxoWTCJL%2FGY6PxKpQ0VG6qktnCQ%3D", "fileSize": 159667, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=y1S%2BxzFVrgmTql2ZuYDpe6EtL5Jxu%2BhBVMnb%2Ff7ZTMA%3D", "fileSize": 522262, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-d5448dbd-f45e-46ab-ae4e-a2e205a70e7c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ArSoLvy9EnQeBthGW6%2FbasedHHk0Jb6iXjI3EMq8oh8%3D&__gda__=1522241341_69f67a7a3533626ae90b52845664dc0c", "fileSize": 12662239, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 5, "likeCount": 62, "shareCount": 2, "partialViews": 0 }, { "gameClipId": "bebd3d48-6622-4339-8e28-794d1b1a2755", "state": "Published", "datePublished": "2016-08-15T06:25:58.1253078Z", "dateRecorded": "2016-08-15T06:15:51Z", "lastModified": "2016-08-15T06:25:58.1253078Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 419, "titleData": "", "systemProperties": "caa87cc1-29aa-4278-9c89-8d8e9878d572;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BKiArrxRSTuFgIC2U9zL11fcGTqyg5QN7IE13fGfb9Y%3D", "fileSize": 169327, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FvDgQcOqGiXUNNEJ%2BLI0FSh4k0IPOfOSrnYmLWXDEBE%3D", "fileSize": 560631, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-89737fe6-5b03-48f5-8ed3-e98555005708/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=D%2Bigy01bwJhig0IBR1PeddcG3jjbnRY7pVMajeGn8ow%3D&__gda__=1522241341_a7fc62384a631bab79fdd05bcdea55bd", "fileSize": 10955394, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 4, "likeCount": 44, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "80194c67-aa0e-4fc9-a7c9-a072eab6a58c", "state": "Published", "datePublished": "2016-08-15T06:16:35.5632265Z", "dateRecorded": "2016-08-15T06:05:31Z", "lastModified": "2016-08-15T06:16:35.5632265Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 146, "titleData": "", "systemProperties": "2f17ddff-10a1-4571-99d6-aeb6fdee1dda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ggh%2B98ziFOWYtFhkLqWi48oJYbwVunXmlbIkIv1LgIs%3D", "fileSize": 141131, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jHSNBytHUluIfePVBL4ONfY3%2F6ro1Lf%2BCGvYukP0%2Bs4%3D", "fileSize": 461383, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-d64cdc9c-ffc2-4811-a673-36523755755c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d8uSVktAu5ivZUJiPHchDbnrJOuU07%2BPBI2V%2BzkC2aU%3D&__gda__=1522241341_883b80fa63d862fd6159f12c2f3f5cc5", "fileSize": 12403813, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 25, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "daf3defb-d6fd-46a0-bcf2-ac732f4473e2", "state": "Published", "datePublished": "2016-08-13T04:31:49.242885Z", "dateRecorded": "2016-08-13T04:19:16Z", "lastModified": "2016-08-13T04:31:49.242885Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 281, "titleData": "", "systemProperties": "16481f6e-3d56-4714-ae19-703e697c8670;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xas0uCgwzYT5jdcGFfUQwWEOsdIh%2F706Tg4n0LhMQ9A%3D", "fileSize": 123085, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xeuTHzaM31N0uuwAxIE8tQAw8q%2FCHT6PeIrEFIaOamc%3D", "fileSize": 384234, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3007.xboxlive.com/asset-acc33ad2-2bea-46f8-8adc-6edf5227ac4a/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YCQSnIj5R5%2F%2BU3gxFYTgMOKbeAFnl7BvIOva%2BvnCCtQ%3D&__gda__=1522241341_443a14b9a121c06c710aac5f5f63d63e", "fileSize": 14350846, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 42, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1d64fe91-fe19-4f57-956e-1bb80fdcc063", "state": "Published", "datePublished": "2016-08-11T05:40:29.0010865Z", "dateRecorded": "2016-08-11T05:29:32Z", "lastModified": "2016-08-11T05:40:29.0010865Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 287, "titleData": "", "systemProperties": "0342eaea-9d89-4fb4-9d52-38f793085b22;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=mvfJLhmi3olAfpCxhEP6gkBwUJnB%2F%2Bfxiw1tVqBN2Pc%3D", "fileSize": 134312, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ZRdKvsr%2FUYSaIkVYNejY189sdwDgE2%2Fuvnr324%2B3MUg%3D", "fileSize": 426344, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-1a39ee9b-144a-4853-92fd-ee56387c7e1b/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=eiGxxQmHfBmgmEegsMGVFvq1%2F2jKB5MiMzOZXz4oEEw%3D&__gda__=1522241341_88e19c05fbd0b55d119e6ee4a5b50063", "fileSize": 12778757, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "398cbdf8-d2f9-4168-9bb0-3c59026800c7", "state": "Published", "datePublished": "2016-08-11T05:27:48.0234102Z", "dateRecorded": "2016-08-11T05:16:39Z", "lastModified": "2016-08-11T05:27:48.0234102Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 230, "titleData": "", "systemProperties": "a56efca9-73f5-46b4-a283-679586fb0733;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=utb0HiFqx7uEcbFSWf7yqZbgL4I5UAVTA9V2a8ppNlQ%3D", "fileSize": 145313, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3XB1gVdVHl3pyp2qR0BDg8SKOnCKqDXNZTSfQP1ctY8%3D", "fileSize": 466863, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-fab2d578-274e-4064-994c-e4dc834a107c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KmozXFmFYAGbgcGa7tZTWYQvOhTyqz%2B2Zldcx2DB4y8%3D&__gda__=1522241341_818f541effb04b1cf9fe5e6ebfb67758", "fileSize": 12402917, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "0fa0e046-14cd-49ff-937b-58730794595f", "state": "Published", "datePublished": "2016-08-09T06:46:55.4540818Z", "dateRecorded": "2016-08-09T06:33:10Z", "lastModified": "2016-08-09T06:46:55.4540818Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 196, "titleData": "", "systemProperties": "a17f3202-0b15-48b1-a3e4-96410a9fcdfb;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hoPVefXwbyXE2dn67KuXXx5g0iDTKhhychX%2FCsyVC%2BM%3D", "fileSize": 130661, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=8MAv2%2BMGkOidM4lyYnWys8Gm1FELuXn3IdAGONl8c1M%3D", "fileSize": 425362, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2020.xboxlive.com/asset-85df25eb-6e42-4aa0-aee2-454d70959ffa/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TWTiWz5QwtP67bY%2B5faKO1sCX8KJARTWO%2BjI6O6DhZc%3D&__gda__=1522241341_04875fe9bd70cd0f8b6a4a855b25039f", "fileSize": 15876835, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 33, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1606ffb0-00eb-41f5-bcdb-57ca48c45ae6", "state": "Published", "datePublished": "2016-08-09T06:20:06.8042651Z", "dateRecorded": "2016-08-09T06:11:00Z", "lastModified": "2016-08-09T06:20:06.8042651Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 107, "titleData": "", "systemProperties": "e9d641d4-ea1b-4358-8a52-c93bd80dd49d;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=sCN2DyIxC%2F7Gcm%2Fxf7BN6xCe6MEO6wSUXb9%2FhTT8Y6Y%3D", "fileSize": 143356, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=pf1gVCXGh5qscXwVZxqndRYlc1E7PiBmtv9BEWmpvz4%3D", "fileSize": 461094, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2017.xboxlive.com/asset-43c97401-fba6-4a1d-a09a-0ee24b085bf5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FSqjTHlmNKWn%2BJSGsTyMNtvugP0BxhL82IXjltQipro%3D&__gda__=1522241341_8b36e029ca5d362a3d09f5bab59c29e4", "fileSize": 10103719, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 30, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "04438e58-6133-4ef1-a1d1-2bb45d43ac1f", "state": "Published", "datePublished": "2016-08-09T04:39:43.3295887Z", "dateRecorded": "2016-08-09T04:28:11Z", "lastModified": "2016-08-09T04:39:43.3295887Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 69, "titleData": "", "systemProperties": "5b6347fd-d734-4219-8352-a90383ae44cd;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=NcUBNyJ8yzB50BuCzIucomCdCfWNu3rh1lB0Ne5W5Wo%3D", "fileSize": 846, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bYQkHKTrBqGP86%2FS95vTHaIMNVG0U%2Fla5oEsa6r8ETI%3D", "fileSize": 2291, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-65f40239-4630-4fd0-97bf-54aadda75681/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=QY3s%2FyCRcOR6LjTvRzwYmsWw4rQ9BnrXWD8bznxFOQM%3D&__gda__=1522241341_99219717ce015dda404f54f3f98b8cca", "fileSize": 13602524, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "07f057bc-2900-47ca-b9e5-d479125d4800", "state": "Published", "datePublished": "2016-08-09T03:50:38.4155978Z", "dateRecorded": "2016-08-09T03:27:25Z", "lastModified": "2016-08-09T03:50:38.4155978Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "b167a364-e132-4ae3-afc1-cea139389028;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YcLHYMC6GBMtfrWXBn51mCyyD%2FIs09HwgzWCGyMiAbs%3D", "fileSize": 161212, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jMhh88tfT7Foo74kviJUYS0LO06X8ujNsgs4zjCtfxM%3D", "fileSize": 537199, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/asset-613e623f-39ff-47b0-a34f-b89db44b3ea5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=B22QQnkqTjjxieNiidlDkoCvb2AKShnviBMhp1UXQx4%3D&__gda__=1522241341_99a7c86a07e65af9e776d983b1f66cd9", "fileSize": 12765388, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e86a4017-2b5c-4b66-a17c-8dae73508eb3", "state": "Published", "datePublished": "2016-08-09T03:39:48.3805891Z", "dateRecorded": "2016-08-09T03:18:32Z", "lastModified": "2016-08-09T03:39:48.3805891Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 52, "titleData": "", "systemProperties": "79a1a18b-c392-4a40-bf08-723ecf31ecda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bqISNzDAQwMEE6olJLYJ64SQtb4XSBzzlHvfTXp21nU%3D", "fileSize": 154434, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=t3zaSstRlE4c81HKEUVq9L82UN6Asmi736FkYNt%2BG3c%3D", "fileSize": 512870, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2016.xboxlive.com/asset-5d979e26-1d25-4dc4-9a4b-8000fc032bf8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=iAdCNYsb%2Bghu5sKgwnpuQWGA7Jqf7WYfLtc84w3Bln4%3D&__gda__=1522241341_34952263b16223002657f225a5d56dd2", "fileSize": 18767754, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "7fba1194-df21-4323-a7ff-09ba1a9dded6", "state": "Published", "datePublished": "2016-08-08T03:37:10.3575388Z", "dateRecorded": "2016-08-08T03:19:55Z", "lastModified": "2016-08-08T03:37:10.3575388Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 216, "titleData": "", "systemProperties": "bbb7cfd6-fb0c-4ed2-9974-fa01177c010f;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=k0sNPrezWKXsVmZ1eNCz8ZvTQRZrZ3n4bfloeB3ypp4%3D", "fileSize": 166819, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=URbCN3VxY1steXqHewu2%2BUG4sTk7JANIkWT%2FdSY2huA%3D", "fileSize": 570016, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-abc0f842-914d-4709-a66d-123e5a2dd7d8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d%2FHJXCBUcc4zNTevrfObV1ZpH7sU1mT%2BP5xkbT%2B%2FAXA%3D&__gda__=1522241341_215e279509e157968dbf7ee36bc1401f", "fileSize": 15282508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 40, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "7e50d8a9-bc52-4967-9384-b713d3931787", "state": "Published", "datePublished": "2016-08-08T03:22:24.2827731Z", "dateRecorded": "2016-08-08T03:04:47Z", "lastModified": "2016-08-08T03:22:24.2827731Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 71, "titleData": "", "systemProperties": "9055341b-54ac-42d0-b31b-bd470753b19b;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=70mm5JK2%2FiP9vLKEuY9fEgqoSSa5OOFIp871b%2FH415o%3D", "fileSize": 171718, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BFRz7wgiw7va1PQk%2FEImCxFxqfUO1gFAXmABybqFNXA%3D", "fileSize": 593941, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-0afe9baa-6ee2-4883-b90a-2bffcdfee2ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KlKI%2B2TqyaiDjCfq6Gm8Xk23PV%2BFzlIgvYQywOC2gsA%3D&__gda__=1522241341_7ffbd0e5772e9835ab441680eeed8078", "fileSize": 15680996, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 16, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6401f573-0ae3-42ba-869b-377318b731ff", "state": "Published", "datePublished": "2016-08-08T03:08:25.0722005Z", "dateRecorded": "2016-08-08T02:51:22Z", "lastModified": "2016-08-08T03:08:25.0722005Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 13, "titleData": "", "systemProperties": "65a00049-6ac7-4f84-9b55-a5706ae701ec;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hxr0EifANMZhx5XEPesfbkF6kWN76GBB55K1v%2B1j9sg%3D", "fileSize": 152500, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RiulfhLiZYIGnaXb2S88b1cKnUxV1eytschM8SPR%2BKY%3D", "fileSize": 503154, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=5Dhvrp5xlOSxh33XpFnhh8m58v3FRI5u%2FGE%2BLqElHf4%3D&__gda__=1522241341_67dbc0ab0d6e7ee3019b9773d2317d50", "fileSize": 17193811, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 6, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "8b13e76a-8e32-42b6-b2cf-174bc83650ac", "state": "Published", "datePublished": "2016-08-08T02:52:59.4242996Z", "dateRecorded": "2016-08-08T02:34:55Z", "lastModified": "2016-08-08T02:52:59.4242996Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 53, "titleData": "", "systemProperties": "8b5bba25-c164-41be-a28a-47482f1d4e00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WxzSRmVV9bUEtSQ6NQU64kMFVToEc3KalNODLxSZqzo%3D", "fileSize": 154456, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4GE3YR7O28kcjtW1gbKUUasq0yJNBomLi%2Fx%2BpkiTy10%3D", "fileSize": 518531, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-1c293367-009c-4fb4-9a8b-566422fb9a9f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ckQAYlzI8j4arc2xuLjKaL2%2BP6ZtSZQH0XeXFM5ZAho%3D&__gda__=1522241341_732637a3b3a0588615725c3b26985571", "fileSize": 14261457, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e0260327-3be0-48f2-85ca-e8d70aede88f", "state": "Published", "datePublished": "2016-08-08T02:32:51.6557428Z", "dateRecorded": "2016-08-08T02:16:02Z", "lastModified": "2016-08-08T02:32:51.6557428Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 36, "titleData": "", "systemProperties": "3cd1aedb-5311-401c-b4bd-91e64e9cd150;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Ad9z1AXF4zM1261YoveRCkvC%2BJqfwvFJKpy9fiNhc70%3D", "fileSize": 152626, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=FzYzRummUcnRbDHuk9bG9gidKSqbAJU6Ec1clh9BCrg%3D", "fileSize": 515025, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-ec4a13cf-6993-4323-8702-3c486551da1d/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2N8BbDwpNceGM2OWgbuvETPdjVQk%2F%2B%2FnVcBhjWsGJes%3D&__gda__=1522241341_5388e2403f26dd6f1c60f8a372b0e343", "fileSize": 18062502, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "60ef47c1-66e6-488c-a3a8-f4f8ce424d9e", "state": "Published", "datePublished": "2016-08-08T00:50:28.4566729Z", "dateRecorded": "2016-08-08T00:37:41Z", "lastModified": "2016-08-08T00:50:28.4566729Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 26, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 55, "titleData": "", "systemProperties": "d8417324-9c7a-4c29-9c7a-6ffaa3bc2055;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=cZRUKwOUsI5p3Jgu%2F4ZVrBY%2B63RQU5g12%2FxI9D4h08E%3D", "fileSize": 167717, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=SLYo7w%2FfVfBOxTTrUtBY2Kz0NLBunS3pyMEE%2BAgTy0A%3D", "fileSize": 583394, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-ceb4386b-b2df-43cb-83fd-90c146b0f4e0/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xqFYeQbxdfVOt%2F%2FYAnJ75SsV9AyKZ5qrHHMm0JQ%2BI%2Bo%3D&__gda__=1522241341_943d2049a106896d116e503105f68f96", "fileSize": 12427361, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "953f4bff-41fb-4dc1-9f86-7d6ae7b09460", "state": "Published", "datePublished": "2016-08-08T00:02:35.8017029Z", "dateRecorded": "2016-08-07T23:35:47Z", "lastModified": "2016-08-08T00:02:35.8017029Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 27, "titleData": "", "systemProperties": "260df3ab-a1f9-4964-b6cc-7d1bc449d2b4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4z5YKbZx2X6eC%2BnnVu5uRWew2vTrljJ7ZfpUh38NYwI%3D", "fileSize": 146135, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=oxpPcBxQqxZ1aU25kupeN4x9jT1xgdhZGRjwdTTUgs8%3D", "fileSize": 484198, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-577437f5-0c09-42aa-a884-b972fe485e5f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=DJiYWk9xqaa7vOy%2B6eGsnkaiR2cx4pm75O7ARER5PI0%3D&__gda__=1522241341_5f77d3926f4fcabccea548094d37888e", "fileSize": 15498840, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1fac6036-2a1c-46fe-b043-cd0eecb6a166", "state": "Published", "datePublished": "2016-08-07T23:48:02.9042951Z", "dateRecorded": "2016-08-07T23:31:53Z", "lastModified": "2016-08-07T23:48:02.9042951Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 35, "titleData": "", "systemProperties": "3a971619-4799-4581-b5d3-5d8e8a58c315;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0jfkhNBxTjixTJ0jJRnLDhTRrkCpAMuUJv3Noqcr%2Bqc%3D", "fileSize": 159452, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RHQlwOAZf%2BLyzbKQWLJcuhvsOf4rXffgBqZKCjFt3FI%3D", "fileSize": 540470, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-fdaa855c-4994-4499-ad34-a4fbba04e334/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Gj2lMWn%2B%2BFf5eOGcfeJfv4JWTv3GNzKgAucg4AxzY%2BI%3D&__gda__=1522241341_78e7297d5a55ea5cdb3a0fa123dded20", "fileSize": 15785332, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "91d38c25-035e-4fc6-9cc2-3b8e45af2476", "state": "Published", "datePublished": "2016-08-04T06:01:19.6199819Z", "dateRecorded": "2016-08-04T05:49:03Z", "lastModified": "2016-08-04T06:01:19.6199819Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 140, "titleData": "", "systemProperties": "44c2f550-5fa1-4e27-a59c-1e43134a4d47;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=7aPI94U9LtHU7YF%2B9EJHX33LSw%2BvLq%2FHdyJmZpCr6SE%3D", "fileSize": 132396, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2Boq1eN8WoHkXUdFa5YWaPJQSappxmqz1bJ7tiMR36%2Bo%3D", "fileSize": 434595, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3005.xboxlive.com/asset-380323f4-536b-4b1c-b5af-3fe7b518e329/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0rJYtD2ucdkNu%2F1SVDDrE8LvLoxOKj80SJ%2FPjQActtk%3D&__gda__=1522241341_3c01f15b573207d0b1228e8d06296119", "fileSize": 12053765, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e7ee4d33-5a97-42d9-a066-5cee0fea112d", "state": "Published", "datePublished": "2016-08-04T05:47:12.2956391Z", "dateRecorded": "2016-08-04T05:24:49Z", "lastModified": "2016-08-04T05:47:12.2956391Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 86, "titleData": "", "systemProperties": "14f64dd6-d70f-47df-94af-e524c15f0202;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ezCbrBYeazdtXxB%2FOaQK%2FONr2WWql8GxjtegLU5gX%2Bk%3D", "fileSize": 133247, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=9zlNVtdMeMbx7SA%2BSRlikXB9k%2FEtmvbN5BfkhguqkP4%3D", "fileSize": 433869, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3009.xboxlive.com/asset-1e73012c-3b38-407f-8d6e-6762e00924ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=prBJMsHP1m3PqKxK1zmSXV35bT22nUgKXLWrpq%2FLFRU%3D&__gda__=1522241341_961c28b2f072b40238d158159f5f9f3d", "fileSize": 12083445, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5f9623b9-0e84-4165-a585-5a8fe8b00929", "state": "Published", "datePublished": "2016-08-04T05:13:51.551794Z", "dateRecorded": "2016-08-04T04:41:34Z", "lastModified": "2016-08-04T05:13:51.551794Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 190, "titleData": "", "systemProperties": "693a8749-69ba-4f51-b42d-1bb8e6cbab96;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lMrzKRSRlPZpCql4C4AzVba%2BciSU9teisSdW3vT0XB8%3D", "fileSize": 155502, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bemOyyFRKPpMmaURA9MlMhcW7hR%2BtLkBhWb1SmqUSG0%3D", "fileSize": 516829, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2012.xboxlive.com/asset-6859aa8c-98ba-4ba8-a988-f8da9d93fae8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=HOs8oga%2FdkwdJSRjUcikECA7giprOP0MOlQuNl7n3Zo%3D&__gda__=1522241341_645d86be00ba8e8b27122b51b0bf29d7", "fileSize": 19094508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 26, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "37b675eb-b32c-43d7-b619-854af17a6d9a", "state": "Published", "datePublished": "2016-07-30T07:19:39.4368105Z", "dateRecorded": "2016-07-30T07:18:14Z", "lastModified": "2016-07-30T07:19:39.4368105Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 139, "titleData": "", "systemProperties": "2ace08e2-52d6-44b1-9bca-d6486323edaf;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=UoaeQjPS7PMkPrr3w8duqNq0Dos7x1iO%2BpJe%2F3Q%2BZCo%3D", "fileSize": 147176, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Kug%2FDkZJZioQr3kFWH1DPMr2qzCZWTfHGxpllZPmvl8%3D", "fileSize": 482960, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-f7478f4b-dca5-4fd1-b5d1-58dd34ff1b8c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3jaH5chqv5bgn5wma4NwYzR5No4GAbthS0DqN5fHCXI%3D&__gda__=1522241341_07807f7be87deab7c55804ecdf4e8586", "fileSize": 9808014, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 22, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f82d75db-465f-4f66-a514-a632364cb267", "state": "Published", "datePublished": "2016-07-28T06:53:57.9008157Z", "dateRecorded": "2016-07-28T06:52:41Z", "lastModified": "2016-07-28T06:53:57.9008157Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 197, "titleData": "", "systemProperties": "491dd431-2dbd-449d-99e1-e79da89a3663;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WlYi5a75scTDNzWQhFG8U1%2BOffTwxZD%2BWaNfDYqw64M%3D", "fileSize": 125344, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lesaHjOmw78tpf4D%2BXJrwC3%2F3ZMbYWBq7frDZZmOujI%3D", "fileSize": 407877, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-1e6ca1fb-682f-4846-9956-0c5afe1d9968/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BLrvPsGfmImgfrnkDQWQjWtv2%2BJmRZ8wSSooCOwA3PM%3D&__gda__=1522241341_38241379eceb359adf264add95ac80af", "fileSize": 13259227, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 8, "likeCount": 32, "shareCount": 0, "partialViews": 0 } ], "pagingInfo": { "continuationToken": "abcde_vwxyzGQAAAA2" } }python-xbox-webapi-2.1.0/tests/data/responses/gameclips_saved_community.json000066400000000000000000005526061465040003600275130ustar00rootroot00000000000000{ "gameClips": [ { "gameClipId": "0a41be34-e8c0-411c-819b-7ce8fbb9b22a", "state": "Published", "datePublished": "2018-03-28T11:48:58.486421Z", "dateRecorded": "2018-03-28T11:33:23Z", "lastModified": "2018-03-28T11:48:58.486421Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "29667b8d-def2-455e-8a8a-7c6ecb6d9c3b0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3001.xboxlive.com/xuid-2535435578204478-public/0a41be34-e8c0-411c-819b-7ce8fbb9b22a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3001.xboxlive.com/xuid-2535435578204478-public/0a41be34-e8c0-411c-819b-7ce8fbb9b22a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3001.xboxlive.com/xuid-2535435578204478-private/0a41be34-e8c0-411c-819b-7ce8fbb9b22a.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Mj5xR%2FfYdLekvX84dZOAuZ9q7MbZhl%2FUEviMUCfZLc0%3D&__gda__=1522241343_6a1062922633426971b798195856dac6", "fileSize": 53116833, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535435578204478", "clipName": "", "titleName": "System", "gameClipLocale": "en-NZ", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "de1a919a-64ad-4ebb-ae54-6a35bb0e7591", "state": "Published", "datePublished": "2018-03-28T11:48:31.2552634Z", "dateRecorded": "2018-03-28T11:29:34Z", "lastModified": "2018-03-28T11:48:31.2552634Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "1b296fd3-a1a2-4e6d-a081-6fb133312caa0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3025.xboxlive.com/xuid-2533274983109787-public/de1a919a-64ad-4ebb-ae54-6a35bb0e7591_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3025.xboxlive.com/xuid-2533274983109787-public/de1a919a-64ad-4ebb-ae54-6a35bb0e7591_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3025.xboxlive.com/xuid-2533274983109787-private/de1a919a-64ad-4ebb-ae54-6a35bb0e7591.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=AfcHeo0D0lknsQ6e3awvbOzINflH7CAyvvzzC%2Bb55JE%3D&__gda__=1522241343_cd0d51dba9294283a864aee448f392e0", "fileSize": 21763716, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274983109787", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "3334452e-7937-4095-9423-5d51cc975eb4", "state": "Published", "datePublished": "2018-03-28T11:48:20.8723466Z", "dateRecorded": "2018-03-28T11:45:07Z", "lastModified": "2018-03-28T11:48:20.8723466Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "00662419-7ce7-49ab-a358-5c60f07c04fd0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535437576382525-public/3334452e-7937-4095-9423-5d51cc975eb4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535437576382525-public/3334452e-7937-4095-9423-5d51cc975eb4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3024.xboxlive.com/xuid-2535437576382525-private/3334452e-7937-4095-9423-5d51cc975eb4.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2Bx83rZo4S8xld6sYe3FjkUmwWCeCSjPfoxxmMUSBqo0%3D&__gda__=1522241343_7e7cc79bdfeaf7dd1a487d655e7908ec", "fileSize": 24647761, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535437576382525", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5c2edfc5-dd03-4905-833b-03659fe39c26", "state": "Published", "datePublished": "2018-03-28T11:48:14.0518003Z", "dateRecorded": "2018-03-28T11:07:09Z", "lastModified": "2018-03-28T11:48:14.0518003Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "722c0c6c-184c-44bf-ae79-7ff222d9127e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2002.xboxlive.com/xuid-2533274877845060-public/5c2edfc5-dd03-4905-833b-03659fe39c26_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2002.xboxlive.com/xuid-2533274877845060-public/5c2edfc5-dd03-4905-833b-03659fe39c26_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2002.xboxlive.com/xuid-2533274877845060-private/5c2edfc5-dd03-4905-833b-03659fe39c26.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xVOa7N2qK7II7fWV%2Fvn%2F%2Bu%2BUVkOsXwJ55sbDtmt%2B18c%3D&__gda__=1522241343_1744b566e8ec00febf48adcd4a257fac", "fileSize": 47579955, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274877845060", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "a9d15c0f-e699-4d5b-8829-3bf98feda797", "state": "Published", "datePublished": "2018-03-28T11:48:10.4236621Z", "dateRecorded": "2018-03-28T10:55:33Z", "lastModified": "2018-03-28T11:48:10.4236621Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "9e39daa9-3bb9-47ba-b223-ecf347c84f1e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2004.xboxlive.com/xuid-2535410564295910-public/a9d15c0f-e699-4d5b-8829-3bf98feda797_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2004.xboxlive.com/xuid-2535410564295910-public/a9d15c0f-e699-4d5b-8829-3bf98feda797_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2004.xboxlive.com/xuid-2535410564295910-private/a9d15c0f-e699-4d5b-8829-3bf98feda797.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3l1f26bAn4SVsUOQ9dlCVQNWSuBBsjg9nEdiWALmxEA%3D&__gda__=1522241343_7aeef5feff5d84b7c8fb648089de2b46", "fileSize": 23848326, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "96475f08-3df2-4c17-aed8-7b9e2c84b7db", "state": "Published", "datePublished": "2018-03-28T11:47:04.9077806Z", "dateRecorded": "2018-03-28T10:54:05Z", "lastModified": "2018-03-28T11:47:04.9077806Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "efc81765-2724-45b2-8c7a-15d2bf74d1e00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535410564295910-public/96475f08-3df2-4c17-aed8-7b9e2c84b7db_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535410564295910-public/96475f08-3df2-4c17-aed8-7b9e2c84b7db_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3012.xboxlive.com/xuid-2535410564295910-private/96475f08-3df2-4c17-aed8-7b9e2c84b7db.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hA51ZG2vKyNxGqL2eDCXg0ikymS3PB%2BtKbGyPmh%2BZqc%3D&__gda__=1522241343_29a2d4fc0086e5e7164c2603668e4623", "fileSize": 24388085, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "86a12cd7-493c-4c0b-a85d-8d6d06044ccc", "state": "Published", "datePublished": "2018-03-28T11:46:47.0924342Z", "dateRecorded": "2018-03-28T09:36:16Z", "lastModified": "2018-03-28T11:46:47.0924342Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 57, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "b9ca499d-77d3-4bd8-8e78-8fa97ec34e4e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2012.xboxlive.com/xuid-2533274829848710-public/86a12cd7-493c-4c0b-a85d-8d6d06044ccc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2012.xboxlive.com/xuid-2533274829848710-public/86a12cd7-493c-4c0b-a85d-8d6d06044ccc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2012.xboxlive.com/xuid-2533274829848710-private/86a12cd7-493c-4c0b-a85d-8d6d06044ccc.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=fl%2B39WRGDFuYgoyvuksyPEnknxIE%2FKzwUYyjkg8EAak%3D&__gda__=1522241343_19d97621f4a741afb9d1371d42ef29ec", "fileSize": 41266438, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274829848710", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "234597e3-9367-45f1-9c0f-37a15d5952e3", "state": "Published", "datePublished": "2018-03-28T11:46:37.6233502Z", "dateRecorded": "2018-03-28T11:33:55Z", "lastModified": "2018-03-28T11:46:37.6233502Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d2cbe992-f8e0-4200-993f-6f9397a2609a0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3001.xboxlive.com/xuid-2533274904138652-public/234597e3-9367-45f1-9c0f-37a15d5952e3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3001.xboxlive.com/xuid-2533274904138652-public/234597e3-9367-45f1-9c0f-37a15d5952e3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3001.xboxlive.com/xuid-2533274904138652-private/234597e3-9367-45f1-9c0f-37a15d5952e3.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0l6MFypkgX8QHgH7FxPuabBjEQ%2FALLK4vckBwR3e0dQ%3D&__gda__=1522241343_42d9a942840e415c6117abcd1e054c9b", "fileSize": 24354892, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274904138652", "clipName": "", "titleName": "System", "gameClipLocale": "it-IT", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6c58a8fa-2f8e-4bc7-b57f-8da5d59308b9", "state": "Published", "datePublished": "2018-03-28T11:46:24.9724773Z", "dateRecorded": "2018-03-28T11:46:13Z", "lastModified": "2018-03-28T11:46:24.9724773Z", "userCaption": "H5 TS Extermination", "type": "UserGenerated", "durationInSeconds": 17, "scid": "03a80100-9ff3-46ea-be76-e00e7fe465df", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "31359f9f-95b9-41d2-a258-e432473a3d90;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2535432257769214-public/6c58a8fa-2f8e-4bc7-b57f-8da5d59308b9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2535432257769214-public/6c58a8fa-2f8e-4bc7-b57f-8da5d59308b9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3013.xboxlive.com/xuid-2535432257769214-private/6c58a8fa-2f8e-4bc7-b57f-8da5d59308b9.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=7O%2FkRpocqiv1ePmmuqmxbCKn0rys0616%2F6U4U%2FpGNyA%3D&__gda__=1522241343_b50fe7c3aae8842139f0ccf1db4c7a9e", "fileSize": 9061373, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535432257769214", "clipName": "", "titleName": "Upload Studio", "gameClipLocale": "en-CA", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5f2be533-0833-4cd3-b6b2-1356149cb268", "state": "Published", "datePublished": "2018-03-28T11:45:57.3661164Z", "dateRecorded": "2018-03-28T10:53:36Z", "lastModified": "2018-03-28T11:45:57.3661164Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "bb3208cd-94da-4ea6-89ec-a1bca455371f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3004.xboxlive.com/xuid-2535410564295910-public/5f2be533-0833-4cd3-b6b2-1356149cb268_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3004.xboxlive.com/xuid-2535410564295910-public/5f2be533-0833-4cd3-b6b2-1356149cb268_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3004.xboxlive.com/xuid-2535410564295910-private/5f2be533-0833-4cd3-b6b2-1356149cb268.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=u1GwrGFV4vfigx8f8MHwa%2Bs9RQXiFr1ADxfCkioVrz0%3D&__gda__=1522241343_2605839da50f229de5c25d75761f3f62", "fileSize": 24408846, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "9a5422a9-4327-4ee1-822c-be4530aa8d57", "state": "Published", "datePublished": "2018-03-28T11:45:56.8913223Z", "dateRecorded": "2018-03-28T11:29:21Z", "lastModified": "2018-03-28T11:45:56.8913223Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "3e11ba64-17bb-42ca-8ab4-ef669753a9f10;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533274860602795-public/9a5422a9-4327-4ee1-822c-be4530aa8d57_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533274860602795-public/9a5422a9-4327-4ee1-822c-be4530aa8d57_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3013.xboxlive.com/xuid-2533274860602795-private/9a5422a9-4327-4ee1-822c-be4530aa8d57.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=D49%2Fto0Gt7UZNx5XfQZO2%2B%2FfMSTTAKWjUbaaVOnBXoA%3D&__gda__=1522241343_0335b78b29f859d2b3e2b7a71be1f16c", "fileSize": 25248145, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274860602795", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "89185b6b-93af-4685-a3e5-6fa0c4236d32", "state": "Published", "datePublished": "2018-03-28T11:45:24.0632031Z", "dateRecorded": "2018-03-28T11:26:31Z", "lastModified": "2018-03-28T11:45:24.0632031Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a7e7858b-a41d-426d-9afc-ca3a9ecee12e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3016.xboxlive.com/xuid-2535460947257261-public/89185b6b-93af-4685-a3e5-6fa0c4236d32_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3016.xboxlive.com/xuid-2535460947257261-public/89185b6b-93af-4685-a3e5-6fa0c4236d32_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3016.xboxlive.com/xuid-2535460947257261-private/89185b6b-93af-4685-a3e5-6fa0c4236d32.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jjRgueVKl6tdymp1x5tpRyTQG%2BrhZfJkcJEJNIScshw%3D&__gda__=1522241343_961d5f295cd34bb95ae2e28e2b113f4d", "fileSize": 19662979, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535460947257261", "clipName": "", "titleName": "System", "gameClipLocale": "es-MX", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "05dea01e-bfec-439b-b42c-c28ba32a59b4", "state": "Published", "datePublished": "2018-03-28T11:45:20.2964636Z", "dateRecorded": "2018-03-28T10:47:37Z", "lastModified": "2018-03-28T11:45:20.2964636Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "fff66f0f-5e99-45ac-9be2-0a6a635019670;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2002.xboxlive.com/xuid-2533274827845099-public/05dea01e-bfec-439b-b42c-c28ba32a59b4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2002.xboxlive.com/xuid-2533274827845099-public/05dea01e-bfec-439b-b42c-c28ba32a59b4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2002.xboxlive.com/xuid-2533274827845099-private/05dea01e-bfec-439b-b42c-c28ba32a59b4.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=sPvF8NWJSKi6TTQCwPgx%2FFa%2BwnpWtlCm59x%2B83449BE%3D&__gda__=1522241343_36d53972024f1af1816eea09d1cd5349", "fileSize": 43421295, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274827845099", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f76fb938-e4ed-46d5-acbe-30e72c04bf34", "state": "Published", "datePublished": "2018-03-28T11:44:51.9088515Z", "dateRecorded": "2018-03-28T10:53:26Z", "lastModified": "2018-03-28T11:44:51.9088515Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a577bf20-7153-42bf-b7b6-445d457483280;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2019.xboxlive.com/xuid-2535410564295910-public/f76fb938-e4ed-46d5-acbe-30e72c04bf34_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2019.xboxlive.com/xuid-2535410564295910-public/f76fb938-e4ed-46d5-acbe-30e72c04bf34_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2019.xboxlive.com/xuid-2535410564295910-private/f76fb938-e4ed-46d5-acbe-30e72c04bf34.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=NogzuXazRIpX56A5Z6BEib6uz11FTRxRYWGSuXyJFJg%3D&__gda__=1522241343_8fdf621630182c2c09e624704df8ae6d", "fileSize": 23533558, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "d79b201a-45e5-4154-9eef-09804ade876e", "state": "Published", "datePublished": "2018-03-28T11:44:40.0331113Z", "dateRecorded": "2018-03-28T09:16:16Z", "lastModified": "2018-03-28T11:44:40.0331113Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 94, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a763f048-7d9f-477a-8f8a-43b5946ab6b00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533274814489324-public/d79b201a-45e5-4154-9eef-09804ade876e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533274814489324-public/d79b201a-45e5-4154-9eef-09804ade876e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3019.xboxlive.com/xuid-2533274814489324-private/d79b201a-45e5-4154-9eef-09804ade876e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=N%2FeTJTRY3dvsQEIbPtLa75jU5bAEGMN13NbVaO%2F7gtM%3D&__gda__=1522241343_2ebc3e4e5a8ba55a0784a74540e5bcb7", "fileSize": 52941389, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274814489324", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "ceed2313-6bbe-4cbc-9f91-fa9bde914f08", "state": "Published", "datePublished": "2018-03-28T11:44:02.1063895Z", "dateRecorded": "2018-03-28T11:33:29Z", "lastModified": "2018-03-28T11:44:02.1063895Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 13, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "24a90f05-c217-44e9-a28f-179af12b917f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533275025725783-public/ceed2313-6bbe-4cbc-9f91-fa9bde914f08_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533275025725783-public/ceed2313-6bbe-4cbc-9f91-fa9bde914f08_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3019.xboxlive.com/xuid-2533275025725783-private/ceed2313-6bbe-4cbc-9f91-fa9bde914f08.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ZCxt%2FGbC1vDzOW1nRe5pnQkoK7K04qc8mu8BSHAkP5o%3D&__gda__=1522241343_8d258f43aec78c345f58ae14143ffffd", "fileSize": 12241049, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533275025725783", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "01bdadc0-1743-466d-a5db-4492cc9df498", "state": "Published", "datePublished": "2018-03-28T11:43:46.5912118Z", "dateRecorded": "2018-03-28T10:49:06Z", "lastModified": "2018-03-28T11:43:46.5912118Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "54959b60-ddd8-4e33-a3fb-d21f86294ccc0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535410564295910-public/01bdadc0-1743-466d-a5db-4492cc9df498_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535410564295910-public/01bdadc0-1743-466d-a5db-4492cc9df498_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3023.xboxlive.com/xuid-2535410564295910-private/01bdadc0-1743-466d-a5db-4492cc9df498.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=zMay5JzRmzRb2Tl4P63IBFQv5QmYUHDbgXR17Caitn8%3D&__gda__=1522241343_2d31f11d9ab43d6c8c71f9b39f2c49e6", "fileSize": 26062918, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "d1d0dc96-5924-4d40-bded-6a994cc5453c", "state": "Published", "datePublished": "2018-03-28T11:43:30.270507Z", "dateRecorded": "2018-03-28T11:41:39Z", "lastModified": "2018-03-28T11:43:30.270507Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "940c893a-01d5-4607-b7f3-90df2139660f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2010.xboxlive.com/xuid-2533274973946057-public/d1d0dc96-5924-4d40-bded-6a994cc5453c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2010.xboxlive.com/xuid-2533274973946057-public/d1d0dc96-5924-4d40-bded-6a994cc5453c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2010.xboxlive.com/xuid-2533274973946057-private/d1d0dc96-5924-4d40-bded-6a994cc5453c.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=f%2BUkCI8RLVaYMP0zFkRL2IirAyFpqPpiuTVlayA8uzM%3D&__gda__=1522241343_781ad6fe4ea6d4b8bf63d8ea56848c7c", "fileSize": 24590335, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274973946057", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "7759c153-4d96-4f4f-8edd-915217d0fd0b", "state": "Published", "datePublished": "2018-03-28T11:43:21.1588635Z", "dateRecorded": "2018-03-28T11:29:34Z", "lastModified": "2018-03-28T11:43:21.1588635Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "60c0ee76-89b4-45fc-99d2-1840b57148c70;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2012.xboxlive.com/xuid-2535451404186500-public/7759c153-4d96-4f4f-8edd-915217d0fd0b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2012.xboxlive.com/xuid-2535451404186500-public/7759c153-4d96-4f4f-8edd-915217d0fd0b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2012.xboxlive.com/xuid-2535451404186500-private/7759c153-4d96-4f4f-8edd-915217d0fd0b.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=qYALhOuh2k00OhS3MljqbcRfbGDkR%2FiT9x5ggo2IASo%3D&__gda__=1522241343_3c38f8493e4c96aa0c011d9994af8e3c", "fileSize": 21248785, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535451404186500", "clipName": "", "titleName": "System", "gameClipLocale": "fr-FR", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "b84a5573-e2ae-4a95-a94c-c44fe45392fb", "state": "Published", "datePublished": "2018-03-28T11:43:10.5381395Z", "dateRecorded": "2018-03-25T20:38:51Z", "lastModified": "2018-03-28T11:43:10.5381395Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 58, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a7fe5f70-38f1-462c-8643-1a4fb25c97700;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2535436768738028-public/b84a5573-e2ae-4a95-a94c-c44fe45392fb_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2535436768738028-public/b84a5573-e2ae-4a95-a94c-c44fe45392fb_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3019.xboxlive.com/xuid-2535436768738028-private/b84a5573-e2ae-4a95-a94c-c44fe45392fb.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d1X2geHjTtpAO%2BFiSSEvkdRh%2Bc6mhGmX1fZsV1P3c6Y%3D&__gda__=1522241343_e782168722e401bd4c217b203e461110", "fileSize": 80970253, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535436768738028", "clipName": "", "titleName": "System", "gameClipLocale": "pt-BR", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "94a6063d-2170-4fed-8935-932637558ec8", "state": "Published", "datePublished": "2018-03-28T11:43:05.0646152Z", "dateRecorded": "2018-03-28T11:29:48Z", "lastModified": "2018-03-28T11:43:05.0646152Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "0e6a952d-2039-48c4-acfa-1962125954180;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2019.xboxlive.com/xuid-2535444423946735-public/94a6063d-2170-4fed-8935-932637558ec8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2019.xboxlive.com/xuid-2535444423946735-public/94a6063d-2170-4fed-8935-932637558ec8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2019.xboxlive.com/xuid-2535444423946735-private/94a6063d-2170-4fed-8935-932637558ec8.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=XysdUQIJ%2BcvMY5SXvuVkcz45YmxNYL5yf0KQOTt4aCo%3D&__gda__=1522241343_0cfd98f3762ede2a6702c5960afa364c", "fileSize": 24526659, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535444423946735", "clipName": "", "titleName": "System", "gameClipLocale": "ja-JP", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "b2f2909c-c49e-4612-93ba-ac60574f1ec6", "state": "Published", "datePublished": "2018-03-28T11:42:46.2424513Z", "dateRecorded": "2018-03-28T11:40:30Z", "lastModified": "2018-03-28T11:42:46.2424513Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a2b34533-5d57-46e0-86e9-d2c20abada300;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3007.xboxlive.com/xuid-2535432594624617-public/b2f2909c-c49e-4612-93ba-ac60574f1ec6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3007.xboxlive.com/xuid-2535432594624617-public/b2f2909c-c49e-4612-93ba-ac60574f1ec6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3007.xboxlive.com/xuid-2535432594624617-private/b2f2909c-c49e-4612-93ba-ac60574f1ec6.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=HV3gY2k7JQOoI6svFOhR%2F44nU8uzW5lQwuCNA7SCY%2Bc%3D&__gda__=1522241343_1a021e1f13e4310435069e16063e7366", "fileSize": 25662447, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535432594624617", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "7286efc1-da65-4499-9f51-fc5fa7947e1b", "state": "Published", "datePublished": "2018-03-28T11:42:33.6826116Z", "dateRecorded": "2018-03-28T10:48:46Z", "lastModified": "2018-03-28T11:42:33.6826116Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "3e11d952-8267-4c96-bae8-81302e1c166c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535410564295910-public/7286efc1-da65-4499-9f51-fc5fa7947e1b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535410564295910-public/7286efc1-da65-4499-9f51-fc5fa7947e1b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3022.xboxlive.com/xuid-2535410564295910-private/7286efc1-da65-4499-9f51-fc5fa7947e1b.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=aZ8B1zyVBGJAoxkYBiggkY9u4RUT209k5J3%2Bnh%2BSd9E%3D&__gda__=1522241343_6eb673e3dca0c47351016411a81b27fa", "fileSize": 26924985, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "58340615-bb39-4d70-a813-2e9ee5a8eeb8", "state": "Published", "datePublished": "2018-03-28T11:42:00.3662393Z", "dateRecorded": "2018-03-28T11:22:24Z", "lastModified": "2018-03-28T11:42:00.3662393Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "fdf3971f-c5bc-4bf1-9aaf-5b2ea18963450;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535442854923369-public/58340615-bb39-4d70-a813-2e9ee5a8eeb8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535442854923369-public/58340615-bb39-4d70-a813-2e9ee5a8eeb8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3022.xboxlive.com/xuid-2535442854923369-private/58340615-bb39-4d70-a813-2e9ee5a8eeb8.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=1rbmziuxFIcGiu%2FMv3lhvtiT3IGz7GPqwAASgCFJ5Bw%3D&__gda__=1522241343_3576628eebe9d9760722662869b1b8c7", "fileSize": 22803181, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535442854923369", "clipName": "", "titleName": "System", "gameClipLocale": "nb-NO", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "a16f0b69-34b4-4ccd-b8e1-6c0fc342fe5e", "state": "Published", "datePublished": "2018-03-28T11:41:51.8068932Z", "dateRecorded": "2018-03-28T11:40:23Z", "lastModified": "2018-03-28T11:41:51.8068932Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "08bf76ff-eaf2-47d6-80e8-98ee0ad7cf750;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2533274973946057-public/a16f0b69-34b4-4ccd-b8e1-6c0fc342fe5e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2533274973946057-public/a16f0b69-34b4-4ccd-b8e1-6c0fc342fe5e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3020.xboxlive.com/xuid-2533274973946057-private/a16f0b69-34b4-4ccd-b8e1-6c0fc342fe5e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4sqGVwahMca9cLnuxYCu0HwA2P%2BFpCKT1Oje4TW91Cs%3D&__gda__=1522241343_0456bca47e784bb8d0ab67d9a36719b8", "fileSize": 24385107, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274973946057", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "3c33a264-70e5-4c93-9bd1-ec9ee022423e", "state": "Published", "datePublished": "2018-03-28T11:41:45.1537959Z", "dateRecorded": "2018-03-26T01:25:30Z", "lastModified": "2018-03-28T11:41:45.1537959Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "312a4110-60a9-466f-b62f-2fe9fc8a58600;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535461037174745-public/3c33a264-70e5-4c93-9bd1-ec9ee022423e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535461037174745-public/3c33a264-70e5-4c93-9bd1-ec9ee022423e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3023.xboxlive.com/xuid-2535461037174745-private/3c33a264-70e5-4c93-9bd1-ec9ee022423e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ptO1qszkOXGmdOfbW6Per%2BDZlES1HW0tbdstEyZVNs4%3D&__gda__=1522241343_62877d0ae8827a5b67fff15648481d0d", "fileSize": 22086576, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535461037174745", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5657c730-bc16-4b21-844e-f6b839f061e6", "state": "Published", "datePublished": "2018-03-28T11:41:40.1571786Z", "dateRecorded": "2018-03-26T01:21:37Z", "lastModified": "2018-03-28T11:41:40.1571786Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "fbfad309-7c8f-4c9a-92ec-f02123ceb9790;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2008.xboxlive.com/xuid-2535461037174745-public/5657c730-bc16-4b21-844e-f6b839f061e6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2008.xboxlive.com/xuid-2535461037174745-public/5657c730-bc16-4b21-844e-f6b839f061e6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2008.xboxlive.com/xuid-2535461037174745-private/5657c730-bc16-4b21-844e-f6b839f061e6.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=j49QNNKo1DnGvKlV5hqYyvjFBpU37ZX8Ty0giqxtNJY%3D&__gda__=1522241343_f881e0191a909ba703694c83b0af39eb", "fileSize": 22325435, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535461037174745", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "3d1bfe1e-0567-4d56-955d-9d5a1569de30", "state": "Published", "datePublished": "2018-03-28T11:41:40.1506021Z", "dateRecorded": "2018-03-26T01:22:28Z", "lastModified": "2018-03-28T11:41:40.1506021Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "7e18e353-5ae0-4ac1-a458-40fbb212ee340;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535461037174745-public/3d1bfe1e-0567-4d56-955d-9d5a1569de30_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535461037174745-public/3d1bfe1e-0567-4d56-955d-9d5a1569de30_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3023.xboxlive.com/xuid-2535461037174745-private/3d1bfe1e-0567-4d56-955d-9d5a1569de30.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Q12gTcIREgmtwW4c%2F%2B1qDQqWUw5HOdflDVHWeppBbn0%3D&__gda__=1522241343_4a8d5bbc9169e88df6cab4fa29d17b64", "fileSize": 20990491, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535461037174745", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "d64d15e9-b863-4a05-a6de-44af437b9d1f", "state": "Published", "datePublished": "2018-03-28T11:41:19.5515477Z", "dateRecorded": "2018-03-28T10:48:15Z", "lastModified": "2018-03-28T11:41:19.5515477Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "ea097822-e8bb-47fd-bf48-ae446c62c9b30;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2008.xboxlive.com/xuid-2535410564295910-public/d64d15e9-b863-4a05-a6de-44af437b9d1f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2008.xboxlive.com/xuid-2535410564295910-public/d64d15e9-b863-4a05-a6de-44af437b9d1f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2008.xboxlive.com/xuid-2535410564295910-private/d64d15e9-b863-4a05-a6de-44af437b9d1f.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=gTd305L%2B%2FTZ6fU860i8f9r3Jt2ZiF52SvaTQPOfqCOY%3D&__gda__=1522241343_f9ccc773eb4617bf8575eb6da7495015", "fileSize": 23976283, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "31090d26-f34c-479c-8968-02564ed005e9", "state": "Published", "datePublished": "2018-03-28T11:40:48.8868913Z", "dateRecorded": "2018-03-28T11:20:23Z", "lastModified": "2018-03-28T11:40:48.8868913Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 3, "titleData": "", "systemProperties": "a2340d98-73bb-40d0-9b18-21f030bc2d3a0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535416054060863-public/31090d26-f34c-479c-8968-02564ed005e9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535416054060863-public/31090d26-f34c-479c-8968-02564ed005e9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3023.xboxlive.com/xuid-2535416054060863-private/31090d26-f34c-479c-8968-02564ed005e9.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=mppJpfw2ogqk%2B1k4q%2FNudWkBGJk59nQLk8OCoYYZveg%3D&__gda__=1522241343_3c1b15ebd8e21c4fe866db37462443ad", "fileSize": 22960881, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535416054060863", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "307a93aa-b9d0-4476-9f80-f681b8bebb96", "state": "Published", "datePublished": "2018-03-28T11:40:48.1674049Z", "dateRecorded": "2018-03-28T11:38:38Z", "lastModified": "2018-03-28T11:40:48.1674049Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "4d3ebff0-230d-4fb3-8365-a2e89d20be2e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533274973946057-public/307a93aa-b9d0-4476-9f80-f681b8bebb96_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533274973946057-public/307a93aa-b9d0-4476-9f80-f681b8bebb96_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3013.xboxlive.com/xuid-2533274973946057-private/307a93aa-b9d0-4476-9f80-f681b8bebb96.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=8VRXOQCeYDbWn8K9PMlM%2BhnTBicx%2BBtwmeOF2j74sCs%3D&__gda__=1522241343_9d70e1db2f4bf7848b08072d4b11bb1f", "fileSize": 25354287, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274973946057", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f7edceb2-7cdd-4363-b0f6-5ae7d10d4183", "state": "Published", "datePublished": "2018-03-28T11:40:13.9255914Z", "dateRecorded": "2018-03-28T10:47:01Z", "lastModified": "2018-03-28T11:40:13.9255914Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "45e550ec-9de3-4fa7-bf1e-e1be7a6662c70;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3025.xboxlive.com/xuid-2535410564295910-public/f7edceb2-7cdd-4363-b0f6-5ae7d10d4183_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3025.xboxlive.com/xuid-2535410564295910-public/f7edceb2-7cdd-4363-b0f6-5ae7d10d4183_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3025.xboxlive.com/xuid-2535410564295910-private/f7edceb2-7cdd-4363-b0f6-5ae7d10d4183.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ZQZGIOHPpj0tDafFO3x6oqOT5XcC%2B%2BPwSyw0pxqqtg4%3D&__gda__=1522241343_1d6790d1594dcc6b6386f76ffe86c3c1", "fileSize": 21351069, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5d612f90-8888-4bb3-a218-0db0df39f5d7", "state": "Published", "datePublished": "2018-03-28T11:39:49.3431832Z", "dateRecorded": "2018-03-28T01:54:36Z", "lastModified": "2018-03-28T11:39:49.3431832Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "321a21d7-8c34-45eb-9ddc-4fbd046472b00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3001.xboxlive.com/xuid-2533274922715795-public/5d612f90-8888-4bb3-a218-0db0df39f5d7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3001.xboxlive.com/xuid-2533274922715795-public/5d612f90-8888-4bb3-a218-0db0df39f5d7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3001.xboxlive.com/xuid-2533274922715795-private/5d612f90-8888-4bb3-a218-0db0df39f5d7.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=fZ2gQ9BsvNF1JsK0vrCG3XYBMK00ZAcGWV%2FRwjX0se8%3D&__gda__=1522241343_ca4a89ed0d638c03485ee5cbfadc52b5", "fileSize": 44256587, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274922715795", "clipName": "", "titleName": "System", "gameClipLocale": "es-ES", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f85150bf-1e82-40d0-8262-86ba7e0c302e", "state": "Published", "datePublished": "2018-03-28T11:39:27.5569253Z", "dateRecorded": "2018-03-28T11:37:08Z", "lastModified": "2018-03-28T11:39:27.5569253Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "f2d91b3f-f76a-4607-9050-ca5491e151500;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535432594624617-public/f85150bf-1e82-40d0-8262-86ba7e0c302e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535432594624617-public/f85150bf-1e82-40d0-8262-86ba7e0c302e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3012.xboxlive.com/xuid-2535432594624617-private/f85150bf-1e82-40d0-8262-86ba7e0c302e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=79xij46O9z6Q7yraUR8Cb1N%2Ff27UNxm6TyG%2BHbHJqMg%3D&__gda__=1522241343_04d9be28077e2eec9ecb858b968c285d", "fileSize": 26788833, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535432594624617", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "76acf2ea-1491-4969-a3de-2ee5f47d134e", "state": "Published", "datePublished": "2018-03-28T11:39:18.527847Z", "dateRecorded": "2018-03-28T11:38:03Z", "lastModified": "2018-03-28T11:39:18.527847Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "9433325f-85a6-465f-ad50-81c224f713fa0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535423775215370-public/76acf2ea-1491-4969-a3de-2ee5f47d134e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535423775215370-public/76acf2ea-1491-4969-a3de-2ee5f47d134e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3012.xboxlive.com/xuid-2535423775215370-private/76acf2ea-1491-4969-a3de-2ee5f47d134e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jspxTrVPJ9sXCQ1xZr6Vy04d4l6SgAu7GSmv29c3WPc%3D&__gda__=1522241343_13111c219f5dfe76a3445aa4010d5b3a", "fileSize": 20497063, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535423775215370", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "9e57063f-8774-4ba6-8311-e17c1dae7745", "state": "Published", "datePublished": "2018-03-28T11:39:14.648811Z", "dateRecorded": "2018-03-28T10:46:49Z", "lastModified": "2018-03-28T11:39:14.648811Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "b8e9ab2a-e48c-4413-a5b1-6d0540d243710;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/9e57063f-8774-4ba6-8311-e17c1dae7745_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/9e57063f-8774-4ba6-8311-e17c1dae7745_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535410564295910-private/9e57063f-8774-4ba6-8311-e17c1dae7745.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lHOqnydDM5c9UO7uXvxRv7ObyoiA5%2FNFtOJeZRlx1C8%3D&__gda__=1522241343_e66f0348d0d781b2f2c06492e0335e6a", "fileSize": 23950645, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f2a73cc1-3d45-4df6-8d2b-c0cacd689f7c", "state": "Published", "datePublished": "2018-03-28T11:38:25.0850543Z", "dateRecorded": "2018-03-28T11:37:09Z", "lastModified": "2018-03-28T11:38:25.0850543Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "2ee7ebd3-fee2-4047-a63c-15fb37575a0d0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535423775215370-public/f2a73cc1-3d45-4df6-8d2b-c0cacd689f7c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535423775215370-public/f2a73cc1-3d45-4df6-8d2b-c0cacd689f7c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535423775215370-private/f2a73cc1-3d45-4df6-8d2b-c0cacd689f7c.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=w1GA36O1K2EQ5L6XT5FJD3JVOfI6%2BjopBn9Iycjycjs%3D&__gda__=1522241343_423f507e6169201b8b3d2e0264846cf3", "fileSize": 21821044, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535423775215370", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "cddd61b4-d35c-422e-a14b-9ee7fd942b0f", "state": "Published", "datePublished": "2018-03-28T11:38:18.4799175Z", "dateRecorded": "2018-03-28T11:34:08Z", "lastModified": "2018-03-28T11:38:18.4799175Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "4d8a48da-c792-48e3-b452-cd9d7c46337c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2009.xboxlive.com/xuid-2533274940145700-public/cddd61b4-d35c-422e-a14b-9ee7fd942b0f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2009.xboxlive.com/xuid-2533274940145700-public/cddd61b4-d35c-422e-a14b-9ee7fd942b0f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2009.xboxlive.com/xuid-2533274940145700-private/cddd61b4-d35c-422e-a14b-9ee7fd942b0f.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0e3nChqs99PLG%2FxXdnvaFJzNWg8g0WJtngjSB116K2A%3D&__gda__=1522241343_7272e68431fbecefd4f0f4bdb06ea8e3", "fileSize": 19284215, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274940145700", "clipName": "", "titleName": "System", "gameClipLocale": "it-IT", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "d51ed655-6b57-4565-8c6d-33734ca81e1f", "state": "Published", "datePublished": "2018-03-28T11:38:07.7143994Z", "dateRecorded": "2018-03-28T10:46:29Z", "lastModified": "2018-03-28T11:38:07.7143994Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d26d4273-da7c-4a61-b25d-ea60642860f50;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535410564295910-public/d51ed655-6b57-4565-8c6d-33734ca81e1f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535410564295910-public/d51ed655-6b57-4565-8c6d-33734ca81e1f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3022.xboxlive.com/xuid-2535410564295910-private/d51ed655-6b57-4565-8c6d-33734ca81e1f.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=8Z53CqXOSGVzzzLybkUvPg4jzgvR1xGaL%2FlFPm2fgOA%3D&__gda__=1522241343_23089cfaa1a469e68d4599659aa35f8a", "fileSize": 30409999, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "942fe446-33ea-474c-afc8-06a5dbfdd3d1", "state": "Published", "datePublished": "2018-03-28T11:37:42.4401548Z", "dateRecorded": "2018-03-28T11:25:07Z", "lastModified": "2018-03-28T11:37:42.4401548Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 43, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "ef7f0601-f07d-4ee8-be20-4a3211af4c250;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2533274826057352-public/942fe446-33ea-474c-afc8-06a5dbfdd3d1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2533274826057352-public/942fe446-33ea-474c-afc8-06a5dbfdd3d1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/xuid-2533274826057352-private/942fe446-33ea-474c-afc8-06a5dbfdd3d1.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ks1EiyxTy8i7zRR1oQhCckvWnTzRCuXZSVaX4TWQ39s%3D&__gda__=1522241343_106f6905bd46af7446a075a7d1f4f037", "fileSize": 26316529, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274826057352", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5c736b8a-d4f3-47fd-b58e-bbb6ce04e02c", "state": "Published", "datePublished": "2018-03-28T11:36:46.7908152Z", "dateRecorded": "2018-03-28T11:27:13Z", "lastModified": "2018-03-28T11:36:46.7908152Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "2ac6ef22-0e7e-4daa-b224-f2e7bafd9f210;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3010.xboxlive.com/xuid-2535451857859978-public/5c736b8a-d4f3-47fd-b58e-bbb6ce04e02c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3010.xboxlive.com/xuid-2535451857859978-public/5c736b8a-d4f3-47fd-b58e-bbb6ce04e02c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3010.xboxlive.com/xuid-2535451857859978-private/5c736b8a-d4f3-47fd-b58e-bbb6ce04e02c.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=oo278acbb4GES1W7UFA4BbJkW%2BxaneIrW3SqTgEPXDU%3D&__gda__=1522241343_cdb69be9171d4c2cf6626304aa5f7579", "fileSize": 10930471, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535451857859978", "clipName": "", "titleName": "System", "gameClipLocale": "en-CA", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e8ef71fe-172f-45f4-8957-4e26fbfea462", "state": "Published", "datePublished": "2018-03-28T11:36:44.1098967Z", "dateRecorded": "2018-03-28T10:46:12Z", "lastModified": "2018-03-28T11:36:44.1098967Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6320ffa5-971c-496b-a0e7-23fb235f264c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/e8ef71fe-172f-45f4-8957-4e26fbfea462_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/e8ef71fe-172f-45f4-8957-4e26fbfea462_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535410564295910-private/e8ef71fe-172f-45f4-8957-4e26fbfea462.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=NKttx4JIFYz%2B7p%2BXEf656Hiia6zOa133r%2FnWxWICatY%3D&__gda__=1522241343_9c211507e57f02f8108e82ee6e6ef9d6", "fileSize": 29959617, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5a57dfa1-d80f-42cf-8fc2-dca498eabef8", "state": "Published", "datePublished": "2018-03-28T11:36:40.0407758Z", "dateRecorded": "2018-03-28T11:34:57Z", "lastModified": "2018-03-28T11:36:40.0407758Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6c5bec9f-1154-445d-bc29-653573c9d7a90;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535433029234653-public/5a57dfa1-d80f-42cf-8fc2-dca498eabef8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535433029234653-public/5a57dfa1-d80f-42cf-8fc2-dca498eabef8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3024.xboxlive.com/xuid-2535433029234653-private/5a57dfa1-d80f-42cf-8fc2-dca498eabef8.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=uHg%2BVMM6rCg%2FP%2BmZ5vRg%2FP3LQEkmQeO4iZTGZM%2BupKs%3D&__gda__=1522241343_012a86d83776af6fa84c12b1fd1160c3", "fileSize": 22576782, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535433029234653", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "96b33469-5cc9-405b-9598-1eb3ea47c43e", "state": "Published", "datePublished": "2018-03-28T11:36:32.6697918Z", "dateRecorded": "2018-03-28T11:35:04Z", "lastModified": "2018-03-28T11:36:32.6697918Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "8898235a-a7c6-430b-a592-93c39a01c6db0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535450012417438-public/96b33469-5cc9-405b-9598-1eb3ea47c43e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3023.xboxlive.com/xuid-2535450012417438-public/96b33469-5cc9-405b-9598-1eb3ea47c43e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3023.xboxlive.com/xuid-2535450012417438-private/96b33469-5cc9-405b-9598-1eb3ea47c43e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=owE0ReNsr3RpFnRaNEyJgCPi2cXC1xq6AhrLyuOfge4%3D&__gda__=1522241343_22c59f2dea4783c17ccfa8f85fa7003d", "fileSize": 37038120, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535450012417438", "clipName": "", "titleName": "System", "gameClipLocale": "en-IE", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e6e9152c-cda6-451a-8636-7aa9885fb7d0", "state": "Published", "datePublished": "2018-03-28T11:35:40.3659936Z", "dateRecorded": "2018-03-25T16:02:54Z", "lastModified": "2018-03-28T11:35:40.3659936Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "beaf34f9-2398-4b26-894c-0b38a4f894280;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2535452422438597-public/e6e9152c-cda6-451a-8636-7aa9885fb7d0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2535452422438597-public/e6e9152c-cda6-451a-8636-7aa9885fb7d0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3017.xboxlive.com/xuid-2535452422438597-private/e6e9152c-cda6-451a-8636-7aa9885fb7d0.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=1QwtR%2Bsnp1b9L3fbaet6pwjwFG1T6P3o1onEPREY1hY%3D&__gda__=1522241343_1790d4c7e113e087c78df8b762437968", "fileSize": 22591672, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535452422438597", "clipName": "", "titleName": "System", "gameClipLocale": "fr-FR", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "3323f9ac-621a-421c-9d31-1355b6fc2c33", "state": "Published", "datePublished": "2018-03-28T11:35:39.8274507Z", "dateRecorded": "2018-03-25T16:01:03Z", "lastModified": "2018-03-28T11:35:39.8274507Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c5d4041c-2633-4865-b2e1-6d9dd5d627ce0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2535452422438597-public/3323f9ac-621a-421c-9d31-1355b6fc2c33_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2535452422438597-public/3323f9ac-621a-421c-9d31-1355b6fc2c33_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3019.xboxlive.com/xuid-2535452422438597-private/3323f9ac-621a-421c-9d31-1355b6fc2c33.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=oZvT8sWInaST2Kukx8vcmYr%2BRtUMxDXUEHc0pQcgDB8%3D&__gda__=1522241343_33a71916be09274159d88053c19447a6", "fileSize": 23026030, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535452422438597", "clipName": "", "titleName": "System", "gameClipLocale": "fr-FR", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1677f6a3-a454-4c8e-823e-3a056ff04e03", "state": "Published", "datePublished": "2018-03-28T11:35:20.7881103Z", "dateRecorded": "2018-03-28T10:45:58Z", "lastModified": "2018-03-28T11:35:20.7881103Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d8f397cb-8637-4659-8a2e-5030bf1746e50;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2016.xboxlive.com/xuid-2535410564295910-public/1677f6a3-a454-4c8e-823e-3a056ff04e03_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2016.xboxlive.com/xuid-2535410564295910-public/1677f6a3-a454-4c8e-823e-3a056ff04e03_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2016.xboxlive.com/xuid-2535410564295910-private/1677f6a3-a454-4c8e-823e-3a056ff04e03.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jb2stk0YXVy8obNCsB1T4UN90JbOvocEyXPy9QSAysw%3D&__gda__=1522241343_eac5fd7b095b52186f5465646aa09376", "fileSize": 29266716, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "3077b34a-4064-4c14-a24e-d1c1b1c028ab", "state": "Published", "datePublished": "2018-03-28T11:35:20.6849873Z", "dateRecorded": "2018-03-28T11:11:56Z", "lastModified": "2018-03-28T11:35:20.6849873Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "ef7fa204-c35a-4bf1-b162-b7cbfb5c433c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3015.xboxlive.com/xuid-2533274860602795-public/3077b34a-4064-4c14-a24e-d1c1b1c028ab_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3015.xboxlive.com/xuid-2533274860602795-public/3077b34a-4064-4c14-a24e-d1c1b1c028ab_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3015.xboxlive.com/xuid-2533274860602795-private/3077b34a-4064-4c14-a24e-d1c1b1c028ab.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TlI1aiPhmCseuCNpn42ENxqBJP8QlOCiseHV6zUBbG4%3D&__gda__=1522241343_c3d0a50493ddaec53c3f1c60e128a0e9", "fileSize": 26896533, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274860602795", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f500f5de-5f7b-42e7-92d7-c8bd9d04b1d1", "state": "Published", "datePublished": "2018-03-28T11:35:10.8161121Z", "dateRecorded": "2018-03-28T11:14:56Z", "lastModified": "2018-03-28T11:35:10.8161121Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c5e9a88e-7321-4c31-a940-6cf4f20663450;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535472982560071-public/f500f5de-5f7b-42e7-92d7-c8bd9d04b1d1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535472982560071-public/f500f5de-5f7b-42e7-92d7-c8bd9d04b1d1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535472982560071-private/f500f5de-5f7b-42e7-92d7-c8bd9d04b1d1.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=tAjYKvJn%2BpUsU%2FlptT5s6QsCm%2BfzywXCaVMgWLEAiX4%3D&__gda__=1522241343_3cec08a734209312480cba836a04f368", "fileSize": 24084200, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535472982560071", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "9a112461-39d1-4400-b1e5-d9dab0fd141c", "state": "Published", "datePublished": "2018-03-28T11:34:57.6371987Z", "dateRecorded": "2018-03-28T11:18:20Z", "lastModified": "2018-03-28T11:34:57.6371987Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "1ba1e8ff-7704-4a7a-ac9e-4a1d2c2ec2ea0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535436776528556-public/9a112461-39d1-4400-b1e5-d9dab0fd141c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535436776528556-public/9a112461-39d1-4400-b1e5-d9dab0fd141c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3020.xboxlive.com/xuid-2535436776528556-private/9a112461-39d1-4400-b1e5-d9dab0fd141c.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3iURvXSRCqU%2BuoEh5N%2FG%2BScuxBw5PIixgHcyDiR4rXU%3D&__gda__=1522241343_a5b9577ea10173433882e1208c873333", "fileSize": 18728835, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535436776528556", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "108834d0-2bb9-4f5f-be46-c35e87d8db7f", "state": "Published", "datePublished": "2018-03-28T11:34:38.5122036Z", "dateRecorded": "2018-03-28T11:15:13Z", "lastModified": "2018-03-28T11:34:38.5122036Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 13, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "7d6622d6-6c77-46fc-a495-045f2b7a7db90;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2533274951167430-public/108834d0-2bb9-4f5f-be46-c35e87d8db7f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2533274951167430-public/108834d0-2bb9-4f5f-be46-c35e87d8db7f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3021.xboxlive.com/xuid-2533274951167430-private/108834d0-2bb9-4f5f-be46-c35e87d8db7f.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=v66Zvx0loHl%2FP8zXdJJmpD0N8eztzGlIPtAN%2FtbkppE%3D&__gda__=1522241343_c6869944ecd15f88d72786e34f2d1af9", "fileSize": 14438523, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274951167430", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6d65d90c-9acc-47cc-94db-1f705ffae580", "state": "Published", "datePublished": "2018-03-28T11:34:04.0070897Z", "dateRecorded": "2018-03-28T07:45:19Z", "lastModified": "2018-03-28T11:34:04.0070897Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 43, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "0d6bff8b-c033-4ee7-9d15-7158b992c6940;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2533274987615257-public/6d65d90c-9acc-47cc-94db-1f705ffae580_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2533274987615257-public/6d65d90c-9acc-47cc-94db-1f705ffae580_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3021.xboxlive.com/xuid-2533274987615257-private/6d65d90c-9acc-47cc-94db-1f705ffae580.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d8GWsbQvBIO81ttc10cNmOB7ZaP1kvw%2FMo2r4jy6P2k%3D&__gda__=1522241343_47dfe2129bb321f5d8ef87377fe56f25", "fileSize": 27080852, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274987615257", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "873a027c-e0dc-4783-b9ba-7c2e8c255a7d", "state": "Published", "datePublished": "2018-03-28T11:34:01.0509071Z", "dateRecorded": "2018-03-28T10:45:22Z", "lastModified": "2018-03-28T11:34:01.0509071Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "33792d68-067e-4f6d-bae3-e5966dc232330;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2019.xboxlive.com/xuid-2535410564295910-public/873a027c-e0dc-4783-b9ba-7c2e8c255a7d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2019.xboxlive.com/xuid-2535410564295910-public/873a027c-e0dc-4783-b9ba-7c2e8c255a7d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2019.xboxlive.com/xuid-2535410564295910-private/873a027c-e0dc-4783-b9ba-7c2e8c255a7d.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=o2PaySppqL5MuS1COcjjd4YmLUpwkkfwx1l8za4Y85Y%3D&__gda__=1522241343_05f0a169fbfa6c9f6c0edcfcdf54b9a4", "fileSize": 25534129, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "4f1e1b1b-9259-457e-a218-e3ffe380ecf8", "state": "Published", "datePublished": "2018-03-28T11:33:50.8769325Z", "dateRecorded": "2018-03-28T11:09:19Z", "lastModified": "2018-03-28T11:33:50.8769325Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "547c9718-c48d-42c2-ba8e-dd84ec6f421f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2009.xboxlive.com/xuid-2535457407253477-public/4f1e1b1b-9259-457e-a218-e3ffe380ecf8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2009.xboxlive.com/xuid-2535457407253477-public/4f1e1b1b-9259-457e-a218-e3ffe380ecf8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2009.xboxlive.com/xuid-2535457407253477-private/4f1e1b1b-9259-457e-a218-e3ffe380ecf8.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=LMTrV2cZhJUT6MIAXuG68FDHEPfp%2B6xbx8qg5da4P3U%3D&__gda__=1522241343_85e9a408de70f0091f2b8747d9b06b2a", "fileSize": 20385578, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535457407253477", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "a2bc4e3e-42a2-45c2-a348-ec5d03066d57", "state": "Published", "datePublished": "2018-03-28T11:33:14.177592Z", "dateRecorded": "2018-03-28T01:49:24Z", "lastModified": "2018-03-28T11:33:14.177592Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "5efb877f-163e-4e19-92d4-b626dcb08ec80;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533274922715795-public/a2bc4e3e-42a2-45c2-a348-ec5d03066d57_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533274922715795-public/a2bc4e3e-42a2-45c2-a348-ec5d03066d57_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3019.xboxlive.com/xuid-2533274922715795-private/a2bc4e3e-42a2-45c2-a348-ec5d03066d57.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=oN57DdEqGS9TCM9bUI%2BIrexv%2B82Yxz6QXguU%2BJNQQAE%3D&__gda__=1522241343_c1d2229159f9c7e02c0d80bcac556c79", "fileSize": 40945215, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274922715795", "clipName": "", "titleName": "System", "gameClipLocale": "es-ES", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "335c1075-610d-4617-9f02-9cd6bf5fd53b", "state": "Published", "datePublished": "2018-03-28T11:33:10.0758455Z", "dateRecorded": "2018-03-28T11:15:34Z", "lastModified": "2018-03-28T11:33:10.0758455Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "5978a900-4ad3-4e4c-9842-0394541c8cc60;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535442099396347-public/335c1075-610d-4617-9f02-9cd6bf5fd53b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535442099396347-public/335c1075-610d-4617-9f02-9cd6bf5fd53b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3020.xboxlive.com/xuid-2535442099396347-private/335c1075-610d-4617-9f02-9cd6bf5fd53b.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WRxE0CQL5k%2FHt4c2rVQnKb%2BYkxZX7%2BfTMeBb6AqDoiY%3D&__gda__=1522241343_e89e8204aeae1875573894a3eec6b682", "fileSize": 20229585, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535442099396347", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5d2ff3dc-fab0-4ef9-bcdd-0cc755bbcaac", "state": "Published", "datePublished": "2018-03-28T11:32:55.6908023Z", "dateRecorded": "2018-03-28T11:04:44Z", "lastModified": "2018-03-28T11:32:55.6908023Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "cfc18fcb-c37d-4f98-a2fb-29d489d479610;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535457407253477-public/5d2ff3dc-fab0-4ef9-bcdd-0cc755bbcaac_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535457407253477-public/5d2ff3dc-fab0-4ef9-bcdd-0cc755bbcaac_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3022.xboxlive.com/xuid-2535457407253477-private/5d2ff3dc-fab0-4ef9-bcdd-0cc755bbcaac.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=S2eY%2FxgpMPc4d5ShYnFsTmfAH%2F%2B7QyZHV38G0iJE9mg%3D&__gda__=1522241343_626b367ff4f74921d5f5946cdfde8240", "fileSize": 23926759, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535457407253477", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e576a456-7437-4940-bb8f-fdc6b6b6bc98", "state": "Published", "datePublished": "2018-03-28T11:32:49.7691064Z", "dateRecorded": "2018-03-28T11:27:28Z", "lastModified": "2018-03-28T11:32:49.7691064Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "e2af4996-da9e-49b1-8b64-d337bdabd7b10;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535430120417324-public/e576a456-7437-4940-bb8f-fdc6b6b6bc98_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3012.xboxlive.com/xuid-2535430120417324-public/e576a456-7437-4940-bb8f-fdc6b6b6bc98_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3012.xboxlive.com/xuid-2535430120417324-private/e576a456-7437-4940-bb8f-fdc6b6b6bc98.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WEfywSWyjHp%2FjLh%2FinPSvJzPaDMKfTKEYzftDCk%2FFrg%3D&__gda__=1522241343_a92cf202e422e3d7fd5cad83a4350ae3", "fileSize": 20020892, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535430120417324", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "acd1bf7a-5e9f-4f3f-93f5-b4ddaea38ba9", "state": "Published", "datePublished": "2018-03-28T11:32:48.1350621Z", "dateRecorded": "2018-03-28T11:26:49Z", "lastModified": "2018-03-28T11:32:48.1350621Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "8d89c3ed-da4e-4517-81dc-292836464ffe0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2009.xboxlive.com/xuid-2535409562125257-public/acd1bf7a-5e9f-4f3f-93f5-b4ddaea38ba9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2009.xboxlive.com/xuid-2535409562125257-public/acd1bf7a-5e9f-4f3f-93f5-b4ddaea38ba9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2009.xboxlive.com/xuid-2535409562125257-private/acd1bf7a-5e9f-4f3f-93f5-b4ddaea38ba9.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=sRpSctd9Gn%2FMDfCMkBFWzFpaEb%2FXKiP4q8pIe8yp1Q8%3D&__gda__=1522241343_1ef32b16a7255aa9a3dfc8a1f696df01", "fileSize": 16357134, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535409562125257", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "26cee46e-3e53-4dd5-bfc8-480358f8f4e1", "state": "Published", "datePublished": "2018-03-28T11:32:42.6970679Z", "dateRecorded": "2018-03-28T10:44:48Z", "lastModified": "2018-03-28T11:32:42.6970679Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "56a43432-0055-4715-87df-144ca8060ff00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3026.xboxlive.com/xuid-2535410564295910-public/26cee46e-3e53-4dd5-bfc8-480358f8f4e1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3026.xboxlive.com/xuid-2535410564295910-public/26cee46e-3e53-4dd5-bfc8-480358f8f4e1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3026.xboxlive.com/xuid-2535410564295910-private/26cee46e-3e53-4dd5-bfc8-480358f8f4e1.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WgQjlXkLOGdW0aEM%2B5P%2F9mVXCZa%2FsHNAUWXDOoP9L5E%3D&__gda__=1522241343_c0f2907d733834429b82f4fa2fdb9fb5", "fileSize": 28498239, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "d923a0b1-b4c2-4e48-96c0-0fd744e86c8a", "state": "Published", "datePublished": "2018-03-28T11:32:28.3363329Z", "dateRecorded": "2018-03-28T11:27:37Z", "lastModified": "2018-03-28T11:32:28.3363329Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "167d0fc2-cf1e-44c9-b090-e6441a5a902f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2002.xboxlive.com/xuid-2535410890309067-public/d923a0b1-b4c2-4e48-96c0-0fd744e86c8a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2002.xboxlive.com/xuid-2535410890309067-public/d923a0b1-b4c2-4e48-96c0-0fd744e86c8a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2002.xboxlive.com/xuid-2535410890309067-private/d923a0b1-b4c2-4e48-96c0-0fd744e86c8a.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=aGhIbmyBQe2R6ox%2B2WcdeCq2OmvKRkzC1Dt8c4iBgos%3D&__gda__=1522241343_37c055381ce82dba89cdf15603dad927", "fileSize": 39136914, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410890309067", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "287250b9-46b6-4b52-ae59-a77ce5ff2296", "state": "Published", "datePublished": "2018-03-28T11:32:21.9301682Z", "dateRecorded": "2018-03-28T11:29:32Z", "lastModified": "2018-03-28T11:32:21.9301682Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "76031f81-101b-4112-b4eb-138875b7359e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535453175259551-public/287250b9-46b6-4b52-ae59-a77ce5ff2296_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535453175259551-public/287250b9-46b6-4b52-ae59-a77ce5ff2296_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3024.xboxlive.com/xuid-2535453175259551-private/287250b9-46b6-4b52-ae59-a77ce5ff2296.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=uE9uySyNRYQDmy9dy6srav75%2FoQysaDgIIB7eOUYDSk%3D&__gda__=1522241343_d5d47a9e6e1cd03ebe8d079920513be4", "fileSize": 23595785, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535453175259551", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "199d5383-2849-43e5-a164-3cf16489c1e1", "state": "Published", "datePublished": "2018-03-28T11:32:21.2346591Z", "dateRecorded": "2018-03-28T11:30:08Z", "lastModified": "2018-03-28T11:32:21.2346591Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "249268bc-b966-4d06-a775-7e45549577030;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2008.xboxlive.com/xuid-2533274973946057-public/199d5383-2849-43e5-a164-3cf16489c1e1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2008.xboxlive.com/xuid-2533274973946057-public/199d5383-2849-43e5-a164-3cf16489c1e1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2008.xboxlive.com/xuid-2533274973946057-private/199d5383-2849-43e5-a164-3cf16489c1e1.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2mt%2FD1TqHJqtw5GTN5WE81tOb1Hl9KAdQaGvCU%2Bnes0%3D&__gda__=1522241343_1c75d2e697eabbe583e48ea890ee283c", "fileSize": 23569300, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2533274973946057", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "d5b74869-60a7-4280-8e8a-f854cf28318a", "state": "Published", "datePublished": "2018-03-28T11:32:13.7640356Z", "dateRecorded": "2018-03-27T20:56:06Z", "lastModified": "2018-03-28T11:32:13.7640356Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 600, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "e0d99b2f-2ea4-43b9-a88e-24caa419aa570;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2535456615302976-public/d5b74869-60a7-4280-8e8a-f854cf28318a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2535456615302976-public/d5b74869-60a7-4280-8e8a-f854cf28318a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3019.xboxlive.com/xuid-2535456615302976-private/d5b74869-60a7-4280-8e8a-f854cf28318a.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=keyQS88z5jI%2FCiA6W0Y7UiwZbVC3P9ZUVPs0To3mP00%3D&__gda__=1522241343_2f973f5a87fcc48953a47d7026e7d06a", "fileSize": 354761738, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535456615302976", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "49f78637-ce9f-431d-b412-056e0fd79fab", "state": "Published", "datePublished": "2018-03-28T11:32:13.7371679Z", "dateRecorded": "2018-03-27T21:06:24Z", "lastModified": "2018-03-28T11:32:13.7371679Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 599, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "efd9a39f-ec11-4688-8204-6c5e9b821d6c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535456615302976-public/49f78637-ce9f-431d-b412-056e0fd79fab_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535456615302976-public/49f78637-ce9f-431d-b412-056e0fd79fab_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3021.xboxlive.com/xuid-2535456615302976-private/49f78637-ce9f-431d-b412-056e0fd79fab.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=BAmsgnQBfZOxVeSCqjQ9IMZN3%2BiiNYYLSkTTRRX7xnw%3D&__gda__=1522241343_67c080411768c4ab6735c8d9ef1b268d", "fileSize": 339585895, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535456615302976", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1da707f0-d229-47d2-907d-d885c41e072d", "state": "Published", "datePublished": "2018-03-28T11:31:26.0952576Z", "dateRecorded": "2018-03-28T10:28:05Z", "lastModified": "2018-03-28T11:31:26.0952576Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "0c10fb68-f4a7-47f9-89c1-74d7c7269ef40;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3015.xboxlive.com/xuid-2535434500107928-public/1da707f0-d229-47d2-907d-d885c41e072d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3015.xboxlive.com/xuid-2535434500107928-public/1da707f0-d229-47d2-907d-d885c41e072d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3015.xboxlive.com/xuid-2535434500107928-private/1da707f0-d229-47d2-907d-d885c41e072d.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=6G3U0K07RW9exa8tW538Yv%2Fi7E2YjxlTPARZfcCcCN4%3D&__gda__=1522241343_27a7700ce5ad96192af1ea2fb9fe99b0", "fileSize": 24194726, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535434500107928", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "8290a49a-79bb-4aa3-926f-ad1c3300bddb", "state": "Published", "datePublished": "2018-03-28T11:31:25.4432456Z", "dateRecorded": "2018-03-28T10:28:11Z", "lastModified": "2018-03-28T11:31:25.4432456Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "cac66643-0f59-48be-9e00-907916ea5f970;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3025.xboxlive.com/xuid-2535434500107928-public/8290a49a-79bb-4aa3-926f-ad1c3300bddb_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3025.xboxlive.com/xuid-2535434500107928-public/8290a49a-79bb-4aa3-926f-ad1c3300bddb_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3025.xboxlive.com/xuid-2535434500107928-private/8290a49a-79bb-4aa3-926f-ad1c3300bddb.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=fnIYufzwtyPwUSNJUkvdpf%2BYONurN5oQuIxVtk146dA%3D&__gda__=1522241343_1a3695c9f489f66cbc2b2448ad6d877b", "fileSize": 23092382, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535434500107928", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "80656268-038c-42cc-8fd4-9ac148a1a9cd", "state": "Published", "datePublished": "2018-03-28T11:31:24.3661841Z", "dateRecorded": "2018-03-27T20:45:50Z", "lastModified": "2018-03-28T11:31:24.3661841Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "b020f9b5-23f1-48c5-8f36-6650c4b1a0a70;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2535410564295910-public/80656268-038c-42cc-8fd4-9ac148a1a9cd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2535410564295910-public/80656268-038c-42cc-8fd4-9ac148a1a9cd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3013.xboxlive.com/xuid-2535410564295910-private/80656268-038c-42cc-8fd4-9ac148a1a9cd.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=1UlzfHZI4jQosq1e4y8Iu4wUIZngz2HsFY49NR84aaI%3D&__gda__=1522241343_cf59d7cb65523bd034e166ea6cd270f0", "fileSize": 22360763, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "2b6019ad-e7b6-413b-bacb-6fab3b033d22", "state": "Published", "datePublished": "2018-03-28T11:31:24.1845918Z", "dateRecorded": "2018-03-28T11:27:46Z", "lastModified": "2018-03-28T11:31:24.1845918Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 22, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "788401dc-a52d-45dc-af14-551d6f54c8ea0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535459898619148-public/2b6019ad-e7b6-413b-bacb-6fab3b033d22_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535459898619148-public/2b6019ad-e7b6-413b-bacb-6fab3b033d22_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3021.xboxlive.com/xuid-2535459898619148-private/2b6019ad-e7b6-413b-bacb-6fab3b033d22.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3Nywjcl9SRo70ayEwW3MznrVuNlsyLMuHk2tNSMlJT0%3D&__gda__=1522241343_299a060af1172faba7d33f096dae4dfe", "fileSize": 7127999, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535459898619148", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "2cd2201e-daae-4b3e-8246-d6c64b72b6ae", "state": "Published", "datePublished": "2018-03-28T11:31:13.1800741Z", "dateRecorded": "2018-03-28T11:11:32Z", "lastModified": "2018-03-28T11:31:13.1800741Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 1, "titleData": "", "systemProperties": "65fcd0a7-7a57-4114-a363-3da73a3869810;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535441033416760-public/2cd2201e-daae-4b3e-8246-d6c64b72b6ae_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535441033416760-public/2cd2201e-daae-4b3e-8246-d6c64b72b6ae_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3024.xboxlive.com/xuid-2535441033416760-private/2cd2201e-daae-4b3e-8246-d6c64b72b6ae.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Btps3eXKovNf6tZDhWqHkilo4UPhHx%2FEAyW98psM5HY%3D&__gda__=1522241343_418847dda7ce57567142b85f12a9763a", "fileSize": 21216378, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535441033416760", "clipName": "", "titleName": "System", "gameClipLocale": "en-NZ", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "0adfb6bd-fa4b-4af5-8357-8d8c2c188c75", "state": "Published", "datePublished": "2018-03-28T11:30:30.5052306Z", "dateRecorded": "2018-03-28T11:27:06Z", "lastModified": "2018-03-28T11:30:30.5052306Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "dd6f0f04-8751-427c-a643-47a6149b70990;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/xuid-2535430120417324-public/0adfb6bd-fa4b-4af5-8357-8d8c2c188c75_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/xuid-2535430120417324-public/0adfb6bd-fa4b-4af5-8357-8d8c2c188c75_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/xuid-2535430120417324-private/0adfb6bd-fa4b-4af5-8357-8d8c2c188c75.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FOXxGPyBCxDgBl03M0uhd4BkAtef1DR0XDg%2BtaZXQpo%3D&__gda__=1522241343_22ae6aae289958d3c29d0d4beb1553b0", "fileSize": 24196568, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535430120417324", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "4fff27b3-5dd6-4983-a574-85d90cd298ac", "state": "Published", "datePublished": "2018-03-28T11:30:23.0414078Z", "dateRecorded": "2018-03-27T20:43:53Z", "lastModified": "2018-03-28T11:30:23.0414078Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d3d1e073-414d-4207-ac06-fff968d773730;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/4fff27b3-5dd6-4983-a574-85d90cd298ac_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/4fff27b3-5dd6-4983-a574-85d90cd298ac_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535410564295910-private/4fff27b3-5dd6-4983-a574-85d90cd298ac.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xknUDX3tRmh%2BNmRS05THo5MjmpNstzMcxzG1kug0bfg%3D&__gda__=1522241343_732d9f764b14401c96d7285885294245", "fileSize": 24430146, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "82e5e418-58a0-4bc6-a79b-07e18a41098d", "state": "Published", "datePublished": "2018-03-28T11:30:08.3366401Z", "dateRecorded": "2018-03-28T11:27:46Z", "lastModified": "2018-03-28T11:30:08.3366401Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 22, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "788401dc-a52d-45dc-af14-551d6f54c8ea0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535459898619148-public/82e5e418-58a0-4bc6-a79b-07e18a41098d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535459898619148-public/82e5e418-58a0-4bc6-a79b-07e18a41098d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3021.xboxlive.com/xuid-2535459898619148-private/82e5e418-58a0-4bc6-a79b-07e18a41098d.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=5DxBTAaDs31pCtc1yDrMC9lf59Chxd1uIzUAnYDFtWE%3D&__gda__=1522241343_eeb9bf75a721064f4985562d41aa0ccf", "fileSize": 7127999, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535459898619148", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "229a19cb-a567-4471-b5b4-e349f4a37ea9", "state": "Published", "datePublished": "2018-03-28T11:29:43.4230419Z", "dateRecorded": "2018-03-28T11:10:01Z", "lastModified": "2018-03-28T11:29:43.4230419Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "53ac15eb-000c-4cb3-865e-dfef22b377650;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535468671409107-public/229a19cb-a567-4471-b5b4-e349f4a37ea9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535468671409107-public/229a19cb-a567-4471-b5b4-e349f4a37ea9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535468671409107-private/229a19cb-a567-4471-b5b4-e349f4a37ea9.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=k4Ozi6lwyOgbwgdymdPODiAfTGGd2GAhtML9C4FgPMU%3D&__gda__=1522241343_2934cf2b1d6e217009e24e3892caa19a", "fileSize": 21855598, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535468671409107", "clipName": "", "titleName": "System", "gameClipLocale": "en-IE", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "b95eb362-6dda-43fd-951d-e680a3fa83f2", "state": "Published", "datePublished": "2018-03-28T11:29:42.4633563Z", "dateRecorded": "2018-03-27T15:56:50Z", "lastModified": "2018-03-28T11:29:42.4633563Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 44, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 2, "titleData": "", "systemProperties": "39d2dc4c-ba33-4e49-bb34-48d370befb060;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535414119789233-public/b95eb362-6dda-43fd-951d-e680a3fa83f2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3024.xboxlive.com/xuid-2535414119789233-public/b95eb362-6dda-43fd-951d-e680a3fa83f2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3024.xboxlive.com/xuid-2535414119789233-private/b95eb362-6dda-43fd-951d-e680a3fa83f2.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TLx%2BWeQtnBTeWWgI6HxXAfFrLDjMbr2EZTqRGkXhzo4%3D&__gda__=1522241343_1d9d38c2f5a01d278f60c8a529dc415b", "fileSize": 35275544, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535414119789233", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "77ad61e1-776a-4d4a-9213-acd5d5b2ad3e", "state": "Published", "datePublished": "2018-03-28T11:29:15.268892Z", "dateRecorded": "2018-03-27T20:17:45Z", "lastModified": "2018-03-28T11:29:15.268892Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "f2e5fdec-6dfe-493c-941c-587e79e540f90;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2535410564295910-public/77ad61e1-776a-4d4a-9213-acd5d5b2ad3e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2535410564295910-public/77ad61e1-776a-4d4a-9213-acd5d5b2ad3e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3017.xboxlive.com/xuid-2535410564295910-private/77ad61e1-776a-4d4a-9213-acd5d5b2ad3e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=BMxwINZW5HRImcSZkL7zLR3tHzW6bcmAOiR4%2FHzGOfU%3D&__gda__=1522241343_0f0da7a77fb2aa7843312eaa7014d07e", "fileSize": 25303784, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2160559Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "06c50323-26e4-4b51-aa6f-e5f4fb364de1", "state": "Published", "datePublished": "2018-03-28T11:29:05.8506548Z", "dateRecorded": "2018-03-28T11:14:31Z", "lastModified": "2018-03-28T11:29:05.8506548Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 14, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c3a3611b-e2b2-4e8d-8017-32e316280eea0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2533274951167430-public/06c50323-26e4-4b51-aa6f-e5f4fb364de1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2533274951167430-public/06c50323-26e4-4b51-aa6f-e5f4fb364de1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/xuid-2533274951167430-private/06c50323-26e4-4b51-aa6f-e5f4fb364de1.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=XrEL3uhH0EUFUlz2tTCXZZ2eR45FrfZCYok7%2F7Ky728%3D&__gda__=1522241343_95c2b0565f40f463cfd841f20ca5f6e4", "fileSize": 14786118, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533274951167430", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "05607809-7409-438b-8743-cfec7879e266", "state": "Published", "datePublished": "2018-03-28T11:28:42.0970006Z", "dateRecorded": "2018-03-28T10:52:54Z", "lastModified": "2018-03-28T11:28:42.0970006Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "51e32f80-8b4c-4dd2-b736-5f4411de83e80;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535423881094439-public/05607809-7409-438b-8743-cfec7879e266_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535423881094439-public/05607809-7409-438b-8743-cfec7879e266_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3020.xboxlive.com/xuid-2535423881094439-private/05607809-7409-438b-8743-cfec7879e266.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=K35OsXHDW7TbOSlizNZszlx7t2jg%2BT1CMLqhtCDkuEo%3D&__gda__=1522241343_f69012262e417a5943a4a48471680219", "fileSize": 24145662, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535423881094439", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "dff58723-78f3-45b6-adcc-3cb5d1bf3086", "state": "Published", "datePublished": "2018-03-28T11:28:30.6042287Z", "dateRecorded": "2018-03-28T11:25:53Z", "lastModified": "2018-03-28T11:28:30.6042287Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "cb926df6-d1af-4621-9466-e636c24ed3fb0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2533274823314589-public/dff58723-78f3-45b6-adcc-3cb5d1bf3086_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2533274823314589-public/dff58723-78f3-45b6-adcc-3cb5d1bf3086_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/xuid-2533274823314589-private/dff58723-78f3-45b6-adcc-3cb5d1bf3086.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=obpP7GyFrB6jOZqkr0V9pT9NkpHdBeRe%2BNw9xdAskCc%3D&__gda__=1522241343_71d32a73a1d5f4fb55de998ccefb15d4", "fileSize": 50840156, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533274823314589", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "a7f366e0-3f4b-4f6e-a9ae-f68016ba1973", "state": "Published", "datePublished": "2018-03-28T11:28:23.9292644Z", "dateRecorded": "2018-03-28T10:52:42Z", "lastModified": "2018-03-28T11:28:23.9292644Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6e11a126-204f-4ff4-bfb1-c482b58fe2c50;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/xuid-2535423881094439-public/a7f366e0-3f4b-4f6e-a9ae-f68016ba1973_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/xuid-2535423881094439-public/a7f366e0-3f4b-4f6e-a9ae-f68016ba1973_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/xuid-2535423881094439-private/a7f366e0-3f4b-4f6e-a9ae-f68016ba1973.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lom7W5yb7BNLEvL3NiXlzBPyM6at72nQ8ITOAnHUxuE%3D&__gda__=1522241343_44dbfc052e30a2491c0825db732af2ee", "fileSize": 24567357, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535423881094439", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6fe3da24-577a-4b42-a144-315dca32e107", "state": "Published", "datePublished": "2018-03-28T11:28:17.7897296Z", "dateRecorded": "2018-03-28T11:13:04Z", "lastModified": "2018-03-28T11:28:17.7897296Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "aab981c1-87a9-4fd1-8aea-0849a033228b0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535433587742335-public/6fe3da24-577a-4b42-a144-315dca32e107_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535433587742335-public/6fe3da24-577a-4b42-a144-315dca32e107_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3022.xboxlive.com/xuid-2535433587742335-private/6fe3da24-577a-4b42-a144-315dca32e107.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RFGo9dGeflHbSTfLrNVJS25QdBhPkpwCeAvKpJVFMeA%3D&__gda__=1522241343_bfc87b7c1e122291f732a6b9f7b4a735", "fileSize": 6904363, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535433587742335", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "77438ecd-0b0b-4e72-9c9c-edb9099c09bd", "state": "Published", "datePublished": "2018-03-28T11:28:15.2532757Z", "dateRecorded": "2018-03-28T11:28:05Z", "lastModified": "2018-03-28T11:28:15.2532757Z", "userCaption": "halo 5", "type": "UserGenerated", "durationInSeconds": 17, "scid": "03a80100-9ff3-46ea-be76-e00e7fe465df", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6bc935e3-1eb6-4895-975e-9124975192d3;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533274803345346-public/77438ecd-0b0b-4e72-9c9c-edb9099c09bd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533274803345346-public/77438ecd-0b0b-4e72-9c9c-edb9099c09bd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3013.xboxlive.com/xuid-2533274803345346-private/77438ecd-0b0b-4e72-9c9c-edb9099c09bd.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4qjCIndgtK9sah%2FRycNoQ92%2BETWGdY14iLqdh24fZu8%3D&__gda__=1522241343_2590a44a9a84fac0424cb59dc64ed995", "fileSize": 9296195, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533274803345346", "clipName": "", "titleName": "Upload Studio", "gameClipLocale": "es-ES", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "57c9686c-3b26-4fca-8c8f-5e6a90889a8e", "state": "Published", "datePublished": "2018-03-28T11:28:05.494686Z", "dateRecorded": "2018-03-27T20:16:27Z", "lastModified": "2018-03-28T11:28:05.494686Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "1855d755-ec51-42ad-8454-c9e503e379490;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/57c9686c-3b26-4fca-8c8f-5e6a90889a8e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535410564295910-public/57c9686c-3b26-4fca-8c8f-5e6a90889a8e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535410564295910-private/57c9686c-3b26-4fca-8c8f-5e6a90889a8e.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=rWMLbWJ84f1HjyyIQhCEDFvb00gMfxt8u5sIKDj1VR4%3D&__gda__=1522241343_ae36c9683e42261b6a304655819a560c", "fileSize": 25862065, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "d2296bd4-1443-4550-a07a-4be9f2099255", "state": "Published", "datePublished": "2018-03-28T11:26:54.0699933Z", "dateRecorded": "2018-03-27T20:14:09Z", "lastModified": "2018-03-28T11:26:54.0699933Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "09bb3e03-c724-46b9-a709-75f16f67b6dd0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535410564295910-public/d2296bd4-1443-4550-a07a-4be9f2099255_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3022.xboxlive.com/xuid-2535410564295910-public/d2296bd4-1443-4550-a07a-4be9f2099255_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3022.xboxlive.com/xuid-2535410564295910-private/d2296bd4-1443-4550-a07a-4be9f2099255.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=eKBZ%2FQyvKZmAGZlJyWMfUGDplSDem%2FhWm1kbKcDPER4%3D&__gda__=1522241343_e4ed83cef1fe2752018f1307e4ffc4c1", "fileSize": 20790720, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "3c65259b-ac26-4075-a3b3-1c577f7aba51", "state": "Published", "datePublished": "2018-03-28T11:26:39.3681148Z", "dateRecorded": "2018-03-28T11:08:41Z", "lastModified": "2018-03-28T11:26:39.3681148Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "cadaebbc-ba08-4454-93fd-a5c4e5db3ac90;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3004.xboxlive.com/xuid-2533274983109787-public/3c65259b-ac26-4075-a3b3-1c577f7aba51_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3004.xboxlive.com/xuid-2533274983109787-public/3c65259b-ac26-4075-a3b3-1c577f7aba51_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3004.xboxlive.com/xuid-2533274983109787-private/3c65259b-ac26-4075-a3b3-1c577f7aba51.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YA0hpfLkGVJrRPd1t4n8xBwCka6xS5h20B%2Bp9zjgnSE%3D&__gda__=1522241343_026ce24238521e38d2d56c5232b41b6e", "fileSize": 20602757, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533274983109787", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "781729f7-284d-4436-bca5-a122011a32aa", "state": "Published", "datePublished": "2018-03-28T11:26:32.6083661Z", "dateRecorded": "2018-03-28T11:19:27Z", "lastModified": "2018-03-28T11:26:32.6083661Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 5, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "be7ca397-9554-49ab-9c18-6cae4a19a21f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2016.xboxlive.com/xuid-2533274991165897-public/781729f7-284d-4436-bca5-a122011a32aa_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2016.xboxlive.com/xuid-2533274991165897-public/781729f7-284d-4436-bca5-a122011a32aa_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2016.xboxlive.com/xuid-2533274991165897-private/781729f7-284d-4436-bca5-a122011a32aa.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=MQg36E2Y4RFIuSmw3gwY33uA5GsrbIq7X2CSFTfiE5E%3D&__gda__=1522241343_b948d57e9bf0b971497b337595b2ac3b", "fileSize": 8021814, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533274991165897", "clipName": "", "titleName": "System", "gameClipLocale": "sv-SE", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1af35276-eaf4-4e93-90ea-361f7d6fc18f", "state": "Published", "datePublished": "2018-03-28T11:26:28.5868227Z", "dateRecorded": "2018-03-28T11:23:29Z", "lastModified": "2018-03-28T11:26:28.5868227Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 1, "titleData": "", "systemProperties": "09a7e142-91d8-4518-88c0-a1ef11044d960;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3007.xboxlive.com/xuid-2535454091503628-public/1af35276-eaf4-4e93-90ea-361f7d6fc18f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3007.xboxlive.com/xuid-2535454091503628-public/1af35276-eaf4-4e93-90ea-361f7d6fc18f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3007.xboxlive.com/xuid-2535454091503628-private/1af35276-eaf4-4e93-90ea-361f7d6fc18f.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=uCO7w7JZ4odSihFuZ7e10zmshnNyIWZJxLo4k%2BrLsXU%3D&__gda__=1522241343_c37fcf96789b5a818f6467b95ca381ce", "fileSize": 24481720, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535454091503628", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "fed42b0a-72a8-46fb-b4c8-ef195e4de8c5", "state": "Published", "datePublished": "2018-03-28T11:26:26.0595719Z", "dateRecorded": "2018-03-28T09:16:14Z", "lastModified": "2018-03-28T11:26:26.0595719Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 94, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "3a2eac65-9711-4159-b423-57aa0e455d6c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533274814489324-public/fed42b0a-72a8-46fb-b4c8-ef195e4de8c5_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3019.xboxlive.com/xuid-2533274814489324-public/fed42b0a-72a8-46fb-b4c8-ef195e4de8c5_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3019.xboxlive.com/xuid-2533274814489324-private/fed42b0a-72a8-46fb-b4c8-ef195e4de8c5.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=O4wOlYA7vOy5sGI2jrz%2BAtxJGsF1eMRGMGsjwWwulGE%3D&__gda__=1522241343_b8fc311f75af30fde15a6dacd5e387b8", "fileSize": 53084938, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533274814489324", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "47d9bcba-f3d3-4314-8e7c-583c2068d4cb", "state": "Published", "datePublished": "2018-03-28T11:26:08.1958019Z", "dateRecorded": "2018-03-28T11:22:11Z", "lastModified": "2018-03-28T11:26:08.1958019Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d083c802-5460-4e13-868b-34bde81b33dc0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533275010275613-public/47d9bcba-f3d3-4314-8e7c-583c2068d4cb_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3013.xboxlive.com/xuid-2533275010275613-public/47d9bcba-f3d3-4314-8e7c-583c2068d4cb_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3013.xboxlive.com/xuid-2533275010275613-private/47d9bcba-f3d3-4314-8e7c-583c2068d4cb.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=eAVmX4W0gXDwW5T3XeT41Tlivu3JHAW8RwpnfiNc9lA%3D&__gda__=1522241343_9b9d661d17a14ebcfdf68f50436cd0f6", "fileSize": 23217788, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533275010275613", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "95bf1f44-d915-428c-b722-f9bba7041d95", "state": "Published", "datePublished": "2018-03-28T11:26:07.819213Z", "dateRecorded": "2018-03-28T10:51:00Z", "lastModified": "2018-03-28T11:26:07.819213Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 58, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "507bfb49-2958-4cec-8cc0-5a81240b6f4c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535417713503905-public/95bf1f44-d915-428c-b722-f9bba7041d95_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3020.xboxlive.com/xuid-2535417713503905-public/95bf1f44-d915-428c-b722-f9bba7041d95_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3020.xboxlive.com/xuid-2535417713503905-private/95bf1f44-d915-428c-b722-f9bba7041d95.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=iFcD5RT%2BsgGo5vAgdR3ldKpc%2Bt%2FPBxIW3x04%2B5YMtj0%3D&__gda__=1522241343_5f4e1f8dc29c2d9f95b2dc010f1b5df9", "fileSize": 41127745, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535417713503905", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "ffb9eb4c-c5fc-4a50-991d-289f503b689d", "state": "Published", "datePublished": "2018-03-28T11:25:59.3104666Z", "dateRecorded": "2018-03-28T11:25:34Z", "lastModified": "2018-03-28T11:25:59.3104666Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 25, "scid": "03a80100-9ff3-46ea-be76-e00e7fe465df", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "0c18cbc6-91ac-4d04-ab81-44c073abae78;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535423052088138-public/ffb9eb4c-c5fc-4a50-991d-289f503b689d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3014.xboxlive.com/xuid-2535423052088138-public/ffb9eb4c-c5fc-4a50-991d-289f503b689d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3014.xboxlive.com/xuid-2535423052088138-private/ffb9eb4c-c5fc-4a50-991d-289f503b689d.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RAPfuMyW2Z6pE8aigO%2FGymKnzbgUUjC%2FPBzjiF63WHU%3D&__gda__=1522241343_5b84cd953822b728d920211f5a5bba20", "fileSize": 13128997, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535423052088138", "clipName": "", "titleName": "Upload Studio", "gameClipLocale": "zh-HK", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6f76b771-d9af-4508-ab25-34ab22592ca5", "state": "Published", "datePublished": "2018-03-28T11:25:57.8377655Z", "dateRecorded": "2018-03-28T10:22:33Z", "lastModified": "2018-03-28T11:25:57.8377655Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c2e41e8a-28d5-4e9e-9aa5-49a4eca610ba0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2004.xboxlive.com/xuid-2535434864011606-public/6f76b771-d9af-4508-ab25-34ab22592ca5_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2004.xboxlive.com/xuid-2535434864011606-public/6f76b771-d9af-4508-ab25-34ab22592ca5_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2004.xboxlive.com/xuid-2535434864011606-private/6f76b771-d9af-4508-ab25-34ab22592ca5.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=6BhYwWJztv69UlxyrUY8uk6zRH30XE8JW2PdbZE2SCs%3D&__gda__=1522241343_eb5d82062c2424e8aa8bef0b3297b1a1", "fileSize": 21635397, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535434864011606", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "93ecc9a1-0a4c-44ff-b2d9-ef709bf0fcdc", "state": "Published", "datePublished": "2018-03-28T11:25:56.6113254Z", "dateRecorded": "2018-03-28T10:49:21Z", "lastModified": "2018-03-28T11:25:56.6113254Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "431481af-5c89-4704-8841-d89cfcf999290;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535411627799168-public/93ecc9a1-0a4c-44ff-b2d9-ef709bf0fcdc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535411627799168-public/93ecc9a1-0a4c-44ff-b2d9-ef709bf0fcdc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3021.xboxlive.com/xuid-2535411627799168-private/93ecc9a1-0a4c-44ff-b2d9-ef709bf0fcdc.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=zSegBKyG4etbw786ubeo3wd0jHPSUpJ%2Fn6LeQ2uF60w%3D&__gda__=1522241343_d92a2a63235ac392017979a428fa9fbb", "fileSize": 25775930, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535411627799168", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "75fb6ff0-aedd-485d-bb6c-ebf06f2819d3", "state": "Published", "datePublished": "2018-03-28T11:25:55.4764226Z", "dateRecorded": "2018-03-27T20:04:20Z", "lastModified": "2018-03-28T11:25:55.4764226Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "ffd0eba2-d8d8-43db-ad9d-acc678c9c6240;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535410564295910-public/75fb6ff0-aedd-485d-bb6c-ebf06f2819d3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3021.xboxlive.com/xuid-2535410564295910-public/75fb6ff0-aedd-485d-bb6c-ebf06f2819d3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3021.xboxlive.com/xuid-2535410564295910-private/75fb6ff0-aedd-485d-bb6c-ebf06f2819d3.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=CzFpZULYq8SYZp6gUVO%2FiHdzPT3kOdbsNYLheT%2BeO1M%3D&__gda__=1522241343_e159f19cdc5c035827235d272d0cde38", "fileSize": 22475329, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535410564295910", "clipName": "", "titleName": "System", "gameClipLocale": "en-GB", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "b5363ad2-89da-49a4-881f-9ecc31156877", "state": "Published", "datePublished": "2018-03-28T11:25:33.088389Z", "dateRecorded": "2018-03-28T11:22:18Z", "lastModified": "2018-03-28T11:25:33.088389Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "e16e941a-0c01-4b72-9bed-994105e2ee290;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3018.xboxlive.com/xuid-2535453175259551-public/b5363ad2-89da-49a4-881f-9ecc31156877_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3018.xboxlive.com/xuid-2535453175259551-public/b5363ad2-89da-49a4-881f-9ecc31156877_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3018.xboxlive.com/xuid-2535453175259551-private/b5363ad2-89da-49a4-881f-9ecc31156877.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=UW30mkovr8xJNr0yZxb7o%2Fg0DkpTNwGla9Kyc1%2FThTU%3D&__gda__=1522241343_9ceedd76de74aa3ba969694848bef49a", "fileSize": 22872773, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535453175259551", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "dae92b6b-62e5-45cd-8a6c-7ce05a9a3336", "state": "Published", "datePublished": "2018-03-28T11:25:27.4845736Z", "dateRecorded": "2018-03-28T11:21:37Z", "lastModified": "2018-03-28T11:25:27.4845736Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "75849c8c-bb6d-404f-a494-96346033e6a80;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2535437576382525-public/dae92b6b-62e5-45cd-8a6c-7ce05a9a3336_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/xuid-2535437576382525-public/dae92b6b-62e5-45cd-8a6c-7ce05a9a3336_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/xuid-2535437576382525-private/dae92b6b-62e5-45cd-8a6c-7ce05a9a3336.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=kfPLrNMjWglGj3vFC%2BNgoVoi5cr3hUJvtQ6UOkRjvvQ%3D&__gda__=1522241343_70661b312e17369981096d27245a3942", "fileSize": 22770591, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535437576382525", "clipName": "", "titleName": "System", "gameClipLocale": "en-AU", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1ffb2cd8-1c07-4979-a9a9-027ec5303d6b", "state": "Published", "datePublished": "2018-03-28T11:25:26.2099462Z", "dateRecorded": "2018-03-28T11:04:43Z", "lastModified": "2018-03-28T11:25:26.2099462Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "372a17c2-183a-4fe6-b66e-4a3ea3018ddc0;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3018.xboxlive.com/xuid-2535442657589117-public/1ffb2cd8-1c07-4979-a9a9-027ec5303d6b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3018.xboxlive.com/xuid-2535442657589117-public/1ffb2cd8-1c07-4979-a9a9-027ec5303d6b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3018.xboxlive.com/xuid-2535442657589117-private/1ffb2cd8-1c07-4979-a9a9-027ec5303d6b.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Kftostdrdt9phyHjK2NLCrlYyRQIMN7A0YTtBUvBWB8%3D&__gda__=1522241343_6f83a2c3808c80136240772348eb15f4", "fileSize": 24138941, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535442657589117", "clipName": "", "titleName": "System", "gameClipLocale": "de-DE", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "9e240102-d6de-4df2-9527-c0243e075b90", "state": "Published", "datePublished": "2018-03-28T11:25:25.7187242Z", "dateRecorded": "2018-03-28T08:00:36Z", "lastModified": "2018-03-28T11:25:25.7187242Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 43, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "56dffe2f-4353-4f09-830f-cc5c67d2da940;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2006.xboxlive.com/xuid-2533274987615257-public/9e240102-d6de-4df2-9527-c0243e075b90_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2006.xboxlive.com/xuid-2533274987615257-public/9e240102-d6de-4df2-9527-c0243e075b90_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2006.xboxlive.com/xuid-2533274987615257-private/9e240102-d6de-4df2-9527-c0243e075b90.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=aann1UgY%2BUznaL%2BqBWqSxL6Pe2aLKuuz21ZMHKFPuKs%3D&__gda__=1522241343_d1d7031bc8bba41c70be10ef87138f8b", "fileSize": 29300766, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2533274987615257", "clipName": "", "titleName": "System", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Durango", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "2b7bd10c-57cc-4285-98d5-e1c7e882c8a0", "state": "Published", "datePublished": "2018-03-28T11:25:21.9191026Z", "dateRecorded": "2018-03-28T11:04:41Z", "lastModified": "2018-03-28T11:25:21.9191026Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "37081687-516c-4edf-a8eb-de95ab6d77d40;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3015.xboxlive.com/xuid-2535451404186500-public/2b7bd10c-57cc-4285-98d5-e1c7e882c8a0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3015.xboxlive.com/xuid-2535451404186500-public/2b7bd10c-57cc-4285-98d5-e1c7e882c8a0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3015.xboxlive.com/xuid-2535451404186500-private/2b7bd10c-57cc-4285-98d5-e1c7e882c8a0.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=9BSvKXofrsq%2FvQLhXcyChP2gJ9hFBKSRWi4YeRSzJ20%3D&__gda__=1522241343_0179c407b68b0a741ac925c45c14b0cc", "fileSize": 30570434, "uriType": "Download", "expiration": "2018-03-28T12:49:03.2316668Z" } ], "xuid": "2535451404186500", "clipName": "", "titleName": "System", "gameClipLocale": "fr-FR", "clipContentAttributes": "None", "deviceType": "Edmonton", "commentCount": 0, "likeCount": 0, "shareCount": 0, "partialViews": 0 } ], "pagingInfo": { "continuationToken": "abcde_vwxyzZAAAAA2" } }python-xbox-webapi-2.1.0/tests/data/responses/gameclips_saved_own.json000066400000000000000000001452151465040003600262640ustar00rootroot00000000000000{ "gameClips": [ { "gameClipId": "44b7e94d-b3e9-4b97-be73-417be9091e93", "state": "Published", "datePublished": "2017-11-10T07:12:27.4353527Z", "dateRecorded": "2017-11-10T06:29:39Z", "lastModified": "2017-11-10T07:12:27.4353527Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 822567888, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "6a7e1238-2f7b-4c66-835e-c7c799e310490;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3017.xboxlive.com/xuid-2669321029139235-private/44b7e94d-b3e9-4b97-be73-417be9091e93.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lRkjf6USrukD5PCVp3PonFdwX5fD%2FmuLPWpRkIS2ydw%3D&__gda__=1522241341_d651111247d5ca9c1bb8b9244a8cd361", "fileSize": 43595475, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Danger Zone", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 2, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f87cc6ac-c291-4998-9124-d8b36c059b6a", "state": "Published", "datePublished": "2016-08-16T05:51:40.1354298Z", "dateRecorded": "2016-08-16T05:40:30Z", "lastModified": "2016-08-16T05:51:40.1354298Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 653, "titleData": "", "systemProperties": "56d4ac4e-efcd-4808-8d53-7583859558a4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ikXCzETBJSBPvS8W%2FxoWTCJL%2FGY6PxKpQ0VG6qktnCQ%3D", "fileSize": 159667, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=y1S%2BxzFVrgmTql2ZuYDpe6EtL5Jxu%2BhBVMnb%2Ff7ZTMA%3D", "fileSize": 522262, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-d5448dbd-f45e-46ab-ae4e-a2e205a70e7c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ArSoLvy9EnQeBthGW6%2FbasedHHk0Jb6iXjI3EMq8oh8%3D&__gda__=1522241341_69f67a7a3533626ae90b52845664dc0c", "fileSize": 12662239, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 5, "likeCount": 62, "shareCount": 2, "partialViews": 0 }, { "gameClipId": "bebd3d48-6622-4339-8e28-794d1b1a2755", "state": "Published", "datePublished": "2016-08-15T06:25:58.1253078Z", "dateRecorded": "2016-08-15T06:15:51Z", "lastModified": "2016-08-15T06:25:58.1253078Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 419, "titleData": "", "systemProperties": "caa87cc1-29aa-4278-9c89-8d8e9878d572;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BKiArrxRSTuFgIC2U9zL11fcGTqyg5QN7IE13fGfb9Y%3D", "fileSize": 169327, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FvDgQcOqGiXUNNEJ%2BLI0FSh4k0IPOfOSrnYmLWXDEBE%3D", "fileSize": 560631, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-89737fe6-5b03-48f5-8ed3-e98555005708/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=D%2Bigy01bwJhig0IBR1PeddcG3jjbnRY7pVMajeGn8ow%3D&__gda__=1522241341_a7fc62384a631bab79fdd05bcdea55bd", "fileSize": 10955394, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 4, "likeCount": 44, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "80194c67-aa0e-4fc9-a7c9-a072eab6a58c", "state": "Published", "datePublished": "2016-08-15T06:16:35.5632265Z", "dateRecorded": "2016-08-15T06:05:31Z", "lastModified": "2016-08-15T06:16:35.5632265Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 146, "titleData": "", "systemProperties": "2f17ddff-10a1-4571-99d6-aeb6fdee1dda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ggh%2B98ziFOWYtFhkLqWi48oJYbwVunXmlbIkIv1LgIs%3D", "fileSize": 141131, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jHSNBytHUluIfePVBL4ONfY3%2F6ro1Lf%2BCGvYukP0%2Bs4%3D", "fileSize": 461383, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-d64cdc9c-ffc2-4811-a673-36523755755c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d8uSVktAu5ivZUJiPHchDbnrJOuU07%2BPBI2V%2BzkC2aU%3D&__gda__=1522241341_883b80fa63d862fd6159f12c2f3f5cc5", "fileSize": 12403813, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 25, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "daf3defb-d6fd-46a0-bcf2-ac732f4473e2", "state": "Published", "datePublished": "2016-08-13T04:31:49.242885Z", "dateRecorded": "2016-08-13T04:19:16Z", "lastModified": "2016-08-13T04:31:49.242885Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 281, "titleData": "", "systemProperties": "16481f6e-3d56-4714-ae19-703e697c8670;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xas0uCgwzYT5jdcGFfUQwWEOsdIh%2F706Tg4n0LhMQ9A%3D", "fileSize": 123085, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xeuTHzaM31N0uuwAxIE8tQAw8q%2FCHT6PeIrEFIaOamc%3D", "fileSize": 384234, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3007.xboxlive.com/asset-acc33ad2-2bea-46f8-8adc-6edf5227ac4a/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YCQSnIj5R5%2F%2BU3gxFYTgMOKbeAFnl7BvIOva%2BvnCCtQ%3D&__gda__=1522241341_443a14b9a121c06c710aac5f5f63d63e", "fileSize": 14350846, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 42, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1d64fe91-fe19-4f57-956e-1bb80fdcc063", "state": "Published", "datePublished": "2016-08-11T05:40:29.0010865Z", "dateRecorded": "2016-08-11T05:29:32Z", "lastModified": "2016-08-11T05:40:29.0010865Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 287, "titleData": "", "systemProperties": "0342eaea-9d89-4fb4-9d52-38f793085b22;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=mvfJLhmi3olAfpCxhEP6gkBwUJnB%2F%2Bfxiw1tVqBN2Pc%3D", "fileSize": 134312, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ZRdKvsr%2FUYSaIkVYNejY189sdwDgE2%2Fuvnr324%2B3MUg%3D", "fileSize": 426344, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-1a39ee9b-144a-4853-92fd-ee56387c7e1b/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=eiGxxQmHfBmgmEegsMGVFvq1%2F2jKB5MiMzOZXz4oEEw%3D&__gda__=1522241341_88e19c05fbd0b55d119e6ee4a5b50063", "fileSize": 12778757, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "398cbdf8-d2f9-4168-9bb0-3c59026800c7", "state": "Published", "datePublished": "2016-08-11T05:27:48.0234102Z", "dateRecorded": "2016-08-11T05:16:39Z", "lastModified": "2016-08-11T05:27:48.0234102Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 230, "titleData": "", "systemProperties": "a56efca9-73f5-46b4-a283-679586fb0733;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=utb0HiFqx7uEcbFSWf7yqZbgL4I5UAVTA9V2a8ppNlQ%3D", "fileSize": 145313, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3XB1gVdVHl3pyp2qR0BDg8SKOnCKqDXNZTSfQP1ctY8%3D", "fileSize": 466863, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-fab2d578-274e-4064-994c-e4dc834a107c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KmozXFmFYAGbgcGa7tZTWYQvOhTyqz%2B2Zldcx2DB4y8%3D&__gda__=1522241341_818f541effb04b1cf9fe5e6ebfb67758", "fileSize": 12402917, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "0fa0e046-14cd-49ff-937b-58730794595f", "state": "Published", "datePublished": "2016-08-09T06:46:55.4540818Z", "dateRecorded": "2016-08-09T06:33:10Z", "lastModified": "2016-08-09T06:46:55.4540818Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 196, "titleData": "", "systemProperties": "a17f3202-0b15-48b1-a3e4-96410a9fcdfb;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hoPVefXwbyXE2dn67KuXXx5g0iDTKhhychX%2FCsyVC%2BM%3D", "fileSize": 130661, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=8MAv2%2BMGkOidM4lyYnWys8Gm1FELuXn3IdAGONl8c1M%3D", "fileSize": 425362, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2020.xboxlive.com/asset-85df25eb-6e42-4aa0-aee2-454d70959ffa/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TWTiWz5QwtP67bY%2B5faKO1sCX8KJARTWO%2BjI6O6DhZc%3D&__gda__=1522241341_04875fe9bd70cd0f8b6a4a855b25039f", "fileSize": 15876835, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 33, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1606ffb0-00eb-41f5-bcdb-57ca48c45ae6", "state": "Published", "datePublished": "2016-08-09T06:20:06.8042651Z", "dateRecorded": "2016-08-09T06:11:00Z", "lastModified": "2016-08-09T06:20:06.8042651Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 107, "titleData": "", "systemProperties": "e9d641d4-ea1b-4358-8a52-c93bd80dd49d;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=sCN2DyIxC%2F7Gcm%2Fxf7BN6xCe6MEO6wSUXb9%2FhTT8Y6Y%3D", "fileSize": 143356, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=pf1gVCXGh5qscXwVZxqndRYlc1E7PiBmtv9BEWmpvz4%3D", "fileSize": 461094, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2017.xboxlive.com/asset-43c97401-fba6-4a1d-a09a-0ee24b085bf5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FSqjTHlmNKWn%2BJSGsTyMNtvugP0BxhL82IXjltQipro%3D&__gda__=1522241341_8b36e029ca5d362a3d09f5bab59c29e4", "fileSize": 10103719, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 30, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "04438e58-6133-4ef1-a1d1-2bb45d43ac1f", "state": "Published", "datePublished": "2016-08-09T04:39:43.3295887Z", "dateRecorded": "2016-08-09T04:28:11Z", "lastModified": "2016-08-09T04:39:43.3295887Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 69, "titleData": "", "systemProperties": "5b6347fd-d734-4219-8352-a90383ae44cd;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=NcUBNyJ8yzB50BuCzIucomCdCfWNu3rh1lB0Ne5W5Wo%3D", "fileSize": 846, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bYQkHKTrBqGP86%2FS95vTHaIMNVG0U%2Fla5oEsa6r8ETI%3D", "fileSize": 2291, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-65f40239-4630-4fd0-97bf-54aadda75681/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=QY3s%2FyCRcOR6LjTvRzwYmsWw4rQ9BnrXWD8bznxFOQM%3D&__gda__=1522241341_99219717ce015dda404f54f3f98b8cca", "fileSize": 13602524, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "07f057bc-2900-47ca-b9e5-d479125d4800", "state": "Published", "datePublished": "2016-08-09T03:50:38.4155978Z", "dateRecorded": "2016-08-09T03:27:25Z", "lastModified": "2016-08-09T03:50:38.4155978Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "b167a364-e132-4ae3-afc1-cea139389028;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YcLHYMC6GBMtfrWXBn51mCyyD%2FIs09HwgzWCGyMiAbs%3D", "fileSize": 161212, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jMhh88tfT7Foo74kviJUYS0LO06X8ujNsgs4zjCtfxM%3D", "fileSize": 537199, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/asset-613e623f-39ff-47b0-a34f-b89db44b3ea5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=B22QQnkqTjjxieNiidlDkoCvb2AKShnviBMhp1UXQx4%3D&__gda__=1522241341_99a7c86a07e65af9e776d983b1f66cd9", "fileSize": 12765388, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e86a4017-2b5c-4b66-a17c-8dae73508eb3", "state": "Published", "datePublished": "2016-08-09T03:39:48.3805891Z", "dateRecorded": "2016-08-09T03:18:32Z", "lastModified": "2016-08-09T03:39:48.3805891Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 52, "titleData": "", "systemProperties": "79a1a18b-c392-4a40-bf08-723ecf31ecda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bqISNzDAQwMEE6olJLYJ64SQtb4XSBzzlHvfTXp21nU%3D", "fileSize": 154434, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=t3zaSstRlE4c81HKEUVq9L82UN6Asmi736FkYNt%2BG3c%3D", "fileSize": 512870, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2016.xboxlive.com/asset-5d979e26-1d25-4dc4-9a4b-8000fc032bf8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=iAdCNYsb%2Bghu5sKgwnpuQWGA7Jqf7WYfLtc84w3Bln4%3D&__gda__=1522241341_34952263b16223002657f225a5d56dd2", "fileSize": 18767754, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "7fba1194-df21-4323-a7ff-09ba1a9dded6", "state": "Published", "datePublished": "2016-08-08T03:37:10.3575388Z", "dateRecorded": "2016-08-08T03:19:55Z", "lastModified": "2016-08-08T03:37:10.3575388Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 216, "titleData": "", "systemProperties": "bbb7cfd6-fb0c-4ed2-9974-fa01177c010f;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=k0sNPrezWKXsVmZ1eNCz8ZvTQRZrZ3n4bfloeB3ypp4%3D", "fileSize": 166819, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=URbCN3VxY1steXqHewu2%2BUG4sTk7JANIkWT%2FdSY2huA%3D", "fileSize": 570016, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-abc0f842-914d-4709-a66d-123e5a2dd7d8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d%2FHJXCBUcc4zNTevrfObV1ZpH7sU1mT%2BP5xkbT%2B%2FAXA%3D&__gda__=1522241341_215e279509e157968dbf7ee36bc1401f", "fileSize": 15282508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 40, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "7e50d8a9-bc52-4967-9384-b713d3931787", "state": "Published", "datePublished": "2016-08-08T03:22:24.2827731Z", "dateRecorded": "2016-08-08T03:04:47Z", "lastModified": "2016-08-08T03:22:24.2827731Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 71, "titleData": "", "systemProperties": "9055341b-54ac-42d0-b31b-bd470753b19b;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=70mm5JK2%2FiP9vLKEuY9fEgqoSSa5OOFIp871b%2FH415o%3D", "fileSize": 171718, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BFRz7wgiw7va1PQk%2FEImCxFxqfUO1gFAXmABybqFNXA%3D", "fileSize": 593941, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-0afe9baa-6ee2-4883-b90a-2bffcdfee2ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KlKI%2B2TqyaiDjCfq6Gm8Xk23PV%2BFzlIgvYQywOC2gsA%3D&__gda__=1522241341_7ffbd0e5772e9835ab441680eeed8078", "fileSize": 15680996, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 16, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6401f573-0ae3-42ba-869b-377318b731ff", "state": "Published", "datePublished": "2016-08-08T03:08:25.0722005Z", "dateRecorded": "2016-08-08T02:51:22Z", "lastModified": "2016-08-08T03:08:25.0722005Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 13, "titleData": "", "systemProperties": "65a00049-6ac7-4f84-9b55-a5706ae701ec;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hxr0EifANMZhx5XEPesfbkF6kWN76GBB55K1v%2B1j9sg%3D", "fileSize": 152500, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RiulfhLiZYIGnaXb2S88b1cKnUxV1eytschM8SPR%2BKY%3D", "fileSize": 503154, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=5Dhvrp5xlOSxh33XpFnhh8m58v3FRI5u%2FGE%2BLqElHf4%3D&__gda__=1522241341_67dbc0ab0d6e7ee3019b9773d2317d50", "fileSize": 17193811, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 6, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "8b13e76a-8e32-42b6-b2cf-174bc83650ac", "state": "Published", "datePublished": "2016-08-08T02:52:59.4242996Z", "dateRecorded": "2016-08-08T02:34:55Z", "lastModified": "2016-08-08T02:52:59.4242996Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 53, "titleData": "", "systemProperties": "8b5bba25-c164-41be-a28a-47482f1d4e00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WxzSRmVV9bUEtSQ6NQU64kMFVToEc3KalNODLxSZqzo%3D", "fileSize": 154456, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4GE3YR7O28kcjtW1gbKUUasq0yJNBomLi%2Fx%2BpkiTy10%3D", "fileSize": 518531, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-1c293367-009c-4fb4-9a8b-566422fb9a9f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ckQAYlzI8j4arc2xuLjKaL2%2BP6ZtSZQH0XeXFM5ZAho%3D&__gda__=1522241341_732637a3b3a0588615725c3b26985571", "fileSize": 14261457, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e0260327-3be0-48f2-85ca-e8d70aede88f", "state": "Published", "datePublished": "2016-08-08T02:32:51.6557428Z", "dateRecorded": "2016-08-08T02:16:02Z", "lastModified": "2016-08-08T02:32:51.6557428Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 36, "titleData": "", "systemProperties": "3cd1aedb-5311-401c-b4bd-91e64e9cd150;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Ad9z1AXF4zM1261YoveRCkvC%2BJqfwvFJKpy9fiNhc70%3D", "fileSize": 152626, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=FzYzRummUcnRbDHuk9bG9gidKSqbAJU6Ec1clh9BCrg%3D", "fileSize": 515025, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-ec4a13cf-6993-4323-8702-3c486551da1d/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2N8BbDwpNceGM2OWgbuvETPdjVQk%2F%2B%2FnVcBhjWsGJes%3D&__gda__=1522241341_5388e2403f26dd6f1c60f8a372b0e343", "fileSize": 18062502, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "60ef47c1-66e6-488c-a3a8-f4f8ce424d9e", "state": "Published", "datePublished": "2016-08-08T00:50:28.4566729Z", "dateRecorded": "2016-08-08T00:37:41Z", "lastModified": "2016-08-08T00:50:28.4566729Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 26, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 55, "titleData": "", "systemProperties": "d8417324-9c7a-4c29-9c7a-6ffaa3bc2055;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=cZRUKwOUsI5p3Jgu%2F4ZVrBY%2B63RQU5g12%2FxI9D4h08E%3D", "fileSize": 167717, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=SLYo7w%2FfVfBOxTTrUtBY2Kz0NLBunS3pyMEE%2BAgTy0A%3D", "fileSize": 583394, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-ceb4386b-b2df-43cb-83fd-90c146b0f4e0/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xqFYeQbxdfVOt%2F%2FYAnJ75SsV9AyKZ5qrHHMm0JQ%2BI%2Bo%3D&__gda__=1522241341_943d2049a106896d116e503105f68f96", "fileSize": 12427361, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "953f4bff-41fb-4dc1-9f86-7d6ae7b09460", "state": "Published", "datePublished": "2016-08-08T00:02:35.8017029Z", "dateRecorded": "2016-08-07T23:35:47Z", "lastModified": "2016-08-08T00:02:35.8017029Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 27, "titleData": "", "systemProperties": "260df3ab-a1f9-4964-b6cc-7d1bc449d2b4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4z5YKbZx2X6eC%2BnnVu5uRWew2vTrljJ7ZfpUh38NYwI%3D", "fileSize": 146135, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=oxpPcBxQqxZ1aU25kupeN4x9jT1xgdhZGRjwdTTUgs8%3D", "fileSize": 484198, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-577437f5-0c09-42aa-a884-b972fe485e5f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=DJiYWk9xqaa7vOy%2B6eGsnkaiR2cx4pm75O7ARER5PI0%3D&__gda__=1522241341_5f77d3926f4fcabccea548094d37888e", "fileSize": 15498840, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1fac6036-2a1c-46fe-b043-cd0eecb6a166", "state": "Published", "datePublished": "2016-08-07T23:48:02.9042951Z", "dateRecorded": "2016-08-07T23:31:53Z", "lastModified": "2016-08-07T23:48:02.9042951Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 35, "titleData": "", "systemProperties": "3a971619-4799-4581-b5d3-5d8e8a58c315;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0jfkhNBxTjixTJ0jJRnLDhTRrkCpAMuUJv3Noqcr%2Bqc%3D", "fileSize": 159452, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RHQlwOAZf%2BLyzbKQWLJcuhvsOf4rXffgBqZKCjFt3FI%3D", "fileSize": 540470, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-fdaa855c-4994-4499-ad34-a4fbba04e334/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Gj2lMWn%2B%2BFf5eOGcfeJfv4JWTv3GNzKgAucg4AxzY%2BI%3D&__gda__=1522241341_78e7297d5a55ea5cdb3a0fa123dded20", "fileSize": 15785332, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "91d38c25-035e-4fc6-9cc2-3b8e45af2476", "state": "Published", "datePublished": "2016-08-04T06:01:19.6199819Z", "dateRecorded": "2016-08-04T05:49:03Z", "lastModified": "2016-08-04T06:01:19.6199819Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 140, "titleData": "", "systemProperties": "44c2f550-5fa1-4e27-a59c-1e43134a4d47;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=7aPI94U9LtHU7YF%2B9EJHX33LSw%2BvLq%2FHdyJmZpCr6SE%3D", "fileSize": 132396, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2Boq1eN8WoHkXUdFa5YWaPJQSappxmqz1bJ7tiMR36%2Bo%3D", "fileSize": 434595, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3005.xboxlive.com/asset-380323f4-536b-4b1c-b5af-3fe7b518e329/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0rJYtD2ucdkNu%2F1SVDDrE8LvLoxOKj80SJ%2FPjQActtk%3D&__gda__=1522241341_3c01f15b573207d0b1228e8d06296119", "fileSize": 12053765, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e7ee4d33-5a97-42d9-a066-5cee0fea112d", "state": "Published", "datePublished": "2016-08-04T05:47:12.2956391Z", "dateRecorded": "2016-08-04T05:24:49Z", "lastModified": "2016-08-04T05:47:12.2956391Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 86, "titleData": "", "systemProperties": "14f64dd6-d70f-47df-94af-e524c15f0202;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ezCbrBYeazdtXxB%2FOaQK%2FONr2WWql8GxjtegLU5gX%2Bk%3D", "fileSize": 133247, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=9zlNVtdMeMbx7SA%2BSRlikXB9k%2FEtmvbN5BfkhguqkP4%3D", "fileSize": 433869, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3009.xboxlive.com/asset-1e73012c-3b38-407f-8d6e-6762e00924ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=prBJMsHP1m3PqKxK1zmSXV35bT22nUgKXLWrpq%2FLFRU%3D&__gda__=1522241341_961c28b2f072b40238d158159f5f9f3d", "fileSize": 12083445, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5f9623b9-0e84-4165-a585-5a8fe8b00929", "state": "Published", "datePublished": "2016-08-04T05:13:51.551794Z", "dateRecorded": "2016-08-04T04:41:34Z", "lastModified": "2016-08-04T05:13:51.551794Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 190, "titleData": "", "systemProperties": "693a8749-69ba-4f51-b42d-1bb8e6cbab96;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lMrzKRSRlPZpCql4C4AzVba%2BciSU9teisSdW3vT0XB8%3D", "fileSize": 155502, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bemOyyFRKPpMmaURA9MlMhcW7hR%2BtLkBhWb1SmqUSG0%3D", "fileSize": 516829, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2012.xboxlive.com/asset-6859aa8c-98ba-4ba8-a988-f8da9d93fae8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=HOs8oga%2FdkwdJSRjUcikECA7giprOP0MOlQuNl7n3Zo%3D&__gda__=1522241341_645d86be00ba8e8b27122b51b0bf29d7", "fileSize": 19094508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 26, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "37b675eb-b32c-43d7-b619-854af17a6d9a", "state": "Published", "datePublished": "2016-07-30T07:19:39.4368105Z", "dateRecorded": "2016-07-30T07:18:14Z", "lastModified": "2016-07-30T07:19:39.4368105Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 139, "titleData": "", "systemProperties": "2ace08e2-52d6-44b1-9bca-d6486323edaf;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=UoaeQjPS7PMkPrr3w8duqNq0Dos7x1iO%2BpJe%2F3Q%2BZCo%3D", "fileSize": 147176, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Kug%2FDkZJZioQr3kFWH1DPMr2qzCZWTfHGxpllZPmvl8%3D", "fileSize": 482960, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-f7478f4b-dca5-4fd1-b5d1-58dd34ff1b8c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3jaH5chqv5bgn5wma4NwYzR5No4GAbthS0DqN5fHCXI%3D&__gda__=1522241341_07807f7be87deab7c55804ecdf4e8586", "fileSize": 9808014, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 22, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f82d75db-465f-4f66-a514-a632364cb267", "state": "Published", "datePublished": "2016-07-28T06:53:57.9008157Z", "dateRecorded": "2016-07-28T06:52:41Z", "lastModified": "2016-07-28T06:53:57.9008157Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 197, "titleData": "", "systemProperties": "491dd431-2dbd-449d-99e1-e79da89a3663;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WlYi5a75scTDNzWQhFG8U1%2BOffTwxZD%2BWaNfDYqw64M%3D", "fileSize": 125344, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lesaHjOmw78tpf4D%2BXJrwC3%2F3ZMbYWBq7frDZZmOujI%3D", "fileSize": 407877, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-1e6ca1fb-682f-4846-9956-0c5afe1d9968/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BLrvPsGfmImgfrnkDQWQjWtv2%2BJmRZ8wSSooCOwA3PM%3D&__gda__=1522241341_38241379eceb359adf264add95ac80af", "fileSize": 13259227, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 8, "likeCount": 32, "shareCount": 0, "partialViews": 0 } ], "pagingInfo": { "continuationToken": "abcde_vwxyzGQAAAA2" } }python-xbox-webapi-2.1.0/tests/data/responses/gameclips_saved_own_titleid.json000066400000000000000000001452151465040003600300020ustar00rootroot00000000000000{ "gameClips": [ { "gameClipId": "44b7e94d-b3e9-4b97-be73-417be9091e93", "state": "Published", "datePublished": "2017-11-10T07:12:27.4353527Z", "dateRecorded": "2017-11-10T06:29:39Z", "lastModified": "2017-11-10T07:12:27.4353527Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 822567888, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "6a7e1238-2f7b-4c66-835e-c7c799e310490;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3017.xboxlive.com/xuid-2669321029139235-private/44b7e94d-b3e9-4b97-be73-417be9091e93.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lRkjf6USrukD5PCVp3PonFdwX5fD%2FmuLPWpRkIS2ydw%3D&__gda__=1522241341_d651111247d5ca9c1bb8b9244a8cd361", "fileSize": 43595475, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Danger Zone", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 2, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f87cc6ac-c291-4998-9124-d8b36c059b6a", "state": "Published", "datePublished": "2016-08-16T05:51:40.1354298Z", "dateRecorded": "2016-08-16T05:40:30Z", "lastModified": "2016-08-16T05:51:40.1354298Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 653, "titleData": "", "systemProperties": "56d4ac4e-efcd-4808-8d53-7583859558a4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ikXCzETBJSBPvS8W%2FxoWTCJL%2FGY6PxKpQ0VG6qktnCQ%3D", "fileSize": 159667, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=y1S%2BxzFVrgmTql2ZuYDpe6EtL5Jxu%2BhBVMnb%2Ff7ZTMA%3D", "fileSize": 522262, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-d5448dbd-f45e-46ab-ae4e-a2e205a70e7c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ArSoLvy9EnQeBthGW6%2FbasedHHk0Jb6iXjI3EMq8oh8%3D&__gda__=1522241341_69f67a7a3533626ae90b52845664dc0c", "fileSize": 12662239, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 5, "likeCount": 62, "shareCount": 2, "partialViews": 0 }, { "gameClipId": "bebd3d48-6622-4339-8e28-794d1b1a2755", "state": "Published", "datePublished": "2016-08-15T06:25:58.1253078Z", "dateRecorded": "2016-08-15T06:15:51Z", "lastModified": "2016-08-15T06:25:58.1253078Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 419, "titleData": "", "systemProperties": "caa87cc1-29aa-4278-9c89-8d8e9878d572;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BKiArrxRSTuFgIC2U9zL11fcGTqyg5QN7IE13fGfb9Y%3D", "fileSize": 169327, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FvDgQcOqGiXUNNEJ%2BLI0FSh4k0IPOfOSrnYmLWXDEBE%3D", "fileSize": 560631, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-89737fe6-5b03-48f5-8ed3-e98555005708/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=D%2Bigy01bwJhig0IBR1PeddcG3jjbnRY7pVMajeGn8ow%3D&__gda__=1522241341_a7fc62384a631bab79fdd05bcdea55bd", "fileSize": 10955394, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 4, "likeCount": 44, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "80194c67-aa0e-4fc9-a7c9-a072eab6a58c", "state": "Published", "datePublished": "2016-08-15T06:16:35.5632265Z", "dateRecorded": "2016-08-15T06:05:31Z", "lastModified": "2016-08-15T06:16:35.5632265Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 146, "titleData": "", "systemProperties": "2f17ddff-10a1-4571-99d6-aeb6fdee1dda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ggh%2B98ziFOWYtFhkLqWi48oJYbwVunXmlbIkIv1LgIs%3D", "fileSize": 141131, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jHSNBytHUluIfePVBL4ONfY3%2F6ro1Lf%2BCGvYukP0%2Bs4%3D", "fileSize": 461383, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-d64cdc9c-ffc2-4811-a673-36523755755c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d8uSVktAu5ivZUJiPHchDbnrJOuU07%2BPBI2V%2BzkC2aU%3D&__gda__=1522241341_883b80fa63d862fd6159f12c2f3f5cc5", "fileSize": 12403813, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 25, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "daf3defb-d6fd-46a0-bcf2-ac732f4473e2", "state": "Published", "datePublished": "2016-08-13T04:31:49.242885Z", "dateRecorded": "2016-08-13T04:19:16Z", "lastModified": "2016-08-13T04:31:49.242885Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 281, "titleData": "", "systemProperties": "16481f6e-3d56-4714-ae19-703e697c8670;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xas0uCgwzYT5jdcGFfUQwWEOsdIh%2F706Tg4n0LhMQ9A%3D", "fileSize": 123085, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xeuTHzaM31N0uuwAxIE8tQAw8q%2FCHT6PeIrEFIaOamc%3D", "fileSize": 384234, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3007.xboxlive.com/asset-acc33ad2-2bea-46f8-8adc-6edf5227ac4a/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YCQSnIj5R5%2F%2BU3gxFYTgMOKbeAFnl7BvIOva%2BvnCCtQ%3D&__gda__=1522241341_443a14b9a121c06c710aac5f5f63d63e", "fileSize": 14350846, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 42, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1d64fe91-fe19-4f57-956e-1bb80fdcc063", "state": "Published", "datePublished": "2016-08-11T05:40:29.0010865Z", "dateRecorded": "2016-08-11T05:29:32Z", "lastModified": "2016-08-11T05:40:29.0010865Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 287, "titleData": "", "systemProperties": "0342eaea-9d89-4fb4-9d52-38f793085b22;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=mvfJLhmi3olAfpCxhEP6gkBwUJnB%2F%2Bfxiw1tVqBN2Pc%3D", "fileSize": 134312, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ZRdKvsr%2FUYSaIkVYNejY189sdwDgE2%2Fuvnr324%2B3MUg%3D", "fileSize": 426344, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-1a39ee9b-144a-4853-92fd-ee56387c7e1b/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=eiGxxQmHfBmgmEegsMGVFvq1%2F2jKB5MiMzOZXz4oEEw%3D&__gda__=1522241341_88e19c05fbd0b55d119e6ee4a5b50063", "fileSize": 12778757, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "398cbdf8-d2f9-4168-9bb0-3c59026800c7", "state": "Published", "datePublished": "2016-08-11T05:27:48.0234102Z", "dateRecorded": "2016-08-11T05:16:39Z", "lastModified": "2016-08-11T05:27:48.0234102Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 230, "titleData": "", "systemProperties": "a56efca9-73f5-46b4-a283-679586fb0733;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=utb0HiFqx7uEcbFSWf7yqZbgL4I5UAVTA9V2a8ppNlQ%3D", "fileSize": 145313, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3XB1gVdVHl3pyp2qR0BDg8SKOnCKqDXNZTSfQP1ctY8%3D", "fileSize": 466863, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-fab2d578-274e-4064-994c-e4dc834a107c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KmozXFmFYAGbgcGa7tZTWYQvOhTyqz%2B2Zldcx2DB4y8%3D&__gda__=1522241341_818f541effb04b1cf9fe5e6ebfb67758", "fileSize": 12402917, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "0fa0e046-14cd-49ff-937b-58730794595f", "state": "Published", "datePublished": "2016-08-09T06:46:55.4540818Z", "dateRecorded": "2016-08-09T06:33:10Z", "lastModified": "2016-08-09T06:46:55.4540818Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 196, "titleData": "", "systemProperties": "a17f3202-0b15-48b1-a3e4-96410a9fcdfb;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hoPVefXwbyXE2dn67KuXXx5g0iDTKhhychX%2FCsyVC%2BM%3D", "fileSize": 130661, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=8MAv2%2BMGkOidM4lyYnWys8Gm1FELuXn3IdAGONl8c1M%3D", "fileSize": 425362, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2020.xboxlive.com/asset-85df25eb-6e42-4aa0-aee2-454d70959ffa/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TWTiWz5QwtP67bY%2B5faKO1sCX8KJARTWO%2BjI6O6DhZc%3D&__gda__=1522241341_04875fe9bd70cd0f8b6a4a855b25039f", "fileSize": 15876835, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 33, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1606ffb0-00eb-41f5-bcdb-57ca48c45ae6", "state": "Published", "datePublished": "2016-08-09T06:20:06.8042651Z", "dateRecorded": "2016-08-09T06:11:00Z", "lastModified": "2016-08-09T06:20:06.8042651Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 107, "titleData": "", "systemProperties": "e9d641d4-ea1b-4358-8a52-c93bd80dd49d;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=sCN2DyIxC%2F7Gcm%2Fxf7BN6xCe6MEO6wSUXb9%2FhTT8Y6Y%3D", "fileSize": 143356, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=pf1gVCXGh5qscXwVZxqndRYlc1E7PiBmtv9BEWmpvz4%3D", "fileSize": 461094, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2017.xboxlive.com/asset-43c97401-fba6-4a1d-a09a-0ee24b085bf5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FSqjTHlmNKWn%2BJSGsTyMNtvugP0BxhL82IXjltQipro%3D&__gda__=1522241341_8b36e029ca5d362a3d09f5bab59c29e4", "fileSize": 10103719, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 30, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "04438e58-6133-4ef1-a1d1-2bb45d43ac1f", "state": "Published", "datePublished": "2016-08-09T04:39:43.3295887Z", "dateRecorded": "2016-08-09T04:28:11Z", "lastModified": "2016-08-09T04:39:43.3295887Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 69, "titleData": "", "systemProperties": "5b6347fd-d734-4219-8352-a90383ae44cd;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=NcUBNyJ8yzB50BuCzIucomCdCfWNu3rh1lB0Ne5W5Wo%3D", "fileSize": 846, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bYQkHKTrBqGP86%2FS95vTHaIMNVG0U%2Fla5oEsa6r8ETI%3D", "fileSize": 2291, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-65f40239-4630-4fd0-97bf-54aadda75681/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=QY3s%2FyCRcOR6LjTvRzwYmsWw4rQ9BnrXWD8bznxFOQM%3D&__gda__=1522241341_99219717ce015dda404f54f3f98b8cca", "fileSize": 13602524, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "07f057bc-2900-47ca-b9e5-d479125d4800", "state": "Published", "datePublished": "2016-08-09T03:50:38.4155978Z", "dateRecorded": "2016-08-09T03:27:25Z", "lastModified": "2016-08-09T03:50:38.4155978Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "b167a364-e132-4ae3-afc1-cea139389028;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YcLHYMC6GBMtfrWXBn51mCyyD%2FIs09HwgzWCGyMiAbs%3D", "fileSize": 161212, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jMhh88tfT7Foo74kviJUYS0LO06X8ujNsgs4zjCtfxM%3D", "fileSize": 537199, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/asset-613e623f-39ff-47b0-a34f-b89db44b3ea5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=B22QQnkqTjjxieNiidlDkoCvb2AKShnviBMhp1UXQx4%3D&__gda__=1522241341_99a7c86a07e65af9e776d983b1f66cd9", "fileSize": 12765388, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e86a4017-2b5c-4b66-a17c-8dae73508eb3", "state": "Published", "datePublished": "2016-08-09T03:39:48.3805891Z", "dateRecorded": "2016-08-09T03:18:32Z", "lastModified": "2016-08-09T03:39:48.3805891Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 52, "titleData": "", "systemProperties": "79a1a18b-c392-4a40-bf08-723ecf31ecda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bqISNzDAQwMEE6olJLYJ64SQtb4XSBzzlHvfTXp21nU%3D", "fileSize": 154434, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=t3zaSstRlE4c81HKEUVq9L82UN6Asmi736FkYNt%2BG3c%3D", "fileSize": 512870, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2016.xboxlive.com/asset-5d979e26-1d25-4dc4-9a4b-8000fc032bf8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=iAdCNYsb%2Bghu5sKgwnpuQWGA7Jqf7WYfLtc84w3Bln4%3D&__gda__=1522241341_34952263b16223002657f225a5d56dd2", "fileSize": 18767754, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "7fba1194-df21-4323-a7ff-09ba1a9dded6", "state": "Published", "datePublished": "2016-08-08T03:37:10.3575388Z", "dateRecorded": "2016-08-08T03:19:55Z", "lastModified": "2016-08-08T03:37:10.3575388Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 216, "titleData": "", "systemProperties": "bbb7cfd6-fb0c-4ed2-9974-fa01177c010f;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=k0sNPrezWKXsVmZ1eNCz8ZvTQRZrZ3n4bfloeB3ypp4%3D", "fileSize": 166819, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=URbCN3VxY1steXqHewu2%2BUG4sTk7JANIkWT%2FdSY2huA%3D", "fileSize": 570016, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-abc0f842-914d-4709-a66d-123e5a2dd7d8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d%2FHJXCBUcc4zNTevrfObV1ZpH7sU1mT%2BP5xkbT%2B%2FAXA%3D&__gda__=1522241341_215e279509e157968dbf7ee36bc1401f", "fileSize": 15282508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 40, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "7e50d8a9-bc52-4967-9384-b713d3931787", "state": "Published", "datePublished": "2016-08-08T03:22:24.2827731Z", "dateRecorded": "2016-08-08T03:04:47Z", "lastModified": "2016-08-08T03:22:24.2827731Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 71, "titleData": "", "systemProperties": "9055341b-54ac-42d0-b31b-bd470753b19b;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=70mm5JK2%2FiP9vLKEuY9fEgqoSSa5OOFIp871b%2FH415o%3D", "fileSize": 171718, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BFRz7wgiw7va1PQk%2FEImCxFxqfUO1gFAXmABybqFNXA%3D", "fileSize": 593941, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-0afe9baa-6ee2-4883-b90a-2bffcdfee2ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KlKI%2B2TqyaiDjCfq6Gm8Xk23PV%2BFzlIgvYQywOC2gsA%3D&__gda__=1522241341_7ffbd0e5772e9835ab441680eeed8078", "fileSize": 15680996, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 16, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6401f573-0ae3-42ba-869b-377318b731ff", "state": "Published", "datePublished": "2016-08-08T03:08:25.0722005Z", "dateRecorded": "2016-08-08T02:51:22Z", "lastModified": "2016-08-08T03:08:25.0722005Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 13, "titleData": "", "systemProperties": "65a00049-6ac7-4f84-9b55-a5706ae701ec;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hxr0EifANMZhx5XEPesfbkF6kWN76GBB55K1v%2B1j9sg%3D", "fileSize": 152500, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RiulfhLiZYIGnaXb2S88b1cKnUxV1eytschM8SPR%2BKY%3D", "fileSize": 503154, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=5Dhvrp5xlOSxh33XpFnhh8m58v3FRI5u%2FGE%2BLqElHf4%3D&__gda__=1522241341_67dbc0ab0d6e7ee3019b9773d2317d50", "fileSize": 17193811, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 6, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "8b13e76a-8e32-42b6-b2cf-174bc83650ac", "state": "Published", "datePublished": "2016-08-08T02:52:59.4242996Z", "dateRecorded": "2016-08-08T02:34:55Z", "lastModified": "2016-08-08T02:52:59.4242996Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 53, "titleData": "", "systemProperties": "8b5bba25-c164-41be-a28a-47482f1d4e00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WxzSRmVV9bUEtSQ6NQU64kMFVToEc3KalNODLxSZqzo%3D", "fileSize": 154456, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4GE3YR7O28kcjtW1gbKUUasq0yJNBomLi%2Fx%2BpkiTy10%3D", "fileSize": 518531, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-1c293367-009c-4fb4-9a8b-566422fb9a9f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ckQAYlzI8j4arc2xuLjKaL2%2BP6ZtSZQH0XeXFM5ZAho%3D&__gda__=1522241341_732637a3b3a0588615725c3b26985571", "fileSize": 14261457, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e0260327-3be0-48f2-85ca-e8d70aede88f", "state": "Published", "datePublished": "2016-08-08T02:32:51.6557428Z", "dateRecorded": "2016-08-08T02:16:02Z", "lastModified": "2016-08-08T02:32:51.6557428Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 36, "titleData": "", "systemProperties": "3cd1aedb-5311-401c-b4bd-91e64e9cd150;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Ad9z1AXF4zM1261YoveRCkvC%2BJqfwvFJKpy9fiNhc70%3D", "fileSize": 152626, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=FzYzRummUcnRbDHuk9bG9gidKSqbAJU6Ec1clh9BCrg%3D", "fileSize": 515025, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-ec4a13cf-6993-4323-8702-3c486551da1d/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2N8BbDwpNceGM2OWgbuvETPdjVQk%2F%2B%2FnVcBhjWsGJes%3D&__gda__=1522241341_5388e2403f26dd6f1c60f8a372b0e343", "fileSize": 18062502, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "60ef47c1-66e6-488c-a3a8-f4f8ce424d9e", "state": "Published", "datePublished": "2016-08-08T00:50:28.4566729Z", "dateRecorded": "2016-08-08T00:37:41Z", "lastModified": "2016-08-08T00:50:28.4566729Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 26, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 55, "titleData": "", "systemProperties": "d8417324-9c7a-4c29-9c7a-6ffaa3bc2055;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=cZRUKwOUsI5p3Jgu%2F4ZVrBY%2B63RQU5g12%2FxI9D4h08E%3D", "fileSize": 167717, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=SLYo7w%2FfVfBOxTTrUtBY2Kz0NLBunS3pyMEE%2BAgTy0A%3D", "fileSize": 583394, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-ceb4386b-b2df-43cb-83fd-90c146b0f4e0/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xqFYeQbxdfVOt%2F%2FYAnJ75SsV9AyKZ5qrHHMm0JQ%2BI%2Bo%3D&__gda__=1522241341_943d2049a106896d116e503105f68f96", "fileSize": 12427361, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "953f4bff-41fb-4dc1-9f86-7d6ae7b09460", "state": "Published", "datePublished": "2016-08-08T00:02:35.8017029Z", "dateRecorded": "2016-08-07T23:35:47Z", "lastModified": "2016-08-08T00:02:35.8017029Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 27, "titleData": "", "systemProperties": "260df3ab-a1f9-4964-b6cc-7d1bc449d2b4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4z5YKbZx2X6eC%2BnnVu5uRWew2vTrljJ7ZfpUh38NYwI%3D", "fileSize": 146135, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=oxpPcBxQqxZ1aU25kupeN4x9jT1xgdhZGRjwdTTUgs8%3D", "fileSize": 484198, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-577437f5-0c09-42aa-a884-b972fe485e5f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=DJiYWk9xqaa7vOy%2B6eGsnkaiR2cx4pm75O7ARER5PI0%3D&__gda__=1522241341_5f77d3926f4fcabccea548094d37888e", "fileSize": 15498840, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1fac6036-2a1c-46fe-b043-cd0eecb6a166", "state": "Published", "datePublished": "2016-08-07T23:48:02.9042951Z", "dateRecorded": "2016-08-07T23:31:53Z", "lastModified": "2016-08-07T23:48:02.9042951Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 35, "titleData": "", "systemProperties": "3a971619-4799-4581-b5d3-5d8e8a58c315;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0jfkhNBxTjixTJ0jJRnLDhTRrkCpAMuUJv3Noqcr%2Bqc%3D", "fileSize": 159452, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RHQlwOAZf%2BLyzbKQWLJcuhvsOf4rXffgBqZKCjFt3FI%3D", "fileSize": 540470, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-fdaa855c-4994-4499-ad34-a4fbba04e334/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Gj2lMWn%2B%2BFf5eOGcfeJfv4JWTv3GNzKgAucg4AxzY%2BI%3D&__gda__=1522241341_78e7297d5a55ea5cdb3a0fa123dded20", "fileSize": 15785332, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "91d38c25-035e-4fc6-9cc2-3b8e45af2476", "state": "Published", "datePublished": "2016-08-04T06:01:19.6199819Z", "dateRecorded": "2016-08-04T05:49:03Z", "lastModified": "2016-08-04T06:01:19.6199819Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 140, "titleData": "", "systemProperties": "44c2f550-5fa1-4e27-a59c-1e43134a4d47;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=7aPI94U9LtHU7YF%2B9EJHX33LSw%2BvLq%2FHdyJmZpCr6SE%3D", "fileSize": 132396, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2Boq1eN8WoHkXUdFa5YWaPJQSappxmqz1bJ7tiMR36%2Bo%3D", "fileSize": 434595, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3005.xboxlive.com/asset-380323f4-536b-4b1c-b5af-3fe7b518e329/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0rJYtD2ucdkNu%2F1SVDDrE8LvLoxOKj80SJ%2FPjQActtk%3D&__gda__=1522241341_3c01f15b573207d0b1228e8d06296119", "fileSize": 12053765, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e7ee4d33-5a97-42d9-a066-5cee0fea112d", "state": "Published", "datePublished": "2016-08-04T05:47:12.2956391Z", "dateRecorded": "2016-08-04T05:24:49Z", "lastModified": "2016-08-04T05:47:12.2956391Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 86, "titleData": "", "systemProperties": "14f64dd6-d70f-47df-94af-e524c15f0202;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ezCbrBYeazdtXxB%2FOaQK%2FONr2WWql8GxjtegLU5gX%2Bk%3D", "fileSize": 133247, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=9zlNVtdMeMbx7SA%2BSRlikXB9k%2FEtmvbN5BfkhguqkP4%3D", "fileSize": 433869, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3009.xboxlive.com/asset-1e73012c-3b38-407f-8d6e-6762e00924ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=prBJMsHP1m3PqKxK1zmSXV35bT22nUgKXLWrpq%2FLFRU%3D&__gda__=1522241341_961c28b2f072b40238d158159f5f9f3d", "fileSize": 12083445, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5f9623b9-0e84-4165-a585-5a8fe8b00929", "state": "Published", "datePublished": "2016-08-04T05:13:51.551794Z", "dateRecorded": "2016-08-04T04:41:34Z", "lastModified": "2016-08-04T05:13:51.551794Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 190, "titleData": "", "systemProperties": "693a8749-69ba-4f51-b42d-1bb8e6cbab96;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lMrzKRSRlPZpCql4C4AzVba%2BciSU9teisSdW3vT0XB8%3D", "fileSize": 155502, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bemOyyFRKPpMmaURA9MlMhcW7hR%2BtLkBhWb1SmqUSG0%3D", "fileSize": 516829, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2012.xboxlive.com/asset-6859aa8c-98ba-4ba8-a988-f8da9d93fae8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=HOs8oga%2FdkwdJSRjUcikECA7giprOP0MOlQuNl7n3Zo%3D&__gda__=1522241341_645d86be00ba8e8b27122b51b0bf29d7", "fileSize": 19094508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 26, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "37b675eb-b32c-43d7-b619-854af17a6d9a", "state": "Published", "datePublished": "2016-07-30T07:19:39.4368105Z", "dateRecorded": "2016-07-30T07:18:14Z", "lastModified": "2016-07-30T07:19:39.4368105Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 139, "titleData": "", "systemProperties": "2ace08e2-52d6-44b1-9bca-d6486323edaf;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=UoaeQjPS7PMkPrr3w8duqNq0Dos7x1iO%2BpJe%2F3Q%2BZCo%3D", "fileSize": 147176, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Kug%2FDkZJZioQr3kFWH1DPMr2qzCZWTfHGxpllZPmvl8%3D", "fileSize": 482960, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-f7478f4b-dca5-4fd1-b5d1-58dd34ff1b8c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3jaH5chqv5bgn5wma4NwYzR5No4GAbthS0DqN5fHCXI%3D&__gda__=1522241341_07807f7be87deab7c55804ecdf4e8586", "fileSize": 9808014, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 22, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f82d75db-465f-4f66-a514-a632364cb267", "state": "Published", "datePublished": "2016-07-28T06:53:57.9008157Z", "dateRecorded": "2016-07-28T06:52:41Z", "lastModified": "2016-07-28T06:53:57.9008157Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 197, "titleData": "", "systemProperties": "491dd431-2dbd-449d-99e1-e79da89a3663;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WlYi5a75scTDNzWQhFG8U1%2BOffTwxZD%2BWaNfDYqw64M%3D", "fileSize": 125344, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lesaHjOmw78tpf4D%2BXJrwC3%2F3ZMbYWBq7frDZZmOujI%3D", "fileSize": 407877, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-1e6ca1fb-682f-4846-9956-0c5afe1d9968/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BLrvPsGfmImgfrnkDQWQjWtv2%2BJmRZ8wSSooCOwA3PM%3D&__gda__=1522241341_38241379eceb359adf264add95ac80af", "fileSize": 13259227, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 8, "likeCount": 32, "shareCount": 0, "partialViews": 0 } ], "pagingInfo": { "continuationToken": "abcde_vwxyzGQAAAA2" } }python-xbox-webapi-2.1.0/tests/data/responses/gameclips_saved_xuid.json000066400000000000000000001452151465040003600264320ustar00rootroot00000000000000{ "gameClips": [ { "gameClipId": "44b7e94d-b3e9-4b97-be73-417be9091e93", "state": "Published", "datePublished": "2017-11-10T07:12:27.4353527Z", "dateRecorded": "2017-11-10T06:29:39Z", "lastModified": "2017-11-10T07:12:27.4353527Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 822567888, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "6a7e1238-2f7b-4c66-835e-c7c799e310490;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3017.xboxlive.com/xuid-2669321029139235-private/44b7e94d-b3e9-4b97-be73-417be9091e93.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lRkjf6USrukD5PCVp3PonFdwX5fD%2FmuLPWpRkIS2ydw%3D&__gda__=1522241341_d651111247d5ca9c1bb8b9244a8cd361", "fileSize": 43595475, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Danger Zone", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 2, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f87cc6ac-c291-4998-9124-d8b36c059b6a", "state": "Published", "datePublished": "2016-08-16T05:51:40.1354298Z", "dateRecorded": "2016-08-16T05:40:30Z", "lastModified": "2016-08-16T05:51:40.1354298Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 653, "titleData": "", "systemProperties": "56d4ac4e-efcd-4808-8d53-7583859558a4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ikXCzETBJSBPvS8W%2FxoWTCJL%2FGY6PxKpQ0VG6qktnCQ%3D", "fileSize": 159667, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=y1S%2BxzFVrgmTql2ZuYDpe6EtL5Jxu%2BhBVMnb%2Ff7ZTMA%3D", "fileSize": 522262, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-d5448dbd-f45e-46ab-ae4e-a2e205a70e7c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ArSoLvy9EnQeBthGW6%2FbasedHHk0Jb6iXjI3EMq8oh8%3D&__gda__=1522241341_69f67a7a3533626ae90b52845664dc0c", "fileSize": 12662239, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 5, "likeCount": 62, "shareCount": 2, "partialViews": 0 }, { "gameClipId": "bebd3d48-6622-4339-8e28-794d1b1a2755", "state": "Published", "datePublished": "2016-08-15T06:25:58.1253078Z", "dateRecorded": "2016-08-15T06:15:51Z", "lastModified": "2016-08-15T06:25:58.1253078Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 419, "titleData": "", "systemProperties": "caa87cc1-29aa-4278-9c89-8d8e9878d572;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BKiArrxRSTuFgIC2U9zL11fcGTqyg5QN7IE13fGfb9Y%3D", "fileSize": 169327, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FvDgQcOqGiXUNNEJ%2BLI0FSh4k0IPOfOSrnYmLWXDEBE%3D", "fileSize": 560631, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-89737fe6-5b03-48f5-8ed3-e98555005708/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=D%2Bigy01bwJhig0IBR1PeddcG3jjbnRY7pVMajeGn8ow%3D&__gda__=1522241341_a7fc62384a631bab79fdd05bcdea55bd", "fileSize": 10955394, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 4, "likeCount": 44, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "80194c67-aa0e-4fc9-a7c9-a072eab6a58c", "state": "Published", "datePublished": "2016-08-15T06:16:35.5632265Z", "dateRecorded": "2016-08-15T06:05:31Z", "lastModified": "2016-08-15T06:16:35.5632265Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 146, "titleData": "", "systemProperties": "2f17ddff-10a1-4571-99d6-aeb6fdee1dda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ggh%2B98ziFOWYtFhkLqWi48oJYbwVunXmlbIkIv1LgIs%3D", "fileSize": 141131, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jHSNBytHUluIfePVBL4ONfY3%2F6ro1Lf%2BCGvYukP0%2Bs4%3D", "fileSize": 461383, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-d64cdc9c-ffc2-4811-a673-36523755755c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d8uSVktAu5ivZUJiPHchDbnrJOuU07%2BPBI2V%2BzkC2aU%3D&__gda__=1522241341_883b80fa63d862fd6159f12c2f3f5cc5", "fileSize": 12403813, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 25, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "daf3defb-d6fd-46a0-bcf2-ac732f4473e2", "state": "Published", "datePublished": "2016-08-13T04:31:49.242885Z", "dateRecorded": "2016-08-13T04:19:16Z", "lastModified": "2016-08-13T04:31:49.242885Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 281, "titleData": "", "systemProperties": "16481f6e-3d56-4714-ae19-703e697c8670;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xas0uCgwzYT5jdcGFfUQwWEOsdIh%2F706Tg4n0LhMQ9A%3D", "fileSize": 123085, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xeuTHzaM31N0uuwAxIE8tQAw8q%2FCHT6PeIrEFIaOamc%3D", "fileSize": 384234, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3007.xboxlive.com/asset-acc33ad2-2bea-46f8-8adc-6edf5227ac4a/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YCQSnIj5R5%2F%2BU3gxFYTgMOKbeAFnl7BvIOva%2BvnCCtQ%3D&__gda__=1522241341_443a14b9a121c06c710aac5f5f63d63e", "fileSize": 14350846, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 42, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1d64fe91-fe19-4f57-956e-1bb80fdcc063", "state": "Published", "datePublished": "2016-08-11T05:40:29.0010865Z", "dateRecorded": "2016-08-11T05:29:32Z", "lastModified": "2016-08-11T05:40:29.0010865Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 287, "titleData": "", "systemProperties": "0342eaea-9d89-4fb4-9d52-38f793085b22;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=mvfJLhmi3olAfpCxhEP6gkBwUJnB%2F%2Bfxiw1tVqBN2Pc%3D", "fileSize": 134312, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ZRdKvsr%2FUYSaIkVYNejY189sdwDgE2%2Fuvnr324%2B3MUg%3D", "fileSize": 426344, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-1a39ee9b-144a-4853-92fd-ee56387c7e1b/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=eiGxxQmHfBmgmEegsMGVFvq1%2F2jKB5MiMzOZXz4oEEw%3D&__gda__=1522241341_88e19c05fbd0b55d119e6ee4a5b50063", "fileSize": 12778757, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "398cbdf8-d2f9-4168-9bb0-3c59026800c7", "state": "Published", "datePublished": "2016-08-11T05:27:48.0234102Z", "dateRecorded": "2016-08-11T05:16:39Z", "lastModified": "2016-08-11T05:27:48.0234102Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 230, "titleData": "", "systemProperties": "a56efca9-73f5-46b4-a283-679586fb0733;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=utb0HiFqx7uEcbFSWf7yqZbgL4I5UAVTA9V2a8ppNlQ%3D", "fileSize": 145313, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3XB1gVdVHl3pyp2qR0BDg8SKOnCKqDXNZTSfQP1ctY8%3D", "fileSize": 466863, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-fab2d578-274e-4064-994c-e4dc834a107c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KmozXFmFYAGbgcGa7tZTWYQvOhTyqz%2B2Zldcx2DB4y8%3D&__gda__=1522241341_818f541effb04b1cf9fe5e6ebfb67758", "fileSize": 12402917, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "0fa0e046-14cd-49ff-937b-58730794595f", "state": "Published", "datePublished": "2016-08-09T06:46:55.4540818Z", "dateRecorded": "2016-08-09T06:33:10Z", "lastModified": "2016-08-09T06:46:55.4540818Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 196, "titleData": "", "systemProperties": "a17f3202-0b15-48b1-a3e4-96410a9fcdfb;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hoPVefXwbyXE2dn67KuXXx5g0iDTKhhychX%2FCsyVC%2BM%3D", "fileSize": 130661, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=8MAv2%2BMGkOidM4lyYnWys8Gm1FELuXn3IdAGONl8c1M%3D", "fileSize": 425362, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2020.xboxlive.com/asset-85df25eb-6e42-4aa0-aee2-454d70959ffa/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TWTiWz5QwtP67bY%2B5faKO1sCX8KJARTWO%2BjI6O6DhZc%3D&__gda__=1522241341_04875fe9bd70cd0f8b6a4a855b25039f", "fileSize": 15876835, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 33, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1606ffb0-00eb-41f5-bcdb-57ca48c45ae6", "state": "Published", "datePublished": "2016-08-09T06:20:06.8042651Z", "dateRecorded": "2016-08-09T06:11:00Z", "lastModified": "2016-08-09T06:20:06.8042651Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 107, "titleData": "", "systemProperties": "e9d641d4-ea1b-4358-8a52-c93bd80dd49d;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=sCN2DyIxC%2F7Gcm%2Fxf7BN6xCe6MEO6wSUXb9%2FhTT8Y6Y%3D", "fileSize": 143356, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=pf1gVCXGh5qscXwVZxqndRYlc1E7PiBmtv9BEWmpvz4%3D", "fileSize": 461094, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2017.xboxlive.com/asset-43c97401-fba6-4a1d-a09a-0ee24b085bf5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FSqjTHlmNKWn%2BJSGsTyMNtvugP0BxhL82IXjltQipro%3D&__gda__=1522241341_8b36e029ca5d362a3d09f5bab59c29e4", "fileSize": 10103719, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 30, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "04438e58-6133-4ef1-a1d1-2bb45d43ac1f", "state": "Published", "datePublished": "2016-08-09T04:39:43.3295887Z", "dateRecorded": "2016-08-09T04:28:11Z", "lastModified": "2016-08-09T04:39:43.3295887Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 69, "titleData": "", "systemProperties": "5b6347fd-d734-4219-8352-a90383ae44cd;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=NcUBNyJ8yzB50BuCzIucomCdCfWNu3rh1lB0Ne5W5Wo%3D", "fileSize": 846, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bYQkHKTrBqGP86%2FS95vTHaIMNVG0U%2Fla5oEsa6r8ETI%3D", "fileSize": 2291, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-65f40239-4630-4fd0-97bf-54aadda75681/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=QY3s%2FyCRcOR6LjTvRzwYmsWw4rQ9BnrXWD8bznxFOQM%3D&__gda__=1522241341_99219717ce015dda404f54f3f98b8cca", "fileSize": 13602524, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "07f057bc-2900-47ca-b9e5-d479125d4800", "state": "Published", "datePublished": "2016-08-09T03:50:38.4155978Z", "dateRecorded": "2016-08-09T03:27:25Z", "lastModified": "2016-08-09T03:50:38.4155978Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "b167a364-e132-4ae3-afc1-cea139389028;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YcLHYMC6GBMtfrWXBn51mCyyD%2FIs09HwgzWCGyMiAbs%3D", "fileSize": 161212, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jMhh88tfT7Foo74kviJUYS0LO06X8ujNsgs4zjCtfxM%3D", "fileSize": 537199, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/asset-613e623f-39ff-47b0-a34f-b89db44b3ea5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=B22QQnkqTjjxieNiidlDkoCvb2AKShnviBMhp1UXQx4%3D&__gda__=1522241341_99a7c86a07e65af9e776d983b1f66cd9", "fileSize": 12765388, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e86a4017-2b5c-4b66-a17c-8dae73508eb3", "state": "Published", "datePublished": "2016-08-09T03:39:48.3805891Z", "dateRecorded": "2016-08-09T03:18:32Z", "lastModified": "2016-08-09T03:39:48.3805891Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 52, "titleData": "", "systemProperties": "79a1a18b-c392-4a40-bf08-723ecf31ecda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bqISNzDAQwMEE6olJLYJ64SQtb4XSBzzlHvfTXp21nU%3D", "fileSize": 154434, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=t3zaSstRlE4c81HKEUVq9L82UN6Asmi736FkYNt%2BG3c%3D", "fileSize": 512870, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2016.xboxlive.com/asset-5d979e26-1d25-4dc4-9a4b-8000fc032bf8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=iAdCNYsb%2Bghu5sKgwnpuQWGA7Jqf7WYfLtc84w3Bln4%3D&__gda__=1522241341_34952263b16223002657f225a5d56dd2", "fileSize": 18767754, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "7fba1194-df21-4323-a7ff-09ba1a9dded6", "state": "Published", "datePublished": "2016-08-08T03:37:10.3575388Z", "dateRecorded": "2016-08-08T03:19:55Z", "lastModified": "2016-08-08T03:37:10.3575388Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 216, "titleData": "", "systemProperties": "bbb7cfd6-fb0c-4ed2-9974-fa01177c010f;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=k0sNPrezWKXsVmZ1eNCz8ZvTQRZrZ3n4bfloeB3ypp4%3D", "fileSize": 166819, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=URbCN3VxY1steXqHewu2%2BUG4sTk7JANIkWT%2FdSY2huA%3D", "fileSize": 570016, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-abc0f842-914d-4709-a66d-123e5a2dd7d8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d%2FHJXCBUcc4zNTevrfObV1ZpH7sU1mT%2BP5xkbT%2B%2FAXA%3D&__gda__=1522241341_215e279509e157968dbf7ee36bc1401f", "fileSize": 15282508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 40, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "7e50d8a9-bc52-4967-9384-b713d3931787", "state": "Published", "datePublished": "2016-08-08T03:22:24.2827731Z", "dateRecorded": "2016-08-08T03:04:47Z", "lastModified": "2016-08-08T03:22:24.2827731Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 71, "titleData": "", "systemProperties": "9055341b-54ac-42d0-b31b-bd470753b19b;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=70mm5JK2%2FiP9vLKEuY9fEgqoSSa5OOFIp871b%2FH415o%3D", "fileSize": 171718, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BFRz7wgiw7va1PQk%2FEImCxFxqfUO1gFAXmABybqFNXA%3D", "fileSize": 593941, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-0afe9baa-6ee2-4883-b90a-2bffcdfee2ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KlKI%2B2TqyaiDjCfq6Gm8Xk23PV%2BFzlIgvYQywOC2gsA%3D&__gda__=1522241341_7ffbd0e5772e9835ab441680eeed8078", "fileSize": 15680996, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 16, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6401f573-0ae3-42ba-869b-377318b731ff", "state": "Published", "datePublished": "2016-08-08T03:08:25.0722005Z", "dateRecorded": "2016-08-08T02:51:22Z", "lastModified": "2016-08-08T03:08:25.0722005Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 13, "titleData": "", "systemProperties": "65a00049-6ac7-4f84-9b55-a5706ae701ec;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hxr0EifANMZhx5XEPesfbkF6kWN76GBB55K1v%2B1j9sg%3D", "fileSize": 152500, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RiulfhLiZYIGnaXb2S88b1cKnUxV1eytschM8SPR%2BKY%3D", "fileSize": 503154, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=5Dhvrp5xlOSxh33XpFnhh8m58v3FRI5u%2FGE%2BLqElHf4%3D&__gda__=1522241341_67dbc0ab0d6e7ee3019b9773d2317d50", "fileSize": 17193811, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 6, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "8b13e76a-8e32-42b6-b2cf-174bc83650ac", "state": "Published", "datePublished": "2016-08-08T02:52:59.4242996Z", "dateRecorded": "2016-08-08T02:34:55Z", "lastModified": "2016-08-08T02:52:59.4242996Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 53, "titleData": "", "systemProperties": "8b5bba25-c164-41be-a28a-47482f1d4e00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WxzSRmVV9bUEtSQ6NQU64kMFVToEc3KalNODLxSZqzo%3D", "fileSize": 154456, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4GE3YR7O28kcjtW1gbKUUasq0yJNBomLi%2Fx%2BpkiTy10%3D", "fileSize": 518531, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-1c293367-009c-4fb4-9a8b-566422fb9a9f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ckQAYlzI8j4arc2xuLjKaL2%2BP6ZtSZQH0XeXFM5ZAho%3D&__gda__=1522241341_732637a3b3a0588615725c3b26985571", "fileSize": 14261457, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e0260327-3be0-48f2-85ca-e8d70aede88f", "state": "Published", "datePublished": "2016-08-08T02:32:51.6557428Z", "dateRecorded": "2016-08-08T02:16:02Z", "lastModified": "2016-08-08T02:32:51.6557428Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 36, "titleData": "", "systemProperties": "3cd1aedb-5311-401c-b4bd-91e64e9cd150;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Ad9z1AXF4zM1261YoveRCkvC%2BJqfwvFJKpy9fiNhc70%3D", "fileSize": 152626, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=FzYzRummUcnRbDHuk9bG9gidKSqbAJU6Ec1clh9BCrg%3D", "fileSize": 515025, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-ec4a13cf-6993-4323-8702-3c486551da1d/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2N8BbDwpNceGM2OWgbuvETPdjVQk%2F%2B%2FnVcBhjWsGJes%3D&__gda__=1522241341_5388e2403f26dd6f1c60f8a372b0e343", "fileSize": 18062502, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "60ef47c1-66e6-488c-a3a8-f4f8ce424d9e", "state": "Published", "datePublished": "2016-08-08T00:50:28.4566729Z", "dateRecorded": "2016-08-08T00:37:41Z", "lastModified": "2016-08-08T00:50:28.4566729Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 26, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 55, "titleData": "", "systemProperties": "d8417324-9c7a-4c29-9c7a-6ffaa3bc2055;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=cZRUKwOUsI5p3Jgu%2F4ZVrBY%2B63RQU5g12%2FxI9D4h08E%3D", "fileSize": 167717, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=SLYo7w%2FfVfBOxTTrUtBY2Kz0NLBunS3pyMEE%2BAgTy0A%3D", "fileSize": 583394, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-ceb4386b-b2df-43cb-83fd-90c146b0f4e0/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xqFYeQbxdfVOt%2F%2FYAnJ75SsV9AyKZ5qrHHMm0JQ%2BI%2Bo%3D&__gda__=1522241341_943d2049a106896d116e503105f68f96", "fileSize": 12427361, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "953f4bff-41fb-4dc1-9f86-7d6ae7b09460", "state": "Published", "datePublished": "2016-08-08T00:02:35.8017029Z", "dateRecorded": "2016-08-07T23:35:47Z", "lastModified": "2016-08-08T00:02:35.8017029Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 27, "titleData": "", "systemProperties": "260df3ab-a1f9-4964-b6cc-7d1bc449d2b4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4z5YKbZx2X6eC%2BnnVu5uRWew2vTrljJ7ZfpUh38NYwI%3D", "fileSize": 146135, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=oxpPcBxQqxZ1aU25kupeN4x9jT1xgdhZGRjwdTTUgs8%3D", "fileSize": 484198, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-577437f5-0c09-42aa-a884-b972fe485e5f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=DJiYWk9xqaa7vOy%2B6eGsnkaiR2cx4pm75O7ARER5PI0%3D&__gda__=1522241341_5f77d3926f4fcabccea548094d37888e", "fileSize": 15498840, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1fac6036-2a1c-46fe-b043-cd0eecb6a166", "state": "Published", "datePublished": "2016-08-07T23:48:02.9042951Z", "dateRecorded": "2016-08-07T23:31:53Z", "lastModified": "2016-08-07T23:48:02.9042951Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 35, "titleData": "", "systemProperties": "3a971619-4799-4581-b5d3-5d8e8a58c315;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0jfkhNBxTjixTJ0jJRnLDhTRrkCpAMuUJv3Noqcr%2Bqc%3D", "fileSize": 159452, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RHQlwOAZf%2BLyzbKQWLJcuhvsOf4rXffgBqZKCjFt3FI%3D", "fileSize": 540470, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-fdaa855c-4994-4499-ad34-a4fbba04e334/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Gj2lMWn%2B%2BFf5eOGcfeJfv4JWTv3GNzKgAucg4AxzY%2BI%3D&__gda__=1522241341_78e7297d5a55ea5cdb3a0fa123dded20", "fileSize": 15785332, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "91d38c25-035e-4fc6-9cc2-3b8e45af2476", "state": "Published", "datePublished": "2016-08-04T06:01:19.6199819Z", "dateRecorded": "2016-08-04T05:49:03Z", "lastModified": "2016-08-04T06:01:19.6199819Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 140, "titleData": "", "systemProperties": "44c2f550-5fa1-4e27-a59c-1e43134a4d47;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=7aPI94U9LtHU7YF%2B9EJHX33LSw%2BvLq%2FHdyJmZpCr6SE%3D", "fileSize": 132396, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2Boq1eN8WoHkXUdFa5YWaPJQSappxmqz1bJ7tiMR36%2Bo%3D", "fileSize": 434595, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3005.xboxlive.com/asset-380323f4-536b-4b1c-b5af-3fe7b518e329/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0rJYtD2ucdkNu%2F1SVDDrE8LvLoxOKj80SJ%2FPjQActtk%3D&__gda__=1522241341_3c01f15b573207d0b1228e8d06296119", "fileSize": 12053765, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e7ee4d33-5a97-42d9-a066-5cee0fea112d", "state": "Published", "datePublished": "2016-08-04T05:47:12.2956391Z", "dateRecorded": "2016-08-04T05:24:49Z", "lastModified": "2016-08-04T05:47:12.2956391Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 86, "titleData": "", "systemProperties": "14f64dd6-d70f-47df-94af-e524c15f0202;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ezCbrBYeazdtXxB%2FOaQK%2FONr2WWql8GxjtegLU5gX%2Bk%3D", "fileSize": 133247, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=9zlNVtdMeMbx7SA%2BSRlikXB9k%2FEtmvbN5BfkhguqkP4%3D", "fileSize": 433869, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3009.xboxlive.com/asset-1e73012c-3b38-407f-8d6e-6762e00924ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=prBJMsHP1m3PqKxK1zmSXV35bT22nUgKXLWrpq%2FLFRU%3D&__gda__=1522241341_961c28b2f072b40238d158159f5f9f3d", "fileSize": 12083445, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5f9623b9-0e84-4165-a585-5a8fe8b00929", "state": "Published", "datePublished": "2016-08-04T05:13:51.551794Z", "dateRecorded": "2016-08-04T04:41:34Z", "lastModified": "2016-08-04T05:13:51.551794Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 190, "titleData": "", "systemProperties": "693a8749-69ba-4f51-b42d-1bb8e6cbab96;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lMrzKRSRlPZpCql4C4AzVba%2BciSU9teisSdW3vT0XB8%3D", "fileSize": 155502, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bemOyyFRKPpMmaURA9MlMhcW7hR%2BtLkBhWb1SmqUSG0%3D", "fileSize": 516829, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2012.xboxlive.com/asset-6859aa8c-98ba-4ba8-a988-f8da9d93fae8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=HOs8oga%2FdkwdJSRjUcikECA7giprOP0MOlQuNl7n3Zo%3D&__gda__=1522241341_645d86be00ba8e8b27122b51b0bf29d7", "fileSize": 19094508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 26, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "37b675eb-b32c-43d7-b619-854af17a6d9a", "state": "Published", "datePublished": "2016-07-30T07:19:39.4368105Z", "dateRecorded": "2016-07-30T07:18:14Z", "lastModified": "2016-07-30T07:19:39.4368105Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 139, "titleData": "", "systemProperties": "2ace08e2-52d6-44b1-9bca-d6486323edaf;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=UoaeQjPS7PMkPrr3w8duqNq0Dos7x1iO%2BpJe%2F3Q%2BZCo%3D", "fileSize": 147176, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Kug%2FDkZJZioQr3kFWH1DPMr2qzCZWTfHGxpllZPmvl8%3D", "fileSize": 482960, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-f7478f4b-dca5-4fd1-b5d1-58dd34ff1b8c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3jaH5chqv5bgn5wma4NwYzR5No4GAbthS0DqN5fHCXI%3D&__gda__=1522241341_07807f7be87deab7c55804ecdf4e8586", "fileSize": 9808014, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 22, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f82d75db-465f-4f66-a514-a632364cb267", "state": "Published", "datePublished": "2016-07-28T06:53:57.9008157Z", "dateRecorded": "2016-07-28T06:52:41Z", "lastModified": "2016-07-28T06:53:57.9008157Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 197, "titleData": "", "systemProperties": "491dd431-2dbd-449d-99e1-e79da89a3663;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WlYi5a75scTDNzWQhFG8U1%2BOffTwxZD%2BWaNfDYqw64M%3D", "fileSize": 125344, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lesaHjOmw78tpf4D%2BXJrwC3%2F3ZMbYWBq7frDZZmOujI%3D", "fileSize": 407877, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-1e6ca1fb-682f-4846-9956-0c5afe1d9968/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BLrvPsGfmImgfrnkDQWQjWtv2%2BJmRZ8wSSooCOwA3PM%3D&__gda__=1522241341_38241379eceb359adf264add95ac80af", "fileSize": 13259227, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 8, "likeCount": 32, "shareCount": 0, "partialViews": 0 } ], "pagingInfo": { "continuationToken": "abcde_vwxyzGQAAAA2" } }python-xbox-webapi-2.1.0/tests/data/responses/gameclips_saved_xuid_titleid.json000066400000000000000000001452151465040003600301500ustar00rootroot00000000000000{ "gameClips": [ { "gameClipId": "44b7e94d-b3e9-4b97-be73-417be9091e93", "state": "Published", "datePublished": "2017-11-10T07:12:27.4353527Z", "dateRecorded": "2017-11-10T06:29:39Z", "lastModified": "2017-11-10T07:12:27.4353527Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 822567888, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "6a7e1238-2f7b-4c66-835e-c7c799e310490;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3017.xboxlive.com/xuid-2669321029139235-public/44b7e94d-b3e9-4b97-be73-417be9091e93_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3017.xboxlive.com/xuid-2669321029139235-private/44b7e94d-b3e9-4b97-be73-417be9091e93.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lRkjf6USrukD5PCVp3PonFdwX5fD%2FmuLPWpRkIS2ydw%3D&__gda__=1522241341_d651111247d5ca9c1bb8b9244a8cd361", "fileSize": 43595475, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Danger Zone", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "Scorpio", "commentCount": 0, "likeCount": 2, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f87cc6ac-c291-4998-9124-d8b36c059b6a", "state": "Published", "datePublished": "2016-08-16T05:51:40.1354298Z", "dateRecorded": "2016-08-16T05:40:30Z", "lastModified": "2016-08-16T05:51:40.1354298Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 653, "titleData": "", "systemProperties": "56d4ac4e-efcd-4808-8d53-7583859558a4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ikXCzETBJSBPvS8W%2FxoWTCJL%2FGY6PxKpQ0VG6qktnCQ%3D", "fileSize": 159667, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-f87cc6ac-c291-4998-9124-d8b36c059b6a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=y1S%2BxzFVrgmTql2ZuYDpe6EtL5Jxu%2BhBVMnb%2Ff7ZTMA%3D", "fileSize": 522262, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-d5448dbd-f45e-46ab-ae4e-a2e205a70e7c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ArSoLvy9EnQeBthGW6%2FbasedHHk0Jb6iXjI3EMq8oh8%3D&__gda__=1522241341_69f67a7a3533626ae90b52845664dc0c", "fileSize": 12662239, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 5, "likeCount": 62, "shareCount": 2, "partialViews": 0 }, { "gameClipId": "bebd3d48-6622-4339-8e28-794d1b1a2755", "state": "Published", "datePublished": "2016-08-15T06:25:58.1253078Z", "dateRecorded": "2016-08-15T06:15:51Z", "lastModified": "2016-08-15T06:25:58.1253078Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 419, "titleData": "", "systemProperties": "caa87cc1-29aa-4278-9c89-8d8e9878d572;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BKiArrxRSTuFgIC2U9zL11fcGTqyg5QN7IE13fGfb9Y%3D", "fileSize": 169327, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-bebd3d48-6622-4339-8e28-794d1b1a2755-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FvDgQcOqGiXUNNEJ%2BLI0FSh4k0IPOfOSrnYmLWXDEBE%3D", "fileSize": 560631, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-89737fe6-5b03-48f5-8ed3-e98555005708/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=D%2Bigy01bwJhig0IBR1PeddcG3jjbnRY7pVMajeGn8ow%3D&__gda__=1522241341_a7fc62384a631bab79fdd05bcdea55bd", "fileSize": 10955394, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 4, "likeCount": 44, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "80194c67-aa0e-4fc9-a7c9-a072eab6a58c", "state": "Published", "datePublished": "2016-08-15T06:16:35.5632265Z", "dateRecorded": "2016-08-15T06:05:31Z", "lastModified": "2016-08-15T06:16:35.5632265Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 146, "titleData": "", "systemProperties": "2f17ddff-10a1-4571-99d6-aeb6fdee1dda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ggh%2B98ziFOWYtFhkLqWi48oJYbwVunXmlbIkIv1LgIs%3D", "fileSize": 141131, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-80194c67-aa0e-4fc9-a7c9-a072eab6a58c-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jHSNBytHUluIfePVBL4ONfY3%2F6ro1Lf%2BCGvYukP0%2Bs4%3D", "fileSize": 461383, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-d64cdc9c-ffc2-4811-a673-36523755755c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d8uSVktAu5ivZUJiPHchDbnrJOuU07%2BPBI2V%2BzkC2aU%3D&__gda__=1522241341_883b80fa63d862fd6159f12c2f3f5cc5", "fileSize": 12403813, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 25, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "daf3defb-d6fd-46a0-bcf2-ac732f4473e2", "state": "Published", "datePublished": "2016-08-13T04:31:49.242885Z", "dateRecorded": "2016-08-13T04:19:16Z", "lastModified": "2016-08-13T04:31:49.242885Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 281, "titleData": "", "systemProperties": "16481f6e-3d56-4714-ae19-703e697c8670;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xas0uCgwzYT5jdcGFfUQwWEOsdIh%2F706Tg4n0LhMQ9A%3D", "fileSize": 123085, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3007.xboxlive.com/00097bbbbbbbbb23-daf3defb-d6fd-46a0-bcf2-ac732f4473e2-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xeuTHzaM31N0uuwAxIE8tQAw8q%2FCHT6PeIrEFIaOamc%3D", "fileSize": 384234, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3007.xboxlive.com/asset-acc33ad2-2bea-46f8-8adc-6edf5227ac4a/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YCQSnIj5R5%2F%2BU3gxFYTgMOKbeAFnl7BvIOva%2BvnCCtQ%3D&__gda__=1522241341_443a14b9a121c06c710aac5f5f63d63e", "fileSize": 14350846, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 42, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1d64fe91-fe19-4f57-956e-1bb80fdcc063", "state": "Published", "datePublished": "2016-08-11T05:40:29.0010865Z", "dateRecorded": "2016-08-11T05:29:32Z", "lastModified": "2016-08-11T05:40:29.0010865Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 287, "titleData": "", "systemProperties": "0342eaea-9d89-4fb4-9d52-38f793085b22;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=mvfJLhmi3olAfpCxhEP6gkBwUJnB%2F%2Bfxiw1tVqBN2Pc%3D", "fileSize": 134312, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2015.xboxlive.com/00097bbbbbbbbb23-1d64fe91-fe19-4f57-956e-1bb80fdcc063-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ZRdKvsr%2FUYSaIkVYNejY189sdwDgE2%2Fuvnr324%2B3MUg%3D", "fileSize": 426344, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2015.xboxlive.com/asset-1a39ee9b-144a-4853-92fd-ee56387c7e1b/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=eiGxxQmHfBmgmEegsMGVFvq1%2F2jKB5MiMzOZXz4oEEw%3D&__gda__=1522241341_88e19c05fbd0b55d119e6ee4a5b50063", "fileSize": 12778757, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "398cbdf8-d2f9-4168-9bb0-3c59026800c7", "state": "Published", "datePublished": "2016-08-11T05:27:48.0234102Z", "dateRecorded": "2016-08-11T05:16:39Z", "lastModified": "2016-08-11T05:27:48.0234102Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 230, "titleData": "", "systemProperties": "a56efca9-73f5-46b4-a283-679586fb0733;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=utb0HiFqx7uEcbFSWf7yqZbgL4I5UAVTA9V2a8ppNlQ%3D", "fileSize": 145313, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-398cbdf8-d2f9-4168-9bb0-3c59026800c7-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3XB1gVdVHl3pyp2qR0BDg8SKOnCKqDXNZTSfQP1ctY8%3D", "fileSize": 466863, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-fab2d578-274e-4064-994c-e4dc834a107c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KmozXFmFYAGbgcGa7tZTWYQvOhTyqz%2B2Zldcx2DB4y8%3D&__gda__=1522241341_818f541effb04b1cf9fe5e6ebfb67758", "fileSize": 12402917, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 39, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "0fa0e046-14cd-49ff-937b-58730794595f", "state": "Published", "datePublished": "2016-08-09T06:46:55.4540818Z", "dateRecorded": "2016-08-09T06:33:10Z", "lastModified": "2016-08-09T06:46:55.4540818Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 196, "titleData": "", "systemProperties": "a17f3202-0b15-48b1-a3e4-96410a9fcdfb;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hoPVefXwbyXE2dn67KuXXx5g0iDTKhhychX%2FCsyVC%2BM%3D", "fileSize": 130661, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2020.xboxlive.com/00097bbbbbbbbb23-0fa0e046-14cd-49ff-937b-58730794595f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=8MAv2%2BMGkOidM4lyYnWys8Gm1FELuXn3IdAGONl8c1M%3D", "fileSize": 425362, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2020.xboxlive.com/asset-85df25eb-6e42-4aa0-aee2-454d70959ffa/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TWTiWz5QwtP67bY%2B5faKO1sCX8KJARTWO%2BjI6O6DhZc%3D&__gda__=1522241341_04875fe9bd70cd0f8b6a4a855b25039f", "fileSize": 15876835, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 33, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1606ffb0-00eb-41f5-bcdb-57ca48c45ae6", "state": "Published", "datePublished": "2016-08-09T06:20:06.8042651Z", "dateRecorded": "2016-08-09T06:11:00Z", "lastModified": "2016-08-09T06:20:06.8042651Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 107, "titleData": "", "systemProperties": "e9d641d4-ea1b-4358-8a52-c93bd80dd49d;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=sCN2DyIxC%2F7Gcm%2Fxf7BN6xCe6MEO6wSUXb9%2FhTT8Y6Y%3D", "fileSize": 143356, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2017.xboxlive.com/00097bbbbbbbbb23-1606ffb0-00eb-41f5-bcdb-57ca48c45ae6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=pf1gVCXGh5qscXwVZxqndRYlc1E7PiBmtv9BEWmpvz4%3D", "fileSize": 461094, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2017.xboxlive.com/asset-43c97401-fba6-4a1d-a09a-0ee24b085bf5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FSqjTHlmNKWn%2BJSGsTyMNtvugP0BxhL82IXjltQipro%3D&__gda__=1522241341_8b36e029ca5d362a3d09f5bab59c29e4", "fileSize": 10103719, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 30, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "04438e58-6133-4ef1-a1d1-2bb45d43ac1f", "state": "Published", "datePublished": "2016-08-09T04:39:43.3295887Z", "dateRecorded": "2016-08-09T04:28:11Z", "lastModified": "2016-08-09T04:39:43.3295887Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 69, "titleData": "", "systemProperties": "5b6347fd-d734-4219-8352-a90383ae44cd;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=NcUBNyJ8yzB50BuCzIucomCdCfWNu3rh1lB0Ne5W5Wo%3D", "fileSize": 846, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-04438e58-6133-4ef1-a1d1-2bb45d43ac1f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bYQkHKTrBqGP86%2FS95vTHaIMNVG0U%2Fla5oEsa6r8ETI%3D", "fileSize": 2291, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-65f40239-4630-4fd0-97bf-54aadda75681/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=QY3s%2FyCRcOR6LjTvRzwYmsWw4rQ9BnrXWD8bznxFOQM%3D&__gda__=1522241341_99219717ce015dda404f54f3f98b8cca", "fileSize": 13602524, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "07f057bc-2900-47ca-b9e5-d479125d4800", "state": "Published", "datePublished": "2016-08-09T03:50:38.4155978Z", "dateRecorded": "2016-08-09T03:27:25Z", "lastModified": "2016-08-09T03:50:38.4155978Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 102, "titleData": "", "systemProperties": "b167a364-e132-4ae3-afc1-cea139389028;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=YcLHYMC6GBMtfrWXBn51mCyyD%2FIs09HwgzWCGyMiAbs%3D", "fileSize": 161212, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2003.xboxlive.com/00097bbbbbbbbb23-07f057bc-2900-47ca-b9e5-d479125d4800-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=jMhh88tfT7Foo74kviJUYS0LO06X8ujNsgs4zjCtfxM%3D", "fileSize": 537199, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2003.xboxlive.com/asset-613e623f-39ff-47b0-a34f-b89db44b3ea5/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=B22QQnkqTjjxieNiidlDkoCvb2AKShnviBMhp1UXQx4%3D&__gda__=1522241341_99a7c86a07e65af9e776d983b1f66cd9", "fileSize": 12765388, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e86a4017-2b5c-4b66-a17c-8dae73508eb3", "state": "Published", "datePublished": "2016-08-09T03:39:48.3805891Z", "dateRecorded": "2016-08-09T03:18:32Z", "lastModified": "2016-08-09T03:39:48.3805891Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 52, "titleData": "", "systemProperties": "79a1a18b-c392-4a40-bf08-723ecf31ecda;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bqISNzDAQwMEE6olJLYJ64SQtb4XSBzzlHvfTXp21nU%3D", "fileSize": 154434, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2016.xboxlive.com/00097bbbbbbbbb23-e86a4017-2b5c-4b66-a17c-8dae73508eb3-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=t3zaSstRlE4c81HKEUVq9L82UN6Asmi736FkYNt%2BG3c%3D", "fileSize": 512870, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2016.xboxlive.com/asset-5d979e26-1d25-4dc4-9a4b-8000fc032bf8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=iAdCNYsb%2Bghu5sKgwnpuQWGA7Jqf7WYfLtc84w3Bln4%3D&__gda__=1522241341_34952263b16223002657f225a5d56dd2", "fileSize": 18767754, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "7fba1194-df21-4323-a7ff-09ba1a9dded6", "state": "Published", "datePublished": "2016-08-08T03:37:10.3575388Z", "dateRecorded": "2016-08-08T03:19:55Z", "lastModified": "2016-08-08T03:37:10.3575388Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 216, "titleData": "", "systemProperties": "bbb7cfd6-fb0c-4ed2-9974-fa01177c010f;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=k0sNPrezWKXsVmZ1eNCz8ZvTQRZrZ3n4bfloeB3ypp4%3D", "fileSize": 166819, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2023.xboxlive.com/00097bbbbbbbbb23-7fba1194-df21-4323-a7ff-09ba1a9dded6-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=URbCN3VxY1steXqHewu2%2BUG4sTk7JANIkWT%2FdSY2huA%3D", "fileSize": 570016, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2023.xboxlive.com/asset-abc0f842-914d-4709-a66d-123e5a2dd7d8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=d%2FHJXCBUcc4zNTevrfObV1ZpH7sU1mT%2BP5xkbT%2B%2FAXA%3D&__gda__=1522241341_215e279509e157968dbf7ee36bc1401f", "fileSize": 15282508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 40, "shareCount": 1, "partialViews": 0 }, { "gameClipId": "7e50d8a9-bc52-4967-9384-b713d3931787", "state": "Published", "datePublished": "2016-08-08T03:22:24.2827731Z", "dateRecorded": "2016-08-08T03:04:47Z", "lastModified": "2016-08-08T03:22:24.2827731Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 71, "titleData": "", "systemProperties": "9055341b-54ac-42d0-b31b-bd470753b19b;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=70mm5JK2%2FiP9vLKEuY9fEgqoSSa5OOFIp871b%2FH415o%3D", "fileSize": 171718, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-7e50d8a9-bc52-4967-9384-b713d3931787-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BFRz7wgiw7va1PQk%2FEImCxFxqfUO1gFAXmABybqFNXA%3D", "fileSize": 593941, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-0afe9baa-6ee2-4883-b90a-2bffcdfee2ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=KlKI%2B2TqyaiDjCfq6Gm8Xk23PV%2BFzlIgvYQywOC2gsA%3D&__gda__=1522241341_7ffbd0e5772e9835ab441680eeed8078", "fileSize": 15680996, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 16, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "6401f573-0ae3-42ba-869b-377318b731ff", "state": "Published", "datePublished": "2016-08-08T03:08:25.0722005Z", "dateRecorded": "2016-08-08T02:51:22Z", "lastModified": "2016-08-08T03:08:25.0722005Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 13, "titleData": "", "systemProperties": "65a00049-6ac7-4f84-9b55-a5706ae701ec;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hxr0EifANMZhx5XEPesfbkF6kWN76GBB55K1v%2B1j9sg%3D", "fileSize": 152500, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RiulfhLiZYIGnaXb2S88b1cKnUxV1eytschM8SPR%2BKY%3D", "fileSize": 503154, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2021.xboxlive.com/00097bbbbbbbbb23-6401f573-0ae3-42ba-869b-377318b731ff/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=5Dhvrp5xlOSxh33XpFnhh8m58v3FRI5u%2FGE%2BLqElHf4%3D&__gda__=1522241341_67dbc0ab0d6e7ee3019b9773d2317d50", "fileSize": 17193811, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 6, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "8b13e76a-8e32-42b6-b2cf-174bc83650ac", "state": "Published", "datePublished": "2016-08-08T02:52:59.4242996Z", "dateRecorded": "2016-08-08T02:34:55Z", "lastModified": "2016-08-08T02:52:59.4242996Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 53, "titleData": "", "systemProperties": "8b5bba25-c164-41be-a28a-47482f1d4e00;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WxzSRmVV9bUEtSQ6NQU64kMFVToEc3KalNODLxSZqzo%3D", "fileSize": 154456, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-8b13e76a-8e32-42b6-b2cf-174bc83650ac-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4GE3YR7O28kcjtW1gbKUUasq0yJNBomLi%2Fx%2BpkiTy10%3D", "fileSize": 518531, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-1c293367-009c-4fb4-9a8b-566422fb9a9f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ckQAYlzI8j4arc2xuLjKaL2%2BP6ZtSZQH0XeXFM5ZAho%3D&__gda__=1522241341_732637a3b3a0588615725c3b26985571", "fileSize": 14261457, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e0260327-3be0-48f2-85ca-e8d70aede88f", "state": "Published", "datePublished": "2016-08-08T02:32:51.6557428Z", "dateRecorded": "2016-08-08T02:16:02Z", "lastModified": "2016-08-08T02:32:51.6557428Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 36, "titleData": "", "systemProperties": "3cd1aedb-5311-401c-b4bd-91e64e9cd150;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Ad9z1AXF4zM1261YoveRCkvC%2BJqfwvFJKpy9fiNhc70%3D", "fileSize": 152626, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3006.xboxlive.com/00097bbbbbbbbb23-e0260327-3be0-48f2-85ca-e8d70aede88f-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=FzYzRummUcnRbDHuk9bG9gidKSqbAJU6Ec1clh9BCrg%3D", "fileSize": 515025, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3006.xboxlive.com/asset-ec4a13cf-6993-4323-8702-3c486551da1d/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2N8BbDwpNceGM2OWgbuvETPdjVQk%2F%2B%2FnVcBhjWsGJes%3D&__gda__=1522241341_5388e2403f26dd6f1c60f8a372b0e343", "fileSize": 18062502, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "60ef47c1-66e6-488c-a3a8-f4f8ce424d9e", "state": "Published", "datePublished": "2016-08-08T00:50:28.4566729Z", "dateRecorded": "2016-08-08T00:37:41Z", "lastModified": "2016-08-08T00:50:28.4566729Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 26, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 55, "titleData": "", "systemProperties": "d8417324-9c7a-4c29-9c7a-6ffaa3bc2055;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=cZRUKwOUsI5p3Jgu%2F4ZVrBY%2B63RQU5g12%2FxI9D4h08E%3D", "fileSize": 167717, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-60ef47c1-66e6-488c-a3a8-f4f8ce424d9e-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=SLYo7w%2FfVfBOxTTrUtBY2Kz0NLBunS3pyMEE%2BAgTy0A%3D", "fileSize": 583394, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-ceb4386b-b2df-43cb-83fd-90c146b0f4e0/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=xqFYeQbxdfVOt%2F%2FYAnJ75SsV9AyKZ5qrHHMm0JQ%2BI%2Bo%3D&__gda__=1522241341_943d2049a106896d116e503105f68f96", "fileSize": 12427361, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "953f4bff-41fb-4dc1-9f86-7d6ae7b09460", "state": "Published", "datePublished": "2016-08-08T00:02:35.8017029Z", "dateRecorded": "2016-08-07T23:35:47Z", "lastModified": "2016-08-08T00:02:35.8017029Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 27, "titleData": "", "systemProperties": "260df3ab-a1f9-4964-b6cc-7d1bc449d2b4;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4z5YKbZx2X6eC%2BnnVu5uRWew2vTrljJ7ZfpUh38NYwI%3D", "fileSize": 146135, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2024.xboxlive.com/00097bbbbbbbbb23-953f4bff-41fb-4dc1-9f86-7d6ae7b09460-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=oxpPcBxQqxZ1aU25kupeN4x9jT1xgdhZGRjwdTTUgs8%3D", "fileSize": 484198, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2024.xboxlive.com/asset-577437f5-0c09-42aa-a884-b972fe485e5f/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=DJiYWk9xqaa7vOy%2B6eGsnkaiR2cx4pm75O7ARER5PI0%3D&__gda__=1522241341_5f77d3926f4fcabccea548094d37888e", "fileSize": 15498840, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "1fac6036-2a1c-46fe-b043-cd0eecb6a166", "state": "Published", "datePublished": "2016-08-07T23:48:02.9042951Z", "dateRecorded": "2016-08-07T23:31:53Z", "lastModified": "2016-08-07T23:48:02.9042951Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "90c40100-9123-47d6-bc6b-35d3214e91ac", "titleId": 558797228, "rating": 0.0, "ratingCount": 0, "views": 35, "titleData": "", "systemProperties": "3a971619-4799-4581-b5d3-5d8e8a58c315;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0jfkhNBxTjixTJ0jJRnLDhTRrkCpAMuUJv3Noqcr%2Bqc%3D", "fileSize": 159452, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2013.xboxlive.com/00097bbbbbbbbb23-1fac6036-2a1c-46fe-b043-cd0eecb6a166-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=RHQlwOAZf%2BLyzbKQWLJcuhvsOf4rXffgBqZKCjFt3FI%3D", "fileSize": 540470, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2013.xboxlive.com/asset-fdaa855c-4994-4499-ad34-a4fbba04e334/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Gj2lMWn%2B%2BFf5eOGcfeJfv4JWTv3GNzKgAucg4AxzY%2BI%3D&__gda__=1522241341_78e7297d5a55ea5cdb3a0fa123dded20", "fileSize": 15785332, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Rocket League®", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 1, "likeCount": 17, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "91d38c25-035e-4fc6-9cc2-3b8e45af2476", "state": "Published", "datePublished": "2016-08-04T06:01:19.6199819Z", "dateRecorded": "2016-08-04T05:49:03Z", "lastModified": "2016-08-04T06:01:19.6199819Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 140, "titleData": "", "systemProperties": "44c2f550-5fa1-4e27-a59c-1e43134a4d47;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=7aPI94U9LtHU7YF%2B9EJHX33LSw%2BvLq%2FHdyJmZpCr6SE%3D", "fileSize": 132396, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3005.xboxlive.com/00097bbbbbbbbb23-91d38c25-035e-4fc6-9cc2-3b8e45af2476-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2Boq1eN8WoHkXUdFa5YWaPJQSappxmqz1bJ7tiMR36%2Bo%3D", "fileSize": 434595, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3005.xboxlive.com/asset-380323f4-536b-4b1c-b5af-3fe7b518e329/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=0rJYtD2ucdkNu%2F1SVDDrE8LvLoxOKj80SJ%2FPjQActtk%3D&__gda__=1522241341_3c01f15b573207d0b1228e8d06296119", "fileSize": 12053765, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 19, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "e7ee4d33-5a97-42d9-a066-5cee0fea112d", "state": "Published", "datePublished": "2016-08-04T05:47:12.2956391Z", "dateRecorded": "2016-08-04T05:24:49Z", "lastModified": "2016-08-04T05:47:12.2956391Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 86, "titleData": "", "systemProperties": "14f64dd6-d70f-47df-94af-e524c15f0202;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ezCbrBYeazdtXxB%2FOaQK%2FONr2WWql8GxjtegLU5gX%2Bk%3D", "fileSize": 133247, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3009.xboxlive.com/00097bbbbbbbbb23-e7ee4d33-5a97-42d9-a066-5cee0fea112d-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=9zlNVtdMeMbx7SA%2BSRlikXB9k%2FEtmvbN5BfkhguqkP4%3D", "fileSize": 433869, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3009.xboxlive.com/asset-1e73012c-3b38-407f-8d6e-6762e00924ac/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=prBJMsHP1m3PqKxK1zmSXV35bT22nUgKXLWrpq%2FLFRU%3D&__gda__=1522241341_961c28b2f072b40238d158159f5f9f3d", "fileSize": 12083445, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 0, "likeCount": 15, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "5f9623b9-0e84-4165-a585-5a8fe8b00929", "state": "Published", "datePublished": "2016-08-04T05:13:51.551794Z", "dateRecorded": "2016-08-04T04:41:34Z", "lastModified": "2016-08-04T05:13:51.551794Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 28, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 190, "titleData": "", "systemProperties": "693a8749-69ba-4f51-b42d-1bb8e6cbab96;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lMrzKRSRlPZpCql4C4AzVba%2BciSU9teisSdW3vT0XB8%3D", "fileSize": 155502, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2012.xboxlive.com/00097bbbbbbbbb23-5f9623b9-0e84-4165-a585-5a8fe8b00929-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bemOyyFRKPpMmaURA9MlMhcW7hR%2BtLkBhWb1SmqUSG0%3D", "fileSize": 516829, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2012.xboxlive.com/asset-6859aa8c-98ba-4ba8-a988-f8da9d93fae8/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=HOs8oga%2FdkwdJSRjUcikECA7giprOP0MOlQuNl7n3Zo%3D&__gda__=1522241341_645d86be00ba8e8b27122b51b0bf29d7", "fileSize": 19094508, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 26, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "37b675eb-b32c-43d7-b619-854af17a6d9a", "state": "Published", "datePublished": "2016-07-30T07:19:39.4368105Z", "dateRecorded": "2016-07-30T07:18:14Z", "lastModified": "2016-07-30T07:19:39.4368105Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 27, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 139, "titleData": "", "systemProperties": "2ace08e2-52d6-44b1-9bca-d6486323edaf;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=UoaeQjPS7PMkPrr3w8duqNq0Dos7x1iO%2BpJe%2F3Q%2BZCo%3D", "fileSize": 147176, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t2022.xboxlive.com/00097bbbbbbbbb23-37b675eb-b32c-43d7-b619-854af17a6d9a-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Kug%2FDkZJZioQr3kFWH1DPMr2qzCZWTfHGxpllZPmvl8%3D", "fileSize": 482960, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d2022.xboxlive.com/asset-f7478f4b-dca5-4fd1-b5d1-58dd34ff1b8c/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3jaH5chqv5bgn5wma4NwYzR5No4GAbthS0DqN5fHCXI%3D&__gda__=1522241341_07807f7be87deab7c55804ecdf4e8586", "fileSize": 9808014, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 2, "likeCount": 22, "shareCount": 0, "partialViews": 0 }, { "gameClipId": "f82d75db-465f-4f66-a514-a632364cb267", "state": "Published", "datePublished": "2016-07-28T06:53:57.9008157Z", "dateRecorded": "2016-07-28T06:52:41Z", "lastModified": "2016-07-28T06:53:57.9008157Z", "userCaption": "", "type": "UserGenerated", "durationInSeconds": 29, "scid": "f9d30100-7748-4d1a-b508-524805a3c308", "titleId": 94618376, "rating": 0.0, "ratingCount": 0, "views": 197, "titleData": "", "systemProperties": "491dd431-2dbd-449d-99e1-e79da89a3663;", "savedByUser": true, "achievementId": "", "greatestMomentId": "", "thumbnails": [ { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=WlYi5a75scTDNzWQhFG8U1%2BOffTwxZD%2BWaNfDYqw64M%3D", "fileSize": 125344, "thumbnailType": "Small" }, { "uri": "https://gameclipscontent-t3008.xboxlive.com/00097bbbbbbbbb23-f82d75db-465f-4f66-a514-a632364cb267-public/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lesaHjOmw78tpf4D%2BXJrwC3%2F3ZMbYWBq7frDZZmOujI%3D", "fileSize": 407877, "thumbnailType": "Large" } ], "gameClipUris": [ { "uri": "https://gameclipscontent-d3008.xboxlive.com/asset-1e6ca1fb-682f-4846-9956-0c5afe1d9968/GameClip-Original.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BLrvPsGfmImgfrnkDQWQjWtv2%2BJmRZ8wSSooCOwA3PM%3D&__gda__=1522241341_38241379eceb359adf264add95ac80af", "fileSize": 13259227, "uriType": "Download", "expiration": "2018-03-28T12:49:01.5001828Z" } ], "xuid": "2669321029139235", "clipName": "", "titleName": "Overwatch: Origins Edition", "gameClipLocale": "en-US", "clipContentAttributes": "None", "deviceType": "XboxOne", "commentCount": 8, "likeCount": 32, "shareCount": 0, "partialViews": 0 } ], "pagingInfo": { "continuationToken": "abcde_vwxyzGQAAAA2" } }python-xbox-webapi-2.1.0/tests/data/responses/list_add_item.json000066400000000000000000000002251465040003600250430ustar00rootroot00000000000000{ "ListTitle": "Pins", "ListVersion": 1413, "ListCount": 8, "AllowDuplicates": false, "MaxListSize": 200, "AccessSetting": "OwnerOnly" } python-xbox-webapi-2.1.0/tests/data/responses/list_delete_item.json000066400000000000000000000002401465040003600255520ustar00rootroot00000000000000{ "ListTitle": "Pins", "ListVersion": 1414, "ListCount": 7, "AllowDuplicates": false, "MaxListSize": 200, "AccessSetting": "OwnerOnly" }python-xbox-webapi-2.1.0/tests/data/responses/lists_get_items.json000066400000000000000000000025241465040003600254440ustar00rootroot00000000000000{ "ImpressionId": "Lists.aa47a315-8a82-4739-a627-805231821ee3", "ListItems": [ { "DateAdded": "08/04/2015 21:06:06", "DateModified": "08/04/2015 21:06:06", "Index": 3, "KValue": 3, "Item": { "ItemId": "Microsoft.Xbox.LiveTV_8wekyb3d8bbwe", "ContentType": "DApp", "Title": "TV", "DeviceType": "XboxOne", "Provider": null, "ProviderId": null } }, { "DateAdded": "09/16/2016 19:15:58", "DateModified": "09/16/2016 19:15:58", "Index": 4, "KValue": 4, "Item": { "ItemId": "Microsoft.ZuneVideo_8wekyb3d8bbwe", "ContentType": "DApp", "Title": "Xbox Video", "DeviceType": "XboxOne", "Provider": null, "ProviderId": null } }, { "DateAdded": "09/16/2016 19:15:57", "DateModified": "09/16/2016 19:15:57", "Index": 5, "KValue": 5, "Item": { "ItemId": "Microsoft.ZuneMusic_8wekyb3d8bbwe", "ContentType": "DApp", "Title": "Xbox Music", "DeviceType": "XboxOne", "Provider": null, "ProviderId": null } } ], "ListMetadata": { "ListTitle": "Recommended pps", "ListVersion": 42, "ListCount": 3, "AllowDuplicates": false, "MaxListSize": 200, "AccessSetting": "OwnerOnly" } }python-xbox-webapi-2.1.0/tests/data/responses/mediahub_gameclips_own.json000066400000000000000000000051671465040003600267410ustar00rootroot00000000000000{ "values": [ { "commentCount": 0, "contentId": "62f47208-b873-479b-a9ee-6b16126c43b20", "contentLocators": [ { "expiration": "2022-11-11T11:05:59.3087637Z", "fileSize": 18825622, "locatorType": "Download", "uri": "https://gameclipscontent-d3023.media.xboxlive.com/xuid-2669321029139235-private/62f47208-b873-479b-a9ee-6b16126c43b20.MP4?sv=2015-12-11&sr=b&si=DefaultAccess&sig=OQMDiPhvEw0%2BpitWhQLlpEME%2B1A4hW1OkDI4SZpKvpM%3D&__gda__=1668164759_b54098d230229feb0eb2e06890d2c9ea" }, { "locatorType": "Thumbnail_Small", "uri": "https://gameclipscontent-t3023.media.xboxlive.com/xuid-2669321029139235-public/62f47208-b873-479b-a9ee-6b16126c43b20_Thumbnail.PNG" }, { "locatorType": "Thumbnail_Large", "uri": "https://gameclipscontent-t3023.media.xboxlive.com/xuid-2669321029139235-public/62f47208-b873-479b-a9ee-6b16126c43b20_Thumbnail.PNG" } ], "contentSegments": [ { "creationType": "UserGenerated", "creatorChannelId": null, "creatorXuid": 2669321029139235, "durationInSeconds": 27, "offset": 0, "recordDate": "2018-04-02T19:28:38Z", "secondaryTitleId": null, "segmentId": 1, "titleId": 1717113201 } ], "contentState": "Published", "creationType": "UserGenerated", "durationInSeconds": 27, "enforcementState": "None", "frameRate": 30, "greatestMomentId": "", "likeCount": 0, "localId": "67fac079-f793-4ea8-a448-bd7096a9fac30", "ownerXuid": 2669321029139235, "resolutionHeight": 720, "resolutionWidth": 1280, "safetyThreshold": "None", "sandboxId": "RETAIL", "sessions": [], "shareCount": 0, "sharedTo": [], "titleData": "", "titleId": 1717113201, "titleName": "Sea of Thieves", "tournaments": [], "uploadDate": "2018-04-02T19:46:26.1665177Z", "uploadDeviceType": "Edmonton", "uploadLanguage": "de-DE", "uploadRegion": "DE", "uploadTitleId": 49312658, "userCaption": "", "viewCount": 1 } ] }python-xbox-webapi-2.1.0/tests/data/responses/mediahub_screenshots_own.json000066400000000000000000000042771465040003600273360ustar00rootroot00000000000000{ "values": [ { "captureDate": "2022-01-08T19:49:17Z", "contentId": "0b2a0559-a246-911a-9a06-e01f3d38ec5b", "contentLocators": [ { "fileSize": 17030676, "locatorType": "Download", "uri": "https://screenshotscontent-d4002.media.xboxlive.com/xuid-2669321029139235-private/0b2a0559-a246-911a-9a06-e01f3d38ec5b.PNG?sv=2015-12-11&sr=b&si=DefaultAccess" }, { "locatorType": "Thumbnail_Small", "uri": "https://screenshotscontent-t4002.media.xboxlive.com/xuid-2669321029139235-public/0b2a0559-a246-911a-9a06-e01f3d38ec5b_Thumbnail.PNG" }, { "locatorType": "Thumbnail_Large", "uri": "https://screenshotscontent-t4002.media.xboxlive.com/xuid-2669321029139235-public/0b2a0559-a246-911a-9a06-e01f3d38ec5b_Thumbnail.PNG" }, { "fileSize": 14637915, "locatorType": "Download_HDR", "uri": "https://screenshotscontent-d4002.media.xboxlive.com/xuid-2669321029139235-private/0b2a0559-a246-911a-9a06-e01f3d38ec5b.JXR?sv=2015-12-11&sr=b&si=DefaultAccess" } ], "CreationType": "UserGenerated", "localId": "62f47208-b873-479b-a9ee-6b16126c43b20", "ownerXuid": 2669321029139235, "resolutionHeight": 2160, "resolutionWidth": 3840, "sandboxId": "RETAIL", "sharedTo": [], "titleId": 1777860928, "titleName": "Microsoft Flight Simulator", "dateUploaded": "2022-01-08T19:54:14.6516641Z", "uploadLanguage": "de-DE", "uploadRegion": "DE", "uploadTitleId": 49312658, "uploadDeviceType": "Scarlett", "commentCount": 0, "likeCount": 0, "shareCount": 0, "viewCount": 0, "contentState": "Published", "enforcementState": "None", "safetyThreshold": "Unscanned", "sessions": [], "tournaments": [] } ] }python-xbox-webapi-2.1.0/tests/data/responses/message_get_conversation.json000066400000000000000000000040551465040003600273240ustar00rootroot00000000000000{ "timestamp": "2020-10-09T02:05:48.9846784Z", "networkId": "Xbox", "type": "OneToOne", "conversationId": "05907fa3-0000-0009-acbd-299772a90900", "participants": [ "2533274883751843", "2719584417856940" ], "readHorizon": "14670727301543890", "deleteHorizon": "14670705998559210", "isRead": true, "muted": false, "folder": "Primary", "messages": [ { "contentPayload": { "content": { "parts": [ { "contentType": "text", "text": "Deleted", "version": 0 } ] } }, "timestamp": "2020-10-09T02:05:44.5938743Z", "lastUpdateTimestamp": "2020-10-09T02:06:00.7038298Z", "type": "ContentMessage", "networkId": "Xbox", "conversationType": "OneToOne", "conversationId": "05907fa3-0000-0009-acbd-299772a90900", "sender": "2719584417856940", "messageId": "14670726562813906", "isDeleted": true, "isServerUpdated": false }, { "contentPayload": { "content": { "parts": [ { "contentType": "text", "version": 0, "text": "Test 4", "unsuitableFor": [] } ] } }, "timestamp": "2020-10-09T02:05:48.9846784Z", "lastUpdateTimestamp": "2020-10-09T02:05:48.9846784Z", "type": "ContentMessage", "networkId": "Xbox", "conversationType": "OneToOne", "conversationId": "05907fa3-0000-0009-acbd-299772a90900", "sender": "2719584417856940", "messageId": "14670727301543890", "isDeleted": false, "isServerUpdated": false } ], "continuationToken": null, "voiceId": "05907fa3-0000-0009-acbd-299772a90900", "voiceRoster": [] }python-xbox-webapi-2.1.0/tests/data/responses/message_get_inbox.json000066400000000000000000000061761465040003600257370ustar00rootroot00000000000000{ "primary": { "folder": "Primary", "totalCount": 24, "unreadCount": 1, "conversations": [ { "timestamp": "2020-10-09T01:35:32.2655859Z", "networkId": "Xbox", "type": "OneToOne", "conversationId": "05907fa3-0000-0009-acbd-299772a90900", "voiceId": "05907fa3-0000-0009-acbd-299772a90900", "participants": ["2533274883751843", "2719584417856940"], "readHorizon": "14670422513694688", "deleteHorizon": "0", "isRead": true, "muted": false, "folder": "Primary", "lastMessage": { "contentPayload": { "content": { "parts": [ { "contentType": "text", "version": 0, "text": "Test", "unsuitableFor": [] } ] } }, "timestamp": "2020-10-09T01:35:32.2655859Z", "lastUpdateTimestamp": "2020-10-09T01:35:32.2655859Z", "type": "ContentMessage", "networkId": "Xbox", "conversationType": "OneToOne", "conversationId": "05907fa3-0000-0009-acbd-299772a90900", "owner": 2719584417856940, "sender": "2719584417856940", "messageId": "14670422513694688", "isDeleted": false, "isServerUpdated": false } }, { "timestamp": "2020-10-09T00:35:57.8664824Z", "networkId": "Xbox", "type": "OneToOne", "conversationId": "00000000-0000-0000-acbd-299772a90900", "voiceId": "00000000-0000-0000-acbd-299772a90900", "participants": ["0", "2719584417856940"], "readHorizon": "14449092124444632", "deleteHorizon": "6930255230021639", "isRead": false, "muted": false, "folder": "Primary", "lastMessage": { "contentPayload": { "content": { "parts": [ { "contentType": "text", "text": "Great news: Game Pass is about to get even better! Starting November 10th 2020, EA Play, the gaming membership from Electronic Arts, will be included with your Xbox Game Pass Ultimate membership at no additional cost. See xbox.com/gamepass for details.", "version": 0 } ] } }, "timestamp": "2020-10-09T00:35:57.8664824Z", "lastUpdateTimestamp": "2020-10-09T00:35:57.8664824Z", "type": "ContentMessage", "networkId": "Xbox", "conversationType": "OneToOne", "conversationId": "00000000-0000-0000-acbd-299772a90900", "owner": 2719584417856940, "sender": "0", "messageId": "14669822834366440", "isDeleted": false, "isServerUpdated": false } } ] }, "folders": [], "safetySettings": { "version": 3, "primaryInboxMedia": "Mature", "primaryInboxText": "AllowAll", "primaryInboxUrl": "Mature", "secondaryInboxMedia": "Medium", "secondaryInboxText": "Medium", "secondaryInboxUrl": "BlockAll", "canUnobscure": true } } python-xbox-webapi-2.1.0/tests/data/responses/message_new_conversation.json000066400000000000000000000006061465040003600273340ustar00rootroot00000000000000{ "timestamp": "0001-01-01T00:00:00", "networkId": "Xbox", "type": "OneToOne", "conversationId": "05907fa3-0000-0009-acbd-299772a90900", "participants": null, "readHorizon": "0", "deleteHorizon": "0", "isRead": false, "muted": false, "folder": "Unspecified", "messages": null, "continuationToken": null, "voiceId": "05907fa3-0000-0009-acbd-299772a90900", "voiceRoster": null }python-xbox-webapi-2.1.0/tests/data/responses/message_send_message.json000066400000000000000000000001461465040003600264050ustar00rootroot00000000000000{ "messageId": "14670963043022811", "conversationId": "05907fa3-0000-0009-acbd-299772a90900" }python-xbox-webapi-2.1.0/tests/data/responses/people_batch.json000066400000000000000000000213071465040003600246730ustar00rootroot00000000000000{ "people": [ { "xuid": "271958441785640", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "Test Test", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW_ES.ojiJijNBGRVUbTnZKsoCCCkjlsEJrrMqDkYqs3M0aLOK2kxE9mbLm9M2.R0stAQYoDsGCDJxqDzG9WF3oa4rOCjEK7DbZXdBmBWnMrfErA3M_Q4y_mUTEQLqSAEeYFGlGeCXYsccnQMvEecxRg-&format=png", "showUserAsAvatar": "0", "gamertag": "GSR Ae", "gamerScore": "27750", "modernGamertag": "GSR Ae", "modernGamertagSuffix": "", "uniqueModernGamertag": "GSR Ae", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Last seen 49m ago: Xbox App", "presenceDevices": null, "isBroadcasting": false, "isCloaked": false, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": "2020-10-09T00:12:27.8684906Z", "suggestion": null, "recommendation": null, "search": null, "titleHistory": null, "multiplayerSummary": { "InMultiplayerSession": 0, "InParty": 0 }, "recentPlayer": null, "follower": null, "preferredColor": { "primaryColor": "193e91", "secondaryColor": "101836", "tertiaryColor": "102c69" }, "presenceDetails": [ { "IsBroadcasting": false, "Device": "iOS", "PresenceText": "Last seen 49m ago: Xbox App", "State": "LastSeen", "TitleId": "328178078", "TitleType": null, "IsPrimary": true, "IsGame": false, "RichPresenceText": null } ], "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": { "accountTier": "Gold", "bio": null, "isVerified": false, "location": null, "tenure": null, "watermarks": [], "blocked": false, "mute": false, "followerCount": 105, "followingCount": 121, "hasGamePass": false }, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": [], "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "277923030577271", "isFavorite": false, "isFollowingCaller": true, "isFollowedByCaller": true, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "Test Test", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIwuPiuIs6TLDV4WsQAGzSwgbaLlf_CiIdb0jJCiBao9CB40sjycuA5l0Jf.hfuP8l&format=png", "showUserAsAvatar": "2", "gamertag": "Iqnavs", "gamerScore": "48336", "modernGamertag": "Iqnavs", "modernGamertagSuffix": "", "uniqueModernGamertag": "Iqnavs", "xboxOneRep": "GoodPlayer", "presenceState": "Online", "presenceText": "Online", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": null, "search": null, "titleHistory": null, "multiplayerSummary": { "InMultiplayerSession": 0, "InParty": 0 }, "recentPlayer": null, "follower": null, "preferredColor": { "primaryColor": "193e91", "secondaryColor": "101836", "tertiaryColor": "102c69" }, "presenceDetails": [ { "IsBroadcasting": false, "Device": "WindowsOneCore", "PresenceText": "Online", "State": "Active", "TitleId": "1022622766", "TitleType": null, "IsPrimary": true, "IsGame": false, "RichPresenceText": null } ], "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": { "accountTier": "Gold", "bio": null, "isVerified": false, "location": null, "tenure": null, "watermarks": [], "blocked": false, "mute": false, "followerCount": 78, "followingCount": 83, "hasGamePass": false }, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": [], "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "266932102913935", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "Test Test", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIl_5PaIHeJ592LG1L.uCOWneEDBhHctvuC06CzW38LKNYiVGTXqxcsQqYGIrr8hFz&format=png", "showUserAsAvatar": "2", "gamertag": "e", "gamerScore": "98096", "modernGamertag": "e", "modernGamertagSuffix": "", "uniqueModernGamertag": "e", "xboxOneRep": "Superstar", "presenceState": "Online", "presenceText": "Amazon Instant Video", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": null, "search": null, "titleHistory": null, "multiplayerSummary": { "InMultiplayerSession": 0, "InParty": 0 }, "recentPlayer": null, "follower": null, "preferredColor": { "primaryColor": "107c10", "secondaryColor": "102b14", "tertiaryColor": "155715" }, "presenceDetails": [ { "IsBroadcasting": false, "Device": "XboxOne", "PresenceText": "Home", "State": "Active", "TitleId": "750323071", "TitleType": null, "IsPrimary": false, "IsGame": false, "RichPresenceText": null }, { "IsBroadcasting": false, "Device": "XboxOne", "PresenceText": "Amazon Instant Video", "State": "Active", "TitleId": "874889576", "TitleType": null, "IsPrimary": true, "IsGame": false, "RichPresenceText": null } ], "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": { "accountTier": "Gold", "bio": null, "isVerified": false, "location": null, "tenure": null, "watermarks": [], "blocked": false, "mute": false, "followerCount": 27659, "followingCount": 0, "hasGamePass": false }, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": [], "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] } ], "recommendationSummary": null, "friendFinderState": null, "accountLinkDetails": null }python-xbox-webapi-2.1.0/tests/data/responses/people_friends_by_xuid.json000066400000000000000000000117511465040003600267710ustar00rootroot00000000000000{ "people": [ { "xuid": "2533274812261808", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": true, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": "VolekTheFNDwarf", "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW3apWESZjav65Yncai8aRmVbSlZ3zqRpg1sdxEje_JmFTQaIPE.QhWezFkHjetzbapvRXDLBSJ6wiY_cMsEgnqAxqpD1OrJZcC6lG1e2UMcpLmHsW8LHADcb1wfWVA4BUP6kQwwmBrbaYrX3XQiXI.8-&format=png", "showUserAsAvatar": "1", "gamertag": "VolekTheFNDwarf", "gamerScore": "70700", "modernGamertag": "VolekTheFNDwarf", "modernGamertagSuffix": "", "uniqueModernGamertag": "VolekTheFNDwarf", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": null, "search": null, "titleHistory": null, "multiplayerSummary": { "InMultiplayerSession": 0, "InParty": 0 }, "recentPlayer": null, "follower": null, "preferredColor": { "primaryColor": "1081ca", "secondaryColor": "10314f", "tertiaryColor": "105080" }, "presenceDetails": [], "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": { "accountTier": "Gold", "bio": "Lover of nerd culture & those who embrace it. 🇺🇸 | 🎮 gamer & collector | 🎲 d&d | 💪 fitness | 💻 twitch | ⚔️cosplay twitch.tv/volek_the_fn_dwarf", "isVerified": false, "location": "Charlotte", "tenure": "12", "watermarks": [], "blocked": false, "mute": false, "followerCount": 50, "followingCount": 34, "hasGamePass": false }, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": [], "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274816796628", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": true, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": "Aeroset", "realName": "Eric Gates", "displayPicRaw": "http://images-eds.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafWsX8IFBtsQq3HRDmwdAG.rdG5t9vOe1faHdz51HAn7.&format=png", "showUserAsAvatar": "2", "gamertag": "Aeroset", "gamerScore": "24083", "modernGamertag": "Aeroset", "modernGamertagSuffix": "", "uniqueModernGamertag": "Aeroset", "xboxOneRep": "GoodPlayer", "presenceState": "Online", "presenceText": "YouTube", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": null, "search": null, "titleHistory": null, "multiplayerSummary": { "InMultiplayerSession": 0, "InParty": 0 }, "recentPlayer": null, "follower": null, "preferredColor": { "primaryColor": "193e91", "secondaryColor": "101836", "tertiaryColor": "102c69" }, "presenceDetails": [ { "IsBroadcasting": false, "Device": "XboxOne", "PresenceText": "Home", "State": "Active", "TitleId": "750323071", "TitleType": null, "IsPrimary": false, "IsGame": false, "RichPresenceText": null }, { "IsBroadcasting": false, "Device": "XboxOne", "PresenceText": "YouTube", "State": "Active", "TitleId": "122001257", "TitleType": null, "IsPrimary": true, "IsGame": false, "RichPresenceText": null } ], "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": { "accountTier": "Gold", "bio": "", "isVerified": false, "location": "", "tenure": "6", "watermarks": [], "blocked": false, "mute": false, "followerCount": 38, "followingCount": 48, "hasGamePass": false }, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": [], "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] } ], "recommendationSummary": null, "friendFinderState": null, "accountLinkDetails": null } python-xbox-webapi-2.1.0/tests/data/responses/people_friends_own.json000066400000000000000000000150311465040003600261240ustar00rootroot00000000000000{ "people": [ { "xuid": "2533274838782903", "isFavorite": true, "isFollowingCaller": true, "isFollowedByCaller": true, "isIdentityShared": true, "addedDateTimeUtc": "2016-06-29T20:59:22.5050886Z", "displayName": "Ikken Hissatsuu", "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=7OTVnZUMVj4OV2zUUGecWvn3U00nQQLfK7_kwpANogj9vJpb.t4ZQMMLIWOuBZBBZs5MjD7okwh5Zwnit1SAtO3OAsFXxJc1ALIbaVoRo7gsiun9FdcaTpzkM60nqzT8ip1659eQpB1SLyupscP.ec_wAGvXwkhCcTKCNHQMrxg-&format=png", "showUserAsAvatar": "1", "gamertag": "Ikken Hissatsuu", "gamerScore": "27210", "modernGamertag": "Ikken Hissatsuu", "modernGamertagSuffix": "", "uniqueModernGamertag": "Ikken Hissatsuu", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": { "Type": null, "Priority": 0, "Reasons": null, "TitleId": null }, "recommendation": null, "search": null, "titleHistory": null, "multiplayerSummary": { "InMultiplayerSession": 0, "InParty": 0 }, "recentPlayer": { "titles": [], "text": null }, "follower": { "text": null, "followedDateTime": "0001-01-01T00:00:00" }, "preferredColor": { "primaryColor": "744DA9", "secondaryColor": "24153B", "tertiaryColor": "4c208a" }, "presenceDetails": [], "titlePresence": { "IsCurrentlyPlaying": false, "PresenceText": null, "TitleName": null, "TitleId": null }, "titleSummaries": null, "presenceTitleIds": [], "detail": { "accountTier": "Gold", "bio": "Bio", "isVerified": false, "location": "Rock Hill", "tenure": "8", "watermarks": [], "blocked": false, "mute": false, "followerCount": 81, "followingCount": 73, "hasGamePass": false }, "communityManagerTitles": null, "socialManager": { "titleIds": [], "pages": [] }, "broadcast": [], "tournamentSummary": null, "avatar": { "updateTimeOffset": "0001-01-01T00:00:00+00:00", "spritesheetMetadata": null }, "linkedAccounts": [], "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274913657542", "isFavorite": true, "isFollowingCaller": true, "isFollowedByCaller": true, "isIdentityShared": false, "addedDateTimeUtc": "2012-12-14T03:41:43.177Z", "displayName": "erics273", "realName": "", "displayPicRaw": "http://images-eds.xboxlive.com/image?url=rwljod2fPqLqGP3DBV9F_yK9iuxAt3_MH6tcOnQXTc8LY1LO8JeulzCEFHaqqItKdg9oJ84qjO.VNwvUWuq_iR5iTyx1gQsqHSvWLbqIrRI-&background=0xababab&mode=Padding&format=png", "showUserAsAvatar": "2", "gamertag": "erics273", "gamerScore": "3802", "modernGamertag": "erics273", "modernGamertagSuffix": "", "uniqueModernGamertag": "erics273", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Last seen 17h ago: Home", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": true, "lastSeenDateTimeUtc": "2020-10-08T04:19:58.3208237Z", "suggestion": { "Type": null, "Priority": 0, "Reasons": null, "TitleId": null }, "recommendation": null, "search": null, "titleHistory": null, "multiplayerSummary": { "InMultiplayerSession": 0, "InParty": 0 }, "recentPlayer": { "titles": [], "text": null }, "follower": { "text": null, "followedDateTime": "0001-01-01T00:00:00" }, "preferredColor": { "primaryColor": "107c10", "secondaryColor": "102b14", "tertiaryColor": "155715" }, "presenceDetails": [ { "IsBroadcasting": false, "Device": "XboxOne", "PresenceText": "Last seen 17h ago: Home", "State": "LastSeen", "TitleId": "750323071", "TitleType": null, "IsPrimary": true, "IsGame": false, "RichPresenceText": null } ], "titlePresence": { "IsCurrentlyPlaying": false, "PresenceText": null, "TitleName": null, "TitleId": null }, "titleSummaries": null, "presenceTitleIds": [ "750323071" ], "detail": { "accountTier": "Silver", "bio": "", "isVerified": false, "location": "home", "tenure": "0", "watermarks": [], "blocked": false, "mute": false, "followerCount": 18, "followingCount": 12, "hasGamePass": false }, "communityManagerTitles": null, "socialManager": { "titleIds": [], "pages": [] }, "broadcast": [], "tournamentSummary": null, "avatar": { "updateTimeOffset": "0001-01-01T00:00:00+00:00", "spritesheetMetadata": null }, "linkedAccounts": [], "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] } ], "recommendationSummary": null, "friendFinderState": null, "accountLinkDetails": null }python-xbox-webapi-2.1.0/tests/data/responses/people_recommendations.json000066400000000000000000001727421465040003600270130ustar00rootroot00000000000000{ "people": [ { "xuid": "2533275004970450", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW_ES.ojiJijNBGRVUbTnZKsoCCCkjlsEJrrMqDkYqs3MU1QOW4aELznpp5yBp7W3jiDSQcZFL_NECy4p6xp.y5hMcbHkFc5VHCHl2rG9QUAmGMyWz2ulMA4PUtmQbhiawwxju0mu4lg8NrMbDmYkH1Y-&format=png", "showUserAsAvatar": "1", "gamertag": "V1NTAGE TRYH4RD", "gamerScore": "22355", "modernGamertag": "V1NTAGE TRYH4RD", "modernGamertagSuffix": "", "uniqueModernGamertag": "V1NTAGE TRYH4RD", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274968249116", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=KT_QTPJeC5ZpnbX.xahcbrZ9enA_IV9WfFEWIqHGUb5P30TpCdy9xIzUMuqZVCfbbeRSU.oc9lkDe.IyG7CI0tGRWxFtM2_a3fXIqVbW.axBwHsfT7vjNLNohXcRaoGm1ARgiEfNR1mH6JleEYx8tY2_XlxKPkYslVkTgqUNjsU-&format=png", "showUserAsAvatar": "1", "gamertag": "MzGaBBerJunKie", "gamerScore": "33800", "modernGamertag": "MzGaBBerJunKie", "modernGamertagSuffix": "", "uniqueModernGamertag": "MzGaBBerJunKie", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274911869963", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIdk5IlYJfDD1dCmbdd2qpcDlqbt8RMKT8HJd4aPBD0BGW8bUONniEfusA0jVMFYN7&format=png", "showUserAsAvatar": "2", "gamertag": "llMrACEll", "gamerScore": "10620", "modernGamertag": "llMrACEll", "modernGamertagSuffix": "", "uniqueModernGamertag": "llMrACEll", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274924436314", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "http://images-eds.xboxlive.com/image?url=mHGRD8KXEf2sp2LC58XhBQKNl2IWRp.J.q8mSURKUUeQDtobyN5xmswIs1qggzrwcVCeS.TmNussPBQO61esQ7SuKNkS_NWbb1ymwUsMazo-&background=0xababab&mode=Padding&format=png", "showUserAsAvatar": "2", "gamertag": "angelam1824", "gamerScore": "23924", "modernGamertag": "angelam1824", "modernGamertagSuffix": "", "uniqueModernGamertag": "angelam1824", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": true, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2535434923784190", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "Aaron Tramuel", "displayPicRaw": "http://images-eds.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW3apWESZjav65Yncai8aRmVbSlZ3zqRpg1sdxEje_JmFfw8xT8Ad2.SJzUHVHK6yFYKLyccHT5cx56izqGP3.f_N0Ua.67AYMpjz4FyfqQ4BZ5wrxSX1.aCIOzRsjnbcVa9u_WKRAsPlBYALUvtp1uM-&format=png", "showUserAsAvatar": "1", "gamertag": "KINGxALPHA3430", "gamerScore": "14604", "modernGamertag": "KINGxALPHA", "modernGamertagSuffix": "3430", "uniqueModernGamertag": "KINGxALPHA#3430", "xboxOneRep": "GoodPlayer", "presenceState": "Online", "presenceText": "Home", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274811254158", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "http://images-eds.xboxlive.com/image?url=mHGRD8KXEf2sp2LC58XhBQKNl2IWRp.J.q8mSURKUUeLbboGbo0fo41rNtzv73xvPcm5YAzjEsuY4ywcR5pTgw5Gr96FQIAf7uhDz7hB4tc-&background=0xababab&mode=Padding&format=png", "showUserAsAvatar": "2", "gamertag": "White Stuff X", "gamerScore": "22391", "modernGamertag": "White Stuff X", "modernGamertagSuffix": "", "uniqueModernGamertag": "White Stuff X", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Last seen 7h ago: Xbox App", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": true, "lastSeenDateTimeUtc": "2020-10-09T09:12:19.642994Z", "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2535463608179341", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafdRXBlR8FcmsP.Pb_Yd8MXiztuqKwI3HaQ5MwlZ8.5fK&format=png", "showUserAsAvatar": "0", "gamertag": "vVvBrendanvVv", "gamerScore": "8025", "modernGamertag": "vVvBrendanvVv", "modernGamertagSuffix": "", "uniqueModernGamertag": "vVvBrendanvVv", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2535423115345729", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "http://images-eds.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RWwcxuUQ9WVT6xh5XaeeZD02wEfGZeuD.XMoGFVYkwHDqMQJ4iuIZO559YVoPETnUDNM3Ndl3Ahff0QqYvW0ME2oM7C6b0vEhgNrYWX4PXLfHr894t_1LxoCqPIGJrMuDoyXumpRjAvjiJ7IEfUOSOGI-&format=png", "showUserAsAvatar": "0", "gamertag": "GlitchyCxmbos", "gamerScore": "5920", "modernGamertag": "GlitchyCxmbos", "modernGamertagSuffix": "", "uniqueModernGamertag": "GlitchyCxmbos", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274889784924", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW8ke8ralOdP9BGd4wzwl0MJ9z6QzuGwZjtvbE7sSsMVWE.Tq_nJr9YsAvFiT.NHNwVk_hnIOctG1bj.eghL1qFIiwzTGi_zKCReTNFh_2ORVnLZzdvuFmAG9_LAv7TiNTDBpxNz6pRsTtoZfwMKazSM-&format=png", "showUserAsAvatar": "1", "gamertag": "Okee Dabs", "gamerScore": "72368", "modernGamertag": "Okee Dabs", "modernGamertagSuffix": "", "uniqueModernGamertag": "Okee Dabs", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Last seen 11h ago: Home", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": "2020-10-09T05:39:10.1238204Z", "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274968265592", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIFXxmxGDtE9Vkd62rOpb7JQTCzxmbjUmjf26I9iWDnY.LUElEpm2wN7Xlmymxprvl&format=png", "showUserAsAvatar": "2", "gamertag": "NDylanK", "gamerScore": "3910", "modernGamertag": "NDylanK", "modernGamertagSuffix": "", "uniqueModernGamertag": "NDylanK", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274820659639", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW3apWESZjav65Yncai8aRmVbSlZ3zqRpg1sdxEje_JmFM5PInDeKh5kiAGqI05X7md8vsvFYR7MS_PFMvGGPeeh6ygRt.47kxSjAiqtqt1YbHxn2rIUjbxOKVeIafwIrluLvL7GSJbFRyX3MPa7caMTYguGfesRbW8L.OdH2IWZEXBDHz5R5IYqVKp14mJLqHYOQnGXFep1K.H1hwKjBf2OlZxOf_b.QqiVf5qhNdrRB2KfNKZHUjH4RXJCTqaIr1yNLgD5RKZsFZbXjzeCJSgU-&format=png", "showUserAsAvatar": "0", "gamertag": "Tacos V", "gamerScore": "83737", "modernGamertag": "Tacos V", "modernGamertagSuffix": "", "uniqueModernGamertag": "Tacos V", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274866356972", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=7OTVnZUMVj4OV2zUUGecWvn3U00nQQLfK7_kwpANoghQDId_PCuRMwN.bbxepUNTxQbnKGJ2Rw5HR3ZVZlpSl7M9FZdPzU.s1wkfO2NSeBScTYbsvCXGPCqexp_R2QHdnv5TnxJCW9Kj0HygPf.jrHQTjzUh8DCnrkzZs_.wMJA-&format=png", "showUserAsAvatar": "1", "gamertag": "Tenchi187", "gamerScore": "3885", "modernGamertag": "Tenchi187", "modernGamertagSuffix": "", "uniqueModernGamertag": "Tenchi187", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274912782183", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIdk5IlYJfDD1dCmbdd2qpcDlqbt8RMKT8HJd4aPBD0BGW8bUONniEfusA0jVMFYN7&format=png", "showUserAsAvatar": "0", "gamertag": "EPICDaWG99", "gamerScore": "47120", "modernGamertag": "EPICDaWG99", "modernGamertagSuffix": "", "uniqueModernGamertag": "EPICDaWG99", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Last seen 11h ago: Online", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": "2020-10-09T05:11:57.9905821Z", "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2793304054612839", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "http://images-eds.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RWwcxuUQ9WVT6xh5XaeeZD02wEfGZeuD.XMoGFVYkwHDqMe6qQokztvuVxn9PvZ0miOlAQ7DF_xlf7O83k7Dz7mPlt5OcQMrjH5P1eppHsOrE7P7kfyJt6_ABSTB7zfPOuu_yH.sSj4e7GNj3sZ9wE.s-&format=png", "showUserAsAvatar": "0", "gamertag": "SYNERGOUS", "gamerScore": "38975", "modernGamertag": "SYNERGOUS", "modernGamertagSuffix": "", "uniqueModernGamertag": "SYNERGOUS", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274851817565", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "http://images-eds.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW_ES.ojiJijNBGRVUbTnZKsoCCCkjlsEJrrMqDkYqs3MrbaZihsLdJDYr3U_CAoAx6nnMawWZCpS6AbAZNDGWHDX23wJfr3zNMnMjSwBEoSmjQ2mfPqId7w2Sjo6GZyeMGRvyfKzOg4MBMy17_3rYWE-&format=png", "showUserAsAvatar": "0", "gamertag": "Lowkey Beater", "gamerScore": "81903", "modernGamertag": "Lowkey Beater", "modernGamertagSuffix": "", "uniqueModernGamertag": "Lowkey Beater", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2598952284972375", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "Verified ✔", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW_ES.ojiJijNBGRVUbTnZKsoCCCkjlsEJrrMqDkYqs3MsdRLBqd73Dk8T5VFWe3wDf5DvqIT4qV.X12XeNNG8jk1ZHadajxzh0IHrc_0EBXreufOPoQXB6XAtLOu6UTRWMbxyl_TElZKrFPdUsX_cGU-&format=png", "showUserAsAvatar": "0", "gamertag": "Ace0fGam3s", "gamerScore": "76881", "modernGamertag": "Ace0fGam3s", "modernGamertagSuffix": "", "uniqueModernGamertag": "Ace0fGam3s", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Last seen 11h ago: Xbox App", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": "2020-10-09T05:47:43.2530117Z", "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2682724599478363", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "Trey Kane", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW_ES.ojiJijNBGRVUbTnZKsoCCCkjlsEJrrMqDkYqs3Mkv.rf0jcrjo5zlh1joRyaMt_fegmxN6L.onumxOWSC8188p5JmXZieGhWtTAPtgBejWIEvdv.yVQYTw79Edxek_3Mz4VeG8IHebTvXbfmRU-&format=png", "showUserAsAvatar": "1", "gamertag": "PseudoTrey", "gamerScore": "60918", "modernGamertag": "PseudoTrey", "modernGamertagSuffix": "", "uniqueModernGamertag": "PseudoTrey", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274800501997", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RWwcxuUQ9WVT6xh5XaeeZD02wEfGZeuD.XMoGFVYkwHDqIlUjl9TEXk_wQpwlqw4tshDqy5dKxF0gG_zE85WnV8WcXNUV.WI.KxiBhe507CtVLjBmy9dt468fzMi2O8hhVOkTUuzS27LcFI5tfo0ka8o-&format=png", "showUserAsAvatar": "0", "gamertag": "l Crying Wolf l", "gamerScore": "136660", "modernGamertag": "l Crying Wolf l", "modernGamertagSuffix": "", "uniqueModernGamertag": "l Crying Wolf l", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274796190663", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "http://images-eds.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW3apWESZjav65Yncai8aRmVbSlZ3zqRpg1sdxEje_JmFF2AADQDb7roinpysUnDSjHQztTtvZsrjzVh.SwyVN9T48uxEptZKlVNKKo7GO7KTnoOJdherEx_X9023PzjBUHuYpgp9hyNiYArn0uEULZI-&format=png", "showUserAsAvatar": "0", "gamertag": "VideoGenius93", "gamerScore": "66579", "modernGamertag": "VideoGenius93", "modernGamertagSuffix": "", "uniqueModernGamertag": "VideoGenius93", "xboxOneRep": "GoodPlayer", "presenceState": "Online", "presenceText": "Destiny 2", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274857464379", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "Trevor Howard", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW8ke8ralOdP9BGd4wzwl0MJ9z6QzuGwZjtvbE7sSsMVWCTHeJxqzoeTgs5lQtBMJz7fCYL4fpxMAh3cHTB9EReH7eAKe4trhUPF.73nsaC_f5NbsCC447TVxeI.0xv3PrdBypL68Doy0Bw2cAfLmZLk-&format=png", "showUserAsAvatar": "1", "gamertag": "TJH1224", "gamerScore": "65208", "modernGamertag": "TJH1224", "modernGamertagSuffix": "", "uniqueModernGamertag": "TJH1224", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "FriendOfFriend", "Reasons": [ "Friend of friends" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274810160567", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "http://images-eds.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafQBAhv..nS.WWfL5mx9mDYRCtOiqY99HNW3uHJAtU5zg&format=png", "showUserAsAvatar": "1", "gamertag": "JRodMXS", "gamerScore": "32130", "modernGamertag": "JRodMXS", "modernGamertagSuffix": "", "uniqueModernGamertag": "JRodMXS", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "Follower", "Reasons": [ "Is a follower" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2535470018774115", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "http://images-eds.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafdLlo4BnG4KiU8WsuJUp1XfOoVDEPrH7S8xht3YWzo6n&format=png", "showUserAsAvatar": "2", "gamertag": "girl in6511", "gamerScore": "0", "modernGamertag": "girl in", "modernGamertagSuffix": "6511", "uniqueModernGamertag": "girl in#6511", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "Follower", "Reasons": [ "Is a follower" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2535461140871662", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafXh.JGaKbjDj4Vhe52XdLlCa38xKaivBL479t4_tCnci&format=png", "showUserAsAvatar": "2", "gamertag": "x girl 36739", "gamerScore": "0", "modernGamertag": "x girl 36739", "modernGamertagSuffix": "", "uniqueModernGamertag": "x girl 36739", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "Follower", "Reasons": [ "Is a follower" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2535464181520327", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafT_j9NruohBX4b4WZ1g53iOSZ013otbKe1hYLntG_Rm.&format=png", "showUserAsAvatar": "2", "gamertag": "SacredBird45875", "gamerScore": "0", "modernGamertag": "SacredBird45875", "modernGamertagSuffix": "", "uniqueModernGamertag": "SacredBird45875", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "Follower", "Reasons": [ "Is a follower" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533275001807583", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "Braxton Davis", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW8ke8ralOdP9BGd4wzwl0MJ9z6QzuGwZjtvbE7sSsMVW4MqbBsxKh5WkR.ssJv5Z6DyUr8qEX6msBrY0_JHdAkfVoB0wH5LPYjNKBmJCouOfdNMr8hYh2xlANPjlYwfprulNfTNS2jnd43qiN7CMAdY-&format=png", "showUserAsAvatar": "0", "gamertag": "JumpBasket", "gamerScore": "10980", "modernGamertag": "JumpBasket", "modernGamertagSuffix": "", "uniqueModernGamertag": "JumpBasket", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "Follower", "Reasons": [ "Is a follower" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2535434093584248", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafdYv.ajm4obIjPrMmgOe3C.ESgwQPaUo.0Dlwnuk1Sjl&format=png", "showUserAsAvatar": "0", "gamertag": "Slackened Dies", "gamerScore": "0", "modernGamertag": "Slackened Dies", "modernGamertagSuffix": "", "uniqueModernGamertag": "Slackened Dies", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "Follower", "Reasons": [ "Is a follower" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2535467801623094", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "http://images-eds.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafaoR1DdA4g3DFhw3Mqkhv.WGWMJngTGf6XGF8bA2i38T&format=png", "showUserAsAvatar": "2", "gamertag": "girl x64355x", "gamerScore": "0", "modernGamertag": "girl x64355x", "modernGamertagSuffix": "", "uniqueModernGamertag": "girl x64355x", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "Follower", "Reasons": [ "Is a follower" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2533274907033441", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW8ke8ralOdP9BGd4wzwl0MJ9z6QzuGwZjtvbE7sSsMVWQLTI3vaoaUU_p8p41LDbEX5mLpP0i.9heKPEd8uYOJQrwqI9vIWSKvpp0gvmclot0jGAmGuvG3OongPE4k5qX3Xy0fAzEQf9kfrQRSFF67c-&format=png", "showUserAsAvatar": "0", "gamertag": "Flaming Cabbage", "gamerScore": "11725", "modernGamertag": "Flaming Cabbage", "modernGamertagSuffix": "", "uniqueModernGamertag": "Flaming Cabbage", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "Follower", "Reasons": [ "Is a follower" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2535426968125681", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafQaBiWzd.XiyTzA_NxUDz.v0R2YBJazROoadTN.9Z.kT&format=png", "showUserAsAvatar": "2", "gamertag": "DrierSumo229665", "gamerScore": "0", "modernGamertag": "DrierSumo229665", "modernGamertagSuffix": "", "uniqueModernGamertag": "DrierSumo229665", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "Follower", "Reasons": [ "Is a follower" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] }, { "xuid": "2535424978735054", "isFavorite": false, "isFollowingCaller": false, "isFollowedByCaller": false, "isIdentityShared": false, "addedDateTimeUtc": null, "displayName": null, "realName": "", "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIoIeJ1sl4QgwrJRGcdRHOCqxWQ_UP1PHw2k5.dWyiRZbnEUeAIqFPUau1dor0LGez&format=png", "showUserAsAvatar": "2", "gamertag": "NormalBark60352", "gamerScore": "0", "modernGamertag": "NormalBark60352", "modernGamertagSuffix": "", "uniqueModernGamertag": "NormalBark60352", "xboxOneRep": "GoodPlayer", "presenceState": "Offline", "presenceText": "Offline", "presenceDevices": null, "isBroadcasting": false, "isCloaked": null, "isQuarantined": false, "isXbox360Gamerpic": false, "lastSeenDateTimeUtc": null, "suggestion": null, "recommendation": { "Type": "Follower", "Reasons": [ "Is a follower" ] }, "search": null, "titleHistory": null, "multiplayerSummary": null, "recentPlayer": null, "follower": null, "preferredColor": null, "presenceDetails": null, "titlePresence": null, "titleSummaries": null, "presenceTitleIds": null, "detail": null, "communityManagerTitles": null, "socialManager": null, "broadcast": null, "tournamentSummary": null, "avatar": null, "linkedAccounts": null, "colorTheme": "gamerpicblur", "preferredFlag": "", "preferredPlatforms": [] } ], "recommendationSummary": { "friendOfFriend": 20, "facebookFriend": 0, "phoneContact": 0, "follower": 10, "VIP": 0, "steamFriend": 0, "promoteSuggestions": false }, "friendFinderState": { "facebookOptInStatus": "OptedIn", "facebookTokenStatus": "OK", "phoneOptInStatus": "Excluded", "phoneTokenStatus": "Unknown", "steamTokenStatus": "NotRequired", "steamOptInStatus": "ShowPrompt", "discordTokenStatus": "Unknown", "discordOptInStatus": "ShowPrompt", "instagramTokenStatus": "Unknown", "instagramOptInStatus": "Excluded", "mixerTokenStatus": "Unknown", "mixerOptInStatus": "Excluded", "redditTokenStatus": "Unknown", "redditOptInStatus": "ShowPrompt", "twitchTokenStatus": "Unknown", "twitchOptInStatus": "ShowPrompt", "twitterTokenStatus": "Unknown", "twitterOptInStatus": "ShowPrompt", "youTubeTokenStatus": "Unknown", "youTubeOptInStatus": "Excluded" }, "accountLinkDetails": null }python-xbox-webapi-2.1.0/tests/data/responses/people_summary_by_gamertag.json000066400000000000000000000004051465040003600276440ustar00rootroot00000000000000{ "targetFollowingCount": 0, "targetFollowerCount": 27660, "isCallerFollowingTarget": false, "isTargetFollowingCaller": false, "hasCallerMarkedTargetAsFavorite": false, "hasCallerMarkedTargetAsIdentityShared": false, "legacyFriendStatus": "None" }python-xbox-webapi-2.1.0/tests/data/responses/people_summary_by_xuid.json000066400000000000000000000004051465040003600270260ustar00rootroot00000000000000{ "targetFollowingCount": 0, "targetFollowerCount": 27660, "isCallerFollowingTarget": false, "isTargetFollowingCaller": false, "hasCallerMarkedTargetAsFavorite": false, "hasCallerMarkedTargetAsIdentityShared": false, "legacyFriendStatus": "None" }python-xbox-webapi-2.1.0/tests/data/responses/people_summary_own.json000066400000000000000000000005441465040003600261720ustar00rootroot00000000000000{ "targetFollowingCount": 121, "targetFollowerCount": 105, "isCallerFollowingTarget": false, "isTargetFollowingCaller": false, "hasCallerMarkedTargetAsFavorite": false, "hasCallerMarkedTargetAsIdentityShared": false, "legacyFriendStatus": "None", "availablePeopleSlots": 928, "recentChangeCount": 3, "watermark": "5249064048202941621" }python-xbox-webapi-2.1.0/tests/data/responses/presence.json000066400000000000000000000002721465040003600240500ustar00rootroot00000000000000{ "xuid": "2669321029139235", "state": "Offline", "lastSeen": { "deviceType": "iOS", "titleId": "1016898439", "titleName": "", "timestamp": "2021-06-11T22:59:53.0944615Z" } }python-xbox-webapi-2.1.0/tests/data/responses/presence_batch.json000066400000000000000000000006771465040003600252220ustar00rootroot00000000000000[ { "xuid": "2669321029139235", "state": "Offline", "lastSeen": { "deviceType": "Android", "titleId": "328178078", "titleName": "", "timestamp": "2018-03-28T00:26:51.392459Z" } }, { "xuid": "2584878536129841", "state": "Offline", "lastSeen": { "deviceType": "XboxOne", "titleId": "750323071", "titleName": "", "timestamp": "2018-03-27T02:19:03.1204387Z" } } ]python-xbox-webapi-2.1.0/tests/data/responses/presence_own.json000066400000000000000000000000661465040003600247340ustar00rootroot00000000000000{ "xuid": "2535428504476914", "state": "Offline" }python-xbox-webapi-2.1.0/tests/data/responses/profile_batch.json000066400000000000000000000072161465040003600250520ustar00rootroot00000000000000{ "profileUsers": [ { "id": "2669321029139235", "hostId": "2669321029139235", "settings": [ { "id": "GameDisplayName", "value": "e" }, { "id": "AppDisplayName", "value": "e" }, { "id": "AppDisplayPicRaw", "value": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIl_5PaIHeJ592LG1L.uCOWneEDBhHctvuC06CzW38LKNYiVGTXqxcsQqYGIrr8hFz&format=png" }, { "id": "Gamerscore", "value": "98096" }, { "id": "Gamertag", "value": "e" }, { "id": "GameDisplayPicRaw", "value": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIl_5PaIHeJ592LG1L.uCOWneEDBhHctvuC06CzW38LKNYiVGTXqxcsQqYGIrr8hFz&format=png" }, { "id": "AccountTier", "value": "Gold" }, { "id": "TenureLevel", "value": "18" }, { "id": "XboxOneRep", "value": "Superstar" }, { "id": "PreferredColor", "value": "http://dlassets.xboxlive.com/public/content/ppl/colors/00000.json" }, { "id": "Location", "value": "about.me/thevowel" }, { "id": "Bio", "value": "ex-Xbox" }, { "id": "Watermarks", "value": "XboxOriginalTeam|XboxLiveLaunchTeam|LaunchTeam|NxeTeam|KinectTeam|XboxOneTeam|XboxNxoeTeam" }, { "id": "RealName", "value": "Eric Neustadter" } ], "isSponsoredUser": false }, { "id": "2584878536129841", "hostId": "2584878536129841", "settings": [ { "id": "GameDisplayName", "value": "Major Nelson" }, { "id": "AppDisplayName", "value": "Major Nelson" }, { "id": "AppDisplayPicRaw", "value": "http://images-eds.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW3apWESZjav65Yncai8aRmVbSlZ3zqRpg1sdxEje_JmFNr5FbAg8mGpxZhWm1_.xekXCR2mpX9Kn7L97rh6n6Q7a5biaccHqqjE6BUVbncx7MWYiyeBte1S..qNZ_KtfawrkVOpSEpTLiTjg5MD4fkk-&format=png" }, { "id": "Gamerscore", "value": "123757" }, { "id": "Gamertag", "value": "Major Nelson" }, { "id": "GameDisplayPicRaw", "value": "http://images-eds.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW3apWESZjav65Yncai8aRmVbSlZ3zqRpg1sdxEje_JmFNr5FbAg8mGpxZhWm1_.xekXCR2mpX9Kn7L97rh6n6Q7a5biaccHqqjE6BUVbncx7MWYiyeBte1S..qNZ_KtfawrkVOpSEpTLiTjg5MD4fkk-&format=png" }, { "id": "AccountTier", "value": "Gold" }, { "id": "TenureLevel", "value": "16" }, { "id": "XboxOneRep", "value": "Superstar" }, { "id": "PreferredColor", "value": "https://dlassets-ssl.xboxlive.com/public/content/ppl/colors/00015.json" }, { "id": "Location", "value": "In your Xbox" }, { "id": "Bio", "value": "Yes I work for Xbox. Follow me here and on Twitter/Insta @Majornelson - Have fun and play fair!" }, { "id": "Watermarks", "value": "LaunchTeam|NxeTeam|KinectTeam|XboxOneTeam|XboxNxoeTeam|XboxOneXTeam" }, { "id": "RealName", "value": "Larry Hryb" } ], "isSponsoredUser": false } ] }python-xbox-webapi-2.1.0/tests/data/responses/profile_by_gamertag.json000066400000000000000000000041371465040003600262510ustar00rootroot00000000000000{ "profileUsers": [ { "id": "2669321029139235", "hostId": "2669321029139235", "settings": [ { "id": "Gamertag", "value": "e" }, { "id": "ModernGamertag", "value": "e" }, { "id": "ModernGamertagSuffix", "value": "" }, { "id": "UniqueModernGamertag", "value": "e" }, { "id": "RealNameOverride", "value": "Eric Neustadter" }, { "id": "Bio", "value": "ex-Xbox" }, { "id": "Location", "value": "about.me/thevowel" }, { "id": "Gamerscore", "value": "98096" }, { "id": "GameDisplayPicRaw", "value": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIl_5PaIHeJ592LG1L.uCOWneEDBhHctvuC06CzW38LKNYiVGTXqxcsQqYGIrr8hFz&format=png" }, { "id": "TenureLevel", "value": "18" }, { "id": "AccountTier", "value": "Gold" }, { "id": "XboxOneRep", "value": "Superstar" }, { "id": "PreferredColor", "value": "http://dlassets.xboxlive.com/public/content/ppl/colors/00000.json" }, { "id": "Watermarks", "value": "XboxOriginalTeam|XboxLiveLaunchTeam|LaunchTeam|NxeTeam|KinectTeam|XboxOneTeam|XboxNxoeTeam" }, { "id": "IsQuarantined", "value": "0" } ], "isSponsoredUser": false } ] }python-xbox-webapi-2.1.0/tests/data/responses/profile_by_xuid.json000066400000000000000000000041371465040003600254330ustar00rootroot00000000000000{ "profileUsers": [ { "id": "2669321029139235", "hostId": "2669321029139235", "settings": [ { "id": "Gamertag", "value": "e" }, { "id": "ModernGamertag", "value": "e" }, { "id": "ModernGamertagSuffix", "value": "" }, { "id": "UniqueModernGamertag", "value": "e" }, { "id": "RealNameOverride", "value": "Eric Neustadter" }, { "id": "Bio", "value": "ex-Xbox" }, { "id": "Location", "value": "about.me/thevowel" }, { "id": "Gamerscore", "value": "98096" }, { "id": "GameDisplayPicRaw", "value": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIl_5PaIHeJ592LG1L.uCOWneEDBhHctvuC06CzW38LKNYiVGTXqxcsQqYGIrr8hFz&format=png" }, { "id": "TenureLevel", "value": "18" }, { "id": "AccountTier", "value": "Gold" }, { "id": "XboxOneRep", "value": "Superstar" }, { "id": "PreferredColor", "value": "http://dlassets.xboxlive.com/public/content/ppl/colors/00000.json" }, { "id": "Watermarks", "value": "XboxOriginalTeam|XboxLiveLaunchTeam|LaunchTeam|NxeTeam|KinectTeam|XboxOneTeam|XboxNxoeTeam" }, { "id": "IsQuarantined", "value": "0" } ], "isSponsoredUser": false } ] }python-xbox-webapi-2.1.0/tests/data/responses/screenshots_recent_community.json000066400000000000000000005345611465040003600302650ustar00rootroot00000000000000{ "screenshots": [ { "screenshotId": "013ccd76-95a8-4bff-bbfc-58b3fa40e7a8", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:46:45.8585941Z", "dateTaken": "2018-03-29T16:46:14Z", "lastModified": "2018-03-29T16:46:14Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "7a86a1df-a1b5-49f4-86f1-d5aadefb83400;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535460013312229-public/013ccd76-95a8-4bff-bbfc-58b3fa40e7a8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535460013312229-public/013ccd76-95a8-4bff-bbfc-58b3fa40e7a8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535460013312229-private/013ccd76-95a8-4bff-bbfc-58b3fa40e7a8.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=9R%2FeI5EL%2BDDlIlwIcz9rnpLWIyv9%2F5%2BOYiEMeYTmyQY%3D", "fileSize": 1373197, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535460013312229", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "34564b38-0d8a-4ea4-973e-814160ad91b1", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:46:33.4309282Z", "dateTaken": "2018-03-29T16:46:20Z", "lastModified": "2018-03-29T16:46:20Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c6a164d8-e2ba-4acc-a36c-471a5cd315950;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535407837993814-public/34564b38-0d8a-4ea4-973e-814160ad91b1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535407837993814-public/34564b38-0d8a-4ea4-973e-814160ad91b1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535407837993814-private/34564b38-0d8a-4ea4-973e-814160ad91b1.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=uJttrKSiAPz7Uuh7h%2FfLcghkNThb7t6U00vYlWGix9M%3D", "fileSize": 2646603, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535407837993814", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "ce9e8753-fd53-472e-9fe7-9d73cabaf08b", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:46:26.0688432Z", "dateTaken": "2018-03-29T16:44:51Z", "lastModified": "2018-03-29T16:44:51Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "484da5a4-2b3d-4f5b-bee8-9c244ae6037e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535439795340009-public/ce9e8753-fd53-472e-9fe7-9d73cabaf08b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535439795340009-public/ce9e8753-fd53-472e-9fe7-9d73cabaf08b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535439795340009-private/ce9e8753-fd53-472e-9fe7-9d73cabaf08b.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=AEafYF5zK37UtAxg7PbaLcg7Rt2ZouFdZ1y2VlL%2F%2FrM%3D", "fileSize": 5264353, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535439795340009", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "50c2651b-d626-4f51-b660-b4fcda11af3e", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:46:23.8351252Z", "dateTaken": "2018-03-29T16:45:56Z", "lastModified": "2018-03-29T16:45:56Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "bf643b19-d5f1-4e70-b675-44707fd201ac0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274794500800-public/50c2651b-d626-4f51-b660-b4fcda11af3e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274794500800-public/50c2651b-d626-4f51-b660-b4fcda11af3e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2533274794500800-private/50c2651b-d626-4f51-b660-b4fcda11af3e.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=yp7hasyjJ6zGbv5L3383NdZ7xAvFhDm9LP3VvPxrCZs%3D", "fileSize": 2013187, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274794500800", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "de8f3c8b-068d-47d6-bc0e-7a65786f72f6", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:46:22.5002698Z", "dateTaken": "2018-03-29T16:43:55Z", "lastModified": "2018-03-29T16:43:55Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "56ef078b-6fae-4f25-a220-3fd594bdebd20;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535409089914471-public/de8f3c8b-068d-47d6-bc0e-7a65786f72f6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535409089914471-public/de8f3c8b-068d-47d6-bc0e-7a65786f72f6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535409089914471-private/de8f3c8b-068d-47d6-bc0e-7a65786f72f6.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Twaq37hDMdQc%2BxC3YQidgYtjTpGNahspEHi20ZeGKM8%3D", "fileSize": 2480760, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535409089914471", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "pt-BR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "83c132e8-a973-4c58-8ff9-337020d67f59", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:46:14.4653683Z", "dateTaken": "2018-03-29T16:44:24Z", "lastModified": "2018-03-29T16:44:24Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "53e22a59-cf7e-42e6-ace9-efecd5b326d50;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535445934155950-public/83c132e8-a973-4c58-8ff9-337020d67f59_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535445934155950-public/83c132e8-a973-4c58-8ff9-337020d67f59_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535445934155950-private/83c132e8-a973-4c58-8ff9-337020d67f59.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=b1aqjBfb35Ptke%2F%2B%2BbfCmKznBRvtymShYoPrJAGXM48%3D", "fileSize": 2154975, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535445934155950", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "it-IT", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "bd1c6a0e-5564-414b-814b-25f677885d6f", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:46:14.3789472Z", "dateTaken": "2018-03-29T16:45:40Z", "lastModified": "2018-03-29T16:45:40Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "937c2feb-2d4c-445a-8b05-15d765e692a20;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535406384081076-public/bd1c6a0e-5564-414b-814b-25f677885d6f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535406384081076-public/bd1c6a0e-5564-414b-814b-25f677885d6f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535406384081076-private/bd1c6a0e-5564-414b-814b-25f677885d6f.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Eld0Koyk6TYYM%2F37rYXOPxvCNW58UJMSdNQr9%2B8dFOs%3D", "fileSize": 777240, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535406384081076", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "0c5887ad-3088-466f-bfd0-a39de26335f7", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:46:09.8568055Z", "dateTaken": "2018-03-29T16:44:10Z", "lastModified": "2018-03-29T16:44:10Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "9e3446f5-1246-4342-b5dc-0bb74d0e22920;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535466120169153-public/0c5887ad-3088-466f-bfd0-a39de26335f7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535466120169153-public/0c5887ad-3088-466f-bfd0-a39de26335f7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3002.xboxlive.com/xuid-2535466120169153-private/0c5887ad-3088-466f-bfd0-a39de26335f7.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=BYR23Y%2Ff%2BCTtuzdbOGhjeY3eA9J71LByBNnNlfTUUnE%3D", "fileSize": 2225018, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535466120169153", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "11fa0e86-4594-48fd-9e08-dce950266cc9", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:46:00.2621371Z", "dateTaken": "2018-03-29T16:45:51Z", "lastModified": "2018-03-29T16:45:51Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "21f4bb45-5073-4cda-b293-4deac17e18240;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274831895106-public/11fa0e86-4594-48fd-9e08-dce950266cc9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274831895106-public/11fa0e86-4594-48fd-9e08-dce950266cc9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2533274831895106-private/11fa0e86-4594-48fd-9e08-dce950266cc9.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TD0PBZJKZqCvL86JO0j9QVXR5PkZDawipKkwRE8iJ%2Fs%3D", "fileSize": 1603247, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274831895106", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "cca26e6d-09c1-4977-ac27-537145eecb39", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:45:41.4909591Z", "dateTaken": "2018-03-29T16:35:49Z", "lastModified": "2018-03-29T16:35:49Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "8c70fb83-f1dc-4442-84e4-4bb4408004170;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535423394542260-public/cca26e6d-09c1-4977-ac27-537145eecb39_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535423394542260-public/cca26e6d-09c1-4977-ac27-537145eecb39_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535423394542260-private/cca26e6d-09c1-4977-ac27-537145eecb39.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=PHrlT0gpkB15Nzhh4Z1RC7V3uOMjCg3AEP5EEJwm7cY%3D", "fileSize": 10411151, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535423394542260", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "17c3cf32-f475-4f5c-a8d6-8527a4a2d4ac", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:45:41.1355831Z", "dateTaken": "2018-03-29T16:44:02Z", "lastModified": "2018-03-29T16:44:02Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "0906fa7b-511e-4bf5-af92-9412375e97be0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535440186521780-public/17c3cf32-f475-4f5c-a8d6-8527a4a2d4ac_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535440186521780-public/17c3cf32-f475-4f5c-a8d6-8527a4a2d4ac_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535440186521780-private/17c3cf32-f475-4f5c-a8d6-8527a4a2d4ac.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2v7yaFsWUL%2Buqj%2FjEBpGKrXdZloWwbDBGyKlH%2FyjvM0%3D", "fileSize": 1647869, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535440186521780", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "c4713e38-d528-4d19-95b3-72488cb133fc", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:45:20.0795714Z", "dateTaken": "2018-03-29T16:43:16Z", "lastModified": "2018-03-29T16:43:16Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "1ec014be-e157-4503-b36f-f090c364dadf0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535440465393783-public/c4713e38-d528-4d19-95b3-72488cb133fc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535440465393783-public/c4713e38-d528-4d19-95b3-72488cb133fc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535440465393783-private/c4713e38-d528-4d19-95b3-72488cb133fc.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=1uzTAAsiELrn5%2FB8vlmtiBRCPV7%2BjHb%2BVwd%2FTgTVq9o%3D", "fileSize": 2126327, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535440465393783", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "fr-FR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "476dda20-8d5e-4547-8eb0-8f419176188a", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:45:19.2428404Z", "dateTaken": "2018-03-29T16:44:00Z", "lastModified": "2018-03-29T16:44:00Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "af5276d6-80a1-4cc6-8bbc-adcde03900a50;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2533274926247531-public/476dda20-8d5e-4547-8eb0-8f419176188a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2533274926247531-public/476dda20-8d5e-4547-8eb0-8f419176188a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3002.xboxlive.com/xuid-2533274926247531-private/476dda20-8d5e-4547-8eb0-8f419176188a.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=45%2BXJUq%2Fm2vhN1%2FPGhot6SmQT3FnS1iuPBSQfzC1svE%3D", "fileSize": 1519935, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274926247531", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "69cddf46-2ab8-4ac7-8bb3-c75aefda2a46", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:45:07.2273107Z", "dateTaken": "2018-03-29T16:44:02Z", "lastModified": "2018-03-29T16:44:02Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "7b60c6eb-931f-4969-a096-fd4bb4f14c780;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2533274908029709-public/69cddf46-2ab8-4ac7-8bb3-c75aefda2a46_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2533274908029709-public/69cddf46-2ab8-4ac7-8bb3-c75aefda2a46_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2533274908029709-private/69cddf46-2ab8-4ac7-8bb3-c75aefda2a46.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FAOV%2FmtFUTzyeDWmj89nohSffqd6v%2BpjwGu0GCOEgWM%3D", "fileSize": 786644, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274908029709", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "61216043-301f-4b6b-9ae2-b1aff49b1522", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:45:01.0962965Z", "dateTaken": "2018-03-29T16:40:15Z", "lastModified": "2018-03-29T16:40:15Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "3a7013f7-e652-4e79-818b-97e9121fe49c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535470462896253-public/61216043-301f-4b6b-9ae2-b1aff49b1522_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535470462896253-public/61216043-301f-4b6b-9ae2-b1aff49b1522_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535470462896253-private/61216043-301f-4b6b-9ae2-b1aff49b1522.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=wBH568Kp0MEnVH9xQZqrTfxKg0uv%2FFBb0UVGUqOiCRY%3D", "fileSize": 891829, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535470462896253", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "ja-JP", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "dfc7dc1a-344a-4652-babf-e3d84fa52a71", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:44:51.8767161Z", "dateTaken": "2018-03-29T16:42:50Z", "lastModified": "2018-03-29T16:42:50Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d4775e40-bccb-49f6-8938-78b1545527e40;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535406650249406-public/dfc7dc1a-344a-4652-babf-e3d84fa52a71_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535406650249406-public/dfc7dc1a-344a-4652-babf-e3d84fa52a71_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2535406650249406-private/dfc7dc1a-344a-4652-babf-e3d84fa52a71.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bDByw9%2FFeqE1Kk%2BpuLqzRk2LN70wjmQBAcf%2Fw6KIwWA%3D", "fileSize": 1945161, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535406650249406", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "pt-BR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "ecedd889-9a68-40cf-bc49-2685ccd6611a", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:44:06.8474389Z", "dateTaken": "2018-03-29T16:43:47Z", "lastModified": "2018-03-29T16:43:47Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6bf51706-c6c5-48ae-a0ae-de42469749cd0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274967133929-public/ecedd889-9a68-40cf-bc49-2685ccd6611a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274967133929-public/ecedd889-9a68-40cf-bc49-2685ccd6611a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2533274967133929-private/ecedd889-9a68-40cf-bc49-2685ccd6611a.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bnCYBpDN9%2Fx6T05RJda5y3Q%2BjGaBeEhIzpi6R33kA5E%3D", "fileSize": 599505, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274967133929", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "65c870a2-e3c5-4b06-9aeb-ead489985341", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:43:58.9946311Z", "dateTaken": "2018-03-29T16:43:47Z", "lastModified": "2018-03-29T16:43:47Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "8f40233c-b041-490e-8074-825549bdb7540;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535445095334060-public/65c870a2-e3c5-4b06-9aeb-ead489985341_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535445095334060-public/65c870a2-e3c5-4b06-9aeb-ead489985341_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535445095334060-private/65c870a2-e3c5-4b06-9aeb-ead489985341.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=QBjWv1AUzF%2BwqflLv6dP%2FZ8Dysc1fkw2wPlNoYWZqrw%3D", "fileSize": 3776825, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535445095334060", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "bd281d42-1157-447c-9297-e670b3508b81", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:43:55.781259Z", "dateTaken": "2018-03-29T16:40:04Z", "lastModified": "2018-03-29T16:40:04Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "1cc5a033-7f36-49d9-9e0d-824612dfb1460;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535470462896253-public/bd281d42-1157-447c-9297-e670b3508b81_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535470462896253-public/bd281d42-1157-447c-9297-e670b3508b81_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535470462896253-private/bd281d42-1157-447c-9297-e670b3508b81.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4%2FqSFllM%2BOI%2FVU4rNzcfU9sdHJ5R%2FuUrWKrM%2FOPfrrs%3D", "fileSize": 948349, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535470462896253", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "ja-JP", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "5adf8622-1c3e-4348-8376-89e9cab4d033", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:43:45.9711612Z", "dateTaken": "2018-03-29T16:41:36Z", "lastModified": "2018-03-29T16:41:36Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "65c7701f-65cc-486a-a058-a650236b701e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535408696098971-public/5adf8622-1c3e-4348-8376-89e9cab4d033_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535408696098971-public/5adf8622-1c3e-4348-8376-89e9cab4d033_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535408696098971-private/5adf8622-1c3e-4348-8376-89e9cab4d033.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hBRjiBsIX3s3uChyHgMTeV8YvBvYHPMBFXKOBeoMOjo%3D", "fileSize": 2062192, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535408696098971", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "8dde0e5a-de8b-47dc-af83-35306eeff7b3", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:43:44.5890063Z", "dateTaken": "2018-03-29T16:43:32Z", "lastModified": "2018-03-29T16:43:32Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6cb95d3d-c832-4e99-befb-706b92d035210;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2533274967133929-public/8dde0e5a-de8b-47dc-af83-35306eeff7b3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2533274967133929-public/8dde0e5a-de8b-47dc-af83-35306eeff7b3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3002.xboxlive.com/xuid-2533274967133929-private/8dde0e5a-de8b-47dc-af83-35306eeff7b3.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=dx5zlV4LeNV%2FZWoq9a7KvYD4lqguSnTTa4Q4Wajc5zw%3D", "fileSize": 575102, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274967133929", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "a5820061-3401-4fdb-a8c7-33765bac7942", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:43:36.9918321Z", "dateTaken": "2018-03-29T16:41:35Z", "lastModified": "2018-03-29T16:41:35Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "1be5f084-16ff-4029-b69d-5a173397c2fa0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535453312150438-public/a5820061-3401-4fdb-a8c7-33765bac7942_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535453312150438-public/a5820061-3401-4fdb-a8c7-33765bac7942_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535453312150438-private/a5820061-3401-4fdb-a8c7-33765bac7942.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=enPduE0UNRqxZ%2FnVLbjl%2BBKGq%2B0ygqMwbngpatvBlGc%3D", "fileSize": 2061511, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535453312150438", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "fr-FR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "ed1d41f7-b7c2-41a2-a0c5-854b36ed980a", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:43:34.165464Z", "dateTaken": "2018-03-29T16:27:06Z", "lastModified": "2018-03-29T16:27:06Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c35059e5-1c7e-4634-b938-4f7595e7e2e40;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274883840874-public/ed1d41f7-b7c2-41a2-a0c5-854b36ed980a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274883840874-public/ed1d41f7-b7c2-41a2-a0c5-854b36ed980a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2533274883840874-private/ed1d41f7-b7c2-41a2-a0c5-854b36ed980a.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=qs0DEDbt2bP1aoOAGQs2dTUubu84aqCz1plxojeHXvQ%3D", "fileSize": 2944375, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274883840874", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "24cd2979-6267-4022-aeb9-38033161e4ae", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:43:13.5470575Z", "dateTaken": "2018-03-29T16:42:48Z", "lastModified": "2018-03-29T16:42:48Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "f3a704c0-4dfc-4846-be6d-71a475be0edb0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274967133929-public/24cd2979-6267-4022-aeb9-38033161e4ae_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274967133929-public/24cd2979-6267-4022-aeb9-38033161e4ae_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2533274967133929-private/24cd2979-6267-4022-aeb9-38033161e4ae.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=II9Rc7ixg85DXU9RDszcpLW2UviNEDEgmFr53hUdHxU%3D", "fileSize": 1882873, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274967133929", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "e185288b-186a-4b14-994e-fab8f6e7d097", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:43:10.8339014Z", "dateTaken": "2018-03-29T16:40:58Z", "lastModified": "2018-03-29T16:40:58Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "060a2e8b-b3f4-46e5-9c86-195229e482590;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274906081257-public/e185288b-186a-4b14-994e-fab8f6e7d097_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274906081257-public/e185288b-186a-4b14-994e-fab8f6e7d097_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2533274906081257-private/e185288b-186a-4b14-994e-fab8f6e7d097.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ItB1u9mYZ1cvwWikc1HJE23l4PIB2DOrVrHXgnbti1M%3D", "fileSize": 2333255, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274906081257", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "cc225b1a-4dec-45ce-ac35-0eb6fa23d99b", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:43:03.4927003Z", "dateTaken": "2018-03-29T16:41:44Z", "lastModified": "2018-03-29T16:41:44Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "4425a7a2-4727-4794-9c07-b72b90deb2680;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535408866241487-public/cc225b1a-4dec-45ce-ac35-0eb6fa23d99b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535408866241487-public/cc225b1a-4dec-45ce-ac35-0eb6fa23d99b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535408866241487-private/cc225b1a-4dec-45ce-ac35-0eb6fa23d99b.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3pzl%2BOJpwu8ydoiIJogjTZv08NxEnmbrAhvv8McKxRE%3D", "fileSize": 1110571, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535408866241487", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "fr-FR", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "4c984e63-6a51-4902-92b5-6becf9f7cd26", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:43:03.0423486Z", "dateTaken": "2018-03-29T16:40:52Z", "lastModified": "2018-03-29T16:40:52Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "252bc873-b0c2-4351-8e2d-050ee046d1e90;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274908029709-public/4c984e63-6a51-4902-92b5-6becf9f7cd26_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274908029709-public/4c984e63-6a51-4902-92b5-6becf9f7cd26_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2533274908029709-private/4c984e63-6a51-4902-92b5-6becf9f7cd26.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=HAJ8oUE5M8kcmhu2ywXhx%2FN%2FXZFkHu5BUWHuYIddv10%3D", "fileSize": 1188691, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274908029709", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "ecfa2fd6-8b8b-452d-a8d3-44010d85f708", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:42:54.0029069Z", "dateTaken": "2018-03-29T16:39:52Z", "lastModified": "2018-03-29T16:39:52Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "8955ba2d-bbff-445f-bbe9-3ca80b7f35260;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535470462896253-public/ecfa2fd6-8b8b-452d-a8d3-44010d85f708_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535470462896253-public/ecfa2fd6-8b8b-452d-a8d3-44010d85f708_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3002.xboxlive.com/xuid-2535470462896253-private/ecfa2fd6-8b8b-452d-a8d3-44010d85f708.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=U7veBa71RL8MnUbVNhpD6C3R8C5RSKdUxs95hA2S29w%3D", "fileSize": 926200, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535470462896253", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "ja-JP", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "06a27b04-66a5-4451-8c05-28d5b9a9b282", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:42:49.6703673Z", "dateTaken": "2018-03-29T16:41:28Z", "lastModified": "2018-03-29T16:41:28Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "4efc5822-f53b-4b15-b70c-e4dd8cf74fde0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535468497780656-public/06a27b04-66a5-4451-8c05-28d5b9a9b282_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535468497780656-public/06a27b04-66a5-4451-8c05-28d5b9a9b282_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2535468497780656-private/06a27b04-66a5-4451-8c05-28d5b9a9b282.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=JuixH1h4LBPoah7TQq4opLjvdbEjgX8lR9bZlkVt6vU%3D", "fileSize": 1146399, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535468497780656", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "80510671-3d32-4f80-a60e-98542208b5db", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:42:47.9832709Z", "dateTaken": "2018-03-29T16:41:49Z", "lastModified": "2018-03-29T16:41:49Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "beb6ae3e-62cd-4de1-b491-56702a89bf400;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535410526695664-public/80510671-3d32-4f80-a60e-98542208b5db_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535410526695664-public/80510671-3d32-4f80-a60e-98542208b5db_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535410526695664-private/80510671-3d32-4f80-a60e-98542208b5db.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=kbTqXkxHJFLX%2BDFduMpySJqG2AYR7n08BX2aw5gRwyk%3D", "fileSize": 1255356, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535410526695664", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "b6b35774-6fc9-4876-a896-cb853c07a773", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:42:46.2875712Z", "dateTaken": "2018-03-29T16:42:27Z", "lastModified": "2018-03-29T16:42:27Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "97f6835f-4251-4cb5-98cc-1f128db172560;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535408372397776-public/b6b35774-6fc9-4876-a896-cb853c07a773_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535408372397776-public/b6b35774-6fc9-4876-a896-cb853c07a773_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535408372397776-private/b6b35774-6fc9-4876-a896-cb853c07a773.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=EKPq5nIlyQyLa%2BGGyqVJA%2F9DT9y0wMyBRMT4A7Fo2Tg%3D", "fileSize": 2177266, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535408372397776", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "c4cb8ed3-33b5-4c9e-8511-f906c9c0544f", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:42:34.0649861Z", "dateTaken": "2018-03-29T16:42:15Z", "lastModified": "2018-03-29T16:42:15Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "87b3e552-14a0-4d11-ba08-c6a028e0386c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535458946783939-public/c4cb8ed3-33b5-4c9e-8511-f906c9c0544f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535458946783939-public/c4cb8ed3-33b5-4c9e-8511-f906c9c0544f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535458946783939-private/c4cb8ed3-33b5-4c9e-8511-f906c9c0544f.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=SNA3DKoEXzFhaFZDW2iFoBuH4UduCnDQ8vONLAJ9OGU%3D", "fileSize": 1637721, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535458946783939", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "145e3f48-5a8c-497c-85f3-269741c96da2", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:42:30.4274453Z", "dateTaken": "2018-03-29T16:28:14Z", "lastModified": "2018-03-29T16:28:14Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "efba11bf-9be5-4904-ae1f-6b5e03eca7250;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535423394542260-public/145e3f48-5a8c-497c-85f3-269741c96da2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535423394542260-public/145e3f48-5a8c-497c-85f3-269741c96da2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535423394542260-private/145e3f48-5a8c-497c-85f3-269741c96da2.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=SJO1L8xWmrf30lOf7xXUuRmx%2FMnymEPoBHomc6eoNcQ%3D", "fileSize": 10260168, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535423394542260", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "0cc568c6-2b13-45ba-a573-9fe13fda96f7", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:42:08.5833172Z", "dateTaken": "2018-03-29T16:41:53Z", "lastModified": "2018-03-29T16:41:53Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c55fa1dd-9380-4fec-a802-637a92f05a420;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535455535636018-public/0cc568c6-2b13-45ba-a573-9fe13fda96f7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535455535636018-public/0cc568c6-2b13-45ba-a573-9fe13fda96f7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535455535636018-private/0cc568c6-2b13-45ba-a573-9fe13fda96f7.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=c8fgRCkXvmjVqjN5bbhvMOxAuPvZSLLVa9nj9OA%2BGpM%3D", "fileSize": 771204, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535455535636018", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "62ec5733-d6fc-4cbd-8e1e-95587854f6b4", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:41:50.2811059Z", "dateTaken": "2018-03-29T16:39:43Z", "lastModified": "2018-03-29T16:39:43Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6f2615ab-ffbc-4315-800f-28a9afe207990;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535470462896253-public/62ec5733-d6fc-4cbd-8e1e-95587854f6b4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535470462896253-public/62ec5733-d6fc-4cbd-8e1e-95587854f6b4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535470462896253-private/62ec5733-d6fc-4cbd-8e1e-95587854f6b4.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=JyK0w%2B5DfenmHVNUml7zbrEzK%2FzXzsF6vjvayjp7giQ%3D", "fileSize": 897111, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535470462896253", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "ja-JP", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "47e1bca5-f838-493c-95ee-1d880fa5dfe7", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:41:45.8788679Z", "dateTaken": "2018-03-29T16:40:42Z", "lastModified": "2018-03-29T16:40:42Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "19290575-482c-487e-97de-4d19fb546b6a0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535466339854292-public/47e1bca5-f838-493c-95ee-1d880fa5dfe7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535466339854292-public/47e1bca5-f838-493c-95ee-1d880fa5dfe7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535466339854292-private/47e1bca5-f838-493c-95ee-1d880fa5dfe7.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=CT%2BGAFHmnpQeGYaJDun8dH9wr20iCfvF6dziwOmfeMM%3D", "fileSize": 848927, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535466339854292", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "0409699f-41e2-4f56-89af-a48d5c002dc0", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:41:43.8802246Z", "dateTaken": "2018-03-29T16:40:37Z", "lastModified": "2018-03-29T16:40:37Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "17a8a59c-9c7f-42ae-bd3e-f0e5820704640;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274908029709-public/0409699f-41e2-4f56-89af-a48d5c002dc0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274908029709-public/0409699f-41e2-4f56-89af-a48d5c002dc0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2533274908029709-private/0409699f-41e2-4f56-89af-a48d5c002dc0.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=M%2BuFE8N6dJA%2Bs0%2B8N6nv%2FdorCU4ZQDYjL4HH5D46kh4%3D", "fileSize": 884545, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274908029709", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "b6e941b4-4c65-4a63-8116-01962fb8b9f4", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:41:28.7026921Z", "dateTaken": "2018-03-29T16:41:03Z", "lastModified": "2018-03-29T16:41:03Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c1370011-8447-45ca-89bd-49930674302f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535438353142540-public/b6e941b4-4c65-4a63-8116-01962fb8b9f4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535438353142540-public/b6e941b4-4c65-4a63-8116-01962fb8b9f4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535438353142540-private/b6e941b4-4c65-4a63-8116-01962fb8b9f4.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2vHBXr%2FzDJg4I6FQ%2BfpOlqmDt9oUawrCO2G4Uos4pzw%3D", "fileSize": 358923, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535438353142540", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "5eec902f-a1eb-44df-b635-1399d4c7dcfc", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:40:47.6339494Z", "dateTaken": "2018-03-29T16:39:36Z", "lastModified": "2018-03-29T16:39:36Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "9bbcf450-851f-4e99-976b-336f046d9ec30;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535470462896253-public/5eec902f-a1eb-44df-b635-1399d4c7dcfc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535470462896253-public/5eec902f-a1eb-44df-b635-1399d4c7dcfc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535470462896253-private/5eec902f-a1eb-44df-b635-1399d4c7dcfc.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lg4vMpNakHkgITMVYh2mHk6SvYMDTH9t6SZ6kpJz2eA%3D", "fileSize": 909513, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535470462896253", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "ja-JP", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "a54cb674-5c41-46c6-8748-f7d0c053819c", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:40:40.6785658Z", "dateTaken": "2018-03-29T16:26:59Z", "lastModified": "2018-03-29T16:26:59Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d8ac315a-82fc-4965-a2b9-bf21c373e2160;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274883840874-public/a54cb674-5c41-46c6-8748-f7d0c053819c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274883840874-public/a54cb674-5c41-46c6-8748-f7d0c053819c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2533274883840874-private/a54cb674-5c41-46c6-8748-f7d0c053819c.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2Bpqj7G4Xr5SdD%2Bln%2FxiijOgtrOoCNAlW%2BiSy9W3cwow%3D", "fileSize": 3069852, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274883840874", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "62603b99-1b31-47b5-97b8-f31ecb46d15d", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:40:32.8132174Z", "dateTaken": "2018-03-29T16:39:38Z", "lastModified": "2018-03-29T16:39:38Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "185cc915-f7cf-4037-a7de-a38ec6a854c70;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535435187345770-public/62603b99-1b31-47b5-97b8-f31ecb46d15d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535435187345770-public/62603b99-1b31-47b5-97b8-f31ecb46d15d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535435187345770-private/62603b99-1b31-47b5-97b8-f31ecb46d15d.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=fAm3rn1xci06NCq%2B%2FKjUtXpkJjBGmYsdT2DxdKBT6VY%3D", "fileSize": 776025, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535435187345770", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "e13c3c7e-1fc8-4837-bb59-e052fc640a1c", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:40:14.843756Z", "dateTaken": "2018-03-29T05:24:37Z", "lastModified": "2018-03-29T05:24:37Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "634f213d-4f9a-4109-8911-add707b082390;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2533274978045416-public/e13c3c7e-1fc8-4837-bb59-e052fc640a1c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2533274978045416-public/e13c3c7e-1fc8-4837-bb59-e052fc640a1c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3002.xboxlive.com/xuid-2533274978045416-private/e13c3c7e-1fc8-4837-bb59-e052fc640a1c.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=p%2F57lA92ACwbzP2QoZqqnPRXuw1wL298LOi75snbxck%3D", "fileSize": 1756328, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274978045416", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "e0ff1af4-101c-491c-98ce-c47e8baf036d", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:40:04.8967838Z", "dateTaken": "2018-03-29T16:39:41Z", "lastModified": "2018-03-29T16:39:41Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "8a50f3d4-08c6-4e2e-9947-4689d4cce81b0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535461083476677-public/e0ff1af4-101c-491c-98ce-c47e8baf036d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535461083476677-public/e0ff1af4-101c-491c-98ce-c47e8baf036d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535461083476677-private/e0ff1af4-101c-491c-98ce-c47e8baf036d.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=9LQ6dCO4lYy5hZS9M88xZ96T6dY2SCI31XXaamj%2F2eg%3D", "fileSize": 1482285, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535461083476677", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "08d95cb6-f778-4efd-aefd-6313f6c84465", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:39:56.0700354Z", "dateTaken": "2018-03-29T16:38:07Z", "lastModified": "2018-03-29T16:38:07Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "baf8d7f5-ef68-44df-9e54-dd12543524d30;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535418810587711-public/08d95cb6-f778-4efd-aefd-6313f6c84465_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535418810587711-public/08d95cb6-f778-4efd-aefd-6313f6c84465_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535418810587711-private/08d95cb6-f778-4efd-aefd-6313f6c84465.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=slAKX2ZYCf1B%2BRFV771Jn7XBRTcDs9%2Bd9Rj5eDqXXzE%3D", "fileSize": 1685594, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535418810587711", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "a672bfaa-02d7-4d03-983d-265994070189", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:38:45.6825746Z", "dateTaken": "2018-03-29T16:37:41Z", "lastModified": "2018-03-29T16:37:41Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "5f24ce2f-26a4-479f-bba6-519b477a7f040;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535411008561492-public/a672bfaa-02d7-4d03-983d-265994070189_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535411008561492-public/a672bfaa-02d7-4d03-983d-265994070189_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535411008561492-private/a672bfaa-02d7-4d03-983d-265994070189.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BJhfIRBRfKSDF3HuG%2BiRQjbwmS3l8coR%2Fg2ZbVCYMVY%3D", "fileSize": 920546, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535411008561492", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "b67c6ffd-6e08-4031-86d1-e62ac8f84ec3", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:38:41.5456803Z", "dateTaken": "2018-03-29T16:36:40Z", "lastModified": "2018-03-29T16:36:40Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "3a87c06b-023e-4752-b51d-5e6397f01f050;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535445314990635-public/b67c6ffd-6e08-4031-86d1-e62ac8f84ec3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535445314990635-public/b67c6ffd-6e08-4031-86d1-e62ac8f84ec3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535445314990635-private/b67c6ffd-6e08-4031-86d1-e62ac8f84ec3.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=cHe4J7tK5drppw4SElWyRFalJWyjh1zzqYvvzrGWBMA%3D", "fileSize": 1971280, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535445314990635", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-CO", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "1e73f4fb-4a01-4b8d-9f55-b803e9d98c1b", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:38:39.4253851Z", "dateTaken": "2018-03-29T16:34:29Z", "lastModified": "2018-03-29T16:34:29Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "fe0bc54a-f109-4391-8fc5-1c45b3f9ec900;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535449514653600-public/1e73f4fb-4a01-4b8d-9f55-b803e9d98c1b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535449514653600-public/1e73f4fb-4a01-4b8d-9f55-b803e9d98c1b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535449514653600-private/1e73f4fb-4a01-4b8d-9f55-b803e9d98c1b.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=7o%2Buz2FH%2FvQ8x2QDZaQMvxt7mxCrxrU1%2Fnj6z%2B7v78A%3D", "fileSize": 2156962, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535449514653600", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "157b65c3-1554-4e28-895f-831acb7c93e7", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:38:14.3722344Z", "dateTaken": "2018-03-29T16:38:07Z", "lastModified": "2018-03-29T16:38:07Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "940db702-cab0-440c-9832-e1e8f0a7d78e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535465551004021-public/157b65c3-1554-4e28-895f-831acb7c93e7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535465551004021-public/157b65c3-1554-4e28-895f-831acb7c93e7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3002.xboxlive.com/xuid-2535465551004021-private/157b65c3-1554-4e28-895f-831acb7c93e7.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=LR0EeDFC1Xh%2FVM%2B5K1SQbJbOjYzpV6nBOJdJY05dtA0%3D", "fileSize": 38801, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535465551004021", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "13d78b86-28af-467b-bcff-14c23160cb05", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:38:07.292146Z", "dateTaken": "2018-03-29T16:37:34Z", "lastModified": "2018-03-29T16:37:34Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "2990afad-fc4f-4cb0-89e5-fbbc175a9e4c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533275050734479-public/13d78b86-28af-467b-bcff-14c23160cb05_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533275050734479-public/13d78b86-28af-467b-bcff-14c23160cb05_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2533275050734479-private/13d78b86-28af-467b-bcff-14c23160cb05.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=us%2BktVRxTZaXQRHmhP01pRdZqJfbmSbXNV6cJMEGNy8%3D", "fileSize": 856308, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533275050734479", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-AR", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "fc260241-1b7a-471a-8ed2-cd563f43fb19", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:38:06.8263886Z", "dateTaken": "2018-03-29T16:37:40Z", "lastModified": "2018-03-29T16:37:40Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "3ffbb511-d410-4c80-9256-322a489c077c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535460770219038-public/fc260241-1b7a-471a-8ed2-cd563f43fb19_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535460770219038-public/fc260241-1b7a-471a-8ed2-cd563f43fb19_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535460770219038-private/fc260241-1b7a-471a-8ed2-cd563f43fb19.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=EgoW1lI0XeykXGUlcD6bjLbYujfAlbzoGpcH62BEcNw%3D", "fileSize": 1784442, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535460770219038", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-ZA", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "dbe51d06-98dd-496a-8cc0-82223fff3cd0", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:38:01.3381804Z", "dateTaken": "2018-03-29T16:33:42Z", "lastModified": "2018-03-29T16:33:42Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "1dca2962-d88e-4e57-bba3-3c62fae4eb720;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535436410715739-public/dbe51d06-98dd-496a-8cc0-82223fff3cd0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535436410715739-public/dbe51d06-98dd-496a-8cc0-82223fff3cd0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535436410715739-private/dbe51d06-98dd-496a-8cc0-82223fff3cd0.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=wRFH2IA%2FuntWQGiAnzpjDheL6ErwCVjv1aKvRPa5B9E%3D", "fileSize": 1606334, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535436410715739", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "4eabc749-4fec-4e76-a206-4da7137bb289", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:37:42.4715307Z", "dateTaken": "2018-03-29T16:26:46Z", "lastModified": "2018-03-29T16:26:46Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "25f9f848-b239-49f7-b878-741004a5ed3a0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274883840874-public/4eabc749-4fec-4e76-a206-4da7137bb289_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274883840874-public/4eabc749-4fec-4e76-a206-4da7137bb289_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2533274883840874-private/4eabc749-4fec-4e76-a206-4da7137bb289.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=G7kUMlE%2FsTCkC5RCp8KZTSLZQg0bLS1WVy8SZWIkRZM%3D", "fileSize": 3385622, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274883840874", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "11d343bf-c2de-4562-ac24-967b040af278", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:37:18.3581427Z", "dateTaken": "2018-03-29T16:21:21Z", "lastModified": "2018-03-29T16:21:21Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "266adb13-d50b-4e21-ba03-aa058b6eb3210;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535425889462548-public/11d343bf-c2de-4562-ac24-967b040af278_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535425889462548-public/11d343bf-c2de-4562-ac24-967b040af278_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535425889462548-private/11d343bf-c2de-4562-ac24-967b040af278.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=a28i59uPB3eUx8pNJCIxTRZjftipX5uR1c1B7X4BlGs%3D", "fileSize": 7682398, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535425889462548", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "fr-FR", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "41b23be0-68a5-4f35-b791-30c7d705b042", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:37:15.5837028Z", "dateTaken": "2018-03-29T16:36:53Z", "lastModified": "2018-03-29T16:36:53Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "390bcc6f-1586-409d-9097-3f0943fd67930;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535414297288979-public/41b23be0-68a5-4f35-b791-30c7d705b042_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535414297288979-public/41b23be0-68a5-4f35-b791-30c7d705b042_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535414297288979-private/41b23be0-68a5-4f35-b791-30c7d705b042.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=l%2FtYf6TOXPNH%2BztkD2V22j9xpFJ1pqT1u9YJKmXh3DM%3D", "fileSize": 3050945, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535414297288979", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "6c705fd8-41c4-47d3-a319-783abaf430dd", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:36:54.9349556Z", "dateTaken": "2018-03-29T16:33:49Z", "lastModified": "2018-03-29T16:33:49Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "7d12224c-4321-43e9-aec6-1092b0d5bf8a0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535409404174743-public/6c705fd8-41c4-47d3-a319-783abaf430dd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535409404174743-public/6c705fd8-41c4-47d3-a319-783abaf430dd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535409404174743-private/6c705fd8-41c4-47d3-a319-783abaf430dd.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=7ccQynUmrkHJenGJfj36pLfkOfHq3uVKrDj0scNOmdQ%3D", "fileSize": 3095911, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535409404174743", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-ES", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "68f6d1e3-c56f-4ca1-b3cf-558485e15ca0", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:36:41.8466298Z", "dateTaken": "2018-03-29T16:35:58Z", "lastModified": "2018-03-29T16:35:58Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d4b8c986-1af8-48f2-bc56-e35366314e820;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2533274994194895-public/68f6d1e3-c56f-4ca1-b3cf-558485e15ca0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2533274994194895-public/68f6d1e3-c56f-4ca1-b3cf-558485e15ca0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2533274994194895-private/68f6d1e3-c56f-4ca1-b3cf-558485e15ca0.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=6gzQD8au8qB88KDul0bZE5WVOLWXdLKRYosyaSAahJg%3D", "fileSize": 1192745, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274994194895", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "77e1d90c-b50a-4d7c-adc6-00c73aacf761", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:36:36.5592653Z", "dateTaken": "2018-03-29T16:34:30Z", "lastModified": "2018-03-29T16:34:30Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "22218e4f-c692-43d4-9a64-e2d0d067edbc0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535440465393783-public/77e1d90c-b50a-4d7c-adc6-00c73aacf761_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535440465393783-public/77e1d90c-b50a-4d7c-adc6-00c73aacf761_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535440465393783-private/77e1d90c-b50a-4d7c-adc6-00c73aacf761.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hld%2F9Ir4MBa9AKe%2FZ2z0UQupOiwKmVAGXTzW8t8G8eA%3D", "fileSize": 2189142, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535440465393783", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "fr-FR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "abb000bf-4815-4e5a-95f5-2feb23c50ae6", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:36:28.6097002Z", "dateTaken": "2018-03-29T16:34:23Z", "lastModified": "2018-03-29T16:34:23Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "94741eca-2316-4339-a19c-83abad7a1c850;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535449514653600-public/abb000bf-4815-4e5a-95f5-2feb23c50ae6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535449514653600-public/abb000bf-4815-4e5a-95f5-2feb23c50ae6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2535449514653600-private/abb000bf-4815-4e5a-95f5-2feb23c50ae6.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=fuN484PStMnJkQhaE%2Bgr%2FhI%2F9W3J4HmAsJ0oRAdE8f0%3D", "fileSize": 2137653, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535449514653600", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "e47919f4-9d78-4e02-989f-283cdc4706b8", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:36:21.2914912Z", "dateTaken": "2018-03-29T16:34:19Z", "lastModified": "2018-03-29T16:34:19Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "47d27aa8-452c-4117-a919-68507cc8727c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535430636119696-public/e47919f4-9d78-4e02-989f-283cdc4706b8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535430636119696-public/e47919f4-9d78-4e02-989f-283cdc4706b8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535430636119696-private/e47919f4-9d78-4e02-989f-283cdc4706b8.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=5eY1K%2FgHb3Ioy%2B2B3uO4pMtpQKzs3PxPxz2knbrEozs%3D", "fileSize": 2072443, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535430636119696", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "fr-FR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "ec1bd610-4f64-4f6a-966d-d38cf88e8700", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:36:19.724452Z", "dateTaken": "2018-03-29T16:36:06Z", "lastModified": "2018-03-29T16:36:06Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "bfab3b5c-e939-49d1-9e88-34bf86130ae70;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535459448896515-public/ec1bd610-4f64-4f6a-966d-d38cf88e8700_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535459448896515-public/ec1bd610-4f64-4f6a-966d-d38cf88e8700_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3002.xboxlive.com/xuid-2535459448896515-private/ec1bd610-4f64-4f6a-966d-d38cf88e8700.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Wnq%2FMvtXJRodZOKqUoLt2%2FGCe2nj3O6mbfZd%2B%2BntaX8%3D", "fileSize": 2033529, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535459448896515", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "52b0f087-d367-461b-92c2-479d9fa5ee04", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:36:05.603079Z", "dateTaken": "2018-03-29T16:34:10Z", "lastModified": "2018-03-29T16:34:10Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "9261a70d-9a54-4b25-aacf-57e42311690b0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535438698198833-public/52b0f087-d367-461b-92c2-479d9fa5ee04_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535438698198833-public/52b0f087-d367-461b-92c2-479d9fa5ee04_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535438698198833-private/52b0f087-d367-461b-92c2-479d9fa5ee04.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Wq6LPujYfr3eVYHV7vcrAxd2hka3bTnVBBHrvR9%2BP0Q%3D", "fileSize": 2182950, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535438698198833", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "a6ec4609-8eb6-43a9-a752-992ca5f56dad", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:36:01.9612929Z", "dateTaken": "2018-03-28T23:36:55Z", "lastModified": "2018-03-28T23:36:55Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "86c3a9f6-577f-469e-9d86-398e9eb9b0b10;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535421950612508-public/a6ec4609-8eb6-43a9-a752-992ca5f56dad_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535421950612508-public/a6ec4609-8eb6-43a9-a752-992ca5f56dad_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2535421950612508-private/a6ec4609-8eb6-43a9-a752-992ca5f56dad.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=6kYe%2Fc7DVCAiMa44UYbg83WSTHhqNmgf0uGdqVCP%2F1Y%3D", "fileSize": 4944356, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535421950612508", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-ES", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "e4797d77-3c99-4952-929e-d381dc533175", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:35:55.8090332Z", "dateTaken": "2018-03-29T16:35:43Z", "lastModified": "2018-03-29T16:35:43Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c0c76787-6aa9-497b-bb0c-8628541467390;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274910629361-public/e4797d77-3c99-4952-929e-d381dc533175_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274910629361-public/e4797d77-3c99-4952-929e-d381dc533175_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2533274910629361-private/e4797d77-3c99-4952-929e-d381dc533175.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TML2xSdYHdY%2FKUuEj7uNTnAD7Hxxxno6IfHuAge8BUY%3D", "fileSize": 7961, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274910629361", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "c1403d99-2874-4142-90c8-ff43412edada", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:35:34.4997067Z", "dateTaken": "2018-03-29T16:33:03Z", "lastModified": "2018-03-29T16:33:03Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a5e68a8a-9d0f-4ea9-8cec-6fcf83da68080;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535422439825873-public/c1403d99-2874-4142-90c8-ff43412edada_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535422439825873-public/c1403d99-2874-4142-90c8-ff43412edada_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535422439825873-private/c1403d99-2874-4142-90c8-ff43412edada.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=HNG5B6YXJ9RaFKR2f6nR51sPnoD35B9yJELNFnjCgGI%3D", "fileSize": 2638765, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535422439825873", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "3fe36ac7-1829-45e6-8eac-57bca1f14b08", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:35:32.9364742Z", "dateTaken": "2018-03-29T16:33:43Z", "lastModified": "2018-03-29T16:33:43Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "df166fa7-6be3-4881-a4c2-67840b0fcaa50;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535421318245084-public/3fe36ac7-1829-45e6-8eac-57bca1f14b08_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535421318245084-public/3fe36ac7-1829-45e6-8eac-57bca1f14b08_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535421318245084-private/3fe36ac7-1829-45e6-8eac-57bca1f14b08.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=yMXMVr2RzLA%2BVOimiaF2CwkKT3rIMKNnRNpSZkrq6YU%3D", "fileSize": 1812422, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535421318245084", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "5260027a-1905-4605-beae-2e5d24865cf2", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:35:07.6051255Z", "dateTaken": "2018-03-29T16:34:07Z", "lastModified": "2018-03-29T16:34:07Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6c420b68-162e-4776-93a5-c432b5ce1b0e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533275003846454-public/5260027a-1905-4605-beae-2e5d24865cf2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533275003846454-public/5260027a-1905-4605-beae-2e5d24865cf2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2533275003846454-private/5260027a-1905-4605-beae-2e5d24865cf2.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3K2vaeO4OpFLCJe5FaHzihjavxhvMtwic0PcW9VXxyE%3D", "fileSize": 1125393, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533275003846454", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "a376a211-9862-443b-aad3-a92b52825e95", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:34:40.0019331Z", "dateTaken": "2018-03-29T16:28:22Z", "lastModified": "2018-03-29T16:28:22Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "e2911114-c6cb-48c1-91e5-356c4f2e1f490;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535435098645979-public/a376a211-9862-443b-aad3-a92b52825e95_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535435098645979-public/a376a211-9862-443b-aad3-a92b52825e95_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535435098645979-private/a376a211-9862-443b-aad3-a92b52825e95.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hF3fOars8fjNOzj1bTXg2rylc4Q5d62S1edC8khE5uk%3D", "fileSize": 3283680, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535435098645979", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "eee9efc2-9fbc-4f67-94ac-17a9032647bc", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:34:34.9182483Z", "dateTaken": "2018-03-29T16:26:36Z", "lastModified": "2018-03-29T16:26:36Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "8af8ecec-caa1-4118-bf21-d7f721d959070;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274883840874-public/eee9efc2-9fbc-4f67-94ac-17a9032647bc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274883840874-public/eee9efc2-9fbc-4f67-94ac-17a9032647bc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2533274883840874-private/eee9efc2-9fbc-4f67-94ac-17a9032647bc.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=5beFVMiPGeHCppDEbJxGDOLigVh4Vluy%2BLuid3yMFoo%3D", "fileSize": 2027864, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274883840874", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "67fb6910-631e-42d8-b3eb-2265e88f3437", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:34:22.3806066Z", "dateTaken": "2018-03-29T16:31:11Z", "lastModified": "2018-03-29T16:31:11Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "85371f71-8f10-44a6-90b6-5638361de34f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274839163644-public/67fb6910-631e-42d8-b3eb-2265e88f3437_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274839163644-public/67fb6910-631e-42d8-b3eb-2265e88f3437_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2533274839163644-private/67fb6910-631e-42d8-b3eb-2265e88f3437.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=iMMJ2jwQu3EazomFL6ViEp6oApcZB5llfNk4e9knP2k%3D", "fileSize": 1089448, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274839163644", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "28af079c-b773-4b3b-8b07-c9fa3aa0113b", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:34:05.4324925Z", "dateTaken": "2018-03-29T16:33:56Z", "lastModified": "2018-03-29T16:33:56Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d7f098a2-5fd7-4423-b8cb-c9f23fd25f420;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2533274808179963-public/28af079c-b773-4b3b-8b07-c9fa3aa0113b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2533274808179963-public/28af079c-b773-4b3b-8b07-c9fa3aa0113b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2533274808179963-private/28af079c-b773-4b3b-8b07-c9fa3aa0113b.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=e9gqvzF8izqczfKcqCJK5%2BL4QeAfS0xXq1an9B3ulHU%3D", "fileSize": 2581618, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274808179963", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "11ceca38-c671-4d7e-9e1a-1cf335d9e50d", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:34:04.6629429Z", "dateTaken": "2018-03-29T16:30:53Z", "lastModified": "2018-03-29T16:30:53Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "9516a1fa-fb9f-49c7-8fa4-6d4b444af2b50;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274927234584-public/11ceca38-c671-4d7e-9e1a-1cf335d9e50d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274927234584-public/11ceca38-c671-4d7e-9e1a-1cf335d9e50d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2533274927234584-private/11ceca38-c671-4d7e-9e1a-1cf335d9e50d.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=pxqQ7RlLTtjHvmrPDeT7KQFMRE3Iuu9KeDazlBI5A1g%3D", "fileSize": 2916698, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274927234584", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "d6a2c0a1-2429-4d8f-afec-b29e58c8484e", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:34:03.047422Z", "dateTaken": "2018-03-29T16:33:41Z", "lastModified": "2018-03-29T16:33:41Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "f093d67a-ea98-4ffd-b95b-51f0ef4470cb0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274816499607-public/d6a2c0a1-2429-4d8f-afec-b29e58c8484e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274816499607-public/d6a2c0a1-2429-4d8f-afec-b29e58c8484e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2533274816499607-private/d6a2c0a1-2429-4d8f-afec-b29e58c8484e.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=rTaUeSzMz8%2Fd4KK%2BPiXwIammVH2R8jmQ37U%2BMmIvPK4%3D", "fileSize": 9848, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274816499607", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "9628bac8-3c3e-4dd0-aa66-b57dd903b508", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:33:57.1468451Z", "dateTaken": "2018-03-29T16:32:12Z", "lastModified": "2018-03-29T16:32:12Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c3caf388-eddf-4b15-9d1e-589ada0a0d2e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535429916537687-public/9628bac8-3c3e-4dd0-aa66-b57dd903b508_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535429916537687-public/9628bac8-3c3e-4dd0-aa66-b57dd903b508_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535429916537687-private/9628bac8-3c3e-4dd0-aa66-b57dd903b508.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2WmeFnBkxiM4AcFsZTl5wfI%2FWR7h4sJhphYnntc7dzg%3D", "fileSize": 1662369, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535429916537687", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "de-DE", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "f2d4e9ac-0f72-4853-a467-e4dcc094791a", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:33:32.1034817Z", "dateTaken": "2018-03-25T13:28:01Z", "lastModified": "2018-03-25T13:28:01Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "817c3ed7-f754-4371-a276-75dcb0bf02b60;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535436169011959-public/f2d4e9ac-0f72-4853-a467-e4dcc094791a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535436169011959-public/f2d4e9ac-0f72-4853-a467-e4dcc094791a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535436169011959-private/f2d4e9ac-0f72-4853-a467-e4dcc094791a.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=pzZOk1fVEx41t6SYwCiysKmfmhx1id51vXO7smEWEeo%3D", "fileSize": 3036756, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535436169011959", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "4301dbc4-06c0-4d4c-a4ca-3f59dfbf0222", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:33:30.7469857Z", "dateTaken": "2018-03-29T16:32:26Z", "lastModified": "2018-03-29T16:32:26Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a97f382d-0fc6-4054-b249-d4aa68f171650;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535470962519064-public/4301dbc4-06c0-4d4c-a4ca-3f59dfbf0222_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535470962519064-public/4301dbc4-06c0-4d4c-a4ca-3f59dfbf0222_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535470962519064-private/4301dbc4-06c0-4d4c-a4ca-3f59dfbf0222.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=I6fLt59t7yP%2F357SXIGpH03RPuAThZQh4DH6X5Q9B2Q%3D", "fileSize": 1224404, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535470962519064", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "e0c2bdcf-d102-4ad9-9f5a-007da0c05503", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:33:27.2873289Z", "dateTaken": "2018-03-29T16:27:56Z", "lastModified": "2018-03-29T16:27:56Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "f6e9247a-c5a6-45a7-8390-3ddf1edb18300;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535468819705864-public/e0c2bdcf-d102-4ad9-9f5a-007da0c05503_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535468819705864-public/e0c2bdcf-d102-4ad9-9f5a-007da0c05503_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535468819705864-private/e0c2bdcf-d102-4ad9-9f5a-007da0c05503.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=AWd%2FHmVp9%2F8sHUY6LMFkdoySOQuqffSAiVknptL3uIw%3D", "fileSize": 3142395, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535468819705864", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "708b33c3-135f-4f08-a817-fffde1109bbf", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:33:12.4396593Z", "dateTaken": "2018-03-29T16:32:56Z", "lastModified": "2018-03-29T16:32:56Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d1c54ff0-e76d-4e03-a10a-669aeb7ea5b50;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274920127066-public/708b33c3-135f-4f08-a817-fffde1109bbf_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274920127066-public/708b33c3-135f-4f08-a817-fffde1109bbf_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2533274920127066-private/708b33c3-135f-4f08-a817-fffde1109bbf.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=8ZzOyfizox%2F0%2BN2Or%2FxbOtrZzLsaQOCJN1yaKz4cQ5I%3D", "fileSize": 25653, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274920127066", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "9e0fb86d-14e1-49cc-bad4-c81e509f1f56", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:33:10.4086233Z", "dateTaken": "2018-03-29T16:31:55Z", "lastModified": "2018-03-29T16:31:55Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "df5dea02-4a23-4d6b-8a41-675b87e4e7620;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535429529090500-public/9e0fb86d-14e1-49cc-bad4-c81e509f1f56_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535429529090500-public/9e0fb86d-14e1-49cc-bad4-c81e509f1f56_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535429529090500-private/9e0fb86d-14e1-49cc-bad4-c81e509f1f56.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=XiIkTk54jcJuCAFwuu7AArnt0H5qnOMwkBDo9CHWgYM%3D", "fileSize": 1252094, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535429529090500", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "1255476c-0c41-4353-b6cb-e6f68c0e19dd", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:33:05.8383255Z", "dateTaken": "2018-03-29T16:29:17Z", "lastModified": "2018-03-29T16:29:17Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "b6412e01-b01e-4c8d-b064-04d7ea8cd1470;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535408219796855-public/1255476c-0c41-4353-b6cb-e6f68c0e19dd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535408219796855-public/1255476c-0c41-4353-b6cb-e6f68c0e19dd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535408219796855-private/1255476c-0c41-4353-b6cb-e6f68c0e19dd.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=qhBWz%2BihKY6WWBM8DXIx%2FEttm9XVdacEgNvMr%2BCcHoY%3D", "fileSize": 1885092, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535408219796855", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "73a380d9-8a25-4cf1-97cd-33fa34efac06", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:32:44.2369504Z", "dateTaken": "2018-03-29T16:30:44Z", "lastModified": "2018-03-29T16:30:44Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a4156a1c-8a8f-4e9b-b7d8-6cd3b711ef010;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274962575246-public/73a380d9-8a25-4cf1-97cd-33fa34efac06_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274962575246-public/73a380d9-8a25-4cf1-97cd-33fa34efac06_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2533274962575246-private/73a380d9-8a25-4cf1-97cd-33fa34efac06.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=aWaSsJv%2F4l%2FKSRIA25cVwHkvFfcfvXy2bBTTy1sVAGA%3D", "fileSize": 1902147, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274962575246", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "ee9b5393-b24a-4f2e-acde-3af3c71b2ab0", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:32:39.4543161Z", "dateTaken": "2018-03-29T16:26:19Z", "lastModified": "2018-03-29T16:26:19Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "89e6ab65-cbfd-402e-900e-1fef2030105e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274883840874-public/ee9b5393-b24a-4f2e-acde-3af3c71b2ab0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274883840874-public/ee9b5393-b24a-4f2e-acde-3af3c71b2ab0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2533274883840874-private/ee9b5393-b24a-4f2e-acde-3af3c71b2ab0.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=VAfCalWE%2FiEIEAdw4SRuY%2FbyEQOFfcTKANwiM%2FfsiHs%3D", "fileSize": 2073846, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274883840874", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "9db1795e-1ee1-4dfe-acca-23e59e487cf0", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:32:22.3948713Z", "dateTaken": "2018-03-29T16:30:22Z", "lastModified": "2018-03-29T16:30:22Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "3d56cba0-b3ae-4255-ba89-a6473506af930;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2533274944404303-public/9db1795e-1ee1-4dfe-acca-23e59e487cf0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2533274944404303-public/9db1795e-1ee1-4dfe-acca-23e59e487cf0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2533274944404303-private/9db1795e-1ee1-4dfe-acca-23e59e487cf0.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FOM8GdXSdEKLZ%2FAb38uf2TTXtco79W7DpdBBRTpiuo8%3D", "fileSize": 2095764, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274944404303", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "4c58658d-a264-4913-bb7d-0937326756d0", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:32:14.2715059Z", "dateTaken": "2018-03-29T16:30:34Z", "lastModified": "2018-03-29T16:30:34Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a5907001-71bf-46fb-8da9-f3c7797a005f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274811696714-public/4c58658d-a264-4913-bb7d-0937326756d0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274811696714-public/4c58658d-a264-4913-bb7d-0937326756d0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2533274811696714-private/4c58658d-a264-4913-bb7d-0937326756d0.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=vNPXzq4RbDR%2B9006tOgWBIJIpwTkZskZxANUDGjIhxI%3D", "fileSize": 1685817, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274811696714", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "e66d2cc1-c978-4e2a-a18c-f22de83b4225", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:31:55.0231469Z", "dateTaken": "2018-03-29T16:29:45Z", "lastModified": "2018-03-29T16:29:45Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "2d5e6592-36d6-4ddb-9aad-ea09dc1aecae0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535419053724097-public/e66d2cc1-c978-4e2a-a18c-f22de83b4225_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535419053724097-public/e66d2cc1-c978-4e2a-a18c-f22de83b4225_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535419053724097-private/e66d2cc1-c978-4e2a-a18c-f22de83b4225.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=1iNGF2bMtDWU1XJJKe%2Bq5IzgvUMirufkpOpKIxav2uU%3D", "fileSize": 2255803, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535419053724097", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-AR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "5d56c8ac-624a-4ce3-b53b-b59026adc869", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:31:44.0355251Z", "dateTaken": "2018-03-29T16:30:41Z", "lastModified": "2018-03-29T16:30:41Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d8436b52-91a3-42ec-ab7c-23eef57d33c00;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535466603534978-public/5d56c8ac-624a-4ce3-b53b-b59026adc869_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535466603534978-public/5d56c8ac-624a-4ce3-b53b-b59026adc869_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535466603534978-private/5d56c8ac-624a-4ce3-b53b-b59026adc869.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=dTw6XKzhIzlL7BiHodGz1xaCPYVYvurHwZHWGur3pzk%3D", "fileSize": 969626, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535466603534978", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "1e982bdd-ba94-4996-a2b3-122fd5b203fe", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:31:39.6349025Z", "dateTaken": "2018-03-29T16:20:56Z", "lastModified": "2018-03-29T16:20:56Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "487608c6-bf2e-4382-a468-b9e5f97774a00;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535425889462548-public/1e982bdd-ba94-4996-a2b3-122fd5b203fe_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535425889462548-public/1e982bdd-ba94-4996-a2b3-122fd5b203fe_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535425889462548-private/1e982bdd-ba94-4996-a2b3-122fd5b203fe.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=gAmGsQDm5I6LSIEA8kzTzd1wZYtpAHF%2BYRbamiQlinU%3D", "fileSize": 4329017, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535425889462548", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "fr-FR", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "c0a45c22-cdd5-43df-ae57-9a051e5fd169", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:31:37.2718905Z", "dateTaken": "2018-03-29T04:00:11Z", "lastModified": "2018-03-29T04:00:11Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "58e22234-ff19-48ef-ab39-f809a0903e160;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535464603249049-public/c0a45c22-cdd5-43df-ae57-9a051e5fd169_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535464603249049-public/c0a45c22-cdd5-43df-ae57-9a051e5fd169_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2535464603249049-private/c0a45c22-cdd5-43df-ae57-9a051e5fd169.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Xidht2FO8TugH3bUIFtlHzfNu9%2ByAvmMHCc3pczvy%2F0%3D", "fileSize": 2532409, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535464603249049", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "0ff3f6a6-e840-4de7-9fe8-446ba1caf9f9", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:31:29.2368208Z", "dateTaken": "2018-03-29T16:28:05Z", "lastModified": "2018-03-29T16:28:05Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "92555b9a-0535-46c0-affc-0782cfc5494b0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535435098645979-public/0ff3f6a6-e840-4de7-9fe8-446ba1caf9f9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535435098645979-public/0ff3f6a6-e840-4de7-9fe8-446ba1caf9f9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535435098645979-private/0ff3f6a6-e840-4de7-9fe8-446ba1caf9f9.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=LWDI97aQT4w2VVopDAWwWERkaIEUgOqJU%2BhSbHrgusQ%3D", "fileSize": 3321477, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535435098645979", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "6bfc58e5-9754-4008-a340-cae96afa8bf9", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:31:03.7964118Z", "dateTaken": "2018-03-29T16:28:58Z", "lastModified": "2018-03-29T16:28:58Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c5e2ed71-4370-431a-8341-296215be78a70;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535469797982132-public/6bfc58e5-9754-4008-a340-cae96afa8bf9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535469797982132-public/6bfc58e5-9754-4008-a340-cae96afa8bf9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535469797982132-private/6bfc58e5-9754-4008-a340-cae96afa8bf9.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=vT2M7Q7ZcjHJsRO3QsSxAhp%2BS%2BLmNbsYthjzag3pTrM%3D", "fileSize": 2184041, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535469797982132", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "616d42ff-03cf-4034-b7ce-851fe4568c90", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:31:00.7151226Z", "dateTaken": "2018-03-29T16:29:01Z", "lastModified": "2018-03-29T16:29:01Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d8a6c765-ee86-4e3f-a77d-199ff78ca3d70;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274929543164-public/616d42ff-03cf-4034-b7ce-851fe4568c90_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274929543164-public/616d42ff-03cf-4034-b7ce-851fe4568c90_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2533274929543164-private/616d42ff-03cf-4034-b7ce-851fe4568c90.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Rbc%2FqpMCDXcuxkAAylnAE0V%2FC2tdTn7WPKVVzP7cQ5c%3D", "fileSize": 1983456, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274929543164", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "c12cc746-fd72-43ac-9e1b-02faea9163d3", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:31:00.4052778Z", "dateTaken": "2018-03-29T16:29:30Z", "lastModified": "2018-03-29T16:29:30Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "4298b097-7ce8-40d0-9944-e31641adc3240;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535417997591356-public/c12cc746-fd72-43ac-9e1b-02faea9163d3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535417997591356-public/c12cc746-fd72-43ac-9e1b-02faea9163d3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535417997591356-private/c12cc746-fd72-43ac-9e1b-02faea9163d3.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=SrEgVLH7A%2BRAgaUTM4DthbutKU%2BXv1Waq3xlKFAo3S8%3D", "fileSize": 1336500, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535417997591356", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "e6ccf561-7a43-47ae-bb9a-3ef4416cc58d", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:30:54.1800702Z", "dateTaken": "2018-03-29T16:30:07Z", "lastModified": "2018-03-29T16:30:07Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "b228282a-9585-4e8f-8e8d-1ada3860d8840;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535438253423162-public/e6ccf561-7a43-47ae-bb9a-3ef4416cc58d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535438253423162-public/e6ccf561-7a43-47ae-bb9a-3ef4416cc58d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535438253423162-private/e6ccf561-7a43-47ae-bb9a-3ef4416cc58d.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lrlM4v2A8JDsWAzB1%2F2uehVpGSQafQsAsGh9VEfjI3Y%3D", "fileSize": 2167607, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535438253423162", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "2f5bdc98-b1fa-4fe8-910c-bab6a233552f", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:30:44.0474437Z", "dateTaken": "2018-03-29T16:26:08Z", "lastModified": "2018-03-29T16:26:08Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 1, "titleData": "", "systemProperties": "26361bc9-786b-428a-a5c8-86fead1c94060;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2533274883840874-public/2f5bdc98-b1fa-4fe8-910c-bab6a233552f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2533274883840874-public/2f5bdc98-b1fa-4fe8-910c-bab6a233552f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2533274883840874-private/2f5bdc98-b1fa-4fe8-910c-bab6a233552f.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TgwVausIET7%2FN%2B5Zy%2B8vSnr2R%2BzMiz37mAOXwRtBvNo%3D", "fileSize": 2809274, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274883840874", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "878ad50e-0f0d-46e4-974a-821cfc3aba9b", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:30:35.1174306Z", "dateTaken": "2018-03-29T16:28:28Z", "lastModified": "2018-03-29T16:28:28Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c5207500-7b19-4952-bfbc-1a77057d675d0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535410748661390-public/878ad50e-0f0d-46e4-974a-821cfc3aba9b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535410748661390-public/878ad50e-0f0d-46e4-974a-821cfc3aba9b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535410748661390-private/878ad50e-0f0d-46e4-974a-821cfc3aba9b.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=zfK%2FSYeCse4Elu%2Bc%2BmXmSwAdVYDJnBHrUBiQyfTMDrc%3D", "fileSize": 1382330, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535410748661390", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "pt-BR", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "dabf48af-0abf-495e-a26c-130de61349b5", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:30:34.2173355Z", "dateTaken": "2018-03-29T16:29:08Z", "lastModified": "2018-03-29T16:29:08Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 1, "titleData": "", "systemProperties": "942f87bd-f94a-4ecf-8fae-0659eed439cc0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535411008561492-public/dabf48af-0abf-495e-a26c-130de61349b5_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535411008561492-public/dabf48af-0abf-495e-a26c-130de61349b5_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535411008561492-private/dabf48af-0abf-495e-a26c-130de61349b5.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=JVdpky9SF5HHaSr0fGLfVzXRphRxjujdViyBurYx%2FXk%3D", "fileSize": 944298, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535411008561492", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "88c6cfd4-7f29-458f-a671-b2ca47211a76", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:30:31.9592929Z", "dateTaken": "2018-03-29T16:25:30Z", "lastModified": "2018-03-29T16:25:30Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c46249dc-b944-48a9-b070-89b1efa035300;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535455629213764-public/88c6cfd4-7f29-458f-a671-b2ca47211a76_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535455629213764-public/88c6cfd4-7f29-458f-a671-b2ca47211a76_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535455629213764-private/88c6cfd4-7f29-458f-a671-b2ca47211a76.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=W%2FICsOsDLS%2FK9ok2lmhrP1A62GZ3PTFUwx%2BK7nnnKBw%3D", "fileSize": 2627246, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535455629213764", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-AR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "88224e29-a5be-4d73-b748-12ebfd06c83f", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:30:23.4537027Z", "dateTaken": "2018-03-29T16:25:38Z", "lastModified": "2018-03-29T16:25:38Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d3f2e48e-4f78-4ac5-bafa-c94d2707c6070;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535461520376795-public/88224e29-a5be-4d73-b748-12ebfd06c83f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535461520376795-public/88224e29-a5be-4d73-b748-12ebfd06c83f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535461520376795-private/88224e29-a5be-4d73-b748-12ebfd06c83f.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=60spLw1NBD0D7cC%2BZmjQ3qvbq0Mf8GFIJnmUIcNdgdc%3D", "fileSize": 1261941, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535461520376795", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "sv-SE", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "bed390b9-44dc-4eac-a3d2-5db5c761e9af", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:30:20.4973616Z", "dateTaken": "2018-03-29T16:29:11Z", "lastModified": "2018-03-29T16:29:11Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c36d4c2a-ebbc-4e2f-8876-d2dd51caf0bf0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535417997591356-public/bed390b9-44dc-4eac-a3d2-5db5c761e9af_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535417997591356-public/bed390b9-44dc-4eac-a3d2-5db5c761e9af_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535417997591356-private/bed390b9-44dc-4eac-a3d2-5db5c761e9af.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Nx6dV1IUaNzs4kl6%2FilsukWr4cZWwVWLu5tQ6ckAfvE%3D", "fileSize": 1991544, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535417997591356", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "847c4df1-e89a-432a-84b6-42a1e3d85b0a", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:30:15.5125817Z", "dateTaken": "2018-03-29T16:28:11Z", "lastModified": "2018-03-29T16:28:11Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "75f405fc-7ae2-44b8-ab96-b438dc50293b0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535443000156101-public/847c4df1-e89a-432a-84b6-42a1e3d85b0a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535443000156101-public/847c4df1-e89a-432a-84b6-42a1e3d85b0a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535443000156101-private/847c4df1-e89a-432a-84b6-42a1e3d85b0a.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=uhBq3FD6NNTrkfW805S%2FTo7T0CvpgsVq7SOM0Vyfgsc%3D", "fileSize": 2302270, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535443000156101", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "eec65a53-97f1-4348-bc47-c830c17c44c2", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:30:00.2127669Z", "dateTaken": "2018-03-29T16:28:18Z", "lastModified": "2018-03-29T16:28:18Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 2, "titleData": "", "systemProperties": "80f0ee4f-0332-4ce8-b48c-c135e4ba06e10;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2533274882386618-public/eec65a53-97f1-4348-bc47-c830c17c44c2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2533274882386618-public/eec65a53-97f1-4348-bc47-c830c17c44c2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2533274882386618-private/eec65a53-97f1-4348-bc47-c830c17c44c2.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=896DYHU51jNR7JcbwCvFdxDDgEmaWYHJIyo%2BcrzZ7lg%3D", "fileSize": 1723096, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274882386618", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Durango" } ], "pagingInfo": { "continuationToken": "abcde_vwxyzZAAAAA2" } }python-xbox-webapi-2.1.0/tests/data/responses/screenshots_recent_own.json000066400000000000000000000037751465040003600270420ustar00rootroot00000000000000{ "screenshots": [ { "screenshotId": "41593644-be22-43d6-b224-c7bebe14076e", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2015-11-11T06:11:58.6404578Z", "dateTaken": "2015-11-11T06:10:16Z", "lastModified": "2015-11-11T06:10:16Z", "userCaption": "", "type": "UserGenerated", "scid": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 413, "titleData": "", "systemProperties": "e1fad752-787f-4be7-b89d-ba84e06f59a6;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TcI8NNFJlcGykmjTFzeFKgUz7E9g%2FHKZqSNUoYAlZOM%3D", "fileSize": 95044, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=W4ZlmlL7Zd%2FubVoWMojXIfmTiodcpTezppxvsEeNOlI%3D", "fileSize": 340052, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Screenshot-Original.png?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ALKo3DE2HXqBTlpdyynIrH6RPKIECOF7zwotH%2Bb30Ts%3D", "fileSize": 1790858, "uriType": "Download", "expiration": "2018-03-29T17:46:58.5342894Z" } ], "xuid": "2669321029139235", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "XboxOne" } ], "pagingInfo": { "continuationToken": null } }python-xbox-webapi-2.1.0/tests/data/responses/screenshots_recent_own_titleid.json000066400000000000000000000037751465040003600305600ustar00rootroot00000000000000{ "screenshots": [ { "screenshotId": "41593644-be22-43d6-b224-c7bebe14076e", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2015-11-11T06:11:58.6404578Z", "dateTaken": "2015-11-11T06:10:16Z", "lastModified": "2015-11-11T06:10:16Z", "userCaption": "", "type": "UserGenerated", "scid": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 413, "titleData": "", "systemProperties": "e1fad752-787f-4be7-b89d-ba84e06f59a6;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TcI8NNFJlcGykmjTFzeFKgUz7E9g%2FHKZqSNUoYAlZOM%3D", "fileSize": 95044, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=W4ZlmlL7Zd%2FubVoWMojXIfmTiodcpTezppxvsEeNOlI%3D", "fileSize": 340052, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Screenshot-Original.png?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ALKo3DE2HXqBTlpdyynIrH6RPKIECOF7zwotH%2Bb30Ts%3D", "fileSize": 1790858, "uriType": "Download", "expiration": "2018-03-29T17:46:58.5342894Z" } ], "xuid": "2669321029139235", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "XboxOne" } ], "pagingInfo": { "continuationToken": null } }python-xbox-webapi-2.1.0/tests/data/responses/screenshots_recent_xuid.json000066400000000000000000000037751465040003600272100ustar00rootroot00000000000000{ "screenshots": [ { "screenshotId": "41593644-be22-43d6-b224-c7bebe14076e", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2015-11-11T06:11:58.6404578Z", "dateTaken": "2015-11-11T06:10:16Z", "lastModified": "2015-11-11T06:10:16Z", "userCaption": "", "type": "UserGenerated", "scid": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 413, "titleData": "", "systemProperties": "e1fad752-787f-4be7-b89d-ba84e06f59a6;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TcI8NNFJlcGykmjTFzeFKgUz7E9g%2FHKZqSNUoYAlZOM%3D", "fileSize": 95044, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=W4ZlmlL7Zd%2FubVoWMojXIfmTiodcpTezppxvsEeNOlI%3D", "fileSize": 340052, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Screenshot-Original.png?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ALKo3DE2HXqBTlpdyynIrH6RPKIECOF7zwotH%2Bb30Ts%3D", "fileSize": 1790858, "uriType": "Download", "expiration": "2018-03-29T17:46:58.5342894Z" } ], "xuid": "2669321029139235", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "XboxOne" } ], "pagingInfo": { "continuationToken": null } }python-xbox-webapi-2.1.0/tests/data/responses/screenshots_recent_xuid_titleid.json000066400000000000000000000037751465040003600307260ustar00rootroot00000000000000{ "screenshots": [ { "screenshotId": "41593644-be22-43d6-b224-c7bebe14076e", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2015-11-11T06:11:58.6404578Z", "dateTaken": "2015-11-11T06:10:16Z", "lastModified": "2015-11-11T06:10:16Z", "userCaption": "", "type": "UserGenerated", "scid": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 413, "titleData": "", "systemProperties": "e1fad752-787f-4be7-b89d-ba84e06f59a6;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TcI8NNFJlcGykmjTFzeFKgUz7E9g%2FHKZqSNUoYAlZOM%3D", "fileSize": 95044, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=W4ZlmlL7Zd%2FubVoWMojXIfmTiodcpTezppxvsEeNOlI%3D", "fileSize": 340052, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Screenshot-Original.png?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ALKo3DE2HXqBTlpdyynIrH6RPKIECOF7zwotH%2Bb30Ts%3D", "fileSize": 1790858, "uriType": "Download", "expiration": "2018-03-29T17:46:58.5342894Z" } ], "xuid": "2669321029139235", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "XboxOne" } ], "pagingInfo": { "continuationToken": null } }python-xbox-webapi-2.1.0/tests/data/responses/screenshots_saved_community.json000066400000000000000000005345611465040003600301070ustar00rootroot00000000000000{ "screenshots": [ { "screenshotId": "013ccd76-95a8-4bff-bbfc-58b3fa40e7a8", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:46:45.8585941Z", "dateTaken": "2018-03-29T16:46:14Z", "lastModified": "2018-03-29T16:46:14Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "7a86a1df-a1b5-49f4-86f1-d5aadefb83400;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535460013312229-public/013ccd76-95a8-4bff-bbfc-58b3fa40e7a8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535460013312229-public/013ccd76-95a8-4bff-bbfc-58b3fa40e7a8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535460013312229-private/013ccd76-95a8-4bff-bbfc-58b3fa40e7a8.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=9R%2FeI5EL%2BDDlIlwIcz9rnpLWIyv9%2F5%2BOYiEMeYTmyQY%3D", "fileSize": 1373197, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535460013312229", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "34564b38-0d8a-4ea4-973e-814160ad91b1", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:46:33.4309282Z", "dateTaken": "2018-03-29T16:46:20Z", "lastModified": "2018-03-29T16:46:20Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c6a164d8-e2ba-4acc-a36c-471a5cd315950;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535407837993814-public/34564b38-0d8a-4ea4-973e-814160ad91b1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535407837993814-public/34564b38-0d8a-4ea4-973e-814160ad91b1_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535407837993814-private/34564b38-0d8a-4ea4-973e-814160ad91b1.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=uJttrKSiAPz7Uuh7h%2FfLcghkNThb7t6U00vYlWGix9M%3D", "fileSize": 2646603, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535407837993814", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "ce9e8753-fd53-472e-9fe7-9d73cabaf08b", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:46:26.0688432Z", "dateTaken": "2018-03-29T16:44:51Z", "lastModified": "2018-03-29T16:44:51Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "484da5a4-2b3d-4f5b-bee8-9c244ae6037e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535439795340009-public/ce9e8753-fd53-472e-9fe7-9d73cabaf08b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535439795340009-public/ce9e8753-fd53-472e-9fe7-9d73cabaf08b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535439795340009-private/ce9e8753-fd53-472e-9fe7-9d73cabaf08b.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=AEafYF5zK37UtAxg7PbaLcg7Rt2ZouFdZ1y2VlL%2F%2FrM%3D", "fileSize": 5264353, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535439795340009", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "50c2651b-d626-4f51-b660-b4fcda11af3e", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:46:23.8351252Z", "dateTaken": "2018-03-29T16:45:56Z", "lastModified": "2018-03-29T16:45:56Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "bf643b19-d5f1-4e70-b675-44707fd201ac0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274794500800-public/50c2651b-d626-4f51-b660-b4fcda11af3e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274794500800-public/50c2651b-d626-4f51-b660-b4fcda11af3e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2533274794500800-private/50c2651b-d626-4f51-b660-b4fcda11af3e.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=yp7hasyjJ6zGbv5L3383NdZ7xAvFhDm9LP3VvPxrCZs%3D", "fileSize": 2013187, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274794500800", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "de8f3c8b-068d-47d6-bc0e-7a65786f72f6", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:46:22.5002698Z", "dateTaken": "2018-03-29T16:43:55Z", "lastModified": "2018-03-29T16:43:55Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "56ef078b-6fae-4f25-a220-3fd594bdebd20;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535409089914471-public/de8f3c8b-068d-47d6-bc0e-7a65786f72f6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535409089914471-public/de8f3c8b-068d-47d6-bc0e-7a65786f72f6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535409089914471-private/de8f3c8b-068d-47d6-bc0e-7a65786f72f6.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Twaq37hDMdQc%2BxC3YQidgYtjTpGNahspEHi20ZeGKM8%3D", "fileSize": 2480760, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535409089914471", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "pt-BR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "83c132e8-a973-4c58-8ff9-337020d67f59", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:46:14.4653683Z", "dateTaken": "2018-03-29T16:44:24Z", "lastModified": "2018-03-29T16:44:24Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "53e22a59-cf7e-42e6-ace9-efecd5b326d50;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535445934155950-public/83c132e8-a973-4c58-8ff9-337020d67f59_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535445934155950-public/83c132e8-a973-4c58-8ff9-337020d67f59_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535445934155950-private/83c132e8-a973-4c58-8ff9-337020d67f59.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=b1aqjBfb35Ptke%2F%2B%2BbfCmKznBRvtymShYoPrJAGXM48%3D", "fileSize": 2154975, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535445934155950", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "it-IT", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "bd1c6a0e-5564-414b-814b-25f677885d6f", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:46:14.3789472Z", "dateTaken": "2018-03-29T16:45:40Z", "lastModified": "2018-03-29T16:45:40Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "937c2feb-2d4c-445a-8b05-15d765e692a20;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535406384081076-public/bd1c6a0e-5564-414b-814b-25f677885d6f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535406384081076-public/bd1c6a0e-5564-414b-814b-25f677885d6f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535406384081076-private/bd1c6a0e-5564-414b-814b-25f677885d6f.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Eld0Koyk6TYYM%2F37rYXOPxvCNW58UJMSdNQr9%2B8dFOs%3D", "fileSize": 777240, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535406384081076", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "0c5887ad-3088-466f-bfd0-a39de26335f7", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:46:09.8568055Z", "dateTaken": "2018-03-29T16:44:10Z", "lastModified": "2018-03-29T16:44:10Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "9e3446f5-1246-4342-b5dc-0bb74d0e22920;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535466120169153-public/0c5887ad-3088-466f-bfd0-a39de26335f7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535466120169153-public/0c5887ad-3088-466f-bfd0-a39de26335f7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3002.xboxlive.com/xuid-2535466120169153-private/0c5887ad-3088-466f-bfd0-a39de26335f7.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=BYR23Y%2Ff%2BCTtuzdbOGhjeY3eA9J71LByBNnNlfTUUnE%3D", "fileSize": 2225018, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535466120169153", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "11fa0e86-4594-48fd-9e08-dce950266cc9", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:46:00.2621371Z", "dateTaken": "2018-03-29T16:45:51Z", "lastModified": "2018-03-29T16:45:51Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "21f4bb45-5073-4cda-b293-4deac17e18240;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274831895106-public/11fa0e86-4594-48fd-9e08-dce950266cc9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274831895106-public/11fa0e86-4594-48fd-9e08-dce950266cc9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2533274831895106-private/11fa0e86-4594-48fd-9e08-dce950266cc9.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TD0PBZJKZqCvL86JO0j9QVXR5PkZDawipKkwRE8iJ%2Fs%3D", "fileSize": 1603247, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274831895106", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "cca26e6d-09c1-4977-ac27-537145eecb39", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:45:41.4909591Z", "dateTaken": "2018-03-29T16:35:49Z", "lastModified": "2018-03-29T16:35:49Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "8c70fb83-f1dc-4442-84e4-4bb4408004170;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535423394542260-public/cca26e6d-09c1-4977-ac27-537145eecb39_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535423394542260-public/cca26e6d-09c1-4977-ac27-537145eecb39_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535423394542260-private/cca26e6d-09c1-4977-ac27-537145eecb39.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=PHrlT0gpkB15Nzhh4Z1RC7V3uOMjCg3AEP5EEJwm7cY%3D", "fileSize": 10411151, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535423394542260", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "17c3cf32-f475-4f5c-a8d6-8527a4a2d4ac", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:45:41.1355831Z", "dateTaken": "2018-03-29T16:44:02Z", "lastModified": "2018-03-29T16:44:02Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "0906fa7b-511e-4bf5-af92-9412375e97be0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535440186521780-public/17c3cf32-f475-4f5c-a8d6-8527a4a2d4ac_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535440186521780-public/17c3cf32-f475-4f5c-a8d6-8527a4a2d4ac_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535440186521780-private/17c3cf32-f475-4f5c-a8d6-8527a4a2d4ac.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2v7yaFsWUL%2Buqj%2FjEBpGKrXdZloWwbDBGyKlH%2FyjvM0%3D", "fileSize": 1647869, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535440186521780", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "c4713e38-d528-4d19-95b3-72488cb133fc", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:45:20.0795714Z", "dateTaken": "2018-03-29T16:43:16Z", "lastModified": "2018-03-29T16:43:16Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "1ec014be-e157-4503-b36f-f090c364dadf0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535440465393783-public/c4713e38-d528-4d19-95b3-72488cb133fc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535440465393783-public/c4713e38-d528-4d19-95b3-72488cb133fc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535440465393783-private/c4713e38-d528-4d19-95b3-72488cb133fc.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=1uzTAAsiELrn5%2FB8vlmtiBRCPV7%2BjHb%2BVwd%2FTgTVq9o%3D", "fileSize": 2126327, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535440465393783", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "fr-FR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "476dda20-8d5e-4547-8eb0-8f419176188a", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:45:19.2428404Z", "dateTaken": "2018-03-29T16:44:00Z", "lastModified": "2018-03-29T16:44:00Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "af5276d6-80a1-4cc6-8bbc-adcde03900a50;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2533274926247531-public/476dda20-8d5e-4547-8eb0-8f419176188a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2533274926247531-public/476dda20-8d5e-4547-8eb0-8f419176188a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3002.xboxlive.com/xuid-2533274926247531-private/476dda20-8d5e-4547-8eb0-8f419176188a.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=45%2BXJUq%2Fm2vhN1%2FPGhot6SmQT3FnS1iuPBSQfzC1svE%3D", "fileSize": 1519935, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274926247531", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "69cddf46-2ab8-4ac7-8bb3-c75aefda2a46", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:45:07.2273107Z", "dateTaken": "2018-03-29T16:44:02Z", "lastModified": "2018-03-29T16:44:02Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "7b60c6eb-931f-4969-a096-fd4bb4f14c780;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2533274908029709-public/69cddf46-2ab8-4ac7-8bb3-c75aefda2a46_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2533274908029709-public/69cddf46-2ab8-4ac7-8bb3-c75aefda2a46_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2533274908029709-private/69cddf46-2ab8-4ac7-8bb3-c75aefda2a46.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FAOV%2FmtFUTzyeDWmj89nohSffqd6v%2BpjwGu0GCOEgWM%3D", "fileSize": 786644, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274908029709", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "61216043-301f-4b6b-9ae2-b1aff49b1522", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:45:01.0962965Z", "dateTaken": "2018-03-29T16:40:15Z", "lastModified": "2018-03-29T16:40:15Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "3a7013f7-e652-4e79-818b-97e9121fe49c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535470462896253-public/61216043-301f-4b6b-9ae2-b1aff49b1522_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535470462896253-public/61216043-301f-4b6b-9ae2-b1aff49b1522_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535470462896253-private/61216043-301f-4b6b-9ae2-b1aff49b1522.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=wBH568Kp0MEnVH9xQZqrTfxKg0uv%2FFBb0UVGUqOiCRY%3D", "fileSize": 891829, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535470462896253", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "ja-JP", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "dfc7dc1a-344a-4652-babf-e3d84fa52a71", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:44:51.8767161Z", "dateTaken": "2018-03-29T16:42:50Z", "lastModified": "2018-03-29T16:42:50Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d4775e40-bccb-49f6-8938-78b1545527e40;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535406650249406-public/dfc7dc1a-344a-4652-babf-e3d84fa52a71_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535406650249406-public/dfc7dc1a-344a-4652-babf-e3d84fa52a71_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2535406650249406-private/dfc7dc1a-344a-4652-babf-e3d84fa52a71.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bDByw9%2FFeqE1Kk%2BpuLqzRk2LN70wjmQBAcf%2Fw6KIwWA%3D", "fileSize": 1945161, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535406650249406", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "pt-BR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "ecedd889-9a68-40cf-bc49-2685ccd6611a", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:44:06.8474389Z", "dateTaken": "2018-03-29T16:43:47Z", "lastModified": "2018-03-29T16:43:47Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6bf51706-c6c5-48ae-a0ae-de42469749cd0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274967133929-public/ecedd889-9a68-40cf-bc49-2685ccd6611a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274967133929-public/ecedd889-9a68-40cf-bc49-2685ccd6611a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2533274967133929-private/ecedd889-9a68-40cf-bc49-2685ccd6611a.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=bnCYBpDN9%2Fx6T05RJda5y3Q%2BjGaBeEhIzpi6R33kA5E%3D", "fileSize": 599505, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274967133929", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "65c870a2-e3c5-4b06-9aeb-ead489985341", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:43:58.9946311Z", "dateTaken": "2018-03-29T16:43:47Z", "lastModified": "2018-03-29T16:43:47Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "8f40233c-b041-490e-8074-825549bdb7540;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535445095334060-public/65c870a2-e3c5-4b06-9aeb-ead489985341_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535445095334060-public/65c870a2-e3c5-4b06-9aeb-ead489985341_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535445095334060-private/65c870a2-e3c5-4b06-9aeb-ead489985341.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=QBjWv1AUzF%2BwqflLv6dP%2FZ8Dysc1fkw2wPlNoYWZqrw%3D", "fileSize": 3776825, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535445095334060", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "bd281d42-1157-447c-9297-e670b3508b81", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:43:55.781259Z", "dateTaken": "2018-03-29T16:40:04Z", "lastModified": "2018-03-29T16:40:04Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "1cc5a033-7f36-49d9-9e0d-824612dfb1460;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535470462896253-public/bd281d42-1157-447c-9297-e670b3508b81_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535470462896253-public/bd281d42-1157-447c-9297-e670b3508b81_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535470462896253-private/bd281d42-1157-447c-9297-e670b3508b81.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=4%2FqSFllM%2BOI%2FVU4rNzcfU9sdHJ5R%2FuUrWKrM%2FOPfrrs%3D", "fileSize": 948349, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535470462896253", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "ja-JP", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "5adf8622-1c3e-4348-8376-89e9cab4d033", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:43:45.9711612Z", "dateTaken": "2018-03-29T16:41:36Z", "lastModified": "2018-03-29T16:41:36Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "65c7701f-65cc-486a-a058-a650236b701e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535408696098971-public/5adf8622-1c3e-4348-8376-89e9cab4d033_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535408696098971-public/5adf8622-1c3e-4348-8376-89e9cab4d033_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535408696098971-private/5adf8622-1c3e-4348-8376-89e9cab4d033.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hBRjiBsIX3s3uChyHgMTeV8YvBvYHPMBFXKOBeoMOjo%3D", "fileSize": 2062192, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535408696098971", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "8dde0e5a-de8b-47dc-af83-35306eeff7b3", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:43:44.5890063Z", "dateTaken": "2018-03-29T16:43:32Z", "lastModified": "2018-03-29T16:43:32Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6cb95d3d-c832-4e99-befb-706b92d035210;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2533274967133929-public/8dde0e5a-de8b-47dc-af83-35306eeff7b3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2533274967133929-public/8dde0e5a-de8b-47dc-af83-35306eeff7b3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3002.xboxlive.com/xuid-2533274967133929-private/8dde0e5a-de8b-47dc-af83-35306eeff7b3.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=dx5zlV4LeNV%2FZWoq9a7KvYD4lqguSnTTa4Q4Wajc5zw%3D", "fileSize": 575102, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274967133929", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "a5820061-3401-4fdb-a8c7-33765bac7942", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:43:36.9918321Z", "dateTaken": "2018-03-29T16:41:35Z", "lastModified": "2018-03-29T16:41:35Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "1be5f084-16ff-4029-b69d-5a173397c2fa0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535453312150438-public/a5820061-3401-4fdb-a8c7-33765bac7942_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535453312150438-public/a5820061-3401-4fdb-a8c7-33765bac7942_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535453312150438-private/a5820061-3401-4fdb-a8c7-33765bac7942.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=enPduE0UNRqxZ%2FnVLbjl%2BBKGq%2B0ygqMwbngpatvBlGc%3D", "fileSize": 2061511, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535453312150438", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "fr-FR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "ed1d41f7-b7c2-41a2-a0c5-854b36ed980a", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:43:34.165464Z", "dateTaken": "2018-03-29T16:27:06Z", "lastModified": "2018-03-29T16:27:06Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c35059e5-1c7e-4634-b938-4f7595e7e2e40;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274883840874-public/ed1d41f7-b7c2-41a2-a0c5-854b36ed980a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274883840874-public/ed1d41f7-b7c2-41a2-a0c5-854b36ed980a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2533274883840874-private/ed1d41f7-b7c2-41a2-a0c5-854b36ed980a.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=qs0DEDbt2bP1aoOAGQs2dTUubu84aqCz1plxojeHXvQ%3D", "fileSize": 2944375, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274883840874", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "24cd2979-6267-4022-aeb9-38033161e4ae", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:43:13.5470575Z", "dateTaken": "2018-03-29T16:42:48Z", "lastModified": "2018-03-29T16:42:48Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "f3a704c0-4dfc-4846-be6d-71a475be0edb0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274967133929-public/24cd2979-6267-4022-aeb9-38033161e4ae_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274967133929-public/24cd2979-6267-4022-aeb9-38033161e4ae_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2533274967133929-private/24cd2979-6267-4022-aeb9-38033161e4ae.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=II9Rc7ixg85DXU9RDszcpLW2UviNEDEgmFr53hUdHxU%3D", "fileSize": 1882873, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274967133929", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "e185288b-186a-4b14-994e-fab8f6e7d097", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:43:10.8339014Z", "dateTaken": "2018-03-29T16:40:58Z", "lastModified": "2018-03-29T16:40:58Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "060a2e8b-b3f4-46e5-9c86-195229e482590;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274906081257-public/e185288b-186a-4b14-994e-fab8f6e7d097_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274906081257-public/e185288b-186a-4b14-994e-fab8f6e7d097_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2533274906081257-private/e185288b-186a-4b14-994e-fab8f6e7d097.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ItB1u9mYZ1cvwWikc1HJE23l4PIB2DOrVrHXgnbti1M%3D", "fileSize": 2333255, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274906081257", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "cc225b1a-4dec-45ce-ac35-0eb6fa23d99b", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:43:03.4927003Z", "dateTaken": "2018-03-29T16:41:44Z", "lastModified": "2018-03-29T16:41:44Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "4425a7a2-4727-4794-9c07-b72b90deb2680;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535408866241487-public/cc225b1a-4dec-45ce-ac35-0eb6fa23d99b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535408866241487-public/cc225b1a-4dec-45ce-ac35-0eb6fa23d99b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535408866241487-private/cc225b1a-4dec-45ce-ac35-0eb6fa23d99b.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3pzl%2BOJpwu8ydoiIJogjTZv08NxEnmbrAhvv8McKxRE%3D", "fileSize": 1110571, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535408866241487", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "fr-FR", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "4c984e63-6a51-4902-92b5-6becf9f7cd26", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:43:03.0423486Z", "dateTaken": "2018-03-29T16:40:52Z", "lastModified": "2018-03-29T16:40:52Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "252bc873-b0c2-4351-8e2d-050ee046d1e90;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274908029709-public/4c984e63-6a51-4902-92b5-6becf9f7cd26_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274908029709-public/4c984e63-6a51-4902-92b5-6becf9f7cd26_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2533274908029709-private/4c984e63-6a51-4902-92b5-6becf9f7cd26.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=HAJ8oUE5M8kcmhu2ywXhx%2FN%2FXZFkHu5BUWHuYIddv10%3D", "fileSize": 1188691, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274908029709", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "ecfa2fd6-8b8b-452d-a8d3-44010d85f708", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:42:54.0029069Z", "dateTaken": "2018-03-29T16:39:52Z", "lastModified": "2018-03-29T16:39:52Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "8955ba2d-bbff-445f-bbe9-3ca80b7f35260;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535470462896253-public/ecfa2fd6-8b8b-452d-a8d3-44010d85f708_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535470462896253-public/ecfa2fd6-8b8b-452d-a8d3-44010d85f708_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3002.xboxlive.com/xuid-2535470462896253-private/ecfa2fd6-8b8b-452d-a8d3-44010d85f708.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=U7veBa71RL8MnUbVNhpD6C3R8C5RSKdUxs95hA2S29w%3D", "fileSize": 926200, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535470462896253", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "ja-JP", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "06a27b04-66a5-4451-8c05-28d5b9a9b282", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:42:49.6703673Z", "dateTaken": "2018-03-29T16:41:28Z", "lastModified": "2018-03-29T16:41:28Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "4efc5822-f53b-4b15-b70c-e4dd8cf74fde0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535468497780656-public/06a27b04-66a5-4451-8c05-28d5b9a9b282_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535468497780656-public/06a27b04-66a5-4451-8c05-28d5b9a9b282_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2535468497780656-private/06a27b04-66a5-4451-8c05-28d5b9a9b282.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=JuixH1h4LBPoah7TQq4opLjvdbEjgX8lR9bZlkVt6vU%3D", "fileSize": 1146399, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535468497780656", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "80510671-3d32-4f80-a60e-98542208b5db", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:42:47.9832709Z", "dateTaken": "2018-03-29T16:41:49Z", "lastModified": "2018-03-29T16:41:49Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "beb6ae3e-62cd-4de1-b491-56702a89bf400;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535410526695664-public/80510671-3d32-4f80-a60e-98542208b5db_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535410526695664-public/80510671-3d32-4f80-a60e-98542208b5db_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535410526695664-private/80510671-3d32-4f80-a60e-98542208b5db.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=kbTqXkxHJFLX%2BDFduMpySJqG2AYR7n08BX2aw5gRwyk%3D", "fileSize": 1255356, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535410526695664", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "b6b35774-6fc9-4876-a896-cb853c07a773", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:42:46.2875712Z", "dateTaken": "2018-03-29T16:42:27Z", "lastModified": "2018-03-29T16:42:27Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "97f6835f-4251-4cb5-98cc-1f128db172560;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535408372397776-public/b6b35774-6fc9-4876-a896-cb853c07a773_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535408372397776-public/b6b35774-6fc9-4876-a896-cb853c07a773_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535408372397776-private/b6b35774-6fc9-4876-a896-cb853c07a773.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=EKPq5nIlyQyLa%2BGGyqVJA%2F9DT9y0wMyBRMT4A7Fo2Tg%3D", "fileSize": 2177266, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535408372397776", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "c4cb8ed3-33b5-4c9e-8511-f906c9c0544f", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:42:34.0649861Z", "dateTaken": "2018-03-29T16:42:15Z", "lastModified": "2018-03-29T16:42:15Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "87b3e552-14a0-4d11-ba08-c6a028e0386c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535458946783939-public/c4cb8ed3-33b5-4c9e-8511-f906c9c0544f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535458946783939-public/c4cb8ed3-33b5-4c9e-8511-f906c9c0544f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535458946783939-private/c4cb8ed3-33b5-4c9e-8511-f906c9c0544f.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=SNA3DKoEXzFhaFZDW2iFoBuH4UduCnDQ8vONLAJ9OGU%3D", "fileSize": 1637721, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535458946783939", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "145e3f48-5a8c-497c-85f3-269741c96da2", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:42:30.4274453Z", "dateTaken": "2018-03-29T16:28:14Z", "lastModified": "2018-03-29T16:28:14Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "efba11bf-9be5-4904-ae1f-6b5e03eca7250;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535423394542260-public/145e3f48-5a8c-497c-85f3-269741c96da2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535423394542260-public/145e3f48-5a8c-497c-85f3-269741c96da2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535423394542260-private/145e3f48-5a8c-497c-85f3-269741c96da2.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=SJO1L8xWmrf30lOf7xXUuRmx%2FMnymEPoBHomc6eoNcQ%3D", "fileSize": 10260168, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535423394542260", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "0cc568c6-2b13-45ba-a573-9fe13fda96f7", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:42:08.5833172Z", "dateTaken": "2018-03-29T16:41:53Z", "lastModified": "2018-03-29T16:41:53Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c55fa1dd-9380-4fec-a802-637a92f05a420;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535455535636018-public/0cc568c6-2b13-45ba-a573-9fe13fda96f7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535455535636018-public/0cc568c6-2b13-45ba-a573-9fe13fda96f7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535455535636018-private/0cc568c6-2b13-45ba-a573-9fe13fda96f7.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=c8fgRCkXvmjVqjN5bbhvMOxAuPvZSLLVa9nj9OA%2BGpM%3D", "fileSize": 771204, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535455535636018", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "62ec5733-d6fc-4cbd-8e1e-95587854f6b4", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:41:50.2811059Z", "dateTaken": "2018-03-29T16:39:43Z", "lastModified": "2018-03-29T16:39:43Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6f2615ab-ffbc-4315-800f-28a9afe207990;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535470462896253-public/62ec5733-d6fc-4cbd-8e1e-95587854f6b4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535470462896253-public/62ec5733-d6fc-4cbd-8e1e-95587854f6b4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535470462896253-private/62ec5733-d6fc-4cbd-8e1e-95587854f6b4.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=JyK0w%2B5DfenmHVNUml7zbrEzK%2FzXzsF6vjvayjp7giQ%3D", "fileSize": 897111, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535470462896253", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "ja-JP", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "47e1bca5-f838-493c-95ee-1d880fa5dfe7", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:41:45.8788679Z", "dateTaken": "2018-03-29T16:40:42Z", "lastModified": "2018-03-29T16:40:42Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "19290575-482c-487e-97de-4d19fb546b6a0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535466339854292-public/47e1bca5-f838-493c-95ee-1d880fa5dfe7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535466339854292-public/47e1bca5-f838-493c-95ee-1d880fa5dfe7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535466339854292-private/47e1bca5-f838-493c-95ee-1d880fa5dfe7.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=CT%2BGAFHmnpQeGYaJDun8dH9wr20iCfvF6dziwOmfeMM%3D", "fileSize": 848927, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535466339854292", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "0409699f-41e2-4f56-89af-a48d5c002dc0", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:41:43.8802246Z", "dateTaken": "2018-03-29T16:40:37Z", "lastModified": "2018-03-29T16:40:37Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "17a8a59c-9c7f-42ae-bd3e-f0e5820704640;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274908029709-public/0409699f-41e2-4f56-89af-a48d5c002dc0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274908029709-public/0409699f-41e2-4f56-89af-a48d5c002dc0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2533274908029709-private/0409699f-41e2-4f56-89af-a48d5c002dc0.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=M%2BuFE8N6dJA%2Bs0%2B8N6nv%2FdorCU4ZQDYjL4HH5D46kh4%3D", "fileSize": 884545, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274908029709", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "b6e941b4-4c65-4a63-8116-01962fb8b9f4", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:41:28.7026921Z", "dateTaken": "2018-03-29T16:41:03Z", "lastModified": "2018-03-29T16:41:03Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c1370011-8447-45ca-89bd-49930674302f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535438353142540-public/b6e941b4-4c65-4a63-8116-01962fb8b9f4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535438353142540-public/b6e941b4-4c65-4a63-8116-01962fb8b9f4_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535438353142540-private/b6e941b4-4c65-4a63-8116-01962fb8b9f4.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2vHBXr%2FzDJg4I6FQ%2BfpOlqmDt9oUawrCO2G4Uos4pzw%3D", "fileSize": 358923, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535438353142540", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "5eec902f-a1eb-44df-b635-1399d4c7dcfc", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:40:47.6339494Z", "dateTaken": "2018-03-29T16:39:36Z", "lastModified": "2018-03-29T16:39:36Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "9bbcf450-851f-4e99-976b-336f046d9ec30;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535470462896253-public/5eec902f-a1eb-44df-b635-1399d4c7dcfc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535470462896253-public/5eec902f-a1eb-44df-b635-1399d4c7dcfc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535470462896253-private/5eec902f-a1eb-44df-b635-1399d4c7dcfc.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lg4vMpNakHkgITMVYh2mHk6SvYMDTH9t6SZ6kpJz2eA%3D", "fileSize": 909513, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535470462896253", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "ja-JP", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "a54cb674-5c41-46c6-8748-f7d0c053819c", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:40:40.6785658Z", "dateTaken": "2018-03-29T16:26:59Z", "lastModified": "2018-03-29T16:26:59Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d8ac315a-82fc-4965-a2b9-bf21c373e2160;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274883840874-public/a54cb674-5c41-46c6-8748-f7d0c053819c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274883840874-public/a54cb674-5c41-46c6-8748-f7d0c053819c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2533274883840874-private/a54cb674-5c41-46c6-8748-f7d0c053819c.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2Bpqj7G4Xr5SdD%2Bln%2FxiijOgtrOoCNAlW%2BiSy9W3cwow%3D", "fileSize": 3069852, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274883840874", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "62603b99-1b31-47b5-97b8-f31ecb46d15d", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:40:32.8132174Z", "dateTaken": "2018-03-29T16:39:38Z", "lastModified": "2018-03-29T16:39:38Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "185cc915-f7cf-4037-a7de-a38ec6a854c70;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535435187345770-public/62603b99-1b31-47b5-97b8-f31ecb46d15d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535435187345770-public/62603b99-1b31-47b5-97b8-f31ecb46d15d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535435187345770-private/62603b99-1b31-47b5-97b8-f31ecb46d15d.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=fAm3rn1xci06NCq%2B%2FKjUtXpkJjBGmYsdT2DxdKBT6VY%3D", "fileSize": 776025, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535435187345770", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "e13c3c7e-1fc8-4837-bb59-e052fc640a1c", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:40:14.843756Z", "dateTaken": "2018-03-29T05:24:37Z", "lastModified": "2018-03-29T05:24:37Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "634f213d-4f9a-4109-8911-add707b082390;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2533274978045416-public/e13c3c7e-1fc8-4837-bb59-e052fc640a1c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2533274978045416-public/e13c3c7e-1fc8-4837-bb59-e052fc640a1c_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3002.xboxlive.com/xuid-2533274978045416-private/e13c3c7e-1fc8-4837-bb59-e052fc640a1c.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=p%2F57lA92ACwbzP2QoZqqnPRXuw1wL298LOi75snbxck%3D", "fileSize": 1756328, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274978045416", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "e0ff1af4-101c-491c-98ce-c47e8baf036d", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:40:04.8967838Z", "dateTaken": "2018-03-29T16:39:41Z", "lastModified": "2018-03-29T16:39:41Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "8a50f3d4-08c6-4e2e-9947-4689d4cce81b0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535461083476677-public/e0ff1af4-101c-491c-98ce-c47e8baf036d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535461083476677-public/e0ff1af4-101c-491c-98ce-c47e8baf036d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535461083476677-private/e0ff1af4-101c-491c-98ce-c47e8baf036d.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=9LQ6dCO4lYy5hZS9M88xZ96T6dY2SCI31XXaamj%2F2eg%3D", "fileSize": 1482285, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535461083476677", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "08d95cb6-f778-4efd-aefd-6313f6c84465", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:39:56.0700354Z", "dateTaken": "2018-03-29T16:38:07Z", "lastModified": "2018-03-29T16:38:07Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "baf8d7f5-ef68-44df-9e54-dd12543524d30;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535418810587711-public/08d95cb6-f778-4efd-aefd-6313f6c84465_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535418810587711-public/08d95cb6-f778-4efd-aefd-6313f6c84465_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535418810587711-private/08d95cb6-f778-4efd-aefd-6313f6c84465.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=slAKX2ZYCf1B%2BRFV771Jn7XBRTcDs9%2Bd9Rj5eDqXXzE%3D", "fileSize": 1685594, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535418810587711", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "a672bfaa-02d7-4d03-983d-265994070189", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:38:45.6825746Z", "dateTaken": "2018-03-29T16:37:41Z", "lastModified": "2018-03-29T16:37:41Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "5f24ce2f-26a4-479f-bba6-519b477a7f040;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535411008561492-public/a672bfaa-02d7-4d03-983d-265994070189_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535411008561492-public/a672bfaa-02d7-4d03-983d-265994070189_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535411008561492-private/a672bfaa-02d7-4d03-983d-265994070189.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2BJhfIRBRfKSDF3HuG%2BiRQjbwmS3l8coR%2Fg2ZbVCYMVY%3D", "fileSize": 920546, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535411008561492", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "b67c6ffd-6e08-4031-86d1-e62ac8f84ec3", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:38:41.5456803Z", "dateTaken": "2018-03-29T16:36:40Z", "lastModified": "2018-03-29T16:36:40Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "3a87c06b-023e-4752-b51d-5e6397f01f050;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535445314990635-public/b67c6ffd-6e08-4031-86d1-e62ac8f84ec3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535445314990635-public/b67c6ffd-6e08-4031-86d1-e62ac8f84ec3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535445314990635-private/b67c6ffd-6e08-4031-86d1-e62ac8f84ec3.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=cHe4J7tK5drppw4SElWyRFalJWyjh1zzqYvvzrGWBMA%3D", "fileSize": 1971280, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535445314990635", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-CO", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "1e73f4fb-4a01-4b8d-9f55-b803e9d98c1b", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:38:39.4253851Z", "dateTaken": "2018-03-29T16:34:29Z", "lastModified": "2018-03-29T16:34:29Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "fe0bc54a-f109-4391-8fc5-1c45b3f9ec900;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535449514653600-public/1e73f4fb-4a01-4b8d-9f55-b803e9d98c1b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535449514653600-public/1e73f4fb-4a01-4b8d-9f55-b803e9d98c1b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535449514653600-private/1e73f4fb-4a01-4b8d-9f55-b803e9d98c1b.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=7o%2Buz2FH%2FvQ8x2QDZaQMvxt7mxCrxrU1%2Fnj6z%2B7v78A%3D", "fileSize": 2156962, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535449514653600", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "157b65c3-1554-4e28-895f-831acb7c93e7", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:38:14.3722344Z", "dateTaken": "2018-03-29T16:38:07Z", "lastModified": "2018-03-29T16:38:07Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "940db702-cab0-440c-9832-e1e8f0a7d78e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535465551004021-public/157b65c3-1554-4e28-895f-831acb7c93e7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535465551004021-public/157b65c3-1554-4e28-895f-831acb7c93e7_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3002.xboxlive.com/xuid-2535465551004021-private/157b65c3-1554-4e28-895f-831acb7c93e7.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=LR0EeDFC1Xh%2FVM%2B5K1SQbJbOjYzpV6nBOJdJY05dtA0%3D", "fileSize": 38801, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535465551004021", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "13d78b86-28af-467b-bcff-14c23160cb05", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:38:07.292146Z", "dateTaken": "2018-03-29T16:37:34Z", "lastModified": "2018-03-29T16:37:34Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "2990afad-fc4f-4cb0-89e5-fbbc175a9e4c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533275050734479-public/13d78b86-28af-467b-bcff-14c23160cb05_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533275050734479-public/13d78b86-28af-467b-bcff-14c23160cb05_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2533275050734479-private/13d78b86-28af-467b-bcff-14c23160cb05.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=us%2BktVRxTZaXQRHmhP01pRdZqJfbmSbXNV6cJMEGNy8%3D", "fileSize": 856308, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533275050734479", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-AR", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "fc260241-1b7a-471a-8ed2-cd563f43fb19", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:38:06.8263886Z", "dateTaken": "2018-03-29T16:37:40Z", "lastModified": "2018-03-29T16:37:40Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "3ffbb511-d410-4c80-9256-322a489c077c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535460770219038-public/fc260241-1b7a-471a-8ed2-cd563f43fb19_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535460770219038-public/fc260241-1b7a-471a-8ed2-cd563f43fb19_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535460770219038-private/fc260241-1b7a-471a-8ed2-cd563f43fb19.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=EgoW1lI0XeykXGUlcD6bjLbYujfAlbzoGpcH62BEcNw%3D", "fileSize": 1784442, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535460770219038", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-ZA", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "dbe51d06-98dd-496a-8cc0-82223fff3cd0", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:38:01.3381804Z", "dateTaken": "2018-03-29T16:33:42Z", "lastModified": "2018-03-29T16:33:42Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "1dca2962-d88e-4e57-bba3-3c62fae4eb720;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535436410715739-public/dbe51d06-98dd-496a-8cc0-82223fff3cd0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535436410715739-public/dbe51d06-98dd-496a-8cc0-82223fff3cd0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535436410715739-private/dbe51d06-98dd-496a-8cc0-82223fff3cd0.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=wRFH2IA%2FuntWQGiAnzpjDheL6ErwCVjv1aKvRPa5B9E%3D", "fileSize": 1606334, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535436410715739", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "4eabc749-4fec-4e76-a206-4da7137bb289", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:37:42.4715307Z", "dateTaken": "2018-03-29T16:26:46Z", "lastModified": "2018-03-29T16:26:46Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "25f9f848-b239-49f7-b878-741004a5ed3a0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274883840874-public/4eabc749-4fec-4e76-a206-4da7137bb289_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274883840874-public/4eabc749-4fec-4e76-a206-4da7137bb289_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2533274883840874-private/4eabc749-4fec-4e76-a206-4da7137bb289.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=G7kUMlE%2FsTCkC5RCp8KZTSLZQg0bLS1WVy8SZWIkRZM%3D", "fileSize": 3385622, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274883840874", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "11d343bf-c2de-4562-ac24-967b040af278", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:37:18.3581427Z", "dateTaken": "2018-03-29T16:21:21Z", "lastModified": "2018-03-29T16:21:21Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "266adb13-d50b-4e21-ba03-aa058b6eb3210;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535425889462548-public/11d343bf-c2de-4562-ac24-967b040af278_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535425889462548-public/11d343bf-c2de-4562-ac24-967b040af278_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535425889462548-private/11d343bf-c2de-4562-ac24-967b040af278.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=a28i59uPB3eUx8pNJCIxTRZjftipX5uR1c1B7X4BlGs%3D", "fileSize": 7682398, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535425889462548", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "fr-FR", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "41b23be0-68a5-4f35-b791-30c7d705b042", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:37:15.5837028Z", "dateTaken": "2018-03-29T16:36:53Z", "lastModified": "2018-03-29T16:36:53Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "390bcc6f-1586-409d-9097-3f0943fd67930;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535414297288979-public/41b23be0-68a5-4f35-b791-30c7d705b042_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535414297288979-public/41b23be0-68a5-4f35-b791-30c7d705b042_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535414297288979-private/41b23be0-68a5-4f35-b791-30c7d705b042.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=l%2FtYf6TOXPNH%2BztkD2V22j9xpFJ1pqT1u9YJKmXh3DM%3D", "fileSize": 3050945, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535414297288979", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "6c705fd8-41c4-47d3-a319-783abaf430dd", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:36:54.9349556Z", "dateTaken": "2018-03-29T16:33:49Z", "lastModified": "2018-03-29T16:33:49Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "7d12224c-4321-43e9-aec6-1092b0d5bf8a0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535409404174743-public/6c705fd8-41c4-47d3-a319-783abaf430dd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535409404174743-public/6c705fd8-41c4-47d3-a319-783abaf430dd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535409404174743-private/6c705fd8-41c4-47d3-a319-783abaf430dd.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=7ccQynUmrkHJenGJfj36pLfkOfHq3uVKrDj0scNOmdQ%3D", "fileSize": 3095911, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535409404174743", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-ES", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "68f6d1e3-c56f-4ca1-b3cf-558485e15ca0", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:36:41.8466298Z", "dateTaken": "2018-03-29T16:35:58Z", "lastModified": "2018-03-29T16:35:58Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d4b8c986-1af8-48f2-bc56-e35366314e820;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2533274994194895-public/68f6d1e3-c56f-4ca1-b3cf-558485e15ca0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2533274994194895-public/68f6d1e3-c56f-4ca1-b3cf-558485e15ca0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2533274994194895-private/68f6d1e3-c56f-4ca1-b3cf-558485e15ca0.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=6gzQD8au8qB88KDul0bZE5WVOLWXdLKRYosyaSAahJg%3D", "fileSize": 1192745, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274994194895", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "77e1d90c-b50a-4d7c-adc6-00c73aacf761", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:36:36.5592653Z", "dateTaken": "2018-03-29T16:34:30Z", "lastModified": "2018-03-29T16:34:30Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "22218e4f-c692-43d4-9a64-e2d0d067edbc0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535440465393783-public/77e1d90c-b50a-4d7c-adc6-00c73aacf761_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535440465393783-public/77e1d90c-b50a-4d7c-adc6-00c73aacf761_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535440465393783-private/77e1d90c-b50a-4d7c-adc6-00c73aacf761.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hld%2F9Ir4MBa9AKe%2FZ2z0UQupOiwKmVAGXTzW8t8G8eA%3D", "fileSize": 2189142, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535440465393783", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "fr-FR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "abb000bf-4815-4e5a-95f5-2feb23c50ae6", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:36:28.6097002Z", "dateTaken": "2018-03-29T16:34:23Z", "lastModified": "2018-03-29T16:34:23Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "94741eca-2316-4339-a19c-83abad7a1c850;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535449514653600-public/abb000bf-4815-4e5a-95f5-2feb23c50ae6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535449514653600-public/abb000bf-4815-4e5a-95f5-2feb23c50ae6_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2535449514653600-private/abb000bf-4815-4e5a-95f5-2feb23c50ae6.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=fuN484PStMnJkQhaE%2Bgr%2FhI%2F9W3J4HmAsJ0oRAdE8f0%3D", "fileSize": 2137653, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535449514653600", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "e47919f4-9d78-4e02-989f-283cdc4706b8", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:36:21.2914912Z", "dateTaken": "2018-03-29T16:34:19Z", "lastModified": "2018-03-29T16:34:19Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "47d27aa8-452c-4117-a919-68507cc8727c0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535430636119696-public/e47919f4-9d78-4e02-989f-283cdc4706b8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535430636119696-public/e47919f4-9d78-4e02-989f-283cdc4706b8_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535430636119696-private/e47919f4-9d78-4e02-989f-283cdc4706b8.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=5eY1K%2FgHb3Ioy%2B2B3uO4pMtpQKzs3PxPxz2knbrEozs%3D", "fileSize": 2072443, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535430636119696", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "fr-FR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "ec1bd610-4f64-4f6a-966d-d38cf88e8700", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:36:19.724452Z", "dateTaken": "2018-03-29T16:36:06Z", "lastModified": "2018-03-29T16:36:06Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "bfab3b5c-e939-49d1-9e88-34bf86130ae70;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535459448896515-public/ec1bd610-4f64-4f6a-966d-d38cf88e8700_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3002.xboxlive.com/xuid-2535459448896515-public/ec1bd610-4f64-4f6a-966d-d38cf88e8700_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3002.xboxlive.com/xuid-2535459448896515-private/ec1bd610-4f64-4f6a-966d-d38cf88e8700.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Wnq%2FMvtXJRodZOKqUoLt2%2FGCe2nj3O6mbfZd%2B%2BntaX8%3D", "fileSize": 2033529, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535459448896515", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "52b0f087-d367-461b-92c2-479d9fa5ee04", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:36:05.603079Z", "dateTaken": "2018-03-29T16:34:10Z", "lastModified": "2018-03-29T16:34:10Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "9261a70d-9a54-4b25-aacf-57e42311690b0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535438698198833-public/52b0f087-d367-461b-92c2-479d9fa5ee04_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535438698198833-public/52b0f087-d367-461b-92c2-479d9fa5ee04_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535438698198833-private/52b0f087-d367-461b-92c2-479d9fa5ee04.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Wq6LPujYfr3eVYHV7vcrAxd2hka3bTnVBBHrvR9%2BP0Q%3D", "fileSize": 2182950, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535438698198833", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "a6ec4609-8eb6-43a9-a752-992ca5f56dad", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:36:01.9612929Z", "dateTaken": "2018-03-28T23:36:55Z", "lastModified": "2018-03-28T23:36:55Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "86c3a9f6-577f-469e-9d86-398e9eb9b0b10;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535421950612508-public/a6ec4609-8eb6-43a9-a752-992ca5f56dad_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535421950612508-public/a6ec4609-8eb6-43a9-a752-992ca5f56dad_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2535421950612508-private/a6ec4609-8eb6-43a9-a752-992ca5f56dad.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=6kYe%2Fc7DVCAiMa44UYbg83WSTHhqNmgf0uGdqVCP%2F1Y%3D", "fileSize": 4944356, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535421950612508", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-ES", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "e4797d77-3c99-4952-929e-d381dc533175", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:35:55.8090332Z", "dateTaken": "2018-03-29T16:35:43Z", "lastModified": "2018-03-29T16:35:43Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c0c76787-6aa9-497b-bb0c-8628541467390;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274910629361-public/e4797d77-3c99-4952-929e-d381dc533175_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274910629361-public/e4797d77-3c99-4952-929e-d381dc533175_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2533274910629361-private/e4797d77-3c99-4952-929e-d381dc533175.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TML2xSdYHdY%2FKUuEj7uNTnAD7Hxxxno6IfHuAge8BUY%3D", "fileSize": 7961, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533274910629361", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "c1403d99-2874-4142-90c8-ff43412edada", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:35:34.4997067Z", "dateTaken": "2018-03-29T16:33:03Z", "lastModified": "2018-03-29T16:33:03Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a5e68a8a-9d0f-4ea9-8cec-6fcf83da68080;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535422439825873-public/c1403d99-2874-4142-90c8-ff43412edada_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535422439825873-public/c1403d99-2874-4142-90c8-ff43412edada_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535422439825873-private/c1403d99-2874-4142-90c8-ff43412edada.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=HNG5B6YXJ9RaFKR2f6nR51sPnoD35B9yJELNFnjCgGI%3D", "fileSize": 2638765, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535422439825873", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "3fe36ac7-1829-45e6-8eac-57bca1f14b08", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:35:32.9364742Z", "dateTaken": "2018-03-29T16:33:43Z", "lastModified": "2018-03-29T16:33:43Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "df166fa7-6be3-4881-a4c2-67840b0fcaa50;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535421318245084-public/3fe36ac7-1829-45e6-8eac-57bca1f14b08_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535421318245084-public/3fe36ac7-1829-45e6-8eac-57bca1f14b08_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535421318245084-private/3fe36ac7-1829-45e6-8eac-57bca1f14b08.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=yMXMVr2RzLA%2BVOimiaF2CwkKT3rIMKNnRNpSZkrq6YU%3D", "fileSize": 1812422, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535421318245084", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "5260027a-1905-4605-beae-2e5d24865cf2", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:35:07.6051255Z", "dateTaken": "2018-03-29T16:34:07Z", "lastModified": "2018-03-29T16:34:07Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "6c420b68-162e-4776-93a5-c432b5ce1b0e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533275003846454-public/5260027a-1905-4605-beae-2e5d24865cf2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533275003846454-public/5260027a-1905-4605-beae-2e5d24865cf2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2533275003846454-private/5260027a-1905-4605-beae-2e5d24865cf2.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=3K2vaeO4OpFLCJe5FaHzihjavxhvMtwic0PcW9VXxyE%3D", "fileSize": 1125393, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2533275003846454", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "a376a211-9862-443b-aad3-a92b52825e95", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:34:40.0019331Z", "dateTaken": "2018-03-29T16:28:22Z", "lastModified": "2018-03-29T16:28:22Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "e2911114-c6cb-48c1-91e5-356c4f2e1f490;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535435098645979-public/a376a211-9862-443b-aad3-a92b52825e95_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535435098645979-public/a376a211-9862-443b-aad3-a92b52825e95_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535435098645979-private/a376a211-9862-443b-aad3-a92b52825e95.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=hF3fOars8fjNOzj1bTXg2rylc4Q5d62S1edC8khE5uk%3D", "fileSize": 3283680, "uriType": "Download", "expiration": "2018-03-29T17:46:56.5653857Z" } ], "xuid": "2535435098645979", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "eee9efc2-9fbc-4f67-94ac-17a9032647bc", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:34:34.9182483Z", "dateTaken": "2018-03-29T16:26:36Z", "lastModified": "2018-03-29T16:26:36Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "8af8ecec-caa1-4118-bf21-d7f721d959070;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274883840874-public/eee9efc2-9fbc-4f67-94ac-17a9032647bc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274883840874-public/eee9efc2-9fbc-4f67-94ac-17a9032647bc_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2533274883840874-private/eee9efc2-9fbc-4f67-94ac-17a9032647bc.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=5beFVMiPGeHCppDEbJxGDOLigVh4Vluy%2BLuid3yMFoo%3D", "fileSize": 2027864, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274883840874", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "67fb6910-631e-42d8-b3eb-2265e88f3437", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:34:22.3806066Z", "dateTaken": "2018-03-29T16:31:11Z", "lastModified": "2018-03-29T16:31:11Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "85371f71-8f10-44a6-90b6-5638361de34f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274839163644-public/67fb6910-631e-42d8-b3eb-2265e88f3437_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2533274839163644-public/67fb6910-631e-42d8-b3eb-2265e88f3437_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2533274839163644-private/67fb6910-631e-42d8-b3eb-2265e88f3437.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=iMMJ2jwQu3EazomFL6ViEp6oApcZB5llfNk4e9knP2k%3D", "fileSize": 1089448, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274839163644", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "28af079c-b773-4b3b-8b07-c9fa3aa0113b", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:34:05.4324925Z", "dateTaken": "2018-03-29T16:33:56Z", "lastModified": "2018-03-29T16:33:56Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d7f098a2-5fd7-4423-b8cb-c9f23fd25f420;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2533274808179963-public/28af079c-b773-4b3b-8b07-c9fa3aa0113b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2533274808179963-public/28af079c-b773-4b3b-8b07-c9fa3aa0113b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2533274808179963-private/28af079c-b773-4b3b-8b07-c9fa3aa0113b.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=e9gqvzF8izqczfKcqCJK5%2BL4QeAfS0xXq1an9B3ulHU%3D", "fileSize": 2581618, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274808179963", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "11ceca38-c671-4d7e-9e1a-1cf335d9e50d", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:34:04.6629429Z", "dateTaken": "2018-03-29T16:30:53Z", "lastModified": "2018-03-29T16:30:53Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "9516a1fa-fb9f-49c7-8fa4-6d4b444af2b50;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274927234584-public/11ceca38-c671-4d7e-9e1a-1cf335d9e50d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274927234584-public/11ceca38-c671-4d7e-9e1a-1cf335d9e50d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2533274927234584-private/11ceca38-c671-4d7e-9e1a-1cf335d9e50d.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=pxqQ7RlLTtjHvmrPDeT7KQFMRE3Iuu9KeDazlBI5A1g%3D", "fileSize": 2916698, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274927234584", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "d6a2c0a1-2429-4d8f-afec-b29e58c8484e", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:34:03.047422Z", "dateTaken": "2018-03-29T16:33:41Z", "lastModified": "2018-03-29T16:33:41Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "f093d67a-ea98-4ffd-b95b-51f0ef4470cb0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274816499607-public/d6a2c0a1-2429-4d8f-afec-b29e58c8484e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274816499607-public/d6a2c0a1-2429-4d8f-afec-b29e58c8484e_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2533274816499607-private/d6a2c0a1-2429-4d8f-afec-b29e58c8484e.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=rTaUeSzMz8%2Fd4KK%2BPiXwIammVH2R8jmQ37U%2BMmIvPK4%3D", "fileSize": 9848, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274816499607", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "9628bac8-3c3e-4dd0-aa66-b57dd903b508", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:33:57.1468451Z", "dateTaken": "2018-03-29T16:32:12Z", "lastModified": "2018-03-29T16:32:12Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c3caf388-eddf-4b15-9d1e-589ada0a0d2e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535429916537687-public/9628bac8-3c3e-4dd0-aa66-b57dd903b508_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535429916537687-public/9628bac8-3c3e-4dd0-aa66-b57dd903b508_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535429916537687-private/9628bac8-3c3e-4dd0-aa66-b57dd903b508.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=2WmeFnBkxiM4AcFsZTl5wfI%2FWR7h4sJhphYnntc7dzg%3D", "fileSize": 1662369, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535429916537687", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "de-DE", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "f2d4e9ac-0f72-4853-a467-e4dcc094791a", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:33:32.1034817Z", "dateTaken": "2018-03-25T13:28:01Z", "lastModified": "2018-03-25T13:28:01Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "817c3ed7-f754-4371-a276-75dcb0bf02b60;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535436169011959-public/f2d4e9ac-0f72-4853-a467-e4dcc094791a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535436169011959-public/f2d4e9ac-0f72-4853-a467-e4dcc094791a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535436169011959-private/f2d4e9ac-0f72-4853-a467-e4dcc094791a.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=pzZOk1fVEx41t6SYwCiysKmfmhx1id51vXO7smEWEeo%3D", "fileSize": 3036756, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535436169011959", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "4301dbc4-06c0-4d4c-a4ca-3f59dfbf0222", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:33:30.7469857Z", "dateTaken": "2018-03-29T16:32:26Z", "lastModified": "2018-03-29T16:32:26Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a97f382d-0fc6-4054-b249-d4aa68f171650;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535470962519064-public/4301dbc4-06c0-4d4c-a4ca-3f59dfbf0222_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535470962519064-public/4301dbc4-06c0-4d4c-a4ca-3f59dfbf0222_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535470962519064-private/4301dbc4-06c0-4d4c-a4ca-3f59dfbf0222.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=I6fLt59t7yP%2F357SXIGpH03RPuAThZQh4DH6X5Q9B2Q%3D", "fileSize": 1224404, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535470962519064", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "e0c2bdcf-d102-4ad9-9f5a-007da0c05503", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:33:27.2873289Z", "dateTaken": "2018-03-29T16:27:56Z", "lastModified": "2018-03-29T16:27:56Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "f6e9247a-c5a6-45a7-8390-3ddf1edb18300;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535468819705864-public/e0c2bdcf-d102-4ad9-9f5a-007da0c05503_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535468819705864-public/e0c2bdcf-d102-4ad9-9f5a-007da0c05503_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535468819705864-private/e0c2bdcf-d102-4ad9-9f5a-007da0c05503.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=AWd%2FHmVp9%2F8sHUY6LMFkdoySOQuqffSAiVknptL3uIw%3D", "fileSize": 3142395, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535468819705864", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "708b33c3-135f-4f08-a817-fffde1109bbf", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:33:12.4396593Z", "dateTaken": "2018-03-29T16:32:56Z", "lastModified": "2018-03-29T16:32:56Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d1c54ff0-e76d-4e03-a10a-669aeb7ea5b50;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274920127066-public/708b33c3-135f-4f08-a817-fffde1109bbf_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274920127066-public/708b33c3-135f-4f08-a817-fffde1109bbf_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2533274920127066-private/708b33c3-135f-4f08-a817-fffde1109bbf.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=8ZzOyfizox%2F0%2BN2Or%2FxbOtrZzLsaQOCJN1yaKz4cQ5I%3D", "fileSize": 25653, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274920127066", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "9e0fb86d-14e1-49cc-bad4-c81e509f1f56", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:33:10.4086233Z", "dateTaken": "2018-03-29T16:31:55Z", "lastModified": "2018-03-29T16:31:55Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "df5dea02-4a23-4d6b-8a41-675b87e4e7620;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535429529090500-public/9e0fb86d-14e1-49cc-bad4-c81e509f1f56_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535429529090500-public/9e0fb86d-14e1-49cc-bad4-c81e509f1f56_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535429529090500-private/9e0fb86d-14e1-49cc-bad4-c81e509f1f56.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=XiIkTk54jcJuCAFwuu7AArnt0H5qnOMwkBDo9CHWgYM%3D", "fileSize": 1252094, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535429529090500", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "1255476c-0c41-4353-b6cb-e6f68c0e19dd", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:33:05.8383255Z", "dateTaken": "2018-03-29T16:29:17Z", "lastModified": "2018-03-29T16:29:17Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "b6412e01-b01e-4c8d-b064-04d7ea8cd1470;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535408219796855-public/1255476c-0c41-4353-b6cb-e6f68c0e19dd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535408219796855-public/1255476c-0c41-4353-b6cb-e6f68c0e19dd_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535408219796855-private/1255476c-0c41-4353-b6cb-e6f68c0e19dd.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=qhBWz%2BihKY6WWBM8DXIx%2FEttm9XVdacEgNvMr%2BCcHoY%3D", "fileSize": 1885092, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535408219796855", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "73a380d9-8a25-4cf1-97cd-33fa34efac06", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:32:44.2369504Z", "dateTaken": "2018-03-29T16:30:44Z", "lastModified": "2018-03-29T16:30:44Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a4156a1c-8a8f-4e9b-b7d8-6cd3b711ef010;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274962575246-public/73a380d9-8a25-4cf1-97cd-33fa34efac06_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274962575246-public/73a380d9-8a25-4cf1-97cd-33fa34efac06_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2533274962575246-private/73a380d9-8a25-4cf1-97cd-33fa34efac06.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=aWaSsJv%2F4l%2FKSRIA25cVwHkvFfcfvXy2bBTTy1sVAGA%3D", "fileSize": 1902147, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274962575246", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "ee9b5393-b24a-4f2e-acde-3af3c71b2ab0", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:32:39.4543161Z", "dateTaken": "2018-03-29T16:26:19Z", "lastModified": "2018-03-29T16:26:19Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "89e6ab65-cbfd-402e-900e-1fef2030105e0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274883840874-public/ee9b5393-b24a-4f2e-acde-3af3c71b2ab0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2533274883840874-public/ee9b5393-b24a-4f2e-acde-3af3c71b2ab0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2533274883840874-private/ee9b5393-b24a-4f2e-acde-3af3c71b2ab0.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=VAfCalWE%2FiEIEAdw4SRuY%2FbyEQOFfcTKANwiM%2FfsiHs%3D", "fileSize": 2073846, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274883840874", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "9db1795e-1ee1-4dfe-acca-23e59e487cf0", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:32:22.3948713Z", "dateTaken": "2018-03-29T16:30:22Z", "lastModified": "2018-03-29T16:30:22Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "3d56cba0-b3ae-4255-ba89-a6473506af930;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2533274944404303-public/9db1795e-1ee1-4dfe-acca-23e59e487cf0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2533274944404303-public/9db1795e-1ee1-4dfe-acca-23e59e487cf0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2533274944404303-private/9db1795e-1ee1-4dfe-acca-23e59e487cf0.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=%2FOM8GdXSdEKLZ%2FAb38uf2TTXtco79W7DpdBBRTpiuo8%3D", "fileSize": 2095764, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274944404303", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "4c58658d-a264-4913-bb7d-0937326756d0", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:32:14.2715059Z", "dateTaken": "2018-03-29T16:30:34Z", "lastModified": "2018-03-29T16:30:34Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "a5907001-71bf-46fb-8da9-f3c7797a005f0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274811696714-public/4c58658d-a264-4913-bb7d-0937326756d0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2533274811696714-public/4c58658d-a264-4913-bb7d-0937326756d0_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2533274811696714-private/4c58658d-a264-4913-bb7d-0937326756d0.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=vNPXzq4RbDR%2B9006tOgWBIJIpwTkZskZxANUDGjIhxI%3D", "fileSize": 1685817, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274811696714", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "e66d2cc1-c978-4e2a-a18c-f22de83b4225", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:31:55.0231469Z", "dateTaken": "2018-03-29T16:29:45Z", "lastModified": "2018-03-29T16:29:45Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "2d5e6592-36d6-4ddb-9aad-ea09dc1aecae0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535419053724097-public/e66d2cc1-c978-4e2a-a18c-f22de83b4225_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535419053724097-public/e66d2cc1-c978-4e2a-a18c-f22de83b4225_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535419053724097-private/e66d2cc1-c978-4e2a-a18c-f22de83b4225.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=1iNGF2bMtDWU1XJJKe%2Bq5IzgvUMirufkpOpKIxav2uU%3D", "fileSize": 2255803, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535419053724097", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-AR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "5d56c8ac-624a-4ce3-b53b-b59026adc869", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:31:44.0355251Z", "dateTaken": "2018-03-29T16:30:41Z", "lastModified": "2018-03-29T16:30:41Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d8436b52-91a3-42ec-ab7c-23eef57d33c00;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535466603534978-public/5d56c8ac-624a-4ce3-b53b-b59026adc869_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535466603534978-public/5d56c8ac-624a-4ce3-b53b-b59026adc869_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535466603534978-private/5d56c8ac-624a-4ce3-b53b-b59026adc869.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=dTw6XKzhIzlL7BiHodGz1xaCPYVYvurHwZHWGur3pzk%3D", "fileSize": 969626, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535466603534978", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "1e982bdd-ba94-4996-a2b3-122fd5b203fe", "resolutionHeight": 2160, "resolutionWidth": 3840, "state": "Published", "datePublished": "2018-03-29T16:31:39.6349025Z", "dateTaken": "2018-03-29T16:20:56Z", "lastModified": "2018-03-29T16:20:56Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "487608c6-bf2e-4382-a468-b9e5f97774a00;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535425889462548-public/1e982bdd-ba94-4996-a2b3-122fd5b203fe_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535425889462548-public/1e982bdd-ba94-4996-a2b3-122fd5b203fe_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535425889462548-private/1e982bdd-ba94-4996-a2b3-122fd5b203fe.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=gAmGsQDm5I6LSIEA8kzTzd1wZYtpAHF%2BYRbamiQlinU%3D", "fileSize": 4329017, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535425889462548", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "fr-FR", "screenshotContentAttributes": "None", "deviceType": "Scorpio" }, { "screenshotId": "c0a45c22-cdd5-43df-ae57-9a051e5fd169", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:31:37.2718905Z", "dateTaken": "2018-03-29T04:00:11Z", "lastModified": "2018-03-29T04:00:11Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "58e22234-ff19-48ef-ab39-f809a0903e160;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535464603249049-public/c0a45c22-cdd5-43df-ae57-9a051e5fd169_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5002.xboxlive.com/xuid-2535464603249049-public/c0a45c22-cdd5-43df-ae57-9a051e5fd169_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5002.xboxlive.com/xuid-2535464603249049-private/c0a45c22-cdd5-43df-ae57-9a051e5fd169.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Xidht2FO8TugH3bUIFtlHzfNu9%2ByAvmMHCc3pczvy%2F0%3D", "fileSize": 2532409, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535464603249049", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "0ff3f6a6-e840-4de7-9fe8-446ba1caf9f9", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:31:29.2368208Z", "dateTaken": "2018-03-29T16:28:05Z", "lastModified": "2018-03-29T16:28:05Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "92555b9a-0535-46c0-affc-0782cfc5494b0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535435098645979-public/0ff3f6a6-e840-4de7-9fe8-446ba1caf9f9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535435098645979-public/0ff3f6a6-e840-4de7-9fe8-446ba1caf9f9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535435098645979-private/0ff3f6a6-e840-4de7-9fe8-446ba1caf9f9.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=LWDI97aQT4w2VVopDAWwWERkaIEUgOqJU%2BhSbHrgusQ%3D", "fileSize": 3321477, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535435098645979", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "6bfc58e5-9754-4008-a340-cae96afa8bf9", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:31:03.7964118Z", "dateTaken": "2018-03-29T16:28:58Z", "lastModified": "2018-03-29T16:28:58Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c5e2ed71-4370-431a-8341-296215be78a70;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535469797982132-public/6bfc58e5-9754-4008-a340-cae96afa8bf9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535469797982132-public/6bfc58e5-9754-4008-a340-cae96afa8bf9_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535469797982132-private/6bfc58e5-9754-4008-a340-cae96afa8bf9.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=vT2M7Q7ZcjHJsRO3QsSxAhp%2BS%2BLmNbsYthjzag3pTrM%3D", "fileSize": 2184041, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535469797982132", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "616d42ff-03cf-4034-b7ce-851fe4568c90", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:31:00.7151226Z", "dateTaken": "2018-03-29T16:29:01Z", "lastModified": "2018-03-29T16:29:01Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d8a6c765-ee86-4e3f-a77d-199ff78ca3d70;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274929543164-public/616d42ff-03cf-4034-b7ce-851fe4568c90_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2533274929543164-public/616d42ff-03cf-4034-b7ce-851fe4568c90_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2533274929543164-private/616d42ff-03cf-4034-b7ce-851fe4568c90.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Rbc%2FqpMCDXcuxkAAylnAE0V%2FC2tdTn7WPKVVzP7cQ5c%3D", "fileSize": 1983456, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274929543164", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "c12cc746-fd72-43ac-9e1b-02faea9163d3", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:31:00.4052778Z", "dateTaken": "2018-03-29T16:29:30Z", "lastModified": "2018-03-29T16:29:30Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "4298b097-7ce8-40d0-9944-e31641adc3240;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535417997591356-public/c12cc746-fd72-43ac-9e1b-02faea9163d3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t3001.xboxlive.com/xuid-2535417997591356-public/c12cc746-fd72-43ac-9e1b-02faea9163d3_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d3001.xboxlive.com/xuid-2535417997591356-private/c12cc746-fd72-43ac-9e1b-02faea9163d3.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=SrEgVLH7A%2BRAgaUTM4DthbutKU%2BXv1Waq3xlKFAo3S8%3D", "fileSize": 1336500, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535417997591356", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "e6ccf561-7a43-47ae-bb9a-3ef4416cc58d", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:30:54.1800702Z", "dateTaken": "2018-03-29T16:30:07Z", "lastModified": "2018-03-29T16:30:07Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "b228282a-9585-4e8f-8e8d-1ada3860d8840;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535438253423162-public/e6ccf561-7a43-47ae-bb9a-3ef4416cc58d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535438253423162-public/e6ccf561-7a43-47ae-bb9a-3ef4416cc58d_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535438253423162-private/e6ccf561-7a43-47ae-bb9a-3ef4416cc58d.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=lrlM4v2A8JDsWAzB1%2F2uehVpGSQafQsAsGh9VEfjI3Y%3D", "fileSize": 2167607, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535438253423162", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "2f5bdc98-b1fa-4fe8-910c-bab6a233552f", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:30:44.0474437Z", "dateTaken": "2018-03-29T16:26:08Z", "lastModified": "2018-03-29T16:26:08Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 1, "titleData": "", "systemProperties": "26361bc9-786b-428a-a5c8-86fead1c94060;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2533274883840874-public/2f5bdc98-b1fa-4fe8-910c-bab6a233552f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2533274883840874-public/2f5bdc98-b1fa-4fe8-910c-bab6a233552f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2533274883840874-private/2f5bdc98-b1fa-4fe8-910c-bab6a233552f.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TgwVausIET7%2FN%2B5Zy%2B8vSnr2R%2BzMiz37mAOXwRtBvNo%3D", "fileSize": 2809274, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274883840874", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "878ad50e-0f0d-46e4-974a-821cfc3aba9b", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:30:35.1174306Z", "dateTaken": "2018-03-29T16:28:28Z", "lastModified": "2018-03-29T16:28:28Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c5207500-7b19-4952-bfbc-1a77057d675d0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535410748661390-public/878ad50e-0f0d-46e4-974a-821cfc3aba9b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535410748661390-public/878ad50e-0f0d-46e4-974a-821cfc3aba9b_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535410748661390-private/878ad50e-0f0d-46e4-974a-821cfc3aba9b.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=zfK%2FSYeCse4Elu%2Bc%2BmXmSwAdVYDJnBHrUBiQyfTMDrc%3D", "fileSize": 1382330, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535410748661390", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "pt-BR", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "dabf48af-0abf-495e-a26c-130de61349b5", "resolutionHeight": 720, "resolutionWidth": 1280, "state": "Published", "datePublished": "2018-03-29T16:30:34.2173355Z", "dateTaken": "2018-03-29T16:29:08Z", "lastModified": "2018-03-29T16:29:08Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 1, "titleData": "", "systemProperties": "942f87bd-f94a-4ecf-8fae-0659eed439cc0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535411008561492-public/dabf48af-0abf-495e-a26c-130de61349b5_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4001.xboxlive.com/xuid-2535411008561492-public/dabf48af-0abf-495e-a26c-130de61349b5_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4001.xboxlive.com/xuid-2535411008561492-private/dabf48af-0abf-495e-a26c-130de61349b5.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=JVdpky9SF5HHaSr0fGLfVzXRphRxjujdViyBurYx%2FXk%3D", "fileSize": 944298, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535411008561492", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "88c6cfd4-7f29-458f-a671-b2ca47211a76", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:30:31.9592929Z", "dateTaken": "2018-03-29T16:25:30Z", "lastModified": "2018-03-29T16:25:30Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c46249dc-b944-48a9-b070-89b1efa035300;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535455629213764-public/88c6cfd4-7f29-458f-a671-b2ca47211a76_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2535455629213764-public/88c6cfd4-7f29-458f-a671-b2ca47211a76_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2535455629213764-private/88c6cfd4-7f29-458f-a671-b2ca47211a76.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=W%2FICsOsDLS%2FK9ok2lmhrP1A62GZ3PTFUwx%2BK7nnnKBw%3D", "fileSize": 2627246, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535455629213764", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-AR", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "88224e29-a5be-4d73-b748-12ebfd06c83f", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:30:23.4537027Z", "dateTaken": "2018-03-29T16:25:38Z", "lastModified": "2018-03-29T16:25:38Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "d3f2e48e-4f78-4ac5-bafa-c94d2707c6070;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535461520376795-public/88224e29-a5be-4d73-b748-12ebfd06c83f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2001.xboxlive.com/xuid-2535461520376795-public/88224e29-a5be-4d73-b748-12ebfd06c83f_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2001.xboxlive.com/xuid-2535461520376795-private/88224e29-a5be-4d73-b748-12ebfd06c83f.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=60spLw1NBD0D7cC%2BZmjQ3qvbq0Mf8GFIJnmUIcNdgdc%3D", "fileSize": 1261941, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535461520376795", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "sv-SE", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "bed390b9-44dc-4eac-a3d2-5db5c761e9af", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:30:20.4973616Z", "dateTaken": "2018-03-29T16:29:11Z", "lastModified": "2018-03-29T16:29:11Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "c36d4c2a-ebbc-4e2f-8876-d2dd51caf0bf0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535417997591356-public/bed390b9-44dc-4eac-a3d2-5db5c761e9af_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t4002.xboxlive.com/xuid-2535417997591356-public/bed390b9-44dc-4eac-a3d2-5db5c761e9af_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d4002.xboxlive.com/xuid-2535417997591356-private/bed390b9-44dc-4eac-a3d2-5db5c761e9af.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=Nx6dV1IUaNzs4kl6%2FilsukWr4cZWwVWLu5tQ6ckAfvE%3D", "fileSize": 1991544, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535417997591356", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-GB", "screenshotContentAttributes": "None", "deviceType": "Edmonton" }, { "screenshotId": "847c4df1-e89a-432a-84b6-42a1e3d85b0a", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:30:15.5125817Z", "dateTaken": "2018-03-29T16:28:11Z", "lastModified": "2018-03-29T16:28:11Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 0, "titleData": "", "systemProperties": "75f405fc-7ae2-44b8-ab96-b438dc50293b0;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535443000156101-public/847c4df1-e89a-432a-84b6-42a1e3d85b0a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t2002.xboxlive.com/xuid-2535443000156101-public/847c4df1-e89a-432a-84b6-42a1e3d85b0a_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d2002.xboxlive.com/xuid-2535443000156101-private/847c4df1-e89a-432a-84b6-42a1e3d85b0a.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=uhBq3FD6NNTrkfW805S%2FTo7T0CvpgsVq7SOM0Vyfgsc%3D", "fileSize": 2302270, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2535443000156101", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Durango" }, { "screenshotId": "eec65a53-97f1-4348-bc47-c830c17c44c2", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2018-03-29T16:30:00.2127669Z", "dateTaken": "2018-03-29T16:28:18Z", "lastModified": "2018-03-29T16:28:18Z", "userCaption": "", "type": "UserGenerated", "scid": "d1adc8aa-0a31-4407-90f2-7e9b54b0347c", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 2, "titleData": "", "systemProperties": "80f0ee4f-0332-4ce8-b48c-c135e4ba06e10;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2533274882386618-public/eec65a53-97f1-4348-bc47-c830c17c44c2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/xuid-2533274882386618-public/eec65a53-97f1-4348-bc47-c830c17c44c2_Thumbnail.PNG", "fileSize": 0, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/xuid-2533274882386618-private/eec65a53-97f1-4348-bc47-c830c17c44c2.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=896DYHU51jNR7JcbwCvFdxDDgEmaWYHJIyo%2BcrzZ7lg%3D", "fileSize": 1723096, "uriType": "Download", "expiration": "2018-03-29T17:46:56.581005Z" } ], "xuid": "2533274882386618", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "es-MX", "screenshotContentAttributes": "None", "deviceType": "Durango" } ], "pagingInfo": { "continuationToken": "abcde_vwxyzZAAAAA2" } }python-xbox-webapi-2.1.0/tests/data/responses/screenshots_saved_own.json000066400000000000000000000037751465040003600266640ustar00rootroot00000000000000{ "screenshots": [ { "screenshotId": "41593644-be22-43d6-b224-c7bebe14076e", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2015-11-11T06:11:58.6404578Z", "dateTaken": "2015-11-11T06:10:16Z", "lastModified": "2015-11-11T06:10:16Z", "userCaption": "", "type": "UserGenerated", "scid": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 413, "titleData": "", "systemProperties": "e1fad752-787f-4be7-b89d-ba84e06f59a6;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TcI8NNFJlcGykmjTFzeFKgUz7E9g%2FHKZqSNUoYAlZOM%3D", "fileSize": 95044, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=W4ZlmlL7Zd%2FubVoWMojXIfmTiodcpTezppxvsEeNOlI%3D", "fileSize": 340052, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Screenshot-Original.png?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ALKo3DE2HXqBTlpdyynIrH6RPKIECOF7zwotH%2Bb30Ts%3D", "fileSize": 1790858, "uriType": "Download", "expiration": "2018-03-29T17:46:58.5342894Z" } ], "xuid": "2669321029139235", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "XboxOne" } ], "pagingInfo": { "continuationToken": null } }python-xbox-webapi-2.1.0/tests/data/responses/screenshots_saved_own_titleid.json000066400000000000000000000037751465040003600304020ustar00rootroot00000000000000{ "screenshots": [ { "screenshotId": "41593644-be22-43d6-b224-c7bebe14076e", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2015-11-11T06:11:58.6404578Z", "dateTaken": "2015-11-11T06:10:16Z", "lastModified": "2015-11-11T06:10:16Z", "userCaption": "", "type": "UserGenerated", "scid": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 413, "titleData": "", "systemProperties": "e1fad752-787f-4be7-b89d-ba84e06f59a6;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TcI8NNFJlcGykmjTFzeFKgUz7E9g%2FHKZqSNUoYAlZOM%3D", "fileSize": 95044, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=W4ZlmlL7Zd%2FubVoWMojXIfmTiodcpTezppxvsEeNOlI%3D", "fileSize": 340052, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Screenshot-Original.png?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ALKo3DE2HXqBTlpdyynIrH6RPKIECOF7zwotH%2Bb30Ts%3D", "fileSize": 1790858, "uriType": "Download", "expiration": "2018-03-29T17:46:58.5342894Z" } ], "xuid": "2669321029139235", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "XboxOne" } ], "pagingInfo": { "continuationToken": null } }python-xbox-webapi-2.1.0/tests/data/responses/screenshots_saved_xuid.json000066400000000000000000000037751465040003600270320ustar00rootroot00000000000000{ "screenshots": [ { "screenshotId": "41593644-be22-43d6-b224-c7bebe14076e", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2015-11-11T06:11:58.6404578Z", "dateTaken": "2015-11-11T06:10:16Z", "lastModified": "2015-11-11T06:10:16Z", "userCaption": "", "type": "UserGenerated", "scid": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 413, "titleData": "", "systemProperties": "e1fad752-787f-4be7-b89d-ba84e06f59a6;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TcI8NNFJlcGykmjTFzeFKgUz7E9g%2FHKZqSNUoYAlZOM%3D", "fileSize": 95044, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=W4ZlmlL7Zd%2FubVoWMojXIfmTiodcpTezppxvsEeNOlI%3D", "fileSize": 340052, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Screenshot-Original.png?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ALKo3DE2HXqBTlpdyynIrH6RPKIECOF7zwotH%2Bb30Ts%3D", "fileSize": 1790858, "uriType": "Download", "expiration": "2018-03-29T17:46:58.5342894Z" } ], "xuid": "2669321029139235", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "XboxOne" } ], "pagingInfo": { "continuationToken": null } }python-xbox-webapi-2.1.0/tests/data/responses/screenshots_saved_xuid_titleid.json000066400000000000000000000037751465040003600305500ustar00rootroot00000000000000{ "screenshots": [ { "screenshotId": "41593644-be22-43d6-b224-c7bebe14076e", "resolutionHeight": 1080, "resolutionWidth": 1920, "state": "Published", "datePublished": "2015-11-11T06:11:58.6404578Z", "dateTaken": "2015-11-11T06:10:16Z", "lastModified": "2015-11-11T06:10:16Z", "userCaption": "", "type": "UserGenerated", "scid": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "titleId": 219630713, "rating": 0.0, "ratingCount": 0, "views": 413, "titleData": "", "systemProperties": "e1fad752-787f-4be7-b89d-ba84e06f59a6;", "savedByUser": true, "achievementId": "", "greatestMomentId": null, "thumbnails": [ { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Small.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=TcI8NNFJlcGykmjTFzeFKgUz7E9g%2FHKZqSNUoYAlZOM%3D", "fileSize": 95044, "thumbnailType": "Small" }, { "uri": "https://screenshotscontent-t5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Thumbnail_Large.PNG?sv=2015-12-11&sr=b&si=DefaultAccess&sig=W4ZlmlL7Zd%2FubVoWMojXIfmTiodcpTezppxvsEeNOlI%3D", "fileSize": 340052, "thumbnailType": "Large" } ], "screenshotUris": [ { "uri": "https://screenshotscontent-d5001.xboxlive.com/00097bbbbbbbbb23-41593644-be22-43d6-b224-c7bebe14076e/Screenshot-Original.png?sv=2015-12-11&sr=b&si=DefaultAccess&sig=ALKo3DE2HXqBTlpdyynIrH6RPKIECOF7zwotH%2Bb30Ts%3D", "fileSize": 1790858, "uriType": "Download", "expiration": "2018-03-29T17:46:58.5342894Z" } ], "xuid": "2669321029139235", "screenshotName": "", "titleName": "Halo 5: Guardians", "screenshotLocale": "en-US", "screenshotContentAttributes": "None", "deviceType": "XboxOne" } ], "pagingInfo": { "continuationToken": null } }python-xbox-webapi-2.1.0/tests/data/responses/smartglass_command.json000066400000000000000000000007231465040003600261230ustar00rootroot00000000000000{ "status": { "errorCode": "OK", "errorMessage": null }, "result": null, "uiText": null, "destination": { "id": "ABCDEFG", "name": "XONEX", "locale": "en-US", "powerState": "ConnectedStandby", "remoteManagementEnabled": "True", "consoleStreamingEnabled": "False", "consoleType": "XboxOneX", "wirelessWarning": "", "outOfHomeWarning": "" }, "userInfo": null, "opId": "35bd7870-fad4-4e98-a354-d027bd840116" } python-xbox-webapi-2.1.0/tests/data/responses/smartglass_console_list.json000066400000000000000000000025671465040003600272120ustar00rootroot00000000000000{ "status": { "errorCode": "OK", "errorMessage": null }, "result": [ { "id": "ABCDEFG", "name": "XONEX", "locale": "en-US", "consoleType": "XboxOneX", "powerState": "ConnectedStandby", "digitalAssistantRemoteControlEnabled": true, "remoteManagementEnabled": true, "consoleStreamingEnabled": false, "storageDevices": [ { "storageDeviceId": "1", "storageDeviceName": "Internal", "isDefault": true, "freeSpaceBytes": 236267835392.0, "totalSpaceBytes": 838592360448.0 } ] }, { "id": "HIJKLMN", "name": "XONE", "locale": "en-US", "consoleType": "XboxOne", "powerState": "ConnectedStandby", "digitalAssistantRemoteControlEnabled": true, "remoteManagementEnabled": true, "consoleStreamingEnabled": false, "storageDevices": [ { "storageDeviceId": "2", "storageDeviceName": "Internal", "isDefault": false, "freeSpaceBytes": 147163541504.0, "totalSpaceBytes": 391915761664.0 }, { "storageDeviceId": "3", "storageDeviceName": "External", "isDefault": true, "freeSpaceBytes": 3200714067968.0, "totalSpaceBytes": 4000787029504.0 } ] } ], "agentUserId": null } python-xbox-webapi-2.1.0/tests/data/responses/smartglass_console_status.json000066400000000000000000000005501465040003600275500ustar00rootroot00000000000000{ "status": { "errorCode": "OK", "errorMessage": null }, "powerState": "ConnectedStandby", "playbackState": "Stopped", "loginState": null, "focusAppAumid": "4DF9E0F8.Netflix_mcm4njqhnhss8!App", "isTvConfigured": true, "digitalAssistantRemoteControlEnabled": true, "consoleStreamingEnabled": false, "remoteManagementEnabled": true } python-xbox-webapi-2.1.0/tests/data/responses/smartglass_installed_apps.json000066400000000000000000000030231465040003600275030ustar00rootroot00000000000000{ "status": { "errorCode": "OK", "errorMessage": null }, "result": [ { "oneStoreProductId": "C2DCVRMJ9V45", "titleId": 12206284, "aumid": "00BA40CC-US_fc7h7ec1dwtc0!App", "lastActiveTime": "2020-10-07T21:00:48.036Z", "isGame": true, "name": "eFootball PES 2020", "contentType": "Game", "instanceId": "{A89ECE52-7E8E-444F-BBD0-C68B76C2ECA4}#AC093B66-C37C-4F95-BD9B-1817C789E41F", "storageDeviceId": "A89ECE52-7E8E-444F-BBD0-C68B76C2ECA4", "uniqueId": "AC093B66-C37C-4F95-BD9B-1817C789E41F", "legacyProductId": "DF1B4514-2E4F-47B5-B3DD-F10B0CC6718A", "version": 281509336514560.0, "sizeInBytes": 43352756224.0, "installTime": "2019-12-15T22:51:36.464Z", "updateTime": "2020-07-18T22:35:46.912Z", "parentId": null }, { "oneStoreProductId": "9WZDNCRFJ3TJ", "titleId": 327370029, "aumid": "4DF9E0F8.Netflix_mcm4njqhnhss8!App", "lastActiveTime": "2020-10-08T01:48:30.203Z", "isGame": false, "name": "Netflix", "contentType": "App", "instanceId": "{A89ECE52-7E8E-444F-BBD0-C68B76C2ECA4}#4DF9E0F8.Netflix_mcm4njqhnhss8", "storageDeviceId": "A89ECE52-7E8E-444F-BBD0-C68B76C2ECA4", "uniqueId": "4DF9E0F8.Netflix_mcm4njqhnhss8", "legacyProductId": null, "version": 2251799815651398.0, "sizeInBytes": 7250253.0, "installTime": "2017-11-08T04:06:44.746Z", "updateTime": "2019-02-04T23:42:42.422Z", "parentId": null } ], "agentUserId": null } python-xbox-webapi-2.1.0/tests/data/responses/smartglass_op_status.json000066400000000000000000000006531465040003600265300ustar00rootroot00000000000000{ "status": { "errorCode": "OK", "errorMessage": null }, "opStatusList": [ { "operationStatus": "Pending", "opId": "35bd7870-fad4-4e98-a354-d027bd840116", "originatingSessionId": "91b3af51-b59e-4d4c-b0d7-6acb6e3de586", "command": "WakeUp", "succeeded": false, "consoleStatusCode": null, "xccsErrorCode": null, "hResult": null, "message": null } ] } python-xbox-webapi-2.1.0/tests/data/responses/smartglass_storage_devices.json000066400000000000000000000005031465040003600276470ustar00rootroot00000000000000{ "status": { "errorCode": "OK", "errorMessage": null }, "deviceId": "ABCDEFG", "result": [ { "storageDeviceId": "1", "storageDeviceName": "Internal", "isDefault": true, "freeSpaceBytes": 236267835392.0, "totalSpaceBytes": 838592360448.0 } ], "agentUserId": null } python-xbox-webapi-2.1.0/tests/data/responses/titlehub_batch.json000066400000000000000000000450661465040003600252370ustar00rootroot00000000000000{ "xuid": null, "titles": [ { "titleId": "328178078", "pfn": "Microsoft.XboxApp_8wekyb3d8bbwe", "bingId": null, "serviceConfigId": "0b3a0100-9af4-4630-9ade-66ca138f999e", "windowsPhoneProductId": "b806836f-eebe-41c9-8669-19e243b81b83", "name": "Xbox Console Companion", "type": "Application", "devices": ["PC"], "displayImage": "http://store-images.s-microsoft.com/image/apps.24628.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.753dac8d-0d90-46d2-8da2-967cae51ca9b", "mediaItemType": "Application", "modernTitleId": "328178078", "isBundle": false, "achievement": { "currentAchievements": 0, "totalAchievements": 0, "currentGamerscore": 0, "totalGamerscore": 0, "progressPercentage": 0.0, "sourceVersion": 0 }, "stats": null, "gamePass": null, "images": [ { "url": "http://store-images.s-microsoft.com/image/apps.3520.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.d4a74fff-a640-4614-b64e-1242b3c6c88a", "type": "Logo" }, { "url": "http://store-images.s-microsoft.com/image/apps.51335.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.201b45b8-6323-4e7b-91da-828360cc0c12", "type": "Logo" }, { "url": "http://store-images.s-microsoft.com/image/apps.26749.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.c4a1e738-dc39-4966-a47f-a270298b73d7", "type": "Logo" }, { "url": "http://store-images.s-microsoft.com/image/apps.36347.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.3572fc8d-9939-4d1a-b9d9-8ba4c18a0284", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.59983.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.b5fc7230-d2e4-4ab9-bad2-8967eaf1934f", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.29280.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.342c00a5-df57-4faf-80c8-8d4e01041449", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.39085.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.0f5e5690-fd49-4983-a1a5-2b4eebacf3d2", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.5158.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.4f2a998e-270d-47c5-8c6b-431d969cb8db", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.11093.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.0dea3fec-2a65-4025-8386-027e196b4a1e", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.24267.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.df102aa6-5c7e-4bc0-a13e-db1a2429458e", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.41512.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.8f02122f-b39b-45c9-a002-c23c886a0364", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.24628.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.753dac8d-0d90-46d2-8da2-967cae51ca9b", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.55160.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.9319e362-4025-4d5f-a308-969b3a594fca", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.6405.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.c96570ab-b755-419e-b8d2-1b8d8817abf9", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.28773.9007199266252719.c52cc28d-6325-4f19-9817-8b64ff50ebe6.a3019026-4124-4a9d-b7b1-f0d3b34b7e10", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.27945.9007199266252719.30d8903e-612a-4d38-975d-14c2cb24cc2e.fa27cbd3-f5f1-4f49-ab90-dde9071258b1", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.22567.9007199266252719.5b65ef96-faaf-428d-b5fc-9b52188ec22c.2cb0b261-b1c0-49d3-957e-8174b95cb24f", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.35864.9007199266252719.e00fe203-977b-4b7d-af8d-f6a1f0dcec1e.70ff0ad6-fa5c-4939-9b8a-a3ca96f339af", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.39386.9007199266252719.ee7b9dd7-9b66-46f6-b53e-9088d7c5f580.5247389f-f142-4c8c-a5c4-361f1f389291", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.32244.9007199266252719.7ca6a459-c3c1-4052-ba71-690de2db8ef5.6a44140d-97bf-4e41-9749-e1c6da2c9bcd", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.41537.9007199266252719.32a9fcac-48bf-4ac6-a7a7-e26e3d4e3278.928792d9-af8b-4b61-ae92-23a14903ffad", "type": "Screenshot" } ], "titleHistory": null, "detail": { "attributes": [], "availabilities": [ { "Actions": [ "Details", "Fulfill", "Purchase", "Browse", "Curate", "Redeem" ], "AvailabilityId": "9MT6K2FL8V72", "Platforms": ["PC"], "SkuId": "0010" } ], "capabilities": [ "internetClient", "internetClientServer", "privateNetworkClientServer", "contacts", "videosLibrary", "picturesLibrary", "shellExperience", "extendedExecutionBackgroundAudio", "appCaptureSettings", "gameList", "previewStore" ], "description": "The Xbox app brings together your friends, games, and accomplishments across Xbox One and Windows 10 devices. The best multiplayer gaming just got better.\r\n\r\n • Join clubs – or create your own – where you can go to play and chat with friends and other gamers like you.\r\n • Find games with like-minded players by checking Looking for Group posts, or post one that fits your own objectives and play style.\r\n • Get instant access to chat, sharing, parties, Game DVR, and achievements across PC and Xbox One.\r\n • Keep track of your game clips and screenshots and download them straight to your Windows 10 PC.\r\n • Take the brakes off chat when you use a keyboard for messaging with friends on Xbox Live.\r\n • Stream your favorite games and entertainment from Xbox One to a Windows 10 PC while using your Xbox One controller.\r\n\r\n Disclaimer: Broadband internet required (ISP fees apply). Xbox Live features only available with supported games. Online multiplayer (including streaming with multiplayer) and some features of Game DVR on Xbox One require Xbox Live Gold subscription (sold separately). Stream to one device at a time.", "developerName": "", "genres": [], "publisherName": "Microsoft Corporation", "minAge": 0, "releaseDate": "2014-10-27T20:12:36Z", "shortDescription": "", "vuiDisplayName": null, "xboxLiveGoldRequired": false }, "friendsWhoPlayed": null, "alternateTitleIds": [], "contentBoards": null, "xboxLiveTier": "Full" }, { "titleId": "1717113201", "pfn": "Microsoft.SeaofThieves_8wekyb3d8bbwe", "bingId": null, "serviceConfigId": "00000000-0000-0000-0000-000066591171", "windowsPhoneProductId": "200c2ce3-f2d5-4085-ac78-b8cf7226ffd6", "name": "Sea of Thieves", "type": "Game", "devices": ["PC", "XboxOne", "XboxSeries"], "displayImage": "http://store-images.s-microsoft.com/image/apps.43328.14554784103656548.0e68e37c-c8b9-4af6-af25-2426996b2dd9.51c2df40-5aae-441e-ad5b-6f05ee2a43da", "mediaItemType": "Application", "modernTitleId": "1717113201", "isBundle": false, "achievement": { "currentAchievements": 0, "totalAchievements": 0, "currentGamerscore": 0, "totalGamerscore": 0, "progressPercentage": 0.0, "sourceVersion": 0 }, "stats": null, "gamePass": null, "images": [ { "url": "http://store-images.s-microsoft.com/image/apps.21958.14554784103656548.6fcc833b-0325-481c-a620-e88ce4adf0e2.1cefcf06-5cd6-4af3-882a-9be53271bd59", "type": "Logo" }, { "url": "http://store-images.s-microsoft.com/image/apps.43328.14554784103656548.0e68e37c-c8b9-4af6-af25-2426996b2dd9.51c2df40-5aae-441e-ad5b-6f05ee2a43da", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.43251.14554784103656548.32cb1e79-42f2-4166-879d-09ccb8f038fd.28fe5975-9815-4234-a326-9726a08cf46a", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.16347.14554784103656548.6c0bfca6-ceff-4368-9bde-2fe50f344136.007dce43-6492-46f2-bb2b-2b28df98fc3c", "type": "Poster" }, { "url": "http://store-images.s-microsoft.com/image/apps.6880.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.80649d61-fec4-4076-aa88-1d2eebd2c84c", "type": "BoxArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.49929.14554784103656548.6c0bfca6-ceff-4368-9bde-2fe50f344136.88fbc331-a034-4ba9-a091-d5c3dee58175", "type": "Logo" }, { "url": "http://store-images.s-microsoft.com/image/apps.61467.14554784103656548.6c0bfca6-ceff-4368-9bde-2fe50f344136.cf7a16ec-ac12-454c-9ce9-78c02c61409a", "type": "SuperHeroArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.3192.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.05814c70-cb91-4ef7-aecd-0a4b8e5667f4", "type": "BrandedKeyArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.56440.14554784103656548.6c0bfca6-ceff-4368-9bde-2fe50f344136.4742d116-5b5d-489e-8c7e-7a2e5cd72628", "type": "TitledHeroArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.2174.14554784103656548.6c0bfca6-ceff-4368-9bde-2fe50f344136.72c6c04e-b278-4ad7-9d1b-44c815f2b06c", "type": "FeaturePromotionalSquareArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.16127.14554784103656548.5229b523-ba31-4e1e-8b9b-af4211062227.7176a52d-9b92-4c1b-b756-af25abfa99c5", "type": "Hero" }, { "url": "http://store-images.s-microsoft.com/image/apps.22321.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.fbb76bf3-8471-4a23-8657-0e2a5533bfdd", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.64197.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.5f773ba7-b1af-483d-8f83-6c12a66e40b7", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.46899.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.404b042e-254a-4026-9d5b-63a7fc77ac86", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.32427.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.8b8e6b06-df59-4f88-9646-290e2dc04181", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.56109.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.b286756a-e92a-42c7-9866-9a72190dc9f0", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.5813.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.3d275c30-cba6-430e-b0d0-07d2cc051df2", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.9749.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.37589008-60cc-4047-95bb-0d842db13524", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.29802.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.5f976492-14a5-4616-9d78-29ffb2da6527", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.26361.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.583a46c6-a40c-49df-b4d6-572a40f44474", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.31437.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.83c7204b-ee15-44fc-81b6-ff3a48e06a2a", "type": "Screenshot" } ], "titleHistory": null, "detail": { "attributes": [ { "applicablePlatforms": null, "maximum": 4, "minimum": 2, "name": "XblOnlineCoop" }, { "applicablePlatforms": null, "maximum": 4, "minimum": 2, "name": "XblOnlineMultiPlayer" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "BroadcastSupport" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblCrossPlatformMultiPlayer" }, { "applicablePlatforms": ["Xbox"], "maximum": null, "minimum": null, "name": "Capability4k" }, { "applicablePlatforms": ["Xbox"], "maximum": null, "minimum": null, "name": "CapabilityHDR" }, { "applicablePlatforms": ["Xbox", "Desktop"], "maximum": null, "minimum": null, "name": "XblCrossPlatformCoop" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "GameStreaming" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "CapabilityXboxEnhanced" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblAchievements" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblPresence" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblClubs" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblCloudSaves" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XPA" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XboxLive" } ], "availabilities": [ { "Actions": [ "Details", "Fulfill", "Purchase", "Browse", "Curate", "Redeem" ], "AvailabilityId": "9R3F7V8SQ2XD", "Platforms": ["PC", "Xbox"], "SkuId": "0010" } ], "capabilities": [ "internetClient", "internetClientServer", "privateNetworkClientServer", "codeGeneration" ], "description": "Xbox Live Gold membership required to play on Xbox One; sold separately. \r\n\r\n=========\r\n\r\nAbout the game\r\nSea of Thieves offers the essential pirate experience, from sailing and fighting to exploring and looting – everything you need to live the pirate life and become a legend in your own right. With no set roles, you have complete freedom to approach the world, and other players, however you choose.\r\n\r\nWhether you’re voyaging as a group or sailing solo, you’re bound to encounter other crews in this shared world adventure – but will they be friends or foes, and how will you respond?\r\n\r\nA vast open world\r\nExplore a vast open world filled with unspoiled islands, sunken ships and mysterious artefacts. Take on quests to hunt for lost treasure, seek out cursed Skeleton Captains or gather valuable cargo for the Trading Companies. Go hunting and fishing or choose from hundreds of optional goals and side-quests.\r\n\r\nUnforgettable stories\r\nPlay through the Tall Tales to experience Sea of Thieves’ unique take on a story-driven campaign. With 11 tales to play through across two epic storylines, these immersive and cinematic quests provide around 30 hours of the ultimate pirate fantasy.\r\n\r\nBecome Legend \r\nOn your journey to become a Pirate Legend you’ll amass loot, build a reputation and define a unique personal style with your hard-earned rewards. Adventurer. Explorer. Conqueror. What will your legend be?\r\n\r\nA game that’s always growing\r\nWith five major expansions and almost a year’s worth of monthly updates, Sea of Thieves is a service-based game that is continually growing and evolving. Check back each month to see what new content has been added.", "developerName": "Rare Ltd", "genres": ["Action & adventure"], "publisherName": "Microsoft Studios", "minAge": 12, "releaseDate": "2018-03-20T04:00:00Z", "shortDescription": "Sea of Thieves offers the essential pirate experience, from sailing and fighting to exploring and looting – everything you need to live the pirate life and become a legend in your own right. With no set roles, you have complete freedom to approach the world, and other players, however you choose. \r\n\r\nWhether you’re voyaging as a group or sailing solo, you’re bound to encounter other crews in this shared-world adventure – but will they be friends or foes, and how will you respond?\r\n", "vuiDisplayName": null, "xboxLiveGoldRequired": true }, "friendsWhoPlayed": null, "alternateTitleIds": [], "contentBoards": null, "xboxLiveTier": "Full", "isStreamable": true } ] } python-xbox-webapi-2.1.0/tests/data/responses/titlehub_titlehistory.json000066400000000000000000001334151465040003600267150ustar00rootroot00000000000000{ "xuid": "2719584417856940", "titles": [ { "titleId": "1560034050", "pfn": "Ubisoft.6f7d78df-dd91-4d2a-b038-367b2b266f46_ngz4m417e0mpw", "bingId": "56e06243-00dc-49c4-a214-20af83036f97", "windowsPhoneProductId": "088ef83e-6beb-49de-9e13-294ea701b210", "name": "Assassin's Creed® Syndicate", "type": "Game", "devices": ["XboxOne"], "displayImage": "http://store-images.s-microsoft.com/image/apps.23100.63309362003335928.4079e21b-b00f-4446-a680-6bf9c0eb0158.7f8406d5-3130-4d85-b3e3-a5e0e2f8ac49", "mediaItemType": "Application", "modernTitleId": "1560034050", "isBundle": false, "achievement": { "currentAchievements": 22, "totalAchievements": 0, "currentGamerscore": 465, "totalGamerscore": 1300, "progressPercentage": 36.0, "sourceVersion": 2 }, "stats": { "sourceVersion": 2 }, "gamePass": { "isGamePass": false }, "images": [ { "url": "http://store-images.s-microsoft.com/image/apps.45099.63309362003335928.4079e21b-b00f-4446-a680-6bf9c0eb0158.3a88a700-8351-45e7-b430-dc75a7a9d9b8", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.46246.63309362003335928.4079e21b-b00f-4446-a680-6bf9c0eb0158.c976135a-831a-4cf6-a39b-f01c633567bc", "type": "BrandedKeyArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.9155.63309362003335928.4079e21b-b00f-4446-a680-6bf9c0eb0158.66c76ab3-66b2-4eb4-884a-647d73cb1617", "type": "TitledHeroArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.9961.63309362003335928.4079e21b-b00f-4446-a680-6bf9c0eb0158.f69e9d47-aef9-4aba-9297-915f02c744e9", "type": "Poster" }, { "url": "http://store-images.s-microsoft.com/image/apps.61147.63309362003335928.4079e21b-b00f-4446-a680-6bf9c0eb0158.cd2dd80e-a2bc-4a19-adf0-7018ee45b2cd", "type": "SuperHeroArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.23100.63309362003335928.4079e21b-b00f-4446-a680-6bf9c0eb0158.7f8406d5-3130-4d85-b3e3-a5e0e2f8ac49", "type": "BoxArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.47207.63309362003335928.4079e21b-b00f-4446-a680-6bf9c0eb0158.3329df5e-a071-41d6-b584-c03fc3706fe8", "type": "FeaturePromotionalSquareArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.31444.63309362003335928.4079e21b-b00f-4446-a680-6bf9c0eb0158.5295c5a8-a2d7-4407-ab1c-6fea8d77b0b9", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.16645.63309362003335928.4079e21b-b00f-4446-a680-6bf9c0eb0158.040cba15-6110-4d0f-8da7-a2883b298f44", "type": "Screenshot" } ], "titleHistory": { "lastTimePlayed": "2020-10-08T01:55:12.4411936Z", "visible": true, "canHide": false }, "detail": { "attributes": [ { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "BroadcastSupport" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XboxLive" } ], "availabilities": [ { "Actions": [ "Details", "Fulfill", "Purchase", "Browse", "Curate", "Redeem" ], "AvailabilityId": "9ZDCVZ019WLR", "Platforms": ["Xbox"], "SkuId": "0001" } ], "capabilities": [], "description": "London, 1868. In the heart of the Industrial Revolution, lead your underworld organization and grow your influence to fight those who exploit the less privileged in the name of progress:\r\n\r\n• Champion justice\r\nAs Jacob Frye, a young and reckless Assassin, use your skills to help those trampled by the march of progress. From freeing exploited children used as slave labour in factories, to stealing precious assets from enemy boats, you will stop at nothing to bring justice back to London’s streets.\r\n\r\n• Command London’s underworld\r\nTo reclaim London for the people, you will need an army. As a gang leader, strengthen your stronghold and rally rival gang members to your cause, in order to take back the capital from the Templars’ hold.\r\n\r\n• A new dynamic fighting system\r\nIn Assassin’s Creed Syndicate, action is fast-paced and brutal. As a master of combat, combine powerful multi-kills and countermoves to strike your enemies down.\r\n\r\n• A whole new arsenal\r\nChoose your own way to fight enemies. Take advantage of the Rope Launcher technology to be as stealthy as ever and strike with your Hidden Blade. Or choose the kukri knife and the brass knuckles to get the drop on your enemies.\r\n\r\n• A new age of transportation\r\nIn London, the systemic vehicles offer an ever-changing environment. Drive carriages to chase your target, use your parkour skills to engage in epic fights atop high-speed trains, or make your own way amongst the boats of the River Thames.\r\n\r\n• A vast open world\r\nTravel the city at the height of the Industrial Revolution and meet iconic historical figures. From Westminster to Whitechapel, you will come across Darwin, Dickens, Queen Victoria… and many more.", "developerName": "Ubisoft Quebec", "publisherName": "Ubisoft", "minAge": 16, "releaseDate": "2015-10-23T00:00:00Z", "shortDescription": "“9/10” Gamespot\n\nLondon, 1868. In the heart of the Industrial Revolution, play as Jacob Frye - a brash and charismatic Assassin.\n\nOn a mission to defeat those who exploit the less privileged in the name of progress, lead your underworld organization, fight like never before in a massive open-world and discover new features inspired by the dawning modern age.", "vuiDisplayName": null, "xboxLiveGoldRequired": false }, "friendsWhoPlayed": { "people": [ { "xuid": "2533274810951322", "isFavorite": false, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIm2RQQtfSX9jMSatOYowOzEjYigCkXhTNbce1rv4TMJkvAA49vtg8MpFHt6Pum4yf&format=png", "useAvatar": true, "isCurrentlyPlaying": false, "gamertag": "cavsbballin23", "lastTimePlayed": "2018-07-03T23:39:26.9942864Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "1073d6", "secondaryColor": "133157", "tertiaryColor": "134e8a" } }, { "xuid": "2533274829739812", "isFavorite": false, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW_ES.ojiJijNBGRVUbTnZKsoCCCkjlsEJrrMqDkYqs3MrHRhRzH2.GdQgHRZi_rY_v9q_t0POXG6iEqqweb.6Fh7_jOUyRHgH8TW9apXc.w08pRmE5ZgIlhBWHgor1YXeQQQ5CqjqDPWUROGdwJDAvo-&format=png", "useAvatar": false, "isCurrentlyPlaying": false, "gamertag": "FLUFFY JOK3R", "lastTimePlayed": "2018-04-29T03:42:10.4244998Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "e31123", "secondaryColor": "471010", "tertiaryColor": "851414" } }, { "xuid": "2533274826800072", "isFavorite": false, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=Hr2eiH8yWKd4q_oa.xgbMsBMaML4RHmTUbpHkaZTnVU5KRB4bTh8MR86WWWB5GR.vzh0E9kRjckB83CjpwGCrUWEsXRb90OAITc4F4D6jNOPvNH6pV0L8c1lNSoi0gzbsaJ3._X_vFSIGtf8TCZsYn2hoN3c57jwNTxfTwUyiO0-&format=png", "useAvatar": true, "isCurrentlyPlaying": false, "gamertag": "ThumbTacular", "lastTimePlayed": "2017-10-15T11:36:05.1343310Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "193e91", "secondaryColor": "101836", "tertiaryColor": "102c69" } }, { "xuid": "2533274842759744", "isFavorite": false, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW3apWESZjav65Yncai8aRmVbSlZ3zqRpg1sdxEje_JmFoVefUwnJqOE159pIT3JzYd9blbzFeNzxgMKTwNLyj1Hq3Vb.8avA4NoeHlgaLPP2oI5233eY7w3bgRSMcnELusaPWGxm5L469OLjNCQQ20s-&format=png", "useAvatar": true, "isCurrentlyPlaying": false, "gamertag": "Blvck Clovd", "lastTimePlayed": "2016-01-14T05:54:34.0000000Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "677488", "secondaryColor": "222B38", "tertiaryColor": "3e4b61" } } ], "currentlyPlayingCount": 16, "havePlayedCount": 4 }, "alternateTitleIds": [], "contentBoards": null, "xboxLiveTier": "Full" }, { "titleId": "12206284", "pfn": "KonamiDigitalEntertainmen.PES2020_168atcksx2mfc", "bingId": null, "windowsPhoneProductId": "3741e626-c376-42ca-a839-63eadfa01b7d", "name": "eFootball PES 2020", "type": "Game", "devices": ["XboxOne", "XboxSeries"], "displayImage": "http://store-images.s-microsoft.com/image/apps.42381.65377382692004890.223a31ce-20c4-4254-83d9-2dab6f501328.3e00bfde-4fe2-4c26-b336-1115cf62c377", "mediaItemType": "Application", "modernTitleId": "12206284", "isBundle": false, "achievement": { "currentAchievements": 0, "totalAchievements": 0, "currentGamerscore": 0, "totalGamerscore": 1000, "progressPercentage": 0.0, "sourceVersion": 2 }, "stats": { "sourceVersion": 2 }, "gamePass": { "isGamePass": false }, "images": [ { "url": "http://store-images.s-microsoft.com/image/apps.21844.65377382692004890.223a31ce-20c4-4254-83d9-2dab6f501328.28940057-7c2d-4665-91aa-3650dc309ac4", "type": "BrandedKeyArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.27093.65377382692004890.223a31ce-20c4-4254-83d9-2dab6f501328.192a0dee-254e-4f5d-9559-0787cd8d098d", "type": "TitledHeroArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.58380.65377382692004890.223a31ce-20c4-4254-83d9-2dab6f501328.d21b77e5-cfe5-45ee-bfc2-4c1c62189304", "type": "Poster" }, { "url": "http://store-images.s-microsoft.com/image/apps.13448.65377382692004890.223a31ce-20c4-4254-83d9-2dab6f501328.2b82712c-20df-4129-9538-968df9ac5b6f", "type": "SuperHeroArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.42381.65377382692004890.223a31ce-20c4-4254-83d9-2dab6f501328.3e00bfde-4fe2-4c26-b336-1115cf62c377", "type": "BoxArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.8409.65377382692004890.223a31ce-20c4-4254-83d9-2dab6f501328.b741ad28-2f7a-4130-aa90-00217537a566", "type": "FeaturePromotionalSquareArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.18567.65377382692004890.223a31ce-20c4-4254-83d9-2dab6f501328.06809139-98b9-4ffb-ad14-be17dc842893", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.2741.65377382692004890.223a31ce-20c4-4254-83d9-2dab6f501328.19e81b6f-620c-40e6-8674-0647686442a3", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.43026.65377382692004890.9929cdb5-627d-4b45-8c68-874a9d65c686.a70a895f-9746-40b3-a29d-ef426c41e862", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.8535.65377382692004890.223a31ce-20c4-4254-83d9-2dab6f501328.aa8d6414-8e6f-4ccd-992b-cea1fd386205", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.32651.65377382692004890.223a31ce-20c4-4254-83d9-2dab6f501328.9090ab71-348b-4e54-ba21-4189dfbd4fb1", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.36237.65377382692004890.223a31ce-20c4-4254-83d9-2dab6f501328.c4f6f30d-702f-4b61-b4ce-51712e359350", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.37192.65377382692004890.223a31ce-20c4-4254-83d9-2dab6f501328.ebe94ac0-8cd4-4546-9fff-eb8945bbb48f", "type": "Screenshot" } ], "titleHistory": { "lastTimePlayed": "2020-10-07T21:00:48.7583964Z", "visible": true, "canHide": true }, "detail": { "attributes": [ { "applicablePlatforms": null, "maximum": 8, "minimum": 2, "name": "XblLocalCoop" }, { "applicablePlatforms": null, "maximum": 11, "minimum": 2, "name": "XblOnlineCoop" }, { "applicablePlatforms": null, "maximum": 8, "minimum": 2, "name": "XblLocalMultiPlayer" }, { "applicablePlatforms": null, "maximum": 22, "minimum": 2, "name": "XblOnlineMultiPlayer" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "BroadcastSupport" }, { "applicablePlatforms": ["Xbox"], "maximum": null, "minimum": null, "name": "Capability4k" }, { "applicablePlatforms": ["Xbox"], "maximum": null, "minimum": null, "name": "CapabilityHDR" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "CapabilityXboxEnhanced" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XboxLive" } ], "availabilities": [ { "Actions": ["Details"], "AvailabilityId": "B42097ZH3KQR", "Platforms": ["Xbox"], "SkuId": "0001" } ], "capabilities": [], "description": "Experience the most realistic and authentic football game with PES 2020!\r\n\r\nNew features:\r\n\r\n• GAMEPLAY: Take command of the ball like never before with new dynamic dribbling skills, new first touch techniques and finely-tuned ball physics, all developed in close consultation with renowned midfielder Andrés Iniesta\r\n\r\n• MATCHDAY: Pick a side and join forces with newcomers and veterans alike in a grand struggle for dominance in this new online competitive mode\r\n\r\n• MASTER LEAGUE: A completely revamped ML experience awaits — featuring a new interactive dialogue system, an overhauled menu design and a more realistic transfer market realized through improved data integration", "developerName": "Konami Digital Entertainment Co., Ltd.", "publisherName": "Konami Digital Entertainment", "minAge": 16, "releaseDate": "2019-09-10T00:00:00Z", "shortDescription": "PES 2020 continues the series' dedicated pursuit of realism and authenticity with significant improvements both on and off the pitch.", "vuiDisplayName": null, "xboxLiveGoldRequired": false }, "friendsWhoPlayed": { "people": [], "currentlyPlayingCount": 0, "havePlayedCount": 0 }, "alternateTitleIds": [], "contentBoards": null, "xboxLiveTier": "Full" }, { "titleId": "1787008472", "pfn": null, "bingId": null, "windowsPhoneProductId": null, "name": "Call of Duty: Modern Warfare", "type": "Game", "devices": ["Win32"], "displayImage": "http://images-eds.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcPnMMVV2S.gki47PXDl6PGE7.o.iHH1T3.LWWHilk7uIMvDIHzOHL6Y32nkuDe2XDEUDpkOgTw3vCujR7N_2JCg--", "mediaItemType": "Application", "modernTitleId": null, "isBundle": false, "achievement": { "currentAchievements": 0, "totalAchievements": 0, "currentGamerscore": 0, "totalGamerscore": 0, "progressPercentage": 0.0, "sourceVersion": 0 }, "stats": { "sourceVersion": 0 }, "gamePass": { "isGamePass": false }, "images": [], "titleHistory": { "lastTimePlayed": "2020-10-06T20:02:33.4358185Z", "visible": true, "canHide": true }, "detail": { "attributes": [], "availabilities": [], "capabilities": [], "description": "Call of Duty: Modern Warfare", "developerName": "Infinity Ward", "publisherName": "Activision", "minAge": 18, "releaseDate": null, "shortDescription": "Call of Duty: Modern Warfare", "vuiDisplayName": null, "xboxLiveGoldRequired": false }, "friendsWhoPlayed": { "people": [ { "xuid": "2533274898306253", "isFavorite": false, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=7OTVnZUMVj4OV2zUUGecWvn3U00nQQLfK7_kwpANogjpk.LGA0P5eVD4XYbhoC1oscGDUSCTxHHhXcM2_TWWkSZmQHL.nM05qmTqKFVJZ4ty8EgfXVrghz1UhOZUdF0q8satpefJLGRlPhJU5.RLaA--&format=png", "useAvatar": true, "isCurrentlyPlaying": true, "gamertag": "TVBlRD", "lastTimePlayed": "2020-10-09T01:46:01.3865444Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "4c4a4b", "secondaryColor": "191919", "tertiaryColor": "373737" } }, { "xuid": "2533274801134002", "isFavorite": false, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=7OTVnZUMVj4OV2zUUGecWvn3U00nQQLfK7_kwpANoghi5ytAhKfoQaqg3sLyC6eHjsfwt7tPR3KRCS7y0_u0Q4LvdBsAi7F45RhUxxMGCL8mDVgJ4Bp0ER4g8QblCd.rBtwApZJub09eMwkO1ENSs1R0TfmJA86ysDVconItogE-&format=png", "useAvatar": true, "isCurrentlyPlaying": false, "gamertag": "JC Sledge", "lastTimePlayed": "2020-10-08T21:14:06.3628110Z", "presenceState": "Online", "preferredColor": { "primaryColor": "107c10", "secondaryColor": "102b14", "tertiaryColor": "155715" } }, { "xuid": "2533274840833448", "isFavorite": false, "displayPicRaw": "http://images-eds.xboxlive.com/image?url=rwljod2fPqLqGP3DBV9F_yK9iuxAt3_MH6tcOnQXTc9299rj3VNUdKSGmb8eejp8AQSXRppDM0jK9XOXCYDH7lnb4SsfRnR4jSXzU1YBP0M-&background=0xababab&mode=Padding&format=png", "useAvatar": false, "isCurrentlyPlaying": false, "gamertag": "blue waverunner", "lastTimePlayed": "2020-10-07T11:45:08.1756085Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "1073d6", "secondaryColor": "133157", "tertiaryColor": "134e8a" } }, { "xuid": "2533274800294636", "isFavorite": false, "displayPicRaw": "http://images-eds.xboxlive.com/image?url=rwljod2fPqLqGP3DBV9F_yK9iuxAt3_MH6tcOnQXTc96C5XVbUj8P3.hz6q2MNC.CkonLz3s75HO8eTKrTL2Axla4pQTGnngpXROJ64dNfo-&background=0xababab&mode=Padding&format=png", "useAvatar": false, "isCurrentlyPlaying": false, "gamertag": "xreaper87x", "lastTimePlayed": "2020-10-07T01:36:27.0427078Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "a21025", "secondaryColor": "450710", "tertiaryColor": "691117" } }, { "xuid": "2535433891092786", "isFavorite": false, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KI4AAOijCgOA3.jozKovAH98pXtkJUk6Lp7ZJcRyK5y8swP3aU4enAh0Y2BgtWaCZh&format=png", "useAvatar": false, "isCurrentlyPlaying": false, "gamertag": "silly ooo", "lastTimePlayed": "2020-10-06T23:57:34.1853944Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "107c10", "secondaryColor": "102b14", "tertiaryColor": "155715" } } ], "currentlyPlayingCount": 12, "havePlayedCount": 16 }, "alternateTitleIds": [], "contentBoards": null }, { "titleId": "1828326430", "pfn": "Microsoft.MinecraftUWPConsole_8wekyb3d8bbwe", "bingId": null, "windowsPhoneProductId": "df474919-a88a-4b07-bf42-a6b1ef97210c", "name": "Minecraft", "type": "Game", "devices": ["XboxOne"], "displayImage": "http://store-images.s-microsoft.com/image/apps.63068.13510798887677013.ec91fa24-ea80-4422-8b95-929529b2fd2f.d5d8fdca-4b0e-4e47-a2e6-45aaa98b6afb", "mediaItemType": "Application", "modernTitleId": "1828326430", "isBundle": false, "achievement": { "currentAchievements": 12, "totalAchievements": 0, "currentGamerscore": 195, "totalGamerscore": 2600, "progressPercentage": 8.0, "sourceVersion": 2 }, "stats": { "sourceVersion": 3 }, "gamePass": { "isGamePass": true }, "images": [ { "url": "http://store-images.s-microsoft.com/image/apps.63068.13510798887677013.ec91fa24-ea80-4422-8b95-929529b2fd2f.d5d8fdca-4b0e-4e47-a2e6-45aaa98b6afb", "type": "Logo" }, { "url": "http://store-images.s-microsoft.com/image/apps.18361.13510798887677013.a21d13b4-5a7e-43e7-8988-fab3c6e468bf.51da1091-caec-4e65-903e-38ee688438b7", "type": "FeaturePromotionalSquareArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.608.13510798887677013.5c7792f0-b887-4250-8c4e-4617af9c4509.bcd1385a-ad15-450c-9ddd-3ee80c37121a", "type": "SuperHeroArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.13222.13510798887677013.1077fa20-ea39-4722-a9c2-5f072733521f.16fb32c5-3c41-4d90-a6c8-21090c01cf10", "type": "BoxArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.415.13510798887677013.925a62c2-4090-4075-9a11-fdae4d97166b.4d87768a-c81f-4bb4-b372-de0824a568a5", "type": "TitledHeroArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.42111.13510798887677013.ec55fb39-3668-475f-9ef1-1e1444cd9cb9.217fb703-be11-4054-b5f7-e060f56addcb", "type": "BrandedKeyArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.17382.13510798887677013.afcc99fc-bdcc-4b9c-8261-4b2cd93b8845.49beb011-7271-4f15-a78b-422c511871e4", "type": "Poster" }, { "url": "http://store-images.s-microsoft.com/image/apps.59196.13510798887677013.1b437a69-c5a3-4242-bb52-36a28c29c74f.b33dda93-0785-430a-baa3-457a49000be7", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.40856.13510798887677013.1b437a69-c5a3-4242-bb52-36a28c29c74f.929aceff-f030-4ce6-811d-288805df4a75", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.22886.13510798887677013.1b437a69-c5a3-4242-bb52-36a28c29c74f.1e9c267b-083a-4f0f-9000-b74d249c4e9b", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.2227.13510798887677013.1b437a69-c5a3-4242-bb52-36a28c29c74f.dc16e07f-73e4-4b57-905f-fffb8e653801", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.4255.13510798887677013.65f3b64b-9386-47cd-8246-20b0f8b4dfa4.4717a7e5-bff8-4925-843a-ecf669e0c44a", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.32274.13510798887677013.1b437a69-c5a3-4242-bb52-36a28c29c74f.85895670-e7c5-40a5-aca4-3e99e77fc477", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.54343.13510798887677013.1b437a69-c5a3-4242-bb52-36a28c29c74f.9c601212-f8dc-4df2-8ff2-5327f3c88901", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.55010.13510798887677013.1b437a69-c5a3-4242-bb52-36a28c29c74f.487933a3-19f0-411e-8b52-63b803449c44", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.1593.13510798887677013.1b437a69-c5a3-4242-bb52-36a28c29c74f.ac33c3a6-1990-4d00-a4d7-d20a5038eaaf", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.26110.13510798887677013.1b437a69-c5a3-4242-bb52-36a28c29c74f.1fa99883-6afc-4469-86b2-9e3a2c98b8ab", "type": "Screenshot" } ], "titleHistory": { "lastTimePlayed": "2020-10-01T23:14:26.9405746Z", "visible": true, "canHide": false }, "detail": { "attributes": [ { "applicablePlatforms": null, "maximum": 4, "minimum": 2, "name": "XblLocalCoop" }, { "applicablePlatforms": null, "maximum": 8, "minimum": 2, "name": "XblOnlineCoop" }, { "applicablePlatforms": null, "maximum": 4, "minimum": 2, "name": "XblLocalMultiPlayer" }, { "applicablePlatforms": null, "maximum": 8, "minimum": 2, "name": "XblOnlineMultiPlayer" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "BroadcastSupport" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblCrossPlatformMultiPlayer" }, { "applicablePlatforms": ["Xbox"], "maximum": null, "minimum": null, "name": "SinglePlayer" }, { "applicablePlatforms": ["Xbox"], "maximum": null, "minimum": null, "name": "SharedSplitScreen" }, { "applicablePlatforms": ["Xbox", "Desktop"], "maximum": null, "minimum": null, "name": "XblCrossPlatformCoop" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblAchievements" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblPresence" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblClubs" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblCloudSaves" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XboxLive" } ], "availabilities": [ { "Actions": [ "Details", "Fulfill", "Purchase", "Browse", "Curate", "Redeem" ], "AvailabilityId": "B2WNWJ76Z010", "Platforms": ["Xbox"], "SkuId": "0010" } ], "capabilities": [ "expandedResources", "internetClientServer", "privateNetworkClientServer" ], "description": "Explore randomly generated worlds and build amazing things from the simplest of homes to the grandest of castles. Play in creative mode with unlimited resources or mine deep into the world in survival mode, crafting weapons and armor to fend off the dangerous mobs.\r\n\r\nFEATURES\r\n\r\nSkin, texture, and mash-up packs from the community! Find out more at minecraft.net/marketplace. \r\n\r\nADD-ONS! Learn more at minecraft.net/addons, where you can try some examples for free or learn to create your own.\r\n\r\nRealms! Play with up to 10 friends cross-platform in worlds that exist anytime, anywhere. Try a free 30-day trial in-app and learn more at http://minecraft.net/realms.\r\n\r\nXbox Live support, including achievements\r\n\r\nCross-platform play for up to eight players across Windows 10 PCs, Android devices, iOS phones and tablets, Xbox One, and virtual reality platforms.\r\n\r\nSlash commands to let you tweak how the game plays - you can give items away, summon mobs, change the time of day, and more.\r\n", "developerName": "Mojang/Microsoft Studios", "publisherName": "Microsoft Studios", "minAge": 7, "releaseDate": "2017-09-20T15:00:00Z", "shortDescription": "Explore randomly generated worlds and build amazing things from the simplest of homes to the grandest of castles. Play in creative mode with unlimited resources or mine deep into the world in survival mode, crafting weapons and armor to fend off the dangerous mobs.", "vuiDisplayName": null, "xboxLiveGoldRequired": false }, "friendsWhoPlayed": { "people": [ { "xuid": "2533274826800072", "isFavorite": false, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=Hr2eiH8yWKd4q_oa.xgbMsBMaML4RHmTUbpHkaZTnVU5KRB4bTh8MR86WWWB5GR.vzh0E9kRjckB83CjpwGCrUWEsXRb90OAITc4F4D6jNOPvNH6pV0L8c1lNSoi0gzbsaJ3._X_vFSIGtf8TCZsYn2hoN3c57jwNTxfTwUyiO0-&format=png", "useAvatar": true, "isCurrentlyPlaying": false, "gamertag": "ThumbTacular", "lastTimePlayed": "2020-10-08T19:21:39.5479311Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "193e91", "secondaryColor": "101836", "tertiaryColor": "102c69" } }, { "xuid": "2533274882100815", "isFavorite": false, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW3apWESZjav65Yncai8aRmVbSlZ3zqRpg1sdxEje_JmFWicqxauAfwAk4Kj7JH6ngVMNk.OeLP5bJBe0OMAAcTrTCfHsD9oiY7zZ.ZJT0AjYHYjCnSiJFTmWC9y0b.fbuEa._SdW1nZPPJvhwoYq1Ko-&format=png", "useAvatar": true, "isCurrentlyPlaying": false, "gamertag": "Corvus Wayne", "lastTimePlayed": "2020-09-27T16:43:23.2618269Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "193e91", "secondaryColor": "101836", "tertiaryColor": "102c69" } }, { "xuid": "2533274842575427", "isFavorite": true, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiaffGA7.OJ0LB2ZvBkn2xjKauaBY8sraytui4Z1aRrk7AD&format=png", "useAvatar": false, "isCurrentlyPlaying": false, "gamertag": "Killin King PRO", "lastTimePlayed": "2020-09-21T13:15:08.9680635Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "a21025", "secondaryColor": "450710", "tertiaryColor": "691117" } }, { "xuid": "2533274808831494", "isFavorite": false, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW_ES.ojiJijNBGRVUbTnZKsoCCCkjlsEJrrMqDkYqs3Mn31PexWZFBbxix7I_RLtrWFQJOAi32yE.nEY9vOpSXlhJs_HT7VeuDXhzA.PDIqFsmvuz1cAAR23k36JJ9dkjTahpCgVMX8n83el7j0GNgA-&format=png", "useAvatar": true, "isCurrentlyPlaying": false, "gamertag": "xl DiabloBlanco", "lastTimePlayed": "2020-08-15T18:08:01.4610452Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "4c4a4b", "secondaryColor": "191919", "tertiaryColor": "373737" } }, { "xuid": "2533274812261808", "isFavorite": false, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW3apWESZjav65Yncai8aRmVbSlZ3zqRpg1sdxEje_JmFTQaIPE.QhWezFkHjetzbapvRXDLBSJ6wiY_cMsEgnqAxqpD1OrJZcC6lG1e2UMcpLmHsW8LHADcb1wfWVA4BUP6kQwwmBrbaYrX3XQiXI.8-&format=png", "useAvatar": true, "isCurrentlyPlaying": false, "gamertag": "VolekTheFNDwarf", "lastTimePlayed": "2020-08-15T01:37:32.9468366Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "1081ca", "secondaryColor": "10314f", "tertiaryColor": "105080" } } ], "currentlyPlayingCount": 0, "havePlayedCount": 19 }, "alternateTitleIds": [], "contentBoards": null, "xboxLiveTier": "Full" }, { "titleId": "33936946", "pfn": "Microsoft.ZooTycoon_8wekyb3d8bbwe", "bingId": null, "windowsPhoneProductId": "3a7ea0a2-2d17-49d6-a557-edc6aa260f21", "name": "Zoo Tycoon: Ultimate Animal Collection", "type": "Game", "devices": ["PC", "XboxOne"], "displayImage": "http://store-images.s-microsoft.com/image/apps.8354.14226270511206590.6a01761e-3000-4be3-a1eb-b82f4a4e5d9e.716d4869-5b12-4a47-8a21-91cc917c2c77", "mediaItemType": "Application", "modernTitleId": "33936946", "isBundle": false, "achievement": { "currentAchievements": 0, "totalAchievements": 0, "currentGamerscore": 0, "totalGamerscore": 1500, "progressPercentage": 0.0, "sourceVersion": 2 }, "stats": { "sourceVersion": 2 }, "gamePass": { "isGamePass": true }, "images": [ { "url": "http://store-images.s-microsoft.com/image/apps.8354.14226270511206590.6a01761e-3000-4be3-a1eb-b82f4a4e5d9e.716d4869-5b12-4a47-8a21-91cc917c2c77", "type": "Logo" }, { "url": "http://store-images.s-microsoft.com/image/apps.47272.14226270511206590.25a1c821-19d9-449f-8438-4dbbae82b4a6.7e18ab1a-28a0-406c-9f5b-417a37031315", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.51280.14226270511206590.d3f6ff8c-e233-41d7-af44-309db86bfc65.c3b924f9-c159-49f3-958b-4f229bff41d4", "type": "Poster" }, { "url": "http://store-images.s-microsoft.com/image/apps.62724.14226270511206590.448f16df-2989-4b0e-baf3-2fba454ba5a8.6ffe63bf-d2e2-488e-adc6-729cbabf0c34", "type": "BoxArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.62256.14226270511206590.471ff2d9-c815-4969-917b-04a7eb451770.36b036c3-2740-4bd6-99f1-23b613cd230b", "type": "SuperHeroArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.37869.14226270511206590.f01892b5-df5c-424a-964b-4a9754d892c3.0559d235-641b-4820-b1b8-16ed4ea6cd45", "type": "BrandedKeyArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.59075.14226270511206590.d5903b59-c252-47d0-acf6-f107d4b97e23.425849f3-2792-4ad2-8912-01e6bb6b0967", "type": "TitledHeroArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.8079.14226270511206590.1c10ec87-7664-4c38-aa49-b5c011a1ec96.f280958b-6577-4080-8455-f04d39284645", "type": "FeaturePromotionalSquareArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.7415.14226270511206590.c34343d9-b60c-47c5-b2b5-82da1d2fcba6.674559c4-fc42-4d29-8771-a22b1305cbd2", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.62695.14226270511206590.b6af54d5-ede7-48ed-be97-97fca0cefba2.41c3c8a8-8d69-4f17-85c7-e1c7acc0b74b", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.40457.14226270511206590.1f9ecf74-611f-4666-99a3-c781275fbe93.6141f78e-c281-46e6-8407-368312003cca", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.17719.14226270511206590.d9a775be-e952-49c3-848f-e5d71ef2efa0.ce3a6078-042e-419d-bdc7-c7b5261f4211", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.50143.14226270511206590.af4a63df-58ab-4ba5-8085-22ccc391a146.e8be8de7-18e4-41a2-9b1e-529f7cbc48dd", "type": "Screenshot" } ], "titleHistory": { "lastTimePlayed": "2020-09-27T17:47:16.2571535Z", "visible": true, "canHide": true }, "detail": { "attributes": [ { "applicablePlatforms": null, "maximum": 4, "minimum": 2, "name": "XblOnlineCoop" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "BroadcastSupport" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblCrossPlatformMultiPlayer" }, { "applicablePlatforms": ["Xbox"], "maximum": null, "minimum": null, "name": "Capability4k" }, { "applicablePlatforms": ["Desktop", "Xbox"], "maximum": null, "minimum": null, "name": "CapabilityHDR" }, { "applicablePlatforms": ["Desktop", "Xbox"], "maximum": null, "minimum": null, "name": "SinglePlayer" }, { "applicablePlatforms": ["Desktop"], "maximum": null, "minimum": null, "name": "CapabilityVRR" }, { "applicablePlatforms": ["Xbox", "Desktop"], "maximum": null, "minimum": null, "name": "XblCrossPlatformCoop" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "CapabilityXboxEnhanced" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblAchievements" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblPresence" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblClubs" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblCloudSaves" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XPA" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XboxLive" } ], "availabilities": [ { "Actions": [ "Details", "Fulfill", "Purchase", "Browse", "Curate", "Redeem" ], "AvailabilityId": "B438W8GLFBHC", "Platforms": ["PC"], "SkuId": "0010" } ], "capabilities": ["internetClient"], "description": "* Windows 10 Version 10.0.16299 or higher required for online multiplayer.\nThe wildly popular Zoo Tycoon series gets fully-remastered and set to crank up the excitement, challenge, and fun of building the ultimate zoo. Let your imagination run wild with Zoo Tycoon: Ultimate Animal Collection! Choose from almost 200 visually stunning animals and the largest, most detailed selection of environments ever, then build, manage, and maintain your dream zoo alone or with up to four players on Xbox LIVE. This zoo simulation will charm animal lovers of all ages.\n\nEasy to start and easy to play, Zoo Tycoon gets you up close and interacting with the animals and zoo, offering intuitive controls and fun tutorials that allow players of all ages to have fun. Play smart as animals and guests will react to your creative choices and ultimately decide your chances to become a Zoo Tycoon.", "developerName": "Asobo ", "publisherName": "Xbox Game Studios", "minAge": 7, "releaseDate": "2017-10-31T04:00:00Z", "shortDescription": "The wildly popular Zoo Tycoon series gets fully-remastered and set to crank up the excitement, challenge, and fun of building the ultimate zoo. Let your imagination run wild with \"Zoo Tycoon: Ultimate Animal Collection\"! Build, manage, and maintain your dream zoo alone or with up to four players on Xbox LIVE. This zoo simulation will charm animal lovers of all ages.", "vuiDisplayName": null, "xboxLiveGoldRequired": false }, "friendsWhoPlayed": { "people": [ { "xuid": "2533274819440281", "isFavorite": true, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIUmVJYExSbUKdClOYgRBYzF5j8lW_PEEhxcUVPRmjJfmCs0ZWdyU7XH4.soA9.2N1&format=png", "useAvatar": true, "isCurrentlyPlaying": false, "gamertag": "Atronachs", "lastTimePlayed": "2020-06-04T17:06:39.8146494Z", "presenceState": "Online", "preferredColor": { "primaryColor": "54a81b", "secondaryColor": "103610", "tertiaryColor": "107c10" } }, { "xuid": "2533274839056631", "isFavorite": false, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW_ES.ojiJijNBGRVUbTnZKsoCCCkjlsEJrrMqDkYqs3MEADICs.NkhctS2VzIV6FAcyOt07Md3Y4xQaXjA.ZBhIB.WbwwftOGZ9cqZ_BVxhJDvhjjR37sOvsjG3glZMJM0E.ArYk4GoNc1d8.M.fjuM-&format=png", "useAvatar": true, "isCurrentlyPlaying": false, "gamertag": "GrumpyKurbs", "lastTimePlayed": "2020-05-31T20:08:54.0306614Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "107c10", "secondaryColor": "102b14", "tertiaryColor": "155715" } }, { "xuid": "2533274883751843", "isFavorite": true, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIFXxmxGDtE9Vkd62rOpb7JekMOTg1rRO66NM_u2E016OjoyaCegTvr9YvxYMbHPgI&format=png", "useAvatar": false, "isCurrentlyPlaying": false, "gamertag": "Alara Took", "lastTimePlayed": "2020-05-17T15:52:20.0419689Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "148282", "secondaryColor": "103033", "tertiaryColor": "13585E" } }, { "xuid": "2533274814215093", "isFavorite": false, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIbgsfD63mXFU_1J9M4K4P9IbbXEs53kWhNG4qYctUr4HVQ9GfVYkb19j7DAnlmYFa&format=png", "useAvatar": true, "isCurrentlyPlaying": false, "gamertag": "GreasedBacon34", "lastTimePlayed": "2020-02-27T01:31:08.6747520Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "193e91", "secondaryColor": "101836", "tertiaryColor": "102c69" } }, { "xuid": "2535438407254788", "isFavorite": false, "displayPicRaw": "https://images-eds-ssl.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW3apWESZjav65Yncai8aRmVbSlZ3zqRpg1sdxEje_JmF_PkmaIUBx7B66SybIeKPjxrObQyD_3C4rOiKRFgQHS_wfg.Umnzh87ijSYjxHnZM1woKGylytHiLgBIv1_sFhWdC8SS7r.mznaIX1.ooYhI-&format=png", "useAvatar": false, "isCurrentlyPlaying": false, "gamertag": "Cruz704", "lastTimePlayed": "2019-12-29T05:40:58.9132266Z", "presenceState": "Offline", "preferredColor": { "primaryColor": "193e91", "secondaryColor": "101836", "tertiaryColor": "102c69" } } ], "currentlyPlayingCount": 0, "havePlayedCount": 7 }, "alternateTitleIds": [], "contentBoards": null, "xboxLiveTier": "Full" } ] } python-xbox-webapi-2.1.0/tests/data/responses/titlehub_titleinfo.json000066400000000000000000000257701465040003600261530ustar00rootroot00000000000000{ "xuid": "2719584417856940", "titles": [ { "titleId": "1717113201", "pfn": "Microsoft.SeaofThieves_8wekyb3d8bbwe", "bingId": null, "serviceConfigId": "00000000-0000-0000-0000-000066591171", "windowsPhoneProductId": "200c2ce3-f2d5-4085-ac78-b8cf7226ffd6", "name": "Sea of Thieves", "type": "Game", "devices": ["PC", "XboxOne", "XboxSeries"], "displayImage": "http://store-images.s-microsoft.com/image/apps.43328.14554784103656548.0e68e37c-c8b9-4af6-af25-2426996b2dd9.51c2df40-5aae-441e-ad5b-6f05ee2a43da", "mediaItemType": "Application", "modernTitleId": "1717113201", "isBundle": false, "achievement": { "currentAchievements": 2, "totalAchievements": 0, "currentGamerscore": 15, "totalGamerscore": 2740, "progressPercentage": 1.0, "sourceVersion": 2 }, "stats": null, "gamePass": null, "images": [ { "url": "http://store-images.s-microsoft.com/image/apps.21958.14554784103656548.6fcc833b-0325-481c-a620-e88ce4adf0e2.1cefcf06-5cd6-4af3-882a-9be53271bd59", "type": "Logo" }, { "url": "http://store-images.s-microsoft.com/image/apps.43328.14554784103656548.0e68e37c-c8b9-4af6-af25-2426996b2dd9.51c2df40-5aae-441e-ad5b-6f05ee2a43da", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.43251.14554784103656548.32cb1e79-42f2-4166-879d-09ccb8f038fd.28fe5975-9815-4234-a326-9726a08cf46a", "type": "Tile" }, { "url": "http://store-images.s-microsoft.com/image/apps.16347.14554784103656548.6c0bfca6-ceff-4368-9bde-2fe50f344136.007dce43-6492-46f2-bb2b-2b28df98fc3c", "type": "Poster" }, { "url": "http://store-images.s-microsoft.com/image/apps.6880.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.80649d61-fec4-4076-aa88-1d2eebd2c84c", "type": "BoxArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.49929.14554784103656548.6c0bfca6-ceff-4368-9bde-2fe50f344136.88fbc331-a034-4ba9-a091-d5c3dee58175", "type": "Logo" }, { "url": "http://store-images.s-microsoft.com/image/apps.61467.14554784103656548.6c0bfca6-ceff-4368-9bde-2fe50f344136.cf7a16ec-ac12-454c-9ce9-78c02c61409a", "type": "SuperHeroArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.3192.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.05814c70-cb91-4ef7-aecd-0a4b8e5667f4", "type": "BrandedKeyArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.56440.14554784103656548.6c0bfca6-ceff-4368-9bde-2fe50f344136.4742d116-5b5d-489e-8c7e-7a2e5cd72628", "type": "TitledHeroArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.2174.14554784103656548.6c0bfca6-ceff-4368-9bde-2fe50f344136.72c6c04e-b278-4ad7-9d1b-44c815f2b06c", "type": "FeaturePromotionalSquareArt" }, { "url": "http://store-images.s-microsoft.com/image/apps.16127.14554784103656548.5229b523-ba31-4e1e-8b9b-af4211062227.7176a52d-9b92-4c1b-b756-af25abfa99c5", "type": "Hero" }, { "url": "http://store-images.s-microsoft.com/image/apps.22321.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.fbb76bf3-8471-4a23-8657-0e2a5533bfdd", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.64197.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.5f773ba7-b1af-483d-8f83-6c12a66e40b7", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.46899.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.404b042e-254a-4026-9d5b-63a7fc77ac86", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.32427.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.8b8e6b06-df59-4f88-9646-290e2dc04181", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.56109.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.b286756a-e92a-42c7-9866-9a72190dc9f0", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.5813.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.3d275c30-cba6-430e-b0d0-07d2cc051df2", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.9749.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.37589008-60cc-4047-95bb-0d842db13524", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.29802.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.5f976492-14a5-4616-9d78-29ffb2da6527", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.26361.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.583a46c6-a40c-49df-b4d6-572a40f44474", "type": "Screenshot" }, { "url": "http://store-images.s-microsoft.com/image/apps.31437.14554784103656548.b63ee12b-543e-4fc4-abf2-7289bc489e84.83c7204b-ee15-44fc-81b6-ff3a48e06a2a", "type": "Screenshot" } ], "titleHistory": null, "detail": { "attributes": [ { "applicablePlatforms": null, "maximum": 4, "minimum": 2, "name": "XblOnlineCoop" }, { "applicablePlatforms": null, "maximum": 4, "minimum": 2, "name": "XblOnlineMultiPlayer" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "BroadcastSupport" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblCrossPlatformMultiPlayer" }, { "applicablePlatforms": ["Xbox"], "maximum": null, "minimum": null, "name": "Capability4k" }, { "applicablePlatforms": ["Xbox"], "maximum": null, "minimum": null, "name": "CapabilityHDR" }, { "applicablePlatforms": ["Xbox", "Desktop"], "maximum": null, "minimum": null, "name": "XblCrossPlatformCoop" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "GameStreaming" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "CapabilityXboxEnhanced" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblAchievements" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblPresence" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblClubs" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XblCloudSaves" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XPA" }, { "applicablePlatforms": null, "maximum": null, "minimum": null, "name": "XboxLive" } ], "availabilities": [ { "Actions": [ "Details", "Fulfill", "Purchase", "Browse", "Curate", "Redeem" ], "AvailabilityId": "9R3F7V8SQ2XD", "Platforms": ["PC", "Xbox"], "SkuId": "0010" } ], "capabilities": [ "internetClient", "internetClientServer", "privateNetworkClientServer", "codeGeneration" ], "description": "Xbox Live Gold membership required to play on Xbox One; sold separately. \r\n\r\n=========\r\n\r\nAbout the game\r\nSea of Thieves offers the essential pirate experience, from sailing and fighting to exploring and looting – everything you need to live the pirate life and become a legend in your own right. With no set roles, you have complete freedom to approach the world, and other players, however you choose.\r\n\r\nWhether you’re voyaging as a group or sailing solo, you’re bound to encounter other crews in this shared world adventure – but will they be friends or foes, and how will you respond?\r\n\r\nA vast open world\r\nExplore a vast open world filled with unspoiled islands, sunken ships and mysterious artefacts. Take on quests to hunt for lost treasure, seek out cursed Skeleton Captains or gather valuable cargo for the Trading Companies. Go hunting and fishing or choose from hundreds of optional goals and side-quests.\r\n\r\nUnforgettable stories\r\nPlay through the Tall Tales to experience Sea of Thieves’ unique take on a story-driven campaign. With 11 tales to play through across two epic storylines, these immersive and cinematic quests provide around 30 hours of the ultimate pirate fantasy.\r\n\r\nBecome Legend \r\nOn your journey to become a Pirate Legend you’ll amass loot, build a reputation and define a unique personal style with your hard-earned rewards. Adventurer. Explorer. Conqueror. What will your legend be?\r\n\r\nA game that’s always growing\r\nWith five major expansions and almost a year’s worth of monthly updates, Sea of Thieves is a service-based game that is continually growing and evolving. Check back each month to see what new content has been added.", "developerName": "Rare Ltd", "genres": ["Action & adventure"], "publisherName": "Microsoft Studios", "minAge": 12, "releaseDate": "2018-03-20T04:00:00Z", "shortDescription": "Sea of Thieves offers the essential pirate experience, from sailing and fighting to exploring and looting – everything you need to live the pirate life and become a legend in your own right. With no set roles, you have complete freedom to approach the world, and other players, however you choose. \r\n\r\nWhether you’re voyaging as a group or sailing solo, you’re bound to encounter other crews in this shared-world adventure – but will they be friends or foes, and how will you respond?\r\n", "vuiDisplayName": null, "xboxLiveGoldRequired": true }, "friendsWhoPlayed": null, "alternateTitleIds": [], "contentBoards": null, "xboxLiveTier": "Full", "isStreamable": true } ] } python-xbox-webapi-2.1.0/tests/data/responses/usersearch_live_search.json000066400000000000000000000060521465040003600267560ustar00rootroot00000000000000{ "results": [ { "text": "Tux", "result": { "id": "2533274895244106", "gamertag": "Tux", "displayPicUri": "http://images-eds.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RWwcxuUQ9WVT6xh5XaeeZD02wEfGZeuD.XMoGFVYkwHDqfVSYLAdvK.9IlH2sAzAwWZgwaT8xNIzuGLxZUs7WYDCernQAa2Z5pcI7ZPLMjUFqy4Exhco5lsn87_QraMalCIh3jlnlF_sjFT2adTsb1KU-&format=png", "score": 0.0 } }, { "text": "TuX Rose", "result": { "id": "2533274826466726", "gamertag": "TuX Rose", "displayPicUri": "http://images-eds.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW8ke8ralOdP9BGd4wzwl0MJ9z6QzuGwZjtvbE7sSsMVW_zJPeygmghEEz6SlvdwPTkfnI_ifxHEl8Bxf65VhimlzjtjbADgPIeBFg77KAaPgvMR.2gkcQhtuRsRdPDBFfnpNqFQ2zyMr6OPEEWveG_M-&format=png", "score": 0.0 } }, { "text": "TuX Teal", "result": { "id": "2535469793482901", "gamertag": "TuX Teal", "displayPicUri": "http://images-eds.xboxlive.com/image?url=8Oaj9Ryq1G1_p3lLnXlsaZgGzAie6Mnu24_PawYuDYIoH77pJ.X5Z.MqQPibUVTcS9jr0n8i7LY1tL3U7AiafRx1EB3W8XvHFH6tP.92dvnlFSq13CMXDFG2UU0OgswX&format=png", "score": 0.0 } }, { "text": "Gizmo Tux", "result": { "id": "2535472607389917", "gamertag": "Gizmo Tux", "displayPicUri": "http://images-eds.xboxlive.com/image?url=wHwbXKif8cus8csoZ03RW3apWESZjav65Yncai8aRmVbSlZ3zqRpg1sdxEje_JmFd0H6LIaW2ACNGPTs2dTgjJETJdbc1Ezx_MDjAQjdC86eF6svmSljZHgg8MgDc.IcJgySZUyO9xeVEwTxEXUPRlBNI.FoHt2JSkgWNLa7_CQ-&format=png", "score": 0.0 } }, { "text": "Tennessee Tux", "result": { "id": "2533274889256608", "gamertag": "Tennessee Tux", "displayPicUri": "http://images-eds.xboxlive.com/image?url=Hr2eiH8yWKd4q_oa.xgbMn_Nr81xI0exxmgLbuOz_JFlA0OUi9rGwuMNOXkIGIIEbTYKWtpweV9EYJKhI2LFWWLEphXu5ydxODNou70VhWzXrVXGMJs_wC2fcy7VPqXJM.3mjqhvN1NXBBqgmvYE6oOhmCX8hnAubNFdO5HubCQ-&format=png", "score": 0.0 } }, { "text": "Tux Sharkk", "result": { "id": "2535429744373000", "gamertag": "Tux Sharkk", "displayPicUri": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIFXxmxGDtE9Vkd62rOpb7JcGvME9LzjeruYo3cC50qVYelz5LjucMJtB5xOqvr7WR&format=png", "score": 0.0 } }, { "text": "Tux Rabbit", "result": { "id": "2535412136281412", "gamertag": "Tux Rabbit", "displayPicUri": "http://images-eds.xboxlive.com/image?url=z951ykn43p4FqWbbFvR2Ec.8vbDhj8G2Xe7JngaTToBrrCmIEEXHC9UNrdJ6P7KIoIeJ1sl4QgwrJRGcdRHOCkEH9VceK7CPhb1R4StLimFchduLrEzQbBvKlLplSZcV&format=png", "score": 0.0 } }, { "text": "Capitan Tux", "result": { "id": "2533274892415915", "gamertag": "Capitan Tux", "displayPicUri": "http://images-eds.xboxlive.com/image?url=rwljod2fPqLqGP3DBV9F_yK9iuxAt3_MH6tcOnQXTc8q7ySyo6uynPK38pcHGWS_yc8P7cJ2zzHnGdWznLsSVZOwShXEWkyF0R6U6wXK0rs-&background=0xababab&mode=Padding&format=png", "score": 0.0 } } ] }python-xbox-webapi-2.1.0/tests/data/responses/userstats_batch.json000066400000000000000000000077561465040003600254600ustar00rootroot00000000000000{ "groups": [ { "name": "Hero", "titleid": "1717113201", "statlistscollection": [ { "arrangebyfield": "xuid", "arrangebyfieldid": "2584878536129841", "stats": [ { "groupproperties": { "Ordinal": "1", "SortOrder": "Descending", "DisplayName": "Gold Hoarder Chests Cashed In", "DisplayFormat": "Integer", "DisplaySemantic": "Best" }, "xuid": "2584878536129841", "scid": "00000000-0000-0000-0000-000066591171", "name": "ChestsCashedIn", "type": "Double", "value": "5", "properties": { "DisplayName": "Gold Hoarder Chests Cashed In" } }, { "groupproperties": { "Ordinal": "2", "SortOrder": "Descending", "DisplayName": "Distance Sailed (Metres)", "DisplayFormat": "Integer", "DisplaySemantic": "Best" }, "xuid": "2584878536129841", "scid": "00000000-0000-0000-0000-000066591171", "name": "DistanceSailed", "type": "Double", "value": "92173", "properties": { "DisplayName": "Distance Sailed (Metres)" } }, { "groupproperties": { "Ordinal": "3", "SortOrder": "Descending", "DisplayName": "Voyages Completed", "DisplayFormat": "Integer", "DisplaySemantic": "Best" }, "xuid": "2584878536129841", "scid": "00000000-0000-0000-0000-000066591171", "name": "VoyagesCompleted", "type": "Double", "value": "16", "properties": { "DisplayName": "Voyages Completed" } }, { "groupproperties": { "Ordinal": "4", "SortOrder": "Descending", "DisplayName": "Order of Souls Skulls Cashed In", "DisplayFormat": "Integer", "DisplaySemantic": "Best" }, "xuid": "2584878536129841", "scid": "00000000-0000-0000-0000-000066591171", "name": "BountiesHandedIn", "type": "Double", "value": "9", "properties": { "DisplayName": "Order of Souls Skulls Cashed In" } }, { "groupproperties": { "Ordinal": "5", "SortOrder": "Descending", "DisplayName": "Merchant Alliance Cargo Delivered", "DisplayFormat": "Integer", "DisplaySemantic": "Best" }, "xuid": "2584878536129841", "scid": "00000000-0000-0000-0000-000066591171", "name": "CargoDelivered", "type": "Double", "value": "8", "properties": { "DisplayName": "Merchant Alliance Cargo Delivered" } }, { "groupproperties": { "Ordinal": "6", "SortOrder": "Descending", "DisplayName": "Islands Visited", "DisplayFormat": "Integer", "DisplaySemantic": "Best" }, "xuid": "2584878536129841", "scid": "00000000-0000-0000-0000-000066591171", "name": "IslandsVisited", "type": "Double", "value": "122", "properties": { "DisplayName": "Islands Visited" } } ] } ] } ], "statlistscollection": [ { "arrangebyfield": "xuid", "arrangebyfieldid": "2584878536129841", "stats": [] } ] }python-xbox-webapi-2.1.0/tests/data/responses/userstats_batch_by_scid.json000066400000000000000000000007651465040003600271450ustar00rootroot00000000000000{ "groups": [ { "name": "Hero", "statlistscollection": [] } ], "statlistscollection": [ { "arrangebyfield": "xuid", "arrangebyfieldid": "2669321029139235", "stats": [ { "groupproperties": {}, "xuid": "2669321029139235", "scid": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "MinutesPlayed", "type": "Integer", "value": "1220", "properties": {} } ] } ] }python-xbox-webapi-2.1.0/tests/data/responses/userstats_by_scid.json000066400000000000000000000005771465040003600260050ustar00rootroot00000000000000{ "statlistscollection": [ { "arrangebyfield": "xuid", "arrangebyfieldid": "2669321029139235", "stats": [ { "xuid": "2669321029139235", "scid": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "MinutesPlayed", "type": "Integer", "value": "1220", "properties": {} } ] } ] }python-xbox-webapi-2.1.0/tests/data/responses/userstats_by_scid_with_metadata.json000066400000000000000000000005771465040003600307000ustar00rootroot00000000000000{ "statlistscollection": [ { "arrangebyfield": "xuid", "arrangebyfieldid": "2669321029139235", "stats": [ { "xuid": "2669321029139235", "scid": "1370999b-fca2-4c53-8ec5-73493bcb67e5", "name": "MinutesPlayed", "type": "Integer", "value": "1220", "properties": {} } ] } ] }python-xbox-webapi-2.1.0/tests/data/responses/xal_authentication_resp.json000066400000000000000000000006241465040003600271610ustar00rootroot00000000000000{ "MsaOauthRedirect":"https://login.live.com/oauth20_authorize.srf?lw=1&fl=dob,easi2&xsup=1&display=android_phone&code_challenge=code_challenge_string&code_challenge_method=S256&state=state_string&client_id=000000004C20A908&response_type=code&scope=service%3A%3Auser.auth.xboxlive.com%3A%3AMBI_SSL&redirect_uri=ms-xal-public-beta-000000004c20a908%3A%2F%2Fauth&nopa=2", "MsaRequestParameters":{} }python-xbox-webapi-2.1.0/tests/data/responses/xal_authorization_resp.json000066400000000000000000000026161465040003600270450ustar00rootroot00000000000000{ "DeviceToken": "eyDeviceToken", "TitleToken": { "DisplayClaims": { "xti": { "tid": "1016898439" } }, "IssueInstant": "2022-11-11T21:11:43.9456623Z", "NotAfter": "2099-11-25T21:11:43.9456623Z", "Token": "eyTitletoken" }, "UserToken": { "DisplayClaims": { "xui": [ { "uhs": "2034583485034500345" } ] }, "IssueInstant": "2022-11-11T21:11:43.9422756Z", "NotAfter": "2099-11-25T21:11:43.9422756Z", "Token": "eyUserToken" }, "AuthorizationToken": { "DisplayClaims": { "xui": [ { "gtg": "Pony", "xid": "24812480912094", "uhs": "2034583485034500345", "agg": "Adult", "usr": "195 229 243", "prv": "184 185 186 187 188 190 191 192 193 194 196 198 199 200 201 203 204 205 206 207 208 211 214 215 216 217 220 224 227 228 235 238 245 247 249 252 254 255" } ] }, "IssueInstant": "2022-11-11T21:11:44.1945885Z", "NotAfter": "2099-11-12T13:11:44.1945885Z", "Token": "eyXSTSToken" }, "WebPage": "https://sisu.xboxlive.com/client/v27/000000004c20a908/view/index.html", "Sandbox": "RETAIL" }python-xbox-webapi-2.1.0/tests/data/test_signing_key.pem000066400000000000000000000003431465040003600233770ustar00rootroot00000000000000-----BEGIN EC PRIVATE KEY----- MHcCAQEEIObr5IVtB+DQcn25+R9n4K/EyUUSbVvxIJY7WhVeELUuoAoGCCqGSM49 AwEHoUQDQgAEOKyCQ9qH5U4lZcS0c5/LxIyKvOpKe0l3x4Eg5OgDbzezKNLRgT28 fd4Fq3rU/1OQKmx6jSq0vTB5Ao/48m0iGg== -----END EC PRIVATE KEY----- python-xbox-webapi-2.1.0/tests/test_account.py000066400000000000000000000031701465040003600214640ustar00rootroot00000000000000from httpx import HTTPStatusError, Response import pytest from xbox.webapi.api.provider.account.models import ( ChangeGamertagResult, ClaimGamertagResult, ) @pytest.mark.asyncio async def test_claim_gamertag(respx_mock, xbl_client): route = respx_mock.post("https://user.mgt.xboxlive.com").mock( return_value=Response(200) ) ret = await xbl_client.account.claim_gamertag("2669321029139235", "PrettyPony") assert ret == ClaimGamertagResult.Available assert route.called @pytest.mark.asyncio async def test_claim_gamertag_error(respx_mock, xbl_client): route = respx_mock.post("https://user.mgt.xboxlive.com").mock( return_value=Response(500) ) with pytest.raises(HTTPStatusError) as err: await xbl_client.account.claim_gamertag("2669321029139235", "PrettyPony") assert err.value.response.status_code == 500 assert route.called @pytest.mark.asyncio async def test_change_gamertag(respx_mock, xbl_client): route = respx_mock.post("https://accounts.xboxlive.com").mock( return_value=Response(200) ) ret = await xbl_client.account.change_gamertag("2669321029139235", "PrettyPony") assert ret == ChangeGamertagResult.ChangeSuccessful assert route.called @pytest.mark.asyncio async def test_change_gamertag_error(respx_mock, xbl_client): route = respx_mock.post("https://accounts.xboxlive.com").mock( return_value=Response(500) ) with pytest.raises(HTTPStatusError) as err: await xbl_client.account.change_gamertag("2669321029139235", "PrettyPony") assert err.value.response.status_code == 500 assert route.called python-xbox-webapi-2.1.0/tests/test_achievements.py000066400000000000000000000056031465040003600225060ustar00rootroot00000000000000from httpx import Response import pytest from tests.common import get_response_json @pytest.mark.asyncio async def test_achievement_360_all(respx_mock, xbl_client): route = respx_mock.get("https://achievements.xboxlive.com").mock( return_value=Response(200, json=get_response_json("achievements_360_all")) ) ret = await xbl_client.achievements.get_achievements_xbox360_all( "2669321029139235", 1297290392 ) assert ret.paging_info.total_records == 15 assert route.called @pytest.mark.asyncio async def test_achievement_360_earned(respx_mock, xbl_client): route = respx_mock.get("https://achievements.xboxlive.com").mock( return_value=Response(200, json=get_response_json("achievements_360_earned")) ) ret = await xbl_client.achievements.get_achievements_xbox360_earned( "2669321029139235", 1297290392 ) assert len(ret.achievements) == 1 assert route.called @pytest.mark.asyncio async def test_achievement_360_recent_progress(respx_mock, xbl_client): route = respx_mock.get("https://achievements.xboxlive.com").mock( return_value=Response( 200, json=get_response_json("achievements_360_recent_progress") ) ) ret = ( await xbl_client.achievements.get_achievements_xbox360_recent_progress_and_info( xuid="2669321029139235" ) ) assert len(ret.titles) == 32 assert route.called @pytest.mark.asyncio async def test_achievement_one_details(respx_mock, xbl_client): route = respx_mock.get("https://achievements.xboxlive.com").mock( return_value=Response(200, json=get_response_json("achievements_one_details")) ) ret = await xbl_client.achievements.get_achievements_detail_item( xuid="2669321029139235", service_config_id="1370999b-fca2-4c53-8ec5-73493bcb67e5", achievement_id="39", ) assert len(ret.achievements) == 1 assert route.called @pytest.mark.asyncio async def test_achievement_one_gameprogress(respx_mock, xbl_client): route = respx_mock.get("https://achievements.xboxlive.com").mock( return_value=Response( 200, json=get_response_json("achievements_one_gameprogress") ) ) ret = await xbl_client.achievements.get_achievements_xboxone_gameprogress( xuid="2669321029139235", title_id=219630713 ) assert len(ret.achievements) == 32 assert route.called @pytest.mark.asyncio async def test_achievement_one_recent_progress(respx_mock, xbl_client): route = respx_mock.get("https://achievements.xboxlive.com").mock( return_value=Response( 200, json=get_response_json("achievements_one_recent_progress") ) ) ret = ( await xbl_client.achievements.get_achievements_xboxone_recent_progress_and_info( xuid="2669321029139235" ) ) assert len(ret.titles) == 32 assert route.called python-xbox-webapi-2.1.0/tests/test_auth.py000066400000000000000000000067571465040003600210070ustar00rootroot00000000000000from datetime import datetime, timedelta, timezone from httpx import Response import pytest from tests.common import get_response_json @pytest.mark.asyncio async def test_generate_auth_url(auth_mgr): url = auth_mgr.generate_authorization_url() assert url.startswith("https://login.live.com/oauth20_authorize.srf?") assert "client_id=abc" in url assert "response_type=code" in url @pytest.mark.asyncio async def test_generate_auth_url_with_state(auth_mgr): state = "test_state" url = auth_mgr.generate_authorization_url(state) assert f"state={state}" in url @pytest.mark.asyncio async def test_request_tokens(respx_mock, auth_mgr): route1 = respx_mock.post("https://login.live.com").mock( return_value=Response(200, json=get_response_json("auth_oauth2_token")) ) route2 = respx_mock.post("https://user.auth.xboxlive.com/user/authenticate").mock( return_value=Response(200, json=get_response_json("auth_user_token")) ) route3 = respx_mock.post("https://xsts.auth.xboxlive.com/xsts/authorize").mock( return_value=Response(200, json=get_response_json("auth_xsts_token")) ) await auth_mgr.request_tokens("CODE") assert route1.called assert route2.called assert route3.called @pytest.mark.asyncio async def test_refresh_tokens(respx_mock, auth_mgr): # Expire Tokens expired = datetime.now(timezone.utc) - timedelta(days=10) auth_mgr.oauth.issued = expired auth_mgr.user_token.not_after = expired auth_mgr.xsts_token.not_after = expired route1 = respx_mock.post("https://login.live.com").mock( return_value=Response(200, json=get_response_json("auth_oauth2_token")) ) route2 = respx_mock.post("https://user.auth.xboxlive.com/user/authenticate").mock( return_value=Response(200, json=get_response_json("auth_user_token")) ) route3 = respx_mock.post("https://xsts.auth.xboxlive.com/xsts/authorize").mock( return_value=Response(200, json=get_response_json("auth_xsts_token")) ) await auth_mgr.refresh_tokens() assert route1.called assert route2.called assert route3.called @pytest.mark.asyncio async def test_refresh_tokens_still_valid(auth_mgr): now = datetime.now(timezone.utc) auth_mgr.oauth.issued = now auth_mgr.user_token.not_after = now + timedelta(days=1) auth_mgr.xsts_token.not_after = now + timedelta(days=1) await auth_mgr.refresh_tokens() @pytest.mark.asyncio async def test_refresh_tokens_user_still_valid(respx_mock, auth_mgr): # Expire Tokens expired = datetime.now(timezone.utc) - timedelta(days=10) auth_mgr.oauth.issued = expired auth_mgr.xsts_token.not_after = expired auth_mgr.user_token.not_after = datetime.now(timezone.utc) + timedelta(days=1) route1 = respx_mock.post("https://login.live.com").mock( return_value=Response(200, json=get_response_json("auth_oauth2_token")) ) route2 = respx_mock.post("https://xsts.auth.xboxlive.com/xsts/authorize").mock( return_value=Response(200, json=get_response_json("auth_xsts_token")) ) await auth_mgr.refresh_tokens() assert route1.called assert route2.called @pytest.mark.asyncio async def test_xsts_properties(auth_mgr): assert auth_mgr.xsts_token.xuid == "2669321029139235" assert auth_mgr.xsts_token.gamertag == "e" assert auth_mgr.xsts_token.userhash == "abcdefg" assert auth_mgr.xsts_token.age_group == "Adult" assert auth_mgr.xsts_token.privileges == "" assert auth_mgr.xsts_token.user_privileges == "" python-xbox-webapi-2.1.0/tests/test_catalog.py000066400000000000000000000044401465040003600214430ustar00rootroot00000000000000from httpx import Response import pytest from xbox.webapi.api.provider.catalog.models import AlternateIdType, FieldsTemplate from tests.common import get_response_json @pytest.mark.asyncio async def test_get_products(respx_mock, xbl_client): route = respx_mock.get("https://displaycatalog.mp.microsoft.com").mock( return_value=Response(200, json=get_response_json("catalog_browse")) ) ret = await xbl_client.catalog.get_products(["C5DTJ99626K3", "BT5P2X999VH2"]) assert len(ret.products) == 2 assert route.called @pytest.mark.asyncio async def test_get_products_detail(respx_mock, xbl_client): route = respx_mock.get("https://displaycatalog.mp.microsoft.com").mock( return_value=Response(200, json=get_response_json("catalog_browse_details")) ) ret = await xbl_client.catalog.get_products( ["C5DTJ99626K3", "BT5P2X999VH2"], fields=FieldsTemplate.DETAILS ) assert len(ret.products) == 2 assert route.called @pytest.mark.asyncio async def test_get_product_from_alternate_id(respx_mock, xbl_client): route = respx_mock.get("https://displaycatalog.mp.microsoft.com").mock( return_value=Response(200, json=get_response_json("catalog_product_lookup")) ) ret = await xbl_client.catalog.get_product_from_alternate_id( "4DF9E0F8.Netflix_mcm4njqhnhss8", AlternateIdType.PACKAGE_FAMILY_NAME ) assert ret.total_result_count == 1 assert route.called @pytest.mark.asyncio async def test_get_product_from_alternate_id_legacy(respx_mock, xbl_client): route = respx_mock.get("https://displaycatalog.mp.microsoft.com").mock( return_value=Response( 200, json=get_response_json("catalog_product_lookup_legacy") ) ) ret = await xbl_client.catalog.get_product_from_alternate_id( "71e7df12-89e0-4dc7-a5ff-a182fc2df94f", AlternateIdType.LEGACY_XBOX_PRODUCT_ID ) assert ret.total_result_count == 1 assert route.called @pytest.mark.asyncio async def test_product_search(respx_mock, xbl_client): route = respx_mock.get("https://displaycatalog.mp.microsoft.com").mock( return_value=Response(200, json=get_response_json("catalog_search")) ) ret = await xbl_client.catalog.product_search("dest") assert ret.total_result_count == 10 assert route.called python-xbox-webapi-2.1.0/tests/test_cqs.py000066400000000000000000000020511465040003600206130ustar00rootroot00000000000000from httpx import Response import pytest from tests.common import get_response_json @pytest.mark.asyncio async def test_channel_list_download(respx_mock, xbl_client): route = respx_mock.get("https://cqs.xboxlive.com").mock( return_value=Response(200, json=get_response_json("cqs_get_channel_list")) ) ret = await xbl_client.cqs.get_channel_list( locale_info="de-DE", headend_id="dbd2530a-fcd5-8ff0-b89d-20cd7e021502" ) assert len(ret.channels) == 8 assert route.called @pytest.mark.asyncio async def test_schedule_download(respx_mock, xbl_client): route = respx_mock.get("https://cqs.xboxlive.com").mock( return_value=Response(200, json=get_response_json("cqs_get_schedule")) ) ret = await xbl_client.cqs.get_schedule( locale_info="de-DE", headend_id="dbd2530a-fcd5-8ff0-b89d-20cd7e021502", start_date="2018-03-20T23:50:00.000Z", duration_minutes=60, channel_skip=0, channel_count=5, ) assert len(ret.channels) == 5 assert route.called python-xbox-webapi-2.1.0/tests/test_gameclips.py000066400000000000000000000106321465040003600217750ustar00rootroot00000000000000from httpx import Response import pytest from tests.common import get_response_json @pytest.mark.asyncio async def test_gameclips_recent_xuid(respx_mock, xbl_client): route = respx_mock.get("https://gameclipsmetadata.xboxlive.com").mock( return_value=Response(200, json=get_response_json("gameclips_recent_xuid")) ) ret = await xbl_client.gameclips.get_recent_clips_by_xuid( "2669321029139235", skip_items=0, max_items=25 ) assert len(ret.game_clips) == 25 assert route.called @pytest.mark.asyncio async def test_gameclips_recent_xuid_titleid_filter(respx_mock, xbl_client): route = respx_mock.get("https://gameclipsmetadata.xboxlive.com").mock( return_value=Response( 200, json=get_response_json("gameclips_recent_xuid_titleid") ) ) ret = await xbl_client.gameclips.get_recent_clips_by_xuid( "2669321029139235", title_id=219630713, skip_items=0, max_items=25 ) assert len(ret.game_clips) == 25 assert route.called @pytest.mark.asyncio async def test_gameclips_recent_own(respx_mock, xbl_client): route = respx_mock.get("https://gameclipsmetadata.xboxlive.com").mock( return_value=Response(200, json=get_response_json("gameclips_recent_own")) ) ret = await xbl_client.gameclips.get_recent_own_clips(skip_items=0, max_items=25) assert len(ret.game_clips) == 25 assert route.called @pytest.mark.asyncio async def test_gameclips_recent_own_titleid_filter(respx_mock, xbl_client): route = respx_mock.get("https://gameclipsmetadata.xboxlive.com").mock( return_value=Response( 200, json=get_response_json("gameclips_recent_own_titleid") ) ) ret = await xbl_client.gameclips.get_recent_own_clips( title_id=219630713, skip_items=0, max_items=25 ) assert len(ret.game_clips) == 25 assert route.called @pytest.mark.asyncio async def test_gameclips_recent_community(respx_mock, xbl_client): route = respx_mock.get("https://gameclipsmetadata.xboxlive.com").mock( return_value=Response(200, json=get_response_json("gameclips_recent_community")) ) ret = await xbl_client.gameclips.get_recent_community_clips_by_title_id("219630713") assert len(ret.game_clips) == 99 assert route.called @pytest.mark.asyncio async def test_gameclips_saved_xuid(respx_mock, xbl_client): route = respx_mock.get("https://gameclipsmetadata.xboxlive.com").mock( return_value=Response(200, json=get_response_json("gameclips_saved_xuid")) ) ret = await xbl_client.gameclips.get_saved_clips_by_xuid( "2669321029139235", skip_items=0, max_items=25 ) assert len(ret.game_clips) == 25 assert route.called @pytest.mark.asyncio async def test_gameclips_saved_xuid_titleid_filter(respx_mock, xbl_client): route = respx_mock.get("https://gameclipsmetadata.xboxlive.com").mock( return_value=Response( 200, json=get_response_json("gameclips_saved_xuid_titleid") ) ) ret = await xbl_client.gameclips.get_saved_clips_by_xuid( "2669321029139235", title_id=219630713, skip_items=0, max_items=25 ) assert len(ret.game_clips) == 25 assert route.called @pytest.mark.asyncio async def test_gameclips_saved_own(respx_mock, xbl_client): route = respx_mock.get("https://gameclipsmetadata.xboxlive.com").mock( return_value=Response(200, json=get_response_json("gameclips_saved_own")) ) ret = await xbl_client.gameclips.get_saved_own_clips(skip_items=0, max_items=25) assert len(ret.game_clips) == 25 assert route.called @pytest.mark.asyncio async def test_gameclips_saved_own_titleid_filter(respx_mock, xbl_client): route = respx_mock.get("https://gameclipsmetadata.xboxlive.com").mock( return_value=Response( 200, json=get_response_json("gameclips_saved_own_titleid") ) ) ret = await xbl_client.gameclips.get_saved_own_clips( title_id=219630713, skip_items=0, max_items=25 ) assert len(ret.game_clips) == 25 assert route.called @pytest.mark.asyncio async def test_gameclips_saved_community(respx_mock, xbl_client): route = respx_mock.get("https://gameclipsmetadata.xboxlive.com").mock( return_value=Response(200, json=get_response_json("gameclips_saved_community")) ) ret = await xbl_client.gameclips.get_saved_community_clips_by_title_id(219630713) assert len(ret.game_clips) == 99 assert route.called python-xbox-webapi-2.1.0/tests/test_lists.py000066400000000000000000000041561465040003600211730ustar00rootroot00000000000000from httpx import Response import pytest from tests.common import get_response_json @pytest.mark.asyncio async def test_get_list(respx_mock, xbl_client): route = respx_mock.get("https://eplists.xboxlive.com").mock( return_value=Response(200, json=get_response_json("lists_get_items")) ) ret = await xbl_client.lists.get_items(xbl_client.xuid) assert ret.list_metadata.list_count == 3 assert route.called @pytest.mark.asyncio async def test_list_add(respx_mock, xbl_client): route = respx_mock.post("https://eplists.xboxlive.com").mock( return_value=Response(200, json=get_response_json("list_add_item")) ) post_body = { "Items": [ { "Locale": "en-US", "ContentType": "DDurable", "Title": "Destiny 2: Shadowkeep + Season", "ItemId": "361f6d1c-7d72-4b95-8481-92fdf167363f", "DeviceType": "XboxOne", "ImageUrl": r"https:\/\/store-images.s-microsoft.com\/image\/apps.47381.13678370117067710.1218a7fe-a12c-4b72-ab48-1609d37bb31e.08ee0643-ed52-4e52-9e24-1d944888baf7", } ] } ret = await xbl_client.lists.insert_items(xbl_client.xuid, post_body) assert ret.list_count == 8 assert route.called @pytest.mark.asyncio async def test_list_delete(respx_mock, xbl_client): route = respx_mock.delete("https://eplists.xboxlive.com").mock( return_value=Response(200, json=get_response_json("list_delete_item")) ) post_body = { "Items": [ { "Locale": "en-US", "ContentType": "DDurable", "Title": "Destiny 2: Shadowkeep + Season", "ItemId": "361f6d1c-7d72-4b95-8481-92fdf167363f", "DeviceType": "XboxOne", "ImageUrl": r"https:\/\/store-images.s-microsoft.com\/image\/apps.47381.13678370117067710.1218a7fe-a12c-4b72-ab48-1609d37bb31e.08ee0643-ed52-4e52-9e24-1d944888baf7", } ] } ret = await xbl_client.lists.remove_items(xbl_client.xuid, post_body) assert ret.list_count == 7 assert route.called python-xbox-webapi-2.1.0/tests/test_mediahub.py000066400000000000000000000015031465040003600216040ustar00rootroot00000000000000from httpx import Response import pytest from tests.common import get_response_json @pytest.mark.asyncio async def test_media_screenshots_own(respx_mock, xbl_client): route = respx_mock.post("https://mediahub.xboxlive.com/screenshots/search").mock( return_value=Response(200, json=get_response_json("mediahub_screenshots_own")) ) ret = await xbl_client.mediahub.fetch_own_screenshots() assert len(ret.values) == 1 assert route.called @pytest.mark.asyncio async def test_media_gameclips_own(respx_mock, xbl_client): route = respx_mock.post("https://mediahub.xboxlive.com/gameclips/search").mock( return_value=Response(200, json=get_response_json("mediahub_gameclips_own")) ) ret = await xbl_client.mediahub.fetch_own_clips() assert len(ret.values) == 1 assert route.called python-xbox-webapi-2.1.0/tests/test_message.py000066400000000000000000000047011465040003600214550ustar00rootroot00000000000000from httpx import Response import pytest from tests.common import get_response_json @pytest.mark.asyncio async def test_get_inbox(respx_mock, xbl_client): route = respx_mock.get("https://xblmessaging.xboxlive.com").mock( return_value=Response(200, json=get_response_json("message_get_inbox")) ) await xbl_client.message.get_inbox() assert route.called @pytest.mark.asyncio async def test_get_conversation(respx_mock, xbl_client): route = respx_mock.get("https://xblmessaging.xboxlive.com").mock( return_value=Response(200, json=get_response_json("message_get_conversation")) ) await xbl_client.message.get_conversation( "05907fa3-0000-0009-acbd-299772a90900" ) assert route.called @pytest.mark.asyncio async def test_get_new_conversation(respx_mock, xbl_client): route = respx_mock.get("https://xblmessaging.xboxlive.com").mock( return_value=Response(200, json=get_response_json("message_new_conversation")) ) await xbl_client.message.get_conversation( "05907fa3-0000-0009-acbd-299772a90900" ) assert route.called @pytest.mark.asyncio async def test_delete_conversation(respx_mock, xbl_client): route = respx_mock.put("https://xblmessaging.xboxlive.com").mock( return_value=Response(200) ) ret = await xbl_client.message.delete_conversation( "05907fa3-0000-0009-acbd-299772a90900", "14670705998559210" ) assert ret is True assert route.called @pytest.mark.asyncio async def test_delete_message(respx_mock, xbl_client): route = respx_mock.delete("https://xblmessaging.xboxlive.com").mock( return_value=Response(200) ) ret = await xbl_client.message.delete_message( "05907fa3-0000-0009-acbd-299772a90900", "14670705998559210" ) assert ret is True assert route.called @pytest.mark.asyncio async def test_send_message(respx_mock, xbl_client): route = respx_mock.post("https://xblmessaging.xboxlive.com").mock( return_value=Response(200, json=get_response_json("message_send_message")) ) ret = await xbl_client.message.send_message("12345", "Test message") assert ret.conversation_id assert ret.message_id assert route.called @pytest.mark.asyncio async def test_message_send_too_long(xbl_client): message = "x" * 257 with pytest.raises(ValueError) as err: await xbl_client.message.send_message("12345", message) assert "exceeds max length" in str(err) python-xbox-webapi-2.1.0/tests/test_people.py000066400000000000000000000050551465040003600213200ustar00rootroot00000000000000from httpx import Response import pytest from tests.common import get_response_json @pytest.mark.asyncio async def test_people_friends_own(respx_mock, xbl_client): route = respx_mock.get("https://peoplehub.xboxlive.com").mock( return_value=Response(200, json=get_response_json("people_friends_own")) ) ret = await xbl_client.people.get_friends_own() assert len(ret.people) == 2 assert route.called @pytest.mark.asyncio async def test_people_friends_by_xuid(respx_mock, xbl_client): route = respx_mock.get("https://peoplehub.xboxlive.com").mock( return_value=Response(200, json=get_response_json("people_friends_by_xuid")) ) ret = await xbl_client.people.get_friends_by_xuid("2669321029139235") assert len(ret.people) == 2 assert route.called @pytest.mark.asyncio async def test_profiles_batch(respx_mock, xbl_client): route = respx_mock.post("https://peoplehub.xboxlive.com").mock( return_value=Response(200, json=get_response_json("people_batch")) ) ret = await xbl_client.people.get_friends_own_batch( ["271958441785640", "277923030577271", "266932102913935"] ) assert len(ret.people) == 3 assert route.called @pytest.mark.asyncio async def test_people_recommendations(respx_mock, xbl_client): route = respx_mock.get("https://peoplehub.xboxlive.com").mock( return_value=Response(200, json=get_response_json("people_recommendations")) ) ret = await xbl_client.people.get_friend_recommendations() assert ret.recommendation_summary.friend_of_friend == 20 assert route.called @pytest.mark.asyncio async def test_people_summary_own(respx_mock, xbl_client): route = respx_mock.get("https://social.xboxlive.com").mock( return_value=Response(200, json=get_response_json("people_summary_own")) ) await xbl_client.people.get_friends_summary_own() assert route.called @pytest.mark.asyncio async def test_people_summary_by_xuid(respx_mock, xbl_client): route = respx_mock.get("https://social.xboxlive.com").mock( return_value=Response(200, json=get_response_json("people_summary_by_xuid")) ) await xbl_client.people.get_friends_summary_by_xuid("2669321029139235") assert route.called @pytest.mark.asyncio async def test_people_summary_by_gamertag(respx_mock, xbl_client): route = respx_mock.get("https://social.xboxlive.com").mock( return_value=Response(200, json=get_response_json("people_summary_by_gamertag")) ) await xbl_client.people.get_friends_summary_by_gamertag("e") assert route.called python-xbox-webapi-2.1.0/tests/test_presence.py000066400000000000000000000040601465040003600216330ustar00rootroot00000000000000from httpx import Response import pytest from xbox.webapi.api.provider.presence.models import PresenceState from tests.common import get_response_json @pytest.mark.asyncio async def test_presence(respx_mock, xbl_client): route = respx_mock.get("https://userpresence.xboxlive.com").mock( return_value=Response(200, json=get_response_json("presence")) ) await xbl_client.presence.get_presence("2669321029139235") assert route.called @pytest.mark.asyncio async def test_presence_batch(respx_mock, xbl_client): route = respx_mock.post("https://userpresence.xboxlive.com").mock( return_value=Response(200, json=get_response_json("presence_batch")) ) ret = await xbl_client.presence.get_presence_batch( ["2669321029139235", "2584878536129841"] ) assert len(ret) == 2 assert route.called @pytest.mark.asyncio async def test_presence_too_many_people(xbl_client): xuids = range(0, 2000) with pytest.raises(Exception) as err: await xbl_client.presence.get_presence_batch(xuids) assert "length is > 1100" in str(err) @pytest.mark.asyncio async def test_presence_own(respx_mock, xbl_client): route = respx_mock.get("https://userpresence.xboxlive.com").mock( return_value=Response(200, json=get_response_json("presence_own")) ) await xbl_client.presence.get_presence_own() assert route.called @pytest.mark.asyncio async def test_presence_own_set(respx_mock, xbl_client): route = respx_mock.put( "https://userpresence.xboxlive.com/users/xuid(2669321029139235)/state" ).mock(return_value=Response(200)) ret = await xbl_client.presence.set_presence_own(PresenceState.ACTIVE) assert route.called assert ret @pytest.mark.asyncio async def test_presence_own_set_fail(respx_mock, xbl_client): route = respx_mock.put( "https://userpresence.xboxlive.com/users/xuid(2669321029139235)/state" ).mock(return_value=Response(500)) ret = await xbl_client.presence.set_presence_own(PresenceState.CLOAKED) assert route.called assert not ret python-xbox-webapi-2.1.0/tests/test_profile.py000066400000000000000000000022751465040003600214750ustar00rootroot00000000000000from httpx import Response import pytest from tests.common import get_response_json @pytest.mark.asyncio async def test_profile_by_xuid(respx_mock, xbl_client): route = respx_mock.get("https://profile.xboxlive.com").mock( return_value=Response(200, json=get_response_json("profile_by_xuid")) ) ret = await xbl_client.profile.get_profile_by_xuid("2669321029139235") assert len(ret.profile_users) == 1 assert route.called @pytest.mark.asyncio async def test_profile_by_gamertag(respx_mock, xbl_client): route = respx_mock.get("https://profile.xboxlive.com").mock( return_value=Response(200, json=get_response_json("profile_by_gamertag")) ) ret = await xbl_client.profile.get_profile_by_gamertag("e") assert len(ret.profile_users) == 1 assert route.called @pytest.mark.asyncio async def test_profiles_batch(respx_mock, xbl_client): route = respx_mock.post("https://profile.xboxlive.com").mock( return_value=Response(200, json=get_response_json("profile_batch")) ) ret = await xbl_client.profile.get_profiles( ["2669321029139235", "2584878536129841"] ) assert len(ret.profile_users) == 2 assert route.called python-xbox-webapi-2.1.0/tests/test_request_signer.py000066400000000000000000000065101465040003600230700ustar00rootroot00000000000000import base64 from binascii import unhexlify import pytest from ecdsa.keys import VerifyingKey, BadSignatureError from xbox.webapi.common.request_signer import RequestSigner def test_synthetic_proof_key(synthetic_request_signer: RequestSigner): correct_proof = { "crv": "P-256", "alg": "ES256", "use": "sig", "kty": "EC", "x": "OKyCQ9qH5U4lZcS0c5_LxIyKvOpKe0l3x4Eg5OgDbzc", "y": "syjS0YE9vH3eBat61P9TkCpseo0qtL0weQKP-PJtIho", } assert synthetic_request_signer.proof_field == correct_proof def test_synthetic_concat(synthetic_request_signer: RequestSigner, synthetic_timestamp): ts_bytes = RequestSigner.get_timestamp_buffer(synthetic_timestamp) test_data = synthetic_request_signer._concat_data_to_sign( signature_version=b"\x00\x00\x00\x01", method="POST", path_and_query="/path?query=1", body=b"thebodygoeshere", authorization="XBL3.0 x=userid;jsonwebtoken", ts_bytes=ts_bytes, max_body_bytes=8192, ) assert ( test_data.hex() == "000000010001d6138d10f7cc8000504f5354002f706174683f71756572793d310058424c332e3020783d7573657269643b6a736f6e776562746f6b656e00746865626f6479676f65736865726500" ) def test_synthetic_hash(synthetic_request_signer: RequestSigner, synthetic_timestamp): ts_bytes = RequestSigner.get_timestamp_buffer(synthetic_timestamp) test_data = synthetic_request_signer._concat_data_to_sign( signature_version=b"\x00\x00\x00\x01", method="POST", path_and_query="/path?query=1", body=b"thebodygoeshere", authorization="XBL3.0 x=userid;jsonwebtoken", ts_bytes=ts_bytes, max_body_bytes=8192, ) test_hash = synthetic_request_signer._hash(test_data) assert ( test_hash.hex() == "f7d61b6f8d4dcd86da1aa8553f0ee7c15450811e7cd2759364e22f67d853ff50" ) def test_synthetic_signature( synthetic_request_signer: RequestSigner, synthetic_timestamp ): test_signature = synthetic_request_signer.sign( method="POST", path_and_query="/path?query=1", body=b"thebodygoeshere", authorization="XBL3.0 x=userid;jsonwebtoken", timestamp=synthetic_timestamp, ) assert ( test_signature == "AAAAAQHWE40Q98yAFe3R7GuZfvGA350cH7hWgg4HIHjaD9lGYiwxki6bNyGnB8dMEIfEmBiuNuGUfWjY5lL2h44X/VMGOkPIezVb7Q==" ) def test_synthetic_verify_digest( synthetic_request_signer: RequestSigner, ecdsa_verifying_key: VerifyingKey ): message = unhexlify( "f7d61b6f8d4dcd86da1aa8553f0ee7c15450811e7cd2759364e22f67d853ff50" ) signature = base64.b64decode( "Fe3R7GuZfvGA350cH7hWgg4HIHjaD9lGYiwxki6bNyGnB8dMEIfEmBiuNuGUfWjY5lL2h44X/VMGOkPIezVb7Q==" ) invalid_signature = b"\xFF" + bytes(signature)[1:] success = synthetic_request_signer.verify_digest(signature, message) success_via_vk = synthetic_request_signer.verify_digest( signature, message, ecdsa_verifying_key ) with pytest.raises(BadSignatureError): synthetic_request_signer.verify_digest(invalid_signature, message) assert success is True assert success_via_vk is True def test_import(ecdsa_signing_key_str: str): signer = RequestSigner.from_pem(ecdsa_signing_key_str) export = signer.export_signing_key() assert ecdsa_signing_key_str == export python-xbox-webapi-2.1.0/tests/test_screenshots.py000066400000000000000000000112301465040003600223640ustar00rootroot00000000000000from httpx import Response import pytest from tests.common import get_response_json @pytest.mark.asyncio async def test_screenshots_recent_xuid(respx_mock, xbl_client): route = respx_mock.get("https://screenshotsmetadata.xboxlive.com").mock( return_value=Response(200, json=get_response_json("screenshots_recent_xuid")) ) ret = await xbl_client.screenshots.get_recent_screenshots_by_xuid( "2669321029139235", skip_items=0, max_items=25 ) assert len(ret.screenshots) == 1 assert route.called @pytest.mark.asyncio async def test_screenshots_recent_xuid_titleid_filter(respx_mock, xbl_client): route = respx_mock.get("https://screenshotsmetadata.xboxlive.com").mock( return_value=Response( 200, json=get_response_json("screenshots_recent_xuid_titleid") ) ) ret = await xbl_client.screenshots.get_recent_screenshots_by_xuid( "2669321029139235", title_id=219630713, skip_items=0, max_items=25 ) assert len(ret.screenshots) == 1 assert route.called @pytest.mark.asyncio async def test_screenshots_recent_own(respx_mock, xbl_client): route = respx_mock.get("https://screenshotsmetadata.xboxlive.com").mock( return_value=Response(200, json=get_response_json("screenshots_recent_own")) ) ret = await xbl_client.screenshots.get_recent_own_screenshots( skip_items=0, max_items=25 ) assert len(ret.screenshots) == 1 assert route.called @pytest.mark.asyncio async def test_screenshots_recent_own_titleid_filter(respx_mock, xbl_client): route = respx_mock.get("https://screenshotsmetadata.xboxlive.com").mock( return_value=Response( 200, json=get_response_json("screenshots_recent_own_titleid") ) ) ret = await xbl_client.screenshots.get_recent_own_screenshots( title_id=219630713, skip_items=0, max_items=25 ) assert len(ret.screenshots) == 1 assert route.called @pytest.mark.asyncio async def test_screenshots_recent_community(respx_mock, xbl_client): route = respx_mock.get("https://screenshotsmetadata.xboxlive.com").mock( return_value=Response( 200, json=get_response_json("screenshots_recent_community") ) ) ret = await xbl_client.screenshots.get_recent_community_screenshots_by_title_id( "219630713" ) assert len(ret.screenshots) == 100 assert route.called @pytest.mark.asyncio async def test_screenshots_saved_xuid(respx_mock, xbl_client): route = respx_mock.get("https://screenshotsmetadata.xboxlive.com").mock( return_value=Response(200, json=get_response_json("screenshots_saved_xuid")) ) ret = await xbl_client.screenshots.get_saved_screenshots_by_xuid( "2669321029139235", skip_items=0, max_items=25 ) assert len(ret.screenshots) == 1 assert route.called @pytest.mark.asyncio async def test_screenshots_saved_xuid_titleid_filter(respx_mock, xbl_client): route = respx_mock.get("https://screenshotsmetadata.xboxlive.com").mock( return_value=Response( 200, json=get_response_json("screenshots_saved_xuid_titleid") ) ) ret = await xbl_client.screenshots.get_saved_screenshots_by_xuid( "2669321029139235", title_id=219630713, skip_items=0, max_items=25 ) assert len(ret.screenshots) == 1 assert route.called @pytest.mark.asyncio async def test_screenshots_saved_own(respx_mock, xbl_client): route = respx_mock.get("https://screenshotsmetadata.xboxlive.com").mock( return_value=Response(200, json=get_response_json("screenshots_saved_own")) ) ret = await xbl_client.screenshots.get_saved_own_screenshots( skip_items=0, max_items=25 ) assert len(ret.screenshots) == 1 assert route.called @pytest.mark.asyncio async def test_screenshots_saved_own_titleid_filter(respx_mock, xbl_client): route = respx_mock.get("https://screenshotsmetadata.xboxlive.com").mock( return_value=Response( 200, json=get_response_json("screenshots_saved_own_titleid") ) ) ret = await xbl_client.screenshots.get_saved_own_screenshots( title_id=219630713, skip_items=0, max_items=25 ) assert len(ret.screenshots) == 1 assert route.called @pytest.mark.asyncio async def test_screenshots_saved_community(respx_mock, xbl_client): route = respx_mock.get("https://screenshotsmetadata.xboxlive.com").mock( return_value=Response( 200, json=get_response_json("screenshots_saved_community") ) ) ret = await xbl_client.screenshots.get_saved_community_screenshots_by_title_id( 219630713 ) assert len(ret.screenshots) == 100 assert route.called python-xbox-webapi-2.1.0/tests/test_signed_session.py000066400000000000000000000035521465040003600230500ustar00rootroot00000000000000from httpx import Request, Response import pytest from xbox.webapi.common.signed_session import SignedSession from tests.common import get_response_json @pytest.mark.asyncio async def test_sending_signed_request(synthetic_request_signer, respx_mock): route = respx_mock.post("https://xsts.auth.xboxlive.com").mock( return_value=Response(200, json=get_response_json("auth_xsts_token")) ) signed_session = SignedSession(synthetic_request_signer) request = Request( method="POST", url="https://xsts.auth.xboxlive.com/xsts/authorize", headers={"x-xbl-contract-version": "1"}, data={ "RelyingParty": "http://xboxlive.com", "TokenType": "JWT", "Properties": { "UserTokens": ["eyJWTblabla"], "SandboxId": "RETAIL", }, }, ) async with signed_session: resp = await signed_session.send_request_signed(request) assert route.called assert resp.request.headers.get("Signature") is not None @pytest.mark.asyncio async def test_sending_signed(synthetic_request_signer, respx_mock): route = respx_mock.post("https://xsts.auth.xboxlive.com").mock( return_value=Response(200, json=get_response_json("auth_xsts_token")) ) signed_session = SignedSession(synthetic_request_signer) method = "POST" url = "https://xsts.auth.xboxlive.com/xsts/authorize" headers = {"x-xbl-contract-version": "1"} data = { "RelyingParty": "http://xboxlive.com", "TokenType": "JWT", "Properties": { "UserTokens": ["eyJWTblabla"], "SandboxId": "RETAIL", }, } async with signed_session: resp = await signed_session.send_signed(method, url, headers=headers, data=data) assert route.called assert resp.request.headers.get("Signature") is not None python-xbox-webapi-2.1.0/tests/test_smartglass.py000066400000000000000000000074421465040003600222160ustar00rootroot00000000000000from httpx import Response import pytest from xbox.webapi.api.provider.smartglass.models import InputKeyType, VolumeDirection from tests.common import get_response_json @pytest.mark.asyncio async def test_get_console_list(respx_mock, xbl_client): route = respx_mock.get("https://xccs.xboxlive.com/lists/devices").mock( return_value=Response(200, json=get_response_json("smartglass_console_list")) ) ret = await xbl_client.smartglass.get_console_list() assert len(ret.result) == 2 assert route.called @pytest.mark.asyncio async def test_get_installed_apps(respx_mock, xbl_client): route = respx_mock.get("https://xccs.xboxlive.com/lists/installedApps").mock( return_value=Response(200, json=get_response_json("smartglass_installed_apps")) ) device_id = "ABCDEFG" ret = await xbl_client.smartglass.get_installed_apps(device_id) assert len(ret.result) == 2 assert route.called assert device_id in str(respx_mock.calls[0].request.url) @pytest.mark.asyncio async def test_get_storage_devices(respx_mock, xbl_client): route = respx_mock.get("https://xccs.xboxlive.com/lists/storageDevices").mock( return_value=Response(200, json=get_response_json("smartglass_storage_devices")) ) device_id = "ABCDEFG" ret = await xbl_client.smartglass.get_storage_devices(device_id) assert len(ret.result) == 1 assert ret.device_id == device_id assert route.called assert device_id in str(respx_mock.calls[0].request.url) @pytest.mark.asyncio async def test_get_console_status(respx_mock, xbl_client): route = respx_mock.get("https://xccs.xboxlive.com/consoles/ABCDEFG").mock( return_value=Response(200, json=get_response_json("smartglass_console_status")) ) ret = await xbl_client.smartglass.get_console_status("ABCDEFG") assert ret.status.error_code == "OK" assert route.called @pytest.mark.asyncio async def test_get_op_status(respx_mock, xbl_client): route = respx_mock.get("https://xccs.xboxlive.com/opStatus").mock( return_value=Response(200, json=get_response_json("smartglass_op_status")) ) ret = await xbl_client.smartglass.get_op_status( "ABCDEFG", "35bd7870-fad4-4e98-a354-d027bd840116" ) assert ret.status.error_code == "OK" assert route.called @pytest.mark.asyncio async def test_commands(respx_mock, xbl_client): device_args = {"device_id": "ABCDEFG"} commands = [ {"method": "wake_up", "args": {**device_args}}, {"method": "turn_off", "args": {**device_args}}, {"method": "reboot", "args": {**device_args}}, {"method": "mute", "args": {**device_args}}, {"method": "unmute", "args": {**device_args}}, {"method": "volume", "args": {**device_args, "direction": VolumeDirection.Up}}, {"method": "play", "args": {**device_args}}, {"method": "pause", "args": {**device_args}}, {"method": "previous", "args": {**device_args}}, {"method": "next", "args": {**device_args}}, {"method": "go_home", "args": {**device_args}}, {"method": "go_back", "args": {**device_args}}, {"method": "show_guide_tab", "args": {**device_args}}, {"method": "press_button", "args": {**device_args, "button": InputKeyType.A}}, {"method": "insert_text", "args": {**device_args, "text": "Test"}}, { "method": "launch_app", "args": {**device_args, "one_store_product_id": "9WZDNCRFJ3TJ"}, }, {"method": "show_tv_guide", "args": {**device_args}}, ] route = respx_mock.post("https://xccs.xboxlive.com/commands").mock( return_value=Response(200, json=get_response_json("smartglass_command")) ) for command in commands: await getattr(xbl_client.smartglass, command["method"])(**command["args"]) assert route.called python-xbox-webapi-2.1.0/tests/test_titlehub.py000066400000000000000000000026031465040003600216500ustar00rootroot00000000000000from httpx import Response import pytest from tests.common import get_response_json @pytest.mark.asyncio async def test_titlehub_titlehistory(respx_mock, xbl_client): route = respx_mock.get("https://titlehub.xboxlive.com").mock( return_value=Response(200, json=get_response_json("titlehub_titlehistory")) ) ret = await xbl_client.titlehub.get_title_history(987654321) assert len(ret.titles) == 5 assert route.called @pytest.mark.asyncio async def test_titlehub_titleinfo(respx_mock, xbl_client): route = respx_mock.get("https://titlehub.xboxlive.com").mock( return_value=Response(200, json=get_response_json("titlehub_titleinfo")) ) ret = await xbl_client.titlehub.get_title_info(1717113201) assert len(ret.titles) == 1 assert ret.titles[0].detail.genres == ["Action & adventure"] assert route.called @pytest.mark.asyncio async def test_titlehub_batch(respx_mock, xbl_client): route = respx_mock.post("https://titlehub.xboxlive.com").mock( return_value=Response(200, json=get_response_json("titlehub_batch")) ) ret = await xbl_client.titlehub.get_titles_batch( ["Microsoft.SeaofThieves_8wekyb3d8bbwe", "Microsoft.XboxApp_8wekyb3d8bbwe"] ) assert len(ret.titles) == 2 assert ret.titles[0].detail.genres == [] assert ret.titles[1].detail.genres == ["Action & adventure"] assert route.called python-xbox-webapi-2.1.0/tests/test_usersearch.py000066400000000000000000000006731465040003600222010ustar00rootroot00000000000000from httpx import Response import pytest from tests.common import get_response_json @pytest.mark.asyncio async def test_profile_by_xuid(respx_mock, xbl_client): route = respx_mock.get("https://usersearch.xboxlive.com").mock( return_value=Response(200, json=get_response_json("usersearch_live_search")) ) ret = await xbl_client.usersearch.get_live_search("tux") assert len(ret.results) == 8 assert route.called python-xbox-webapi-2.1.0/tests/test_userstats.py000066400000000000000000000037441465040003600220740ustar00rootroot00000000000000from httpx import Response import pytest from tests.common import get_response_json @pytest.mark.asyncio async def test_userstats_by_scid(respx_mock, xbl_client): route = respx_mock.get("https://userstats.xboxlive.com").mock( return_value=Response(200, json=get_response_json("userstats_by_scid")) ) ret = await xbl_client.userstats.get_stats( "2669321029139235", "1370999b-fca2-4c53-8ec5-73493bcb67e5" ) assert len(ret.statlistscollection) == 1 assert route.called @pytest.mark.asyncio async def test_userstats_by_scid_with_metadata(respx_mock, xbl_client): route = respx_mock.get("https://userstats.xboxlive.com").mock( return_value=Response( 200, json=get_response_json("userstats_by_scid_with_metadata") ) ) ret = await xbl_client.userstats.get_stats_with_metadata( "2669321029139235", "1370999b-fca2-4c53-8ec5-73493bcb67e5" ) assert len(ret.statlistscollection) == 1 assert route.called @pytest.mark.asyncio async def test_userstats_batch(respx_mock, xbl_client): route = respx_mock.post("https://userstats.xboxlive.com").mock( return_value=Response(200, json=get_response_json("userstats_batch")) ) ret = await xbl_client.userstats.get_stats_batch(["2584878536129841"], "1717113201") assert len(ret.statlistscollection) == 1 assert len(ret.groups) == 1 assert len(ret.groups[0].statlistscollection) > 0 assert route.called @pytest.mark.asyncio async def test_userstats_batch_by_scid(respx_mock, xbl_client): route = respx_mock.post("https://userstats.xboxlive.com").mock( return_value=Response(200, json=get_response_json("userstats_batch_by_scid")) ) ret = await xbl_client.userstats.get_stats_batch_by_scid( ["2669321029139235"], "1370999b-fca2-4c53-8ec5-73493bcb67e5" ) assert len(ret.statlistscollection) == 1 assert len(ret.groups) == 1 assert len(ret.groups[0].statlistscollection) == 0 assert route.called python-xbox-webapi-2.1.0/tests/test_xal.py000066400000000000000000000037651465040003600206260ustar00rootroot00000000000000from httpx import AsyncClient, Response import pytest from tests.common import get_response_json @pytest.mark.asyncio async def test_get_title_endpoints(respx_mock, xal_mgr): route = respx_mock.get("https://title.mgt.xboxlive.com").mock( return_value=Response(200, json=get_response_json("auth_title_endpoints")) ) async with AsyncClient() as client: await xal_mgr.get_title_endpoints(client) assert route.called @pytest.mark.asyncio async def test_get_device_token(respx_mock, xal_mgr): route = respx_mock.post( "https://device.auth.xboxlive.com/device/authenticate" ).mock(return_value=Response(200, json=get_response_json("auth_device_token"))) await xal_mgr.request_device_token() assert route.called @pytest.mark.asyncio async def test_sisu_authentication(respx_mock, xal_mgr): route = respx_mock.post("https://sisu.xboxlive.com/authenticate").mock( return_value=Response( 200, json=get_response_json("xal_authentication_resp"), headers={"X-SessionId": "abcsession-id"}, ) ) resp, session_id = await xal_mgr.request_sisu_authentication( "eyDeviceToken", "code_challenge_string", "state_string" ) assert route.called assert session_id == "abcsession-id" assert resp.msa_oauth_redirect is not None @pytest.mark.asyncio async def test_sisu_authorization(respx_mock, xal_mgr): route = respx_mock.post("https://sisu.xboxlive.com/authorize").mock( return_value=Response(200, json=get_response_json("xal_authorization_resp")) ) await xal_mgr.do_sisu_authorization( "SISU-Session-ID", "eyAccessToken", "eyDeviceToken" ) assert route.called @pytest.mark.asyncio async def test_exchange_code_for_token(respx_mock, xal_mgr): route = respx_mock.post("https://login.live.com").mock( return_value=Response(200, json=get_response_json("auth_oauth2_token")) ) await xal_mgr.exchange_code_for_token("abc", "xyz") assert route.called python-xbox-webapi-2.1.0/tests/test_xbl_client.py000066400000000000000000000003761465040003600221600ustar00rootroot00000000000000from xbox.webapi.api.client import XboxLiveClient def test_authorization_header(auth_mgr): client = XboxLiveClient(auth_mgr) assert ( client._auth_mgr.xsts_token.authorization_header_value == "XBL3.0 x=abcdefg;123456789" ) python-xbox-webapi-2.1.0/xbox/000077500000000000000000000000001465040003600162345ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/000077500000000000000000000000001465040003600175035ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/__init__.py000066400000000000000000000001431465040003600216120ustar00rootroot00000000000000"""Top-level package for xbox-webapi-python.""" __author__ = """OpenXbox""" __version__ = "2.1.0" python-xbox-webapi-2.1.0/xbox/webapi/api/000077500000000000000000000000001465040003600202545ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/__init__.py000066400000000000000000000000001465040003600223530ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/client.py000066400000000000000000000122201465040003600221010ustar00rootroot00000000000000""" Xbox Live Client Basic factory that stores :class:`XboxLiveLanguage`, User authorization data and available `Providers` """ import logging from typing import Any from httpx import Response from ms_cv import CorrelationVector from xbox.webapi.api.language import DefaultXboxLiveLanguages, XboxLiveLanguage from xbox.webapi.api.provider.account import AccountProvider from xbox.webapi.api.provider.achievements import AchievementsProvider from xbox.webapi.api.provider.catalog import CatalogProvider from xbox.webapi.api.provider.cqs import CQSProvider from xbox.webapi.api.provider.gameclips import GameclipProvider from xbox.webapi.api.provider.lists import ListsProvider from xbox.webapi.api.provider.mediahub import MediahubProvider from xbox.webapi.api.provider.message import MessageProvider from xbox.webapi.api.provider.people import PeopleProvider from xbox.webapi.api.provider.presence import PresenceProvider from xbox.webapi.api.provider.profile import ProfileProvider from xbox.webapi.api.provider.screenshots import ScreenshotsProvider from xbox.webapi.api.provider.smartglass import SmartglassProvider from xbox.webapi.api.provider.titlehub import TitlehubProvider from xbox.webapi.api.provider.usersearch import UserSearchProvider from xbox.webapi.api.provider.userstats import UserStatsProvider from xbox.webapi.authentication.manager import AuthenticationManager log = logging.getLogger("xbox.api") class Session: def __init__(self, auth_mgr: AuthenticationManager): self._auth_mgr = auth_mgr self._cv = CorrelationVector() async def request( self, method: str, url: str, include_auth: bool = True, include_cv: bool = True, **kwargs: Any, ) -> Response: """Proxy Request and add Auth/CV headers.""" headers = kwargs.pop("headers", {}) params = kwargs.pop("params", None) data = kwargs.pop("data", None) # Extra, user supplied values extra_headers = kwargs.pop("extra_headers", None) extra_params = kwargs.pop("extra_params", None) extra_data = kwargs.pop("extra_data", None) if include_auth: # Ensure tokens valid await self._auth_mgr.refresh_tokens() # Set auth header headers[ "Authorization" ] = self._auth_mgr.xsts_token.authorization_header_value if include_cv: headers["MS-CV"] = self._cv.increment() # Extend with optionally supplied values if extra_headers: headers.update(extra_headers) if extra_params: # query parameters params = params or {} params.update(extra_params) if extra_data: # form encoded post data data = data or {} data.update(extra_data) return await self._auth_mgr.session.request( method, url, **kwargs, headers=headers, params=params, data=data ) async def get(self, url: str, **kwargs: Any) -> Response: return await self.request("GET", url, **kwargs) async def options(self, url: str, **kwargs: Any) -> Response: return await self.request("OPTIONS", url, **kwargs) async def head(self, url: str, **kwargs: Any) -> Response: return await self.request("HEAD", url, **kwargs) async def post(self, url: str, **kwargs: Any) -> Response: return await self.request("POST", url, **kwargs) async def put(self, url: str, **kwargs: Any) -> Response: return await self.request("PUT", url, **kwargs) async def patch(self, url: str, **kwargs: Any) -> Response: return await self.request("PATCH", url, **kwargs) async def delete(self, url: str, **kwargs: Any) -> Response: return await self.request("DELETE", url, **kwargs) class XboxLiveClient: def __init__( self, auth_mgr: AuthenticationManager, language: XboxLiveLanguage = DefaultXboxLiveLanguages.United_States, ): self._auth_mgr = auth_mgr self.session = Session(auth_mgr) self._language = language self.cqs = CQSProvider(self) self.lists = ListsProvider(self) self.profile = ProfileProvider(self) self.achievements = AchievementsProvider(self) self.usersearch = UserSearchProvider(self) self.gameclips = GameclipProvider(self) self.people = PeopleProvider(self) self.presence = PresenceProvider(self) self.mediahub = MediahubProvider(self) self.message = MessageProvider(self) self.userstats = UserStatsProvider(self) self.screenshots = ScreenshotsProvider(self) self.titlehub = TitlehubProvider(self) self.account = AccountProvider(self) self.catalog = CatalogProvider(self) self.smartglass = SmartglassProvider(self) @property def xuid(self) -> str: """ Gets the Xbox User ID Returns: Xbox user Id """ return self._auth_mgr.xsts_token.xuid @property def language(self) -> XboxLiveLanguage: """ Gets the active Xbox Live Language Returns: Active Xbox Live language """ return self._language python-xbox-webapi-2.1.0/xbox/webapi/api/language.py000066400000000000000000000067151465040003600224220ustar00rootroot00000000000000""" Language definitions """ class XboxLiveLanguage: def __init__(self, name, short_id, identifier, locale): """ Initialize a new instance of :class:`XboxLiveLanguage` Args: name (str): Full name describing the language / country short_id (str): Short Id (e.g. "AT" for Austria) identifier (str): Identifier (e.g. "de_AT" for Austria) locale (str): Locale (e.g. "de-AT" for Austria) """ self.name = name self.short_id = short_id self.identifier = identifier self.locale = locale class DefaultXboxLiveLanguages: """ Collection of locales compatible with XBL """ Argentina = XboxLiveLanguage("Argentina", "AR", "es_AR", "es-AR") Australia = XboxLiveLanguage("Australia", "AU", "en_AU", "en-AU") Austria = XboxLiveLanguage("Austria", "AT", "de_AT", "de-AT") Belgium = XboxLiveLanguage("Belgium", "BE", "fr_BE", "fr-BE") Belgium_NL = XboxLiveLanguage("Belgium (NL)", "NL", "nl_BE", "nl-BE") Brazil = XboxLiveLanguage("Brazil", "BR", "pt_BR", "pt-BR") Canada = XboxLiveLanguage("Canada", "CA", "en_CA", "en-CA") Canada_FR = XboxLiveLanguage("Canada (FR)", "CA", "fr_CA", "fr-CA") Czech_Republic = XboxLiveLanguage("Czech Republic", "CZ", "en_CZ", "en-CZ") Denmark = XboxLiveLanguage("Denmark", "DK", "da_DK", "da-DK") Finland = XboxLiveLanguage("Finland", "FI", "fi_FI", "fi-FI") France = XboxLiveLanguage("France", "FR", "fr_FR", "fr-FR") Germany = XboxLiveLanguage("Germany", "DE", "de_DE", "de-DE") Greece = XboxLiveLanguage("Greece", "GR", "en_GR", "en-GR") Hong_Kong = XboxLiveLanguage("Hong Kong", "HK", "en_HK", "en-HK") Hungary = XboxLiveLanguage("Hungary", "HU", "en_HU", "en-HU") India = XboxLiveLanguage("India", "IN", "en_IN", "en-IN") Great_Britain = XboxLiveLanguage("Great Britain", "GB", "en_GB", "en-GB") Israel = XboxLiveLanguage("Israel", "IL", "en_IL", "en-IL") Italy = XboxLiveLanguage("Italy", "IT", "it_IT", "it-IT") Japan = XboxLiveLanguage("Japan", "JP", "ja_JP", "ja-JP") Mexico = XboxLiveLanguage("Mexico", "MX", "es_MX", "es-MX") Chile = XboxLiveLanguage("Chile", "CL", "es_CL", "es-CL") Colombia = XboxLiveLanguage("Colombia", "CO", "es_CO", "es-CO") Netherlands = XboxLiveLanguage("Netherlands", "NL", "nl_NL", "nl-NL") New_Zealand = XboxLiveLanguage("New Zealand", "NZ", "en_NZ", "en-NZ") Norway = XboxLiveLanguage("Norway", "NO", "nb_NO", "nb-NO") Poland = XboxLiveLanguage("Poland", "PL", "pl_PL", "pl-PL") Portugal = XboxLiveLanguage("Portugal", "PT", "pt_PT", "pt-PT") Russia = XboxLiveLanguage("Russia", "RU", "ru_RU", "ru-RU") Saudi_Arabia = XboxLiveLanguage("Saudi Arabia", "SA", "en_SA", "en-SA") Singapore = XboxLiveLanguage("Singapore", "SG", "en_SG", "en-SG") Slovakia = XboxLiveLanguage("Slovakia", "SK", "en_SK", "en-SK") South_Africa = XboxLiveLanguage("South Afrida", "ZA", "en_ZA", "en-ZA") Korea = XboxLiveLanguage("Korea", "KR", "ko_KR", "ko-KR") Spain = XboxLiveLanguage("Spain", "ES", "es_ES", "es-ES") Switzerland = XboxLiveLanguage("Switzerland", "CH", "de_CH", "de-CH") Switzerland_FR = XboxLiveLanguage("Switzerland (FR)", "CH", "fr_CH", "fr-CH") United_Arab_Emirates = XboxLiveLanguage( "United Arab Emirates", "AE", "en_AE", "en-AE" ) United_States = XboxLiveLanguage("United States", "US", "en_US", "en-US") Ireland = XboxLiveLanguage("Ireland", "IE", "en_IE", "en-IE") python-xbox-webapi-2.1.0/xbox/webapi/api/provider/000077500000000000000000000000001465040003600221065ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/__init__.py000066400000000000000000000000001465040003600242050ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/account/000077500000000000000000000000001465040003600235425ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/account/__init__.py000066400000000000000000000043111465040003600256520ustar00rootroot00000000000000from xbox.webapi.api.provider.account.models import ( ChangeGamertagResult, ClaimGamertagResult, ) from xbox.webapi.api.provider.baseprovider import BaseProvider class AccountProvider(BaseProvider): BASE_URL_USER_MGT = "https://user.mgt.xboxlive.com" BASE_URL_ACCOUNT = "https://accounts.xboxlive.com" HEADERS_USER_MGT = {"x-xbl-contract-version": "1"} HEADERS_ACCOUNT = {"x-xbl-contract-version": "2"} async def claim_gamertag(self, xuid, gamertag, **kwargs) -> ClaimGamertagResult: """ Claim gamertag XLE error codes: 400 - Bad API request 401 - Unauthorized 409 - Gamertag unavailable 429 - Too many requests 200 - Gamertag available Args: xuid (int): Your xuid as integer gamertag (str): Desired gamertag Returns: ClaimGamertagResult """ url = self.BASE_URL_USER_MGT + "/gamertags/reserve" post_data = {"Gamertag": gamertag, "ReservationId": str(xuid)} resp = await self.client.session.post( url, json=post_data, headers=self.HEADERS_USER_MGT, **kwargs ) try: return ClaimGamertagResult(resp.status_code) except ValueError: resp.raise_for_status() async def change_gamertag( self, xuid, gamertag, preview=False, **kwargs ) -> ChangeGamertagResult: """ Change your gamertag. XLE error codes: 200 - success 1020 - No free gamertag changes available Args: xuid (int): Your Xuid as integer gamertag (str): Desired gamertag name preview (bool): Preview the change Returns: ChangeGamertagResult """ url = self.BASE_URL_ACCOUNT + "/users/current/profile/gamertag" post_data = { "gamertag": gamertag, "preview": preview, "reservationId": int(xuid), } resp = await self.client.session.post( url, json=post_data, headers=self.HEADERS_ACCOUNT, **kwargs ) try: return ChangeGamertagResult(resp.status_code) except ValueError: resp.raise_for_status() python-xbox-webapi-2.1.0/xbox/webapi/api/provider/account/models.py000066400000000000000000000003051465040003600253750ustar00rootroot00000000000000from enum import Enum class ClaimGamertagResult(Enum): NotAvailable = 409 Available = 200 class ChangeGamertagResult(Enum): ChangeSuccessful = 200 NoFreeChangesAvailable = 1020 python-xbox-webapi-2.1.0/xbox/webapi/api/provider/achievements/000077500000000000000000000000001465040003600245615ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/achievements/__init__.py000066400000000000000000000111451465040003600266740ustar00rootroot00000000000000""" Achievements Get Xbox 360 and Xbox One Achievement data """ from xbox.webapi.api.provider.achievements.models import ( Achievement360ProgressResponse, Achievement360Response, AchievementResponse, RecentProgressResponse, ) from xbox.webapi.api.provider.baseprovider import BaseProvider class AchievementsProvider(BaseProvider): ACHIEVEMENTS_URL = "https://achievements.xboxlive.com" HEADERS_GAME_360_PROGRESS = {"x-xbl-contract-version": "1"} HEADERS_GAME_PROGRESS = {"x-xbl-contract-version": "2"} async def get_achievements_detail_item( self, xuid, service_config_id, achievement_id, **kwargs ) -> AchievementResponse: """ Get achievement detail for specific item Args: xuid (str): Xbox User Id service_config_id (str): Service Config Id achievement_id (str): Achievement Id Returns: :class:`AchievementResponse`: Achievement Response """ url = f"{self.ACHIEVEMENTS_URL}/users/xuid({xuid})/achievements/{service_config_id}/{achievement_id}" resp = await self.client.session.get( url, headers=self.HEADERS_GAME_PROGRESS, **kwargs ) resp.raise_for_status() return AchievementResponse(**resp.json()) async def get_achievements_xbox360_all( self, xuid, title_id, **kwargs ) -> Achievement360Response: """ Get all achievements for specific X360 title Id Args: xuid (str): Xbox User Id title_id (str): Xbox 360 Title Id Returns: :class:`Achievement360Response`: Achievement 360 Response """ url = f"{self.ACHIEVEMENTS_URL}/users/xuid({xuid})/titleachievements?" params = {"titleId": title_id} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_GAME_360_PROGRESS, **kwargs ) resp.raise_for_status() return Achievement360Response(**resp.json()) async def get_achievements_xbox360_earned( self, xuid, title_id, **kwargs ) -> Achievement360Response: """ Get earned achievements for specific X360 title id Args: xuid (str): Xbox User Id title_id (str): Xbox 360 Title Id Returns: :class:`Achievement360Response`: Achievement 360 Response """ url = f"{self.ACHIEVEMENTS_URL}/users/xuid({xuid})/achievements?" params = {"titleId": title_id} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_GAME_360_PROGRESS, **kwargs ) resp.raise_for_status() return Achievement360Response(**resp.json()) async def get_achievements_xbox360_recent_progress_and_info( self, xuid, **kwargs ) -> Achievement360ProgressResponse: """ Get recent achievement progress and information Args: xuid (str): Xbox User Id Returns: :class:`Achievement360Response`: Achievement 360 Response """ url = f"{self.ACHIEVEMENTS_URL}/users/xuid({xuid})/history/titles" resp = await self.client.session.get( url, headers=self.HEADERS_GAME_360_PROGRESS, **kwargs ) resp.raise_for_status() return Achievement360ProgressResponse(**resp.json()) async def get_achievements_xboxone_gameprogress( self, xuid, title_id, **kwargs ) -> AchievementResponse: """ Get gameprogress for Xbox One title Args: xuid (str): Xbox User Id title_id (str): Xbox One Title Id Returns: :class:`AchievementResponse`: Achievement Response """ url = f"{self.ACHIEVEMENTS_URL}/users/xuid({xuid})/achievements?" params = {"titleId": title_id} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_GAME_PROGRESS, **kwargs ) resp.raise_for_status() return AchievementResponse(**resp.json()) async def get_achievements_xboxone_recent_progress_and_info( self, xuid, **kwargs ) -> RecentProgressResponse: """ Get recent achievement progress and information Args: xuid (str): Xbox User Id Returns: :class:`RecentProgressResponse`: Recent Progress Response """ url = f"{self.ACHIEVEMENTS_URL}/users/xuid({xuid})/history/titles" resp = await self.client.session.get( url, headers=self.HEADERS_GAME_PROGRESS, **kwargs ) resp.raise_for_status() return RecentProgressResponse(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/api/provider/achievements/models.py000066400000000000000000000051741465040003600264250ustar00rootroot00000000000000from datetime import datetime, time from typing import Any, List, Optional from pydantic import BaseModel from xbox.webapi.common.models import CamelCaseModel class PagingInfo(CamelCaseModel): continuation_token: Optional[str] = None total_records: int class Achievement360(CamelCaseModel): id: int title_id: int name: str sequence: int flags: int unlocked_online: bool unlocked: bool is_secret: bool platform: int gamerscore: int image_id: int description: str locked_description: str type: int is_revoked: bool time_unlocked: datetime class Title360(CamelCaseModel): last_played: datetime current_achievements: int current_gamerscore: int sequence: int title_id: int title_type: int platforms: List[int] name: str total_achievements: int total_gamerscore: int class Achievement360Response(CamelCaseModel): achievements: List[Achievement360] paging_info: PagingInfo version: datetime class Achievement360ProgressResponse(CamelCaseModel): titles: List[Title360] paging_info: PagingInfo version: datetime class TitleAssociation(BaseModel): name: str id: int class Requirement(CamelCaseModel): id: str current: Optional[str] = None target: str operation_type: str value_type: str rule_participation_type: str class Progression(CamelCaseModel): requirements: List[Requirement] time_unlocked: datetime class MediaAsset(BaseModel): name: str type: str url: str class Reward(CamelCaseModel): name: Any = None description: Any = None value: str type: str media_asset: Any = None value_type: str class Achievement(CamelCaseModel): id: str service_config_id: str name: str title_associations: List[TitleAssociation] progress_state: str progression: Progression media_assets: List[MediaAsset] platforms: List[str] is_secret: bool description: str locked_description: str product_id: str achievement_type: str participation_type: str time_window: Any = None rewards: List[Reward] estimated_time: time deeplink: Any = None is_revoked: bool class AchievementResponse(CamelCaseModel): achievements: List[Achievement] paging_info: PagingInfo class Title(CamelCaseModel): last_unlock: datetime title_id: int service_config_id: str title_type: str platform: str name: str earned_achievements: int current_gamerscore: int max_gamerscore: int class RecentProgressResponse(CamelCaseModel): titles: List[Title] paging_info: PagingInfo python-xbox-webapi-2.1.0/xbox/webapi/api/provider/baseprovider.py000066400000000000000000000004441465040003600251470ustar00rootroot00000000000000""" BaseProvider Subclassed by every *real* provider """ class BaseProvider: def __init__(self, client): """ Initialize an the BaseProvider Args: client (:class:`XboxLiveClient`): Instance of XboxLiveClient """ self.client = client python-xbox-webapi-2.1.0/xbox/webapi/api/provider/catalog/000077500000000000000000000000001465040003600235205ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/catalog/__init__.py000066400000000000000000000053231465040003600256340ustar00rootroot00000000000000""" Store Catalog - Lookup Product Information """ from typing import List from xbox.webapi.api.provider.baseprovider import BaseProvider from xbox.webapi.api.provider.catalog.models import ( AlternateIdType, CatalogResponse, CatalogSearchResponse, FieldsTemplate, PlatformType, ) class CatalogProvider(BaseProvider): CATALOG_URL = "https://displaycatalog.mp.microsoft.com" SEPERATOR = "," async def get_products( self, big_ids: List[str], fields: FieldsTemplate = FieldsTemplate.DETAILS, **kwargs, ) -> CatalogResponse: """Lookup product by Big IDs.""" ids = self.SEPERATOR.join(big_ids) params = { "actionFilter": "Browse", "bigIds": ids, "fieldsTemplate": fields.value, "languages": self.client.language.locale, "market": self.client.language.short_id, } url = f"{self.CATALOG_URL}/v7.0/products" resp = await self.client.session.get( url, params=params, include_auth=False, **kwargs ) resp.raise_for_status() return CatalogResponse(**resp.json()) async def get_product_from_alternate_id( self, id: str, id_type: AlternateIdType, fields: FieldsTemplate = FieldsTemplate.DETAILS, top: int = 25, **kwargs, ) -> CatalogResponse: """Lookup product by Alternate ID.""" params = { "top": top, "alternateId": id_type.value, "fieldsTemplate": fields.value, "languages": self.client.language.locale, "market": self.client.language.short_id, "value": id, } url = f"{self.CATALOG_URL}/v7.0/products/lookup" resp = await self.client.session.get( url, params=params, include_auth=False, **kwargs ) resp.raise_for_status() return CatalogResponse(**resp.json()) async def product_search( self, query: str, platform: PlatformType = PlatformType.XBOX, top: int = 5, **kwargs, ) -> CatalogSearchResponse: """Search for products by name.""" params = { "languages": self.client.language.locale, "market": self.client.language.short_id, "platformdependencyname": platform.value, "productFamilyNames": "Games,Apps", "query": query, "topProducts": top, } url = f"{self.CATALOG_URL}/v7.0/productFamilies/autosuggest" resp = await self.client.session.get( url, params=params, include_auth=False, **kwargs ) resp.raise_for_status() return CatalogSearchResponse(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/api/provider/catalog/const.py000066400000000000000000000007161465040003600252240ustar00rootroot00000000000000"""Web API Constants.""" from xbox.webapi.api.provider.catalog.models import AlternateIdType HOME_APP_IDS = { AlternateIdType.LEGACY_XBOX_PRODUCT_ID: "7b3ca835-5ef5-4d96-bc84-c1d8b5084236", AlternateIdType.XBOX_TITLE_ID: "750323071", } SYSTEM_PFN_ID_MAP = { "Microsoft.Xbox.LiveTV_8wekyb3d8bbwe": { AlternateIdType.LEGACY_XBOX_PRODUCT_ID: "71e7df12-89e0-4dc7-a5ff-a182fc2df94f", AlternateIdType.XBOX_TITLE_ID: "371594669", }, } python-xbox-webapi-2.1.0/xbox/webapi/api/provider/catalog/models.py000066400000000000000000000313261465040003600253620ustar00rootroot00000000000000from datetime import datetime from enum import Enum from typing import Any, List, Optional, Union from pydantic import Field, field_validator from xbox.webapi.common.models import PascalCaseModel class AlternateIdType(str, Enum): LEGACY_XBOX_PRODUCT_ID = "LegacyXboxProductId" XBOX_TITLE_ID = "XboxTitleId" PACKAGE_FAMILY_NAME = "PackageFamilyName" class FieldsTemplate(str, Enum): BROWSE = "browse" DETAILS = "details" class PlatformType(str, Enum): XBOX = "windows.xbox" DESKTOP = "windows.desktop" class Image(PascalCaseModel): file_id: Optional[str] = None eis_listing_identifier: Any = Field(None, alias="EISListingIdentifier") background_color: Optional[str] = None caption: Optional[str] = None file_size_in_bytes: int foreground_color: Optional[str] = None height: int image_position_info: Optional[str] = None image_purpose: str unscaled_image_sha256_hash: Optional[str] = Field(None, alias="UnscaledImageSHA256Hash") uri: str width: int class Video(PascalCaseModel): uri: str video_purpose: str height: int width: int audio_encoding: str video_encoding: str video_position_info: str caption: str file_size_in_bytes: int preview_image: Image sort_order: int class SearchTitle(PascalCaseModel): search_title_string: str search_title_type: str class ContentRating(PascalCaseModel): rating_system: str rating_id: str rating_descriptors: List[str] rating_disclaimers: List interactive_elements: Optional[List] = None class UsageData(PascalCaseModel): aggregate_time_span: str average_rating: float play_count: Optional[int] = None rating_count: int rental_count: Optional[str] = None trial_count: Optional[str] = None purchase_count: Optional[str] = None class ProductProperties(PascalCaseModel): attributes: Optional[List] = None can_install_to_sd_card: Optional[bool] = Field(None, alias="CanInstallToSDCard") category: Optional[str] = None sub_category: Optional[str] = None categories: Optional[List[str]] = None extensions: Any = None is_accessible: Optional[bool] = None is_line_of_business_app: Optional[bool] = None is_published_to_legacy_windows_phone_store: Optional[bool] = None is_published_to_legacy_windows_store: Optional[bool] = None is_settings_app: Optional[bool] = None package_family_name: Optional[str] = None package_identity_name: Optional[str] = None publisher_certificate_name: Optional[str] = None publisher_id: str xbox_live_tier: Any = None xbox_xpa: Any = Field(None, alias="XboxXPA") xbox_cross_gen_set_id: Any = None xbox_console_gen_optimized: Any = None xbox_console_gen_compatible: Any = None xbox_live_gold_required: Optional[bool] = None ownership_type: Any = None pdp_background_color: Optional[str] = None has_add_ons: Optional[bool] = None revision_id: str product_group_id: Optional[str] = None product_group_name: Optional[str] = None class AlternateId(PascalCaseModel): id_type: str value: str class ValidationData(PascalCaseModel): passed_validation: bool revision_id: str validation_result_uri: Optional[str] = None class FulfillmentData(PascalCaseModel): product_id: str wu_bundle_id: Optional[str] = None wu_category_id: str package_family_name: str sku_id: str content: Any = None package_features: Any = None class HardwareProperties(PascalCaseModel): minimum_hardware: List recommended_hardware: List minimum_processor: Any = None recommended_processor: Any = None minimum_graphics: Any = None recommended_graphics: Any = None class Application(PascalCaseModel): application_id: str declaration_order: int extensions: List[str] class FrameworkDependency(PascalCaseModel): max_tested: int min_version: int package_identity: str class PlatformDependency(PascalCaseModel): max_tested: Optional[int] = None min_version: Optional[int] = None platform_name: str class Package(PascalCaseModel): applications: Optional[List[Application]] = None architectures: List[str] capabilities: Optional[List[str]] = None device_capabilities: Optional[List[str]] = None experience_ids: Optional[List] = None framework_dependencies: Optional[List[FrameworkDependency]] = None hardware_dependencies: Optional[List] = None hardware_requirements: Optional[List] = None hash: Optional[str] = None hash_algorithm: Optional[str] = None is_streaming_app: Optional[bool] = None languages: Optional[List[str]] = None max_download_size_in_bytes: int max_install_size_in_bytes: Optional[int] = None package_format: str package_family_name: Optional[str] = None main_package_family_name_for_dlc: Any = None package_full_name: Optional[str] = None package_id: str content_id: str key_id: Optional[str] = None package_rank: Optional[int] = None package_uri: Optional[str] = None platform_dependencies: Optional[List[PlatformDependency]] = None platform_dependency_xml_blob: Optional[str] = None resource_id: Optional[str] = None version: Optional[str] = None package_download_uris: Any = None driver_dependencies: Optional[List] = None fulfillment_data: Optional[FulfillmentData] = None class LegalText(PascalCaseModel): additional_license_terms: str copyright: str copyright_uri: str privacy_policy: str privacy_policy_uri: str tou: str tou_uri: str class SkuLocalizedProperty(PascalCaseModel): contributors: Optional[List] = None features: Optional[List] = None minimum_notes: Optional[str] = None recommended_notes: Optional[str] = None release_notes: Optional[str] = None display_platform_properties: Any = None sku_description: str sku_title: str sku_button_title: Optional[str] = None delivery_date_overlay: Any = None sku_display_rank: Optional[List] = None text_resources: Any = None images: Optional[List] = None legal_text: Optional[LegalText] = None language: str markets: List[str] class SkuMarketProperty(PascalCaseModel): first_available_date: Optional[Union[datetime, str]] = None supported_languages: Optional[List[str]] = None package_ids: Any = None pi_filter: Any = Field(None, alias="PIFilter") markets: List[str] class SkuProperties(PascalCaseModel): early_adopter_enrollment_url: Any = None fulfillment_data: Optional[FulfillmentData] = None fulfillment_type: Optional[str] = None fulfillment_plugin_id: Any = None has_third_party_iaps: Optional[bool] = Field(None, alias="HasThirdPartyIAPs") last_update_date: Optional[datetime] = None hardware_properties: Optional[HardwareProperties] = None hardware_requirements: Optional[List] = None hardware_warning_list: Optional[List] = None installation_terms: str packages: Optional[List[Package]] = None version_string: Optional[str] = None visible_to_b2b_service_ids: List = Field(alias="VisibleToB2BServiceIds") xbox_xpa: Optional[bool] = Field(None, alias="XboxXPA") bundled_skus: Optional[List] = None is_repurchasable: bool sku_display_rank: int display_physical_store_inventory: Any = None additional_identifiers: List is_trial: bool is_pre_order: bool is_bundle: bool @field_validator("last_update_date", mode="before", check_fields=True) def validator(x): return x or None class Sku(PascalCaseModel): last_modified_date: datetime localized_properties: List[SkuLocalizedProperty] market_properties: List[SkuMarketProperty] product_id: str properties: SkuProperties sku_a_schema: str sku_b_schema: str sku_id: str sku_type: str recurrence_policy: Any = None subscription_policy_id: Any = None class AllowedPlatform(PascalCaseModel): max_version: Optional[int] = None min_version: Optional[int] = None platform_name: str class ClientConditions(PascalCaseModel): allowed_platforms: List[AllowedPlatform] class Conditions(PascalCaseModel): client_conditions: ClientConditions end_date: datetime resource_set_ids: List[str] start_date: datetime class PIFilter(PascalCaseModel): exclusion_properties: List inclusion_properties: List class Price(PascalCaseModel): currency_code: str is_pi_required: bool = Field(alias="IsPIRequired") list_price: float msrp: float = Field(alias="MSRP") tax_type: str wholesale_currency_code: str class OrderManagementData(PascalCaseModel): granted_entitlement_keys: Optional[List] = None pi_filter: Optional[PIFilter] = Field(None, alias="PIFilter") price: Price class AvailabilityProperties(PascalCaseModel): original_release_date: Optional[datetime] = None class SatisfyingEntitlementKey(PascalCaseModel): entitlement_keys: List[str] licensing_key_ids: List[str] class LicensingData(PascalCaseModel): satisfying_entitlement_keys: List[SatisfyingEntitlementKey] class Availability(PascalCaseModel): actions: List[str] availability_a_schema: Optional[str] = None availability_b_schema: Optional[str] = None availability_id: Optional[str] = None conditions: Optional[Conditions] = None last_modified_date: Optional[datetime] = None markets: Optional[List[str]] = None order_management_data: Optional[OrderManagementData] = None properties: Optional[AvailabilityProperties] = None sku_id: Optional[str] = None display_rank: Optional[int] = None remediation_required: Optional[bool] = None licensing_data: Optional[LicensingData] = None class DisplaySkuAvailability(PascalCaseModel): sku: Optional[Sku] = None availabilities: List[Availability] class LocalizedProperty(PascalCaseModel): developer_name: Optional[str] = None display_platform_properties: Optional[Any] = None publisher_name: Optional[str] = None publisher_website_uri: Optional[str] = None support_uri: Optional[str] = None eligibility_properties: Optional[Any] = None franchises: Optional[List] = None images: List[Image] videos: Optional[List[Video]] = None product_description: Optional[str] = None product_title: str short_title: Optional[str] = None sort_title: Optional[str] = None friendly_title: Optional[str] = None short_description: Optional[str] = None search_titles: Optional[List[SearchTitle]] = None voice_title: Optional[str] = None render_group_details: Optional[Any] = None product_display_ranks: Optional[List] = None interactive_model_config: Optional[Any] = None interactive_3d_enabled: Optional[bool] = Field(None, alias="Interactive3DEnabled") language: Optional[str] = None markets: Optional[List[str]] = None class MarketProperty(PascalCaseModel): original_release_date: Optional[datetime] = None original_release_friendly_name: Optional[str] = None minimum_user_age: Optional[int] = None content_ratings: Optional[List[ContentRating]] = None related_products: Optional[List] = None usage_data: List[UsageData] bundle_config: Optional[Any] = None markets: Optional[List[str]] = None class Product(PascalCaseModel): last_modified_date: Optional[datetime] = None localized_properties: List[LocalizedProperty] market_properties: List[MarketProperty] product_a_schema: Optional[str] = None product_b_schema: Optional[str] = None product_id: str properties: Optional[ProductProperties] = None alternate_ids: Optional[List[AlternateId]] = None domain_data_version: Optional[Any] = None ingestion_source: Optional[str] = None is_microsoft_product: Optional[bool] = None preferred_sku_id: Optional[str] = None product_type: Optional[str] = None validation_data: Optional[ValidationData] = None merchandizing_tags: Optional[List] = None part_d: Optional[str] = None product_family: str schema_version: Optional[str] = None product_kind: str display_sku_availabilities: List[DisplaySkuAvailability] class CatalogResponse(PascalCaseModel): big_ids: Optional[List[str]] = None has_more_pages: Optional[bool] = None products: List[Product] total_result_count: Optional[int] = None class SearchProduct(PascalCaseModel): background_color: Optional[str] = None height: Optional[int] = None image_type: Optional[str] = None width: Optional[int] = None platform_properties: List icon: Optional[str] = None product_id: str type: str title: str class CatalogSearchResult(PascalCaseModel): product_family_name: str products: List[SearchProduct] class CatalogSearchResponse(PascalCaseModel): results: List[CatalogSearchResult] total_result_count: int python-xbox-webapi-2.1.0/xbox/webapi/api/provider/cqs/000077500000000000000000000000001465040003600226745ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/cqs/__init__.py000066400000000000000000000051531465040003600250110ustar00rootroot00000000000000""" CQS Used for download stump (TV Streaming) data (RemoteTVInput ServiceChannel on Smartglass) """ from xbox.webapi.api.provider.baseprovider import BaseProvider from xbox.webapi.api.provider.cqs.models import ( CqsChannelListResponse, CqsScheduleResponse, ) class CQSProvider(BaseProvider): CQS_URL = "https://cqs.xboxlive.com" HEADERS_CQS = { "Cache-Control": "no-cache", "Accept": "application/json", "Pragma": "no-cache", "x-xbl-client-type": "Companion", "x-xbl-client-version": "2.0", "x-xbl-contract-version": "1.b", "x-xbl-device-type": "WindowsPhone", "x-xbl-isautomated-client": "true", } async def get_channel_list( self, locale_info: str, headend_id: str, **kwargs ) -> CqsChannelListResponse: """ Get stump channel list Args: locale_info: Locale string (format: "en-US") headend_id: Headend id Returns: :class:`CqsChannelListResponse`: Channel List Response """ url = self.CQS_URL + f"/epg/{locale_info}/lineups/{headend_id}/channels" params = {"desired": "vesper_mobile_lineup"} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_CQS, **kwargs ) resp.raise_for_status() return CqsChannelListResponse(**resp.json()) async def get_schedule( self, locale_info: str, headend_id: str, start_date: str, duration_minutes: int, channel_skip: int, channel_count: int, **kwargs, ) -> CqsScheduleResponse: """ Get stump epg data Args: locale_info: Locale string (format: "en-US") headend_id: Headend id start_date: Start date (format: 2016-07-11T21:50:00.000Z) duration_minutes: Schedule duration to download channel_skip: Count of channels to skip channel_count: Count of channels to get data for Returns: :class:`CqsScheduleResponse`: Schedule Response """ url = self.CQS_URL + f"/epg/{locale_info}/lineups/{headend_id}/programs" params = { "startDate": start_date, "durationMinutes": duration_minutes, "channelSkip": channel_skip, "channelCount": channel_count, "desired": "vesper_mobile_schedule", } resp = await self.client.session.get( url, params=params, headers=self.HEADERS_CQS, **kwargs ) resp.raise_for_status() return CqsScheduleResponse(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/api/provider/cqs/models.py000066400000000000000000000022111465040003600245250ustar00rootroot00000000000000from typing import Any, Dict, List, Optional from xbox.webapi.common.models import PascalCaseModel class Image(PascalCaseModel): purpose: str resize_uri: str fore_color: str class ListChannel(PascalCaseModel): id: str channel_id: str call_sign: str channel_number: str start_date: str end_date: str images: List[Image] is_HD: Optional[bool] = None class CqsChannelListResponse(PascalCaseModel): channels: List[ListChannel] class Genre(PascalCaseModel): name: str class ParentSeries(PascalCaseModel): id: str name: str class Program(PascalCaseModel): id: str media_item_type: str start_date: str end_date: str name: str is_repeat: bool parental_control: Optional[Dict[str, Any]] = None genres: List[Genre] category_id: int description: Optional[str] = None parent_series: Optional[ParentSeries] = None images: Optional[List[Image]] = None class ScheduleChannel(PascalCaseModel): id: str name: str images: List[Image] programs: List[Program] class CqsScheduleResponse(PascalCaseModel): channels: List[ScheduleChannel] python-xbox-webapi-2.1.0/xbox/webapi/api/provider/gameclips/000077500000000000000000000000001465040003600240525ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/gameclips/__init__.py000066400000000000000000000126331465040003600261700ustar00rootroot00000000000000""" Gameclips - Get gameclip info """ from xbox.webapi.api.provider.baseprovider import BaseProvider from xbox.webapi.api.provider.gameclips.models import GameclipsResponse class GameclipProvider(BaseProvider): GAMECLIPS_METADATA_URL = "https://gameclipsmetadata.xboxlive.com" HEADERS_GAMECLIPS_METADATA = {"x-xbl-contract-version": "1"} async def get_recent_community_clips_by_title_id( self, title_id: str, **kwargs ) -> GameclipsResponse: """ Get recent community clips by Title Id Args: title_id: Title Id to get clips for Returns: :class:`GameclipsResponse`: Game clip Response """ url = self.GAMECLIPS_METADATA_URL + f"/public/titles/{title_id}/clips" params = {"qualifier": "created"} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_GAMECLIPS_METADATA, **kwargs ) resp.raise_for_status() return GameclipsResponse(**resp.json()) async def get_recent_own_clips( self, title_id: str = None, skip_items: int = 0, max_items: int = 25, **kwargs ) -> GameclipsResponse: """ Get own recent clips, optionally filter for title Id Args: title_id: Title ID to filter skip_items: Item count to skip max_items: Maximum item count to load Returns: :class:`GameclipsResponse`: Game clip Response """ url = self.GAMECLIPS_METADATA_URL + "/users/me" if title_id: url += f"/titles/{title_id}" url += "/clips" params = {"skipItems": skip_items, "maxItems": max_items} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_GAMECLIPS_METADATA, **kwargs ) resp.raise_for_status() return GameclipsResponse(**resp.json()) async def get_recent_clips_by_xuid( self, xuid: str, title_id: str = None, skip_items: int = 0, max_items: int = 25, **kwargs, ) -> GameclipsResponse: """ Get clips by XUID, optionally filter for title Id Args: xuid: XUID of user to get clips from title_id: Optional title id filter skip_items: Item count to skip max_items: Maximum item count to load Returns: :class:`GameclipsResponse`: Game clip Response """ url = self.GAMECLIPS_METADATA_URL + f"/users/xuid({xuid})" if title_id: url += f"/titles/{title_id}" url += "/clips" params = {"skipItems": skip_items, "maxItems": max_items} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_GAMECLIPS_METADATA, **kwargs ) resp.raise_for_status() return GameclipsResponse(**resp.json()) async def get_saved_community_clips_by_title_id( self, title_id: str, **kwargs ) -> GameclipsResponse: """ Get saved community clips by Title Id Args: title_id: Title Id to get screenshots for Returns: :class:`GameclipsResponse`: Game clip Response """ url = self.GAMECLIPS_METADATA_URL + f"/public/titles/{title_id}/clips/saved" params = {"qualifier": "created"} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_GAMECLIPS_METADATA, **kwargs ) resp.raise_for_status() return GameclipsResponse(**resp.json()) async def get_saved_own_clips( self, title_id: str = None, skip_items: int = 0, max_items: int = 25, **kwargs ) -> GameclipsResponse: """ Get own saved clips, optionally filter for title Id an Args: title_id: Optional Title ID to filter skip_items: Item count to skip max_items: Maximum item count to load Returns: :class:`GameclipsResponse`: Game clip Response """ url = self.GAMECLIPS_METADATA_URL + "/users/me" if title_id: url += f"/titles/{title_id}" url += "/clips/saved" params = {"skipItems": skip_items, "maxItems": max_items} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_GAMECLIPS_METADATA, **kwargs ) resp.raise_for_status() return GameclipsResponse(**resp.json()) async def get_saved_clips_by_xuid( self, xuid: str, title_id: str = None, skip_items: int = 0, max_items: int = 25, **kwargs, ) -> GameclipsResponse: """ Get saved clips by XUID, optionally filter for title Id Args: xuid: XUID of user to get screenshots from title_id: Optional title id filter skip_items: Item count to skip max_items: Maximum item count to load Returns: :class:`GameclipsResponse`: Game clip Response """ url = self.GAMECLIPS_METADATA_URL + f"/users/xuid({xuid})" if title_id: url += f"/titles/{title_id}" url += "/clips/saved" params = {"skipItems": skip_items, "maxItems": max_items} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_GAMECLIPS_METADATA, **kwargs ) resp.raise_for_status() return GameclipsResponse(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/api/provider/gameclips/models.py000066400000000000000000000022271465040003600257120ustar00rootroot00000000000000from typing import List, Optional from xbox.webapi.common.models import CamelCaseModel class Thumbnail(CamelCaseModel): uri: str file_size: int thumbnail_type: str class GameClipUri(CamelCaseModel): uri: str file_size: int uri_type: str expiration: str class GameClip(CamelCaseModel): game_clip_id: str state: str date_published: str date_recorded: str last_modified: str user_caption: str type: str duration_in_seconds: int scid: str title_id: int rating: float rating_count: int views: int title_data: str system_properties: str saved_by_user: bool achievement_id: str greatest_moment_id: str thumbnails: List[Thumbnail] game_clip_uris: List[GameClipUri] xuid: str clip_name: str title_name: str game_clip_locale: str clip_content_attributes: str device_type: str comment_count: int like_count: int share_count: int partial_views: int class PagingInfo(CamelCaseModel): continuation_token: Optional[str] = None class GameclipsResponse(CamelCaseModel): game_clips: List[GameClip] paging_info: PagingInfo python-xbox-webapi-2.1.0/xbox/webapi/api/provider/lists/000077500000000000000000000000001465040003600232445ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/lists/__init__.py000066400000000000000000000044411465040003600253600ustar00rootroot00000000000000""" EPLists - Mainly used for XBL Pins """ from xbox.webapi.api.provider.baseprovider import BaseProvider from xbox.webapi.api.provider.lists.models import ListMetadata, ListsResponse class ListsProvider(BaseProvider): LISTS_URL = "https://eplists.xboxlive.com" HEADERS_LISTS = {"Content-Type": "application/json", "x-xbl-contract-version": "2"} SEPERATOR = "." async def remove_items( self, xuid: str, post_body: dict, listname: str = "XBLPins", **kwargs ) -> ListMetadata: """ Remove items from specific list, defaults to "XBLPins" Args: xuid (str/int): Xbox User Id listname (str): Name of list to edit Returns: :class:`ListMetadata`: List Metadata Response """ url = self.LISTS_URL + f"/users/xuid({xuid})/lists/PINS/{listname}" resp = await self.client.session.delete( url, json=post_body, headers=self.HEADERS_LISTS, **kwargs ) resp.raise_for_status() return ListMetadata(**resp.json()) async def get_items( self, xuid: str, listname: str = "XBLPins", **kwargs ) -> ListsResponse: """ Get items from specific list, defaults to "XBLPins" Args: xuid (str/int): Xbox User Id listname (str): Name of list to edit Returns: :class:`ListsResponse`: List Response """ url = self.LISTS_URL + f"/users/xuid({xuid})/lists/PINS/{listname}" resp = await self.client.session.get(url, headers=self.HEADERS_LISTS, **kwargs) resp.raise_for_status() return ListsResponse(**resp.json()) async def insert_items( self, xuid: str, post_body: dict, listname: str = "XBLPins", **kwargs ) -> ListMetadata: """ Insert items to specific list, defaults to "XBLPins" Args: xuid (str/int): Xbox User Id listname (str): Name of list to edit Returns: :class:`ListMetadata`: List Metadata Response """ url = self.LISTS_URL + f"/users/xuid({xuid})/lists/PINS/{listname}" resp = await self.client.session.post( url, json=post_body, headers=self.HEADERS_LISTS, **kwargs ) resp.raise_for_status() return ListMetadata(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/api/provider/lists/models.py000066400000000000000000000013071465040003600251020ustar00rootroot00000000000000from typing import List, Optional from xbox.webapi.common.models import PascalCaseModel class Item(PascalCaseModel): item_id: str content_type: str title: Optional[str] = None device_type: str provider: Optional[str] = None provider_id: Optional[str] = None class ListItem(PascalCaseModel): date_added: str date_modified: str index: int k_value: int item: Item class ListMetadata(PascalCaseModel): list_title: str list_version: int list_count: int allow_duplicates: bool max_list_size: int access_setting: str class ListsResponse(PascalCaseModel): impression_id: str list_items: List[ListItem] list_metadata: ListMetadata python-xbox-webapi-2.1.0/xbox/webapi/api/provider/mediahub/000077500000000000000000000000001465040003600236645ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/mediahub/__init__.py000066400000000000000000000034441465040003600260020ustar00rootroot00000000000000""" Mediahub - Fetch screenshots and gameclips """ from xbox.webapi.api.provider.baseprovider import BaseProvider from xbox.webapi.api.provider.mediahub.models import ( MediahubGameclips, MediahubScreenshots, ) class MediahubProvider(BaseProvider): MEDIAHUB_URL = "https://mediahub.xboxlive.com" HEADERS = {"x-xbl-contract-version": "3"} async def fetch_own_clips( self, skip: int = 0, count: int = 500, **kwargs ) -> MediahubGameclips: """ Fetch own clips Args: skip: Number of items to skip count: Max entries to fetch Returns: :class:`MediahubGameclips`: Gameclips """ url = f"{self.MEDIAHUB_URL}/gameclips/search" post_data = { "max": count, "query": f"OwnerXuid eq {self.client.xuid}", "skip": skip, } resp = await self.client.session.post( url, json=post_data, headers=self.HEADERS, **kwargs ) resp.raise_for_status() return MediahubGameclips(**resp.json()) async def fetch_own_screenshots( self, skip: int = 0, count: int = 500, **kwargs ) -> MediahubScreenshots: """ Fetch own screenshots Args: skip: Number of items to skip count: Max entries to fetch Returns: :class:`MediahubScreenshots`: Screenshots """ url = f"{self.MEDIAHUB_URL}/screenshots/search" post_data = { "max": count, "query": f"OwnerXuid eq {self.client.xuid}", "skip": skip, } resp = await self.client.session.post( url, json=post_data, headers=self.HEADERS, **kwargs ) resp.raise_for_status() return MediahubScreenshots(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/api/provider/mediahub/models.py000066400000000000000000000035671465040003600255340ustar00rootroot00000000000000from typing import List, Optional from xbox.webapi.common.models import CamelCaseModel class ContentSegment(CamelCaseModel): segment_id: int creation_type: str creator_channel_id: Optional[str] = None creator_xuid: int record_date: str duration_in_seconds: int offset: int secondary_title_id: Optional[int] = None title_id: int class ContentLocator(CamelCaseModel): expiration: Optional[str] = None file_size: Optional[int] = None locator_type: str uri: str class GameclipContent(CamelCaseModel): content_id: str content_locators: List[ContentLocator] content_segments: List[ContentSegment] creation_type: str duration_in_seconds: int local_id: str owner_xuid: int sandbox_id: str shared_to: List[int] title_id: int title_name: str upload_date: str upload_language: str upload_region: str upload_title_id: int upload_device_type: str comment_count: int like_count: int share_count: int view_count: int content_state: str enforcement_state: str sessions: List[str] tournaments: List[str] class MediahubGameclips(CamelCaseModel): values: List[GameclipContent] class ScreenshotContent(CamelCaseModel): content_id: str capture_date: str content_locators: List[ContentLocator] local_id: str owner_xuid: int resolution_height: int resolution_width: int date_uploaded: str sandbox_id: str shared_to: List[int] title_id: int title_name: str upload_language: str upload_region: str upload_title_id: int upload_device_type: str comment_count: int like_count: int share_count: int view_count: int content_state: str enforcement_state: str sessions: List[str] tournaments: List[str] class MediahubScreenshots(CamelCaseModel): values: List[ScreenshotContent] python-xbox-webapi-2.1.0/xbox/webapi/api/provider/message/000077500000000000000000000000001465040003600235325ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/message/__init__.py000066400000000000000000000101041465040003600256370ustar00rootroot00000000000000""" Message - Read and send messages TODO: Support group messaging """ from xbox.webapi.api.provider.baseprovider import BaseProvider from xbox.webapi.api.provider.message.models import ( ConversationResponse, InboxResponse, SendMessageResponse, ) class MessageProvider(BaseProvider): MSG_URL = "https://xblmessaging.xboxlive.com" HEADERS_MESSAGE = {"x-xbl-contract-version": "1"} HEADERS_HORIZON = {"x-xbl-contract-version": "2"} async def get_inbox(self, max_items: int = 100, **kwargs) -> InboxResponse: """ Get messages Returns: :class:`InboxResponse`: Inbox Response """ url = f"{self.MSG_URL}/network/Xbox/users/me/inbox" params = {"maxItems": max_items} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_MESSAGE, **kwargs ) resp.raise_for_status() return InboxResponse(**resp.json()) async def get_conversation( self, xuid: str, max_items: int = 100, **kwargs ) -> ConversationResponse: """ Get detailed conversation info Args: xuid: Xuid of user having a conversation with Returns: :class:`ConversationResponse`: Conversation Response """ url = f"{self.MSG_URL}/network/Xbox/users/me/conversations/users/xuid({xuid})" params = {"maxItems": max_items} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_MESSAGE, **kwargs ) resp.raise_for_status() return ConversationResponse(**resp.json()) async def delete_conversation( self, conversation_id: str, horizon: str, **kwargs ) -> bool: """ Delete message **NOTE**: Returns HTTP Status Code **200** on success Args: conversation_id: Message Id horizon: Delete horizon from get conversation response Returns: True on success, False otherwise """ url = f"{self.MSG_URL}/network/Xbox/users/me/conversations/horizon" post_data = { "conversations": [ { "conversationId": conversation_id, "conversationType": "OneToOne", "horizonType": "Delete", "horizon": horizon, } ] } resp = await self.client.session.put( url, json=post_data, headers=self.HEADERS_HORIZON, **kwargs ) return resp.status_code == 200 async def delete_message( self, conversation_id: str, message_id: str, **kwargs ) -> bool: """ Delete message **NOTE**: Returns HTTP Status Code **200** on success Args: conversation_id: Conversation Id message_id: Message Id Returns: True on success, False otherwise """ url = f"{self.MSG_URL}/network/Xbox/users/me/conversations/{conversation_id}/messages/{message_id}" resp = await self.client.session.delete( url, headers=self.HEADERS_MESSAGE, **kwargs ) return resp.status_code == 200 async def send_message( self, xuid: str, message_text: str, **kwargs ) -> SendMessageResponse: """ Send message to an xuid Args: xuid: Xuid message_text: Message text Returns: :class:`SendMessageResponse`: Send Message Response """ if len(message_text) > 256: raise ValueError("Message text exceeds max length of 256 chars") url = f"{self.MSG_URL}/network/Xbox/users/me/conversations/users/xuid({xuid})" post_data = { "parts": [ { "contentType": "text", "version": 0, "text": message_text, } ] } resp = await self.client.session.post( url, json=post_data, headers=self.HEADERS_MESSAGE, **kwargs ) resp.raise_for_status() return SendMessageResponse(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/api/provider/message/models.py000066400000000000000000000040261465040003600253710ustar00rootroot00000000000000from datetime import datetime from typing import Any, List, Optional from xbox.webapi.common.models import CamelCaseModel class Part(CamelCaseModel): content_type: str version: int text: Optional[str] = None unsuitable_for: Optional[List] = None locator: Optional[str] = None class Content(CamelCaseModel): parts: List[Part] class ContentPayload(CamelCaseModel): content: Content class Message(CamelCaseModel): content_payload: Optional[ContentPayload] = None timestamp: datetime last_update_timestamp: datetime type: str network_id: str conversation_type: str conversation_id: str owner: Optional[int] = None sender: str message_id: str is_deleted: bool is_server_updated: bool class Conversation(CamelCaseModel): timestamp: datetime network_id: str type: str conversation_id: str voice_id: str participants: List[str] read_horizon: str delete_horizon: str is_read: bool muted: bool folder: str last_message: Message class Primary(CamelCaseModel): folder: str total_count: int unread_count: int conversations: List[Conversation] class SafetySettings(CamelCaseModel): version: int primary_inbox_media: str primary_inbox_text: str primary_inbox_url: str secondary_inbox_media: str secondary_inbox_text: str secondary_inbox_url: str can_unobscure: bool class InboxResponse(CamelCaseModel): primary: Primary folders: List[Any] safety_settings: SafetySettings class ConversationResponse(CamelCaseModel): timestamp: datetime network_id: str type: str conversation_id: str participants: Optional[List[str]] = None read_horizon: str delete_horizon: str is_read: bool muted: bool folder: str messages: Optional[List[Message]] = None continuation_token: Optional[str] = None voice_id: str voice_roster: Optional[List[Any]] = None class SendMessageResponse(CamelCaseModel): message_id: str conversation_id: str python-xbox-webapi-2.1.0/xbox/webapi/api/provider/people/000077500000000000000000000000001465040003600233725ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/people/__init__.py000066400000000000000000000131611465040003600255050ustar00rootroot00000000000000""" People - Access friendlist from own profiles and others """ from typing import List from xbox.webapi.api.provider.baseprovider import BaseProvider from xbox.webapi.api.provider.people.models import ( PeopleDecoration, PeopleResponse, PeopleSummaryResponse, ) class PeopleProvider(BaseProvider): SOCIAL_URL = "https://social.xboxlive.com" HEADERS_SOCIAL = {"x-xbl-contract-version": "2"} PEOPLE_URL = "https://peoplehub.xboxlive.com" HEADERS_PEOPLE = { "x-xbl-contract-version": "3", "Accept-Language": "overwrite in __init__", } SEPERATOR = "," def __init__(self, client): """ Initialize Baseclass, set 'Accept-Language' header from client instance Args: client (:class:`XboxLiveClient`): Instance of client """ super().__init__(client) self._headers = {**self.HEADERS_PEOPLE} self._headers.update({"Accept-Language": self.client.language.locale}) async def get_friends_own( self, decoration_fields: List[PeopleDecoration] = None, **kwargs ) -> PeopleResponse: """ Get friendlist of own profile Returns: :class:`PeopleResponse`: People Response """ if not decoration_fields: decoration_fields = [ PeopleDecoration.PREFERRED_COLOR, PeopleDecoration.DETAIL, PeopleDecoration.MULTIPLAYER_SUMMARY, PeopleDecoration.PRESENCE_DETAIL, ] decoration = self.SEPERATOR.join(decoration_fields) url = f"{self.PEOPLE_URL}/users/me/people/social/decoration/{decoration}" resp = await self.client.session.get(url, headers=self._headers, **kwargs) resp.raise_for_status() return PeopleResponse(**resp.json()) async def get_friends_by_xuid( self, xuid: str, decoration_fields: List[PeopleDecoration] = None, **kwargs ) -> PeopleResponse: """ Get friendlist of own profile Returns: :class:`PeopleResponse`: People Response """ if not decoration_fields: decoration_fields = [ PeopleDecoration.PREFERRED_COLOR, PeopleDecoration.DETAIL, PeopleDecoration.MULTIPLAYER_SUMMARY, PeopleDecoration.PRESENCE_DETAIL, ] decoration = self.SEPERATOR.join(decoration_fields) url = f"{self.PEOPLE_URL}/users/xuid({xuid})/people/social/decoration/{decoration}" resp = await self.client.session.get(url, headers=self._headers, **kwargs) resp.raise_for_status() return PeopleResponse(**resp.json()) async def get_friends_own_batch( self, xuids: List[str], decoration_fields: List[PeopleDecoration] = None, **kwargs, ) -> PeopleResponse: """ Get friends metadata by providing a list of XUIDs Args: xuids: List of XUIDs Returns: :class:`PeopleResponse`: People Response """ if not decoration_fields: decoration_fields = [ PeopleDecoration.PREFERRED_COLOR, PeopleDecoration.DETAIL, PeopleDecoration.MULTIPLAYER_SUMMARY, PeopleDecoration.PRESENCE_DETAIL, ] decoration = self.SEPERATOR.join(decoration_fields) url = f"{self.PEOPLE_URL}/users/me/people/batch/decoration/{decoration}" resp = await self.client.session.post( url, json={"xuids": xuids}, headers=self._headers, **kwargs ) resp.raise_for_status() return PeopleResponse(**resp.json()) async def get_friend_recommendations(self, **kwargs) -> PeopleResponse: """ Get recommended friends Returns: :class:`PeopleResponse`: People Response """ url = f"{self.PEOPLE_URL}/users/me/people/recommendations" resp = await self.client.session.get(url, headers=self._headers, **kwargs) resp.raise_for_status() return PeopleResponse(**resp.json()) async def get_friends_summary_own(self, **kwargs) -> PeopleSummaryResponse: """ Get friendlist summary of own profile Returns: :class:`PeopleSummaryResponse`: People Summary Response """ url = self.SOCIAL_URL + "/users/me/summary" resp = await self.client.session.get(url, headers=self.HEADERS_SOCIAL, **kwargs) resp.raise_for_status() return PeopleSummaryResponse(**resp.json()) async def get_friends_summary_by_xuid( self, xuid: str, **kwargs ) -> PeopleSummaryResponse: """ Get friendlist summary of user by xuid Args: xuid: XUID to request summary from Returns: :class:`PeopleSummaryResponse`: People Summary Response """ url = self.SOCIAL_URL + f"/users/xuid({xuid})/summary" resp = await self.client.session.get(url, headers=self.HEADERS_SOCIAL, **kwargs) resp.raise_for_status() return PeopleSummaryResponse(**resp.json()) async def get_friends_summary_by_gamertag( self, gamertag: str, **kwargs ) -> PeopleSummaryResponse: """ Get friendlist summary of user by gamertag Args: gamertag: Gamertag to request friendlist from Returns: :class:`PeopleSummaryResponse`: People Summary Response """ url = self.SOCIAL_URL + f"/users/gt({gamertag})/summary" resp = await self.client.session.get(url, headers=self.HEADERS_SOCIAL, **kwargs) resp.raise_for_status() return PeopleSummaryResponse(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/api/provider/people/models.py000066400000000000000000000133341465040003600252330ustar00rootroot00000000000000from datetime import datetime from enum import Enum from typing import Any, List, Optional from xbox.webapi.common.models import CamelCaseModel, PascalCaseModel class PeopleDecoration(str, Enum): SUGGESTION = "suggestion" RECENT_PLAYER = "recentplayer" FOLLOWER = "follower" PREFERRED_COLOR = "preferredcolor" DETAIL = "detail" MULTIPLAYER_SUMMARY = "multiplayersummary" PRESENCE_DETAIL = "presencedetail" TITLE_PRESENCE = "titlepresence" TITLE_SUMMARY = "titlesummary" PRESENCE_TITLE_IDS = "presencetitleids" COMMUNITY_MANAGER_TITLES = "communitymanagertitles" SOCIAL_MANAGER = "socialmanager" BROADCAST = "broadcast" TOURNAMENT_SUMMARY = "tournamentsummary" AVATAR = "avatar" class PeopleSummaryResponse(CamelCaseModel): target_following_count: int target_follower_count: int is_caller_following_target: bool is_target_following_caller: bool has_caller_marked_target_as_favorite: bool has_caller_marked_target_as_identity_shared: bool legacy_friend_status: str available_people_slots: Optional[int] = None recent_change_count: Optional[int] = None watermark: Optional[str] = None class Suggestion(PascalCaseModel): type: Optional[str] = None priority: int reasons: Optional[str] = None title_id: Optional[str] = None class Recommendation(PascalCaseModel): type: str reasons: List[str] class MultiplayerSummary(PascalCaseModel): in_multiplayer_session: int in_party: int class RecentPlayer(CamelCaseModel): titles: List[str] text: Optional[str] = None class Follower(CamelCaseModel): text: Optional[str] = None followed_date_time: Optional[datetime] = None class PreferredColor(CamelCaseModel): primary_color: Optional[str] = None secondary_color: Optional[str] = None tertiary_color: Optional[str] = None class PresenceDetail(PascalCaseModel): is_broadcasting: bool device: str presence_text: str state: str title_id: str title_type: Optional[str] = None is_primary: bool is_game: bool rich_presence_text: Optional[str] = None class TitlePresence(PascalCaseModel): is_currently_playing: bool presence_text: Optional[str] = None title_name: Optional[str] = None title_id: Optional[str] = None class Detail(CamelCaseModel): account_tier: str bio: Optional[str] = None is_verified: bool location: Optional[str] = None tenure: Optional[str] = None watermarks: List[str] blocked: bool mute: bool follower_count: int following_count: int has_game_pass: bool class SocialManager(CamelCaseModel): title_ids: List[str] pages: List[str] class Avatar(CamelCaseModel): update_time_offset: Optional[datetime] = None spritesheet_metadata: Optional[Any] = None class LinkedAccount(CamelCaseModel): network_name: str display_name: Optional[str] = None show_on_profile: bool is_family_friendly: bool deeplink: Optional[str] = None class Person(CamelCaseModel): xuid: str is_favorite: bool is_following_caller: bool is_followed_by_caller: bool is_identity_shared: bool added_date_time_utc: Optional[datetime] = None display_name: Optional[str] = None real_name: str display_pic_raw: str show_user_as_avatar: str gamertag: str gamer_score: str modern_gamertag: str modern_gamertag_suffix: str unique_modern_gamertag: str xbox_one_rep: str presence_state: str presence_text: str presence_devices: Optional[Any] = None is_broadcasting: bool is_cloaked: Optional[bool] = None is_quarantined: bool is_xbox_360_gamerpic: bool last_seen_date_time_utc: Optional[datetime] = None suggestion: Optional[Suggestion] = None recommendation: Optional[Recommendation] = None search: Optional[Any] = None titleHistory: Optional[Any] = None multiplayer_summary: Optional[MultiplayerSummary] = None recent_player: Optional[RecentPlayer] = None follower: Optional[Follower] = None preferred_color: Optional[PreferredColor] = None presence_details: Optional[List[PresenceDetail]] = None title_presence: Optional[TitlePresence] = None title_summaries: Optional[Any] = None presence_title_ids: Optional[List[str]] = None detail: Optional[Detail] = None community_manager_titles: Optional[Any] = None social_manager: Optional[SocialManager] = None broadcast: Optional[List[Any]] = None tournament_summary: Optional[Any] = None avatar: Optional[Avatar] = None linked_accounts: Optional[List[LinkedAccount]] = None color_theme: str preferred_flag: str preferred_platforms: List[Any] class RecommendationSummary(CamelCaseModel): friend_of_friend: int facebook_friend: int phone_contact: int follower: int VIP: int steam_friend: int promote_suggestions: bool class FriendFinderState(CamelCaseModel): facebook_opt_in_status: str facebook_token_status: str phone_opt_in_status: str phone_token_status: str steam_opt_in_status: str steam_token_status: str discord_opt_in_status: str discord_token_status: str instagram_opt_in_status: str instagram_token_status: str mixer_opt_in_status: str mixer_token_status: str reddit_opt_in_status: str reddit_token_status: str twitch_opt_in_status: str twitch_token_status: str twitter_opt_in_status: str twitter_token_status: str you_tube_opt_in_status: str you_tube_token_status: str class PeopleResponse(CamelCaseModel): people: List[Person] recommendation_summary: Optional[RecommendationSummary] = None friend_finder_state: Optional[FriendFinderState] = None account_link_details: Optional[List[LinkedAccount]] = None python-xbox-webapi-2.1.0/xbox/webapi/api/provider/presence/000077500000000000000000000000001465040003600237125ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/presence/__init__.py000066400000000000000000000063521465040003600260310ustar00rootroot00000000000000""" Presence - Get online status of friends """ from typing import List from xbox.webapi.api.provider.baseprovider import BaseProvider from xbox.webapi.api.provider.presence.models import ( PresenceBatchResponse, PresenceItem, PresenceLevel, PresenceState, ) class PresenceProvider(BaseProvider): PRESENCE_URL = "https://userpresence.xboxlive.com" HEADERS_PRESENCE = {"x-xbl-contract-version": "3", "Accept": "application/json"} async def get_presence( self, xuid, presence_level: PresenceLevel = PresenceLevel.USER, **kwargs, ) -> PresenceItem: """ Get presence for given xuid Args: xuid: XUID presence_level: Filter level Returns: :class:`PresenceItem`: Presence Response """ url = self.PRESENCE_URL + "/users/xuid(" + xuid + ")?level=" + presence_level resp = await self.client.session.get( url, headers=self.HEADERS_PRESENCE, **kwargs ) resp.raise_for_status() return PresenceItem(**resp.json()) async def get_presence_batch( self, xuids: List[str], online_only: bool = False, presence_level: PresenceLevel = PresenceLevel.USER, **kwargs, ) -> List[PresenceItem]: """ Get presence for list of xuids Args: xuids: List of XUIDs online_only: Only get online profiles presence_level: Filter level Returns: List[:class:`PresenceItem`]: List of presence items """ if len(xuids) > 1100: raise Exception("Xuid list length is > 1100") url = self.PRESENCE_URL + "/users/batch" post_data = { "users": [str(x) for x in xuids], "onlineOnly": online_only, "level": presence_level, } resp = await self.client.session.post( url, json=post_data, headers=self.HEADERS_PRESENCE, **kwargs ) resp.raise_for_status() parsed = PresenceBatchResponse.model_validate(resp.json()) return parsed.root async def get_presence_own( self, presence_level: PresenceLevel = PresenceLevel.ALL, **kwargs ) -> PresenceItem: """ Get presence of own profile Args: presence_level: Filter level Returns: :class:`PresenceItem`: Presence Response """ url = self.PRESENCE_URL + "/users/me" params = {"level": presence_level} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_PRESENCE, **kwargs ) resp.raise_for_status() return PresenceItem(**resp.json()) async def set_presence_own(self, presence_state: PresenceState, **kwargs) -> bool: """ Set presence of own profile Args: presence_state: State of presence Returns: `True` on success, `False` otherwise """ url = self.PRESENCE_URL + f"/users/xuid({self.client.xuid})/state" data = {"state": presence_state.value} resp = await self.client.session.put( url, json=data, headers=self.HEADERS_PRESENCE, **kwargs ) return resp.status_code == 200 python-xbox-webapi-2.1.0/xbox/webapi/api/provider/presence/models.py000066400000000000000000000022671465040003600255560ustar00rootroot00000000000000from enum import Enum from typing import List, Optional from pydantic import RootModel from xbox.webapi.common.models import CamelCaseModel class PresenceLevel(str, Enum): USER = "user" DEVICE = "device" TITLE = "title" ALL = "all" class PresenceState(str, Enum): ACTIVE = "Active" CLOAKED = "Cloaked" class LastSeen(CamelCaseModel): device_type: str title_id: Optional[str] = None title_name: str timestamp: str class ActivityRecord(CamelCaseModel): richPresence: Optional[str] = None media: Optional[str] = None class TitleRecord(CamelCaseModel): id: Optional[str] = None name: Optional[str] = None activity: Optional[List[ActivityRecord]] = None lastModified: Optional[str] = None placement: Optional[str] = None state: Optional[str] = None class DeviceRecord(CamelCaseModel): titles: Optional[List[TitleRecord]] = None type: Optional[str] = None class PresenceItem(CamelCaseModel): xuid: str state: str last_seen: Optional[LastSeen] = None devices: Optional[List[DeviceRecord]] = None class PresenceBatchResponse(RootModel[List[PresenceItem]], CamelCaseModel): root: List[PresenceItem] python-xbox-webapi-2.1.0/xbox/webapi/api/provider/profile/000077500000000000000000000000001465040003600235465ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/profile/__init__.py000066400000000000000000000110371465040003600256610ustar00rootroot00000000000000""" Profile Get Userprofiles by XUID or Gamertag """ from typing import List from xbox.webapi.api.provider.baseprovider import BaseProvider from xbox.webapi.api.provider.profile.models import ProfileResponse, ProfileSettings class ProfileProvider(BaseProvider): PROFILE_URL = "https://profile.xboxlive.com" HEADERS_PROFILE = {"x-xbl-contract-version": "3"} SEPARATOR = "," async def get_profiles(self, xuid_list: List[str], **kwargs) -> ProfileResponse: """ Get profile info for list of xuids Args: xuid_list (list): List of xuids Returns: :class:`ProfileResponse`: Profile Response """ post_data = { "settings": [ ProfileSettings.GAME_DISPLAY_NAME, ProfileSettings.APP_DISPLAY_NAME, ProfileSettings.APP_DISPLAYPIC_RAW, ProfileSettings.GAMERSCORE, ProfileSettings.GAMERTAG, ProfileSettings.GAME_DISPLAYPIC_RAW, ProfileSettings.ACCOUNT_TIER, ProfileSettings.TENURE_LEVEL, ProfileSettings.XBOX_ONE_REP, ProfileSettings.PREFERRED_COLOR, ProfileSettings.LOCATION, ProfileSettings.BIOGRAPHY, ProfileSettings.WATERMARKS, ProfileSettings.REAL_NAME, ], "userIds": xuid_list, } url = self.PROFILE_URL + "/users/batch/profile/settings" resp = await self.client.session.post( url, json=post_data, headers=self.HEADERS_PROFILE, **kwargs ) resp.raise_for_status() return ProfileResponse(**resp.json()) async def get_profile_by_xuid(self, target_xuid: str, **kwargs) -> ProfileResponse: """ Get Userprofile by xuid Args: target_xuid: XUID to get profile for Returns: :class:`ProfileResponse`: Profile Response """ url = self.PROFILE_URL + f"/users/xuid({target_xuid})/profile/settings" params = { "settings": self.SEPARATOR.join( [ ProfileSettings.GAMERTAG, ProfileSettings.MODERN_GAMERTAG, ProfileSettings.MODERN_GAMERTAG_SUFFIX, ProfileSettings.UNIQUE_MODERN_GAMERTAG, ProfileSettings.REAL_NAME_OVERRIDE, ProfileSettings.BIOGRAPHY, ProfileSettings.LOCATION, ProfileSettings.GAMERSCORE, ProfileSettings.GAME_DISPLAYPIC_RAW, ProfileSettings.TENURE_LEVEL, ProfileSettings.ACCOUNT_TIER, ProfileSettings.XBOX_ONE_REP, ProfileSettings.PREFERRED_COLOR, ProfileSettings.WATERMARKS, ProfileSettings.IS_QUARANTINED, ] ) } resp = await self.client.session.get( url, params=params, headers=self.HEADERS_PROFILE, **kwargs ) resp.raise_for_status() return ProfileResponse(**resp.json()) async def get_profile_by_gamertag(self, gamertag: str, **kwargs) -> ProfileResponse: """ Get Userprofile by gamertag Args: gamertag: Gamertag to get profile for Returns: :class:`ProfileResponse`: Profile Response """ url = self.PROFILE_URL + f"/users/gt({gamertag})/profile/settings" params = { "settings": self.SEPARATOR.join( [ ProfileSettings.GAMERTAG, ProfileSettings.MODERN_GAMERTAG, ProfileSettings.MODERN_GAMERTAG_SUFFIX, ProfileSettings.UNIQUE_MODERN_GAMERTAG, ProfileSettings.REAL_NAME_OVERRIDE, ProfileSettings.BIOGRAPHY, ProfileSettings.LOCATION, ProfileSettings.GAMERSCORE, ProfileSettings.GAME_DISPLAYPIC_RAW, ProfileSettings.TENURE_LEVEL, ProfileSettings.ACCOUNT_TIER, ProfileSettings.XBOX_ONE_REP, ProfileSettings.PREFERRED_COLOR, ProfileSettings.WATERMARKS, ProfileSettings.IS_QUARANTINED, ] ) } resp = await self.client.session.get( url, params=params, headers=self.HEADERS_PROFILE, **kwargs ) resp.raise_for_status() return ProfileResponse(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/api/provider/profile/models.py000066400000000000000000000023371465040003600254100ustar00rootroot00000000000000from enum import Enum from typing import List from xbox.webapi.common.models import CamelCaseModel class ProfileSettings(str, Enum): """ Profile settings, used as parameter for Profile API """ GAME_DISPLAY_NAME = "GameDisplayName" APP_DISPLAY_NAME = "AppDisplayName" APP_DISPLAYPIC_RAW = "AppDisplayPicRaw" GAME_DISPLAYPIC_RAW = "GameDisplayPicRaw" PUBLIC_GAMERPIC = "PublicGamerpic" SHOW_USER_AS_AVATAR = "ShowUserAsAvatar" GAMERSCORE = "Gamerscore" GAMERTAG = "Gamertag" MODERN_GAMERTAG = "ModernGamertag" MODERN_GAMERTAG_SUFFIX = "ModernGamertagSuffix" UNIQUE_MODERN_GAMERTAG = "UniqueModernGamertag" ACCOUNT_TIER = "AccountTier" TENURE_LEVEL = "TenureLevel" XBOX_ONE_REP = "XboxOneRep" PREFERRED_COLOR = "PreferredColor" LOCATION = "Location" BIOGRAPHY = "Bio" WATERMARKS = "Watermarks" REAL_NAME = "RealName" REAL_NAME_OVERRIDE = "RealNameOverride" IS_QUARANTINED = "IsQuarantined" class Setting(CamelCaseModel): id: str value: str class ProfileUser(CamelCaseModel): id: str host_id: str settings: List[Setting] is_sponsored_user: bool class ProfileResponse(CamelCaseModel): profile_users: List[ProfileUser] python-xbox-webapi-2.1.0/xbox/webapi/api/provider/screenshots/000077500000000000000000000000001465040003600244465ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/screenshots/__init__.py000066400000000000000000000131311465040003600265560ustar00rootroot00000000000000""" Screenshots - Get screenshot info """ from xbox.webapi.api.provider.baseprovider import BaseProvider from xbox.webapi.api.provider.screenshots.models import ScreenshotResponse class ScreenshotsProvider(BaseProvider): SCREENSHOTS_METADATA_URL = "https://screenshotsmetadata.xboxlive.com" HEADERS_SCREENSHOTS_METADATA = {"x-xbl-contract-version": "5"} async def get_recent_community_screenshots_by_title_id( self, title_id: str, **kwargs ) -> ScreenshotResponse: """ Get recent community screenshots by Title Id Args: title_id: Title Id to get screenshots for Returns: :class:`ScreenshotResponse`: Screenshot Response """ url = self.SCREENSHOTS_METADATA_URL + f"/public/titles/{title_id}/screenshots" params = {"qualifier": "created"} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_SCREENSHOTS_METADATA, **kwargs ) resp.raise_for_status() return ScreenshotResponse(**resp.json()) async def get_recent_own_screenshots( self, title_id: str = None, skip_items: int = 0, max_items: int = 25, **kwargs ) -> ScreenshotResponse: """ Get own recent screenshots, optionally filter for title Id Args: title_id: Title ID to filter skip_items: Item count to skip max_items: Maximum item count to load Returns: :class:`ScreenshotResponse`: Screenshot Response """ url = self.SCREENSHOTS_METADATA_URL + "/users/me" if title_id: url += f"/titles/{title_id}" url += "/screenshots" params = {"skipItems": skip_items, "maxItems": max_items} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_SCREENSHOTS_METADATA, **kwargs ) resp.raise_for_status() return ScreenshotResponse(**resp.json()) async def get_recent_screenshots_by_xuid( self, xuid: str, title_id: str = None, skip_items: int = 0, max_items: int = 25, **kwargs, ) -> ScreenshotResponse: """ Get recent screenshots by XUID, optionally filter for title Id Args: xuid: XUID of user to get screenshots from title_id: Optional title id filter skip_items: Item count to skip max_items: Maximum item count to load Returns: :class:`ScreenshotResponse`: Screenshot Response """ url = self.SCREENSHOTS_METADATA_URL + f"/users/xuid({xuid})" if title_id: url += f"/titles/{title_id}" url += "/screenshots" params = {"skipItems": skip_items, "maxItems": max_items} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_SCREENSHOTS_METADATA, **kwargs ) resp.raise_for_status() return ScreenshotResponse(**resp.json()) async def get_saved_community_screenshots_by_title_id( self, title_id: str, **kwargs ) -> ScreenshotResponse: """ Get saved community screenshots by Title Id Args: title_id: Title Id to get screenshots for Returns: :class:`ScreenshotResponse`: Screenshot Response """ url = f"{self.SCREENSHOTS_METADATA_URL}/public/titles/{title_id}/screenshots/saved" params = {"qualifier": "created"} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_SCREENSHOTS_METADATA, **kwargs ) resp.raise_for_status() return ScreenshotResponse(**resp.json()) async def get_saved_own_screenshots( self, title_id: str = None, skip_items: int = 0, max_items: int = 25, **kwargs ) -> ScreenshotResponse: """ Get own saved screenshots, optionally filter for title Id an Args: title_id: Optional Title ID to filter skip_items: Item count to skip max_items: Maximum item count to load Returns: :class:`ScreenshotResponse`: Screenshot Response """ url = self.SCREENSHOTS_METADATA_URL + "/users/me" if title_id: url += f"/titles/{title_id}" url += "/screenshots/saved" params = {"skipItems": skip_items, "maxItems": max_items} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_SCREENSHOTS_METADATA, **kwargs ) resp.raise_for_status() return ScreenshotResponse(**resp.json()) async def get_saved_screenshots_by_xuid( self, xuid: str, title_id: str = None, skip_items: int = 0, max_items: int = 25, **kwargs, ) -> ScreenshotResponse: """ Get saved screenshots by XUID, optionally filter for title Id Args: xuid: XUID of user to get screenshots from title_id: Optional title id filter skip_items: Item count to skip max_items: Maximum item count to load Returns: :class:`ScreenshotResponse`: Screenshot Response """ url = self.SCREENSHOTS_METADATA_URL + f"/users/xuid({xuid})" if title_id: url += f"/titles/{title_id}" url += "/screenshots/saved" params = {"skipItems": skip_items, "maxItems": max_items} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_SCREENSHOTS_METADATA, **kwargs ) resp.raise_for_status() return ScreenshotResponse(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/api/provider/screenshots/models.py000066400000000000000000000022541465040003600263060ustar00rootroot00000000000000from datetime import datetime from typing import Any, List, Optional from xbox.webapi.common.models import CamelCaseModel class Thumbnail(CamelCaseModel): uri: str file_size: int thumbnail_type: str class ScreenshotUri(CamelCaseModel): uri: str file_size: int uri_type: str expiration: datetime class Screenshot(CamelCaseModel): screenshot_id: str resolution_height: int resolution_width: int state: str date_published: datetime date_taken: datetime last_modified: datetime user_caption: str type: str scid: str title_id: int rating: float rating_count: int views: int title_data: str system_properties: str saved_by_user: bool achievement_id: str greatest_moment_id: Any = None thumbnails: List[Thumbnail] screenshot_uris: List[ScreenshotUri] xuid: str screenshot_name: str title_name: str screenshot_locale: str screenshot_content_attributes: str device_type: str class PagingInfo(CamelCaseModel): continuation_token: Optional[str] = None class ScreenshotResponse(CamelCaseModel): screenshots: List[Screenshot] paging_info: PagingInfo python-xbox-webapi-2.1.0/xbox/webapi/api/provider/smartglass/000077500000000000000000000000001465040003600242665ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/smartglass/__init__.py000066400000000000000000000262451465040003600264100ustar00rootroot00000000000000""" SmartGlass - Control Registered Devices """ from typing import List, Optional from uuid import uuid4 from httpx import Response from xbox.webapi.api.provider.baseprovider import BaseProvider from xbox.webapi.api.provider.smartglass.models import ( CommandResponse, GuideTab, InputKeyType, InstalledPackagesList, OperationStatusResponse, SmartglassConsoleList, SmartglassConsoleStatus, StorageDevicesList, VolumeDirection, ) class SmartglassProvider(BaseProvider): SG_URL = "https://xccs.xboxlive.com" HEADERS_SG = { "x-xbl-contract-version": "4", "skillplatform": "RemoteManagement", } def __init__(self, client): """ Initialize Baseclass, create smartglass session id Args: Instance of XBL client """ super().__init__(client) self._smartglass_session_id = str(uuid4()) async def get_console_list( self, include_storage_devices: bool = True, **kwargs ) -> SmartglassConsoleList: """ Get Console list Args: include_storage_devices: Include a list of storage devices in the response Returns: Console List """ params = { "queryCurrentDevice": "false", "includeStorageDevices": str(include_storage_devices).lower(), } resp = await self._fetch_list("devices", params, **kwargs) return SmartglassConsoleList(**resp.json()) async def get_installed_apps( self, device_id: Optional[str] = None, **kwargs ) -> InstalledPackagesList: """ Get Installed Apps Args: device_id: ID of console (from console list) Returns: Installed Apps """ params = {} if device_id: params["deviceId"] = device_id resp = await self._fetch_list("installedApps", params, **kwargs) return InstalledPackagesList(**resp.json()) async def get_storage_devices(self, device_id: str, **kwargs) -> StorageDevicesList: """ Get Installed Apps Args: device_id: ID of console (from console list) Returns: Storage Devices list """ params = {"deviceId": device_id} resp = await self._fetch_list("storageDevices", params, **kwargs) return StorageDevicesList(**resp.json()) async def get_console_status( self, device_id: str, **kwargs ) -> SmartglassConsoleStatus: """ Get Console Status Args: device_id: ID of console (from console list) Returns: Console Status """ url = f"{self.SG_URL}/consoles/{device_id}" resp = await self.client.session.get(url, headers=self.HEADERS_SG, **kwargs) resp.raise_for_status() return SmartglassConsoleStatus(**resp.json()) async def get_op_status( self, device_id: str, op_id: str, **kwargs ) -> OperationStatusResponse: """ Get Operation Status Args: device_id: ID of console (from console list) op_id: Operation ID (from previous command) Returns: Operation Status """ url = f"{self.SG_URL}/opStatus" headers = { "x-xbl-contract-version": "3", "x-xbl-opId": op_id, "x-xbl-deviceId": device_id, } resp = await self.client.session.get(url, headers=headers, **kwargs) resp.raise_for_status() return OperationStatusResponse(**resp.json()) async def wake_up(self, device_id: str, **kwargs) -> CommandResponse: """ Wake Up Console Args: device_id: ID of console (from console list) Returns: Command Response """ return await self._send_one_shot_command(device_id, "Power", "WakeUp", **kwargs) async def turn_off(self, device_id: str, **kwargs) -> CommandResponse: """ Turn Off Console Args: device_id: ID of console (from console list) Returns: Command Response """ return await self._send_one_shot_command( device_id, "Power", "TurnOff", **kwargs ) async def reboot(self, device_id: str, **kwargs) -> CommandResponse: """ Reboot Console Args: device_id: ID of console (from console list) Returns: Command Response """ return await self._send_one_shot_command(device_id, "Power", "Reboot", **kwargs) async def mute(self, device_id: str, **kwargs) -> CommandResponse: """ Mute Args: device_id: ID of console (from console list) Returns: Command Response """ return await self._send_one_shot_command(device_id, "Audio", "Mute", **kwargs) async def unmute(self, device_id: str, **kwargs) -> CommandResponse: """ Unmute Args: device_id: ID of console (from console list) Returns: Command Response """ return await self._send_one_shot_command(device_id, "Audio", "Unmute", **kwargs) async def volume( self, device_id: str, direction: VolumeDirection, amount: int = 1, **kwargs ) -> CommandResponse: """ Adjust Volume Args: device_id: ID of console (from console list) Returns: Command Response """ params = [{"direction": direction.value, "amount": str(amount)}] return await self._send_one_shot_command( device_id, "Audio", "Volume", params, **kwargs ) async def play(self, device_id: str, **kwargs) -> CommandResponse: """ Play (media controls) Args: device_id: ID of console (from console list) Returns: Command Response """ return await self._send_one_shot_command(device_id, "Media", "Play", **kwargs) async def pause(self, device_id: str, **kwargs) -> CommandResponse: """ Pause (media controls) Args: device_id: ID of console (from console list) Returns: Command Response """ return await self._send_one_shot_command(device_id, "Media", "Pause", **kwargs) async def previous(self, device_id: str, **kwargs) -> CommandResponse: """ Previous (media controls) Args: device_id: ID of console (from console list) Returns: Command Response """ return await self._send_one_shot_command( device_id, "Media", "Previous", **kwargs ) async def next(self, device_id: str, **kwargs) -> CommandResponse: """ Next (media controls) Args: device_id: ID of console (from console list) Returns: Command Response """ return await self._send_one_shot_command(device_id, "Media", "Next", **kwargs) async def go_home(self, device_id: str, **kwargs) -> CommandResponse: """ Go Home Args: device_id: ID of console (from console list) Returns: Command Response """ return await self._send_one_shot_command(device_id, "Shell", "GoHome", **kwargs) async def go_back(self, device_id: str, **kwargs) -> CommandResponse: """ Go Back Args: device_id: ID of console (from console list) Returns: :class:`SmartglassConsoleStatus`: Command Response """ return await self._send_one_shot_command(device_id, "Shell", "GoBack", **kwargs) async def show_guide_tab( self, device_id: str, tab: GuideTab = GuideTab.Guide, **kwargs ) -> CommandResponse: """ Show Guide Tab Args: device_id: ID of console (from console list) Returns: Command Response """ params = [{"tabName": tab.value}] return await self._send_one_shot_command( device_id, "Shell", "ShowGuideTab", params, **kwargs ) async def press_button( self, device_id: str, button: InputKeyType, **kwargs ) -> CommandResponse: """ Press Button Args: device_id: ID of console (from console list) Returns: Command Response """ params = [{"keyType": button.value}] return await self._send_one_shot_command( device_id, "Shell", "InjectKey", params, **kwargs ) async def insert_text(self, device_id: str, text: str, **kwargs) -> CommandResponse: """ Insert Text Args: device_id: ID of console (from console list) Returns: Command Response """ params = [{"replacementString": text}] return await self._send_one_shot_command( device_id, "Shell", "InjectString", params, **kwargs ) async def launch_app( self, device_id: str, one_store_product_id: str, **kwargs ) -> CommandResponse: """ Launch Application Args: device_id: ID of console (from console list) one_store_product_id: OneStoreProductID for the app to launch Returns: Command Response """ params = [{"oneStoreProductId": one_store_product_id}] return await self._send_one_shot_command( device_id, "Shell", "ActivateApplicationWithOneStoreProductId", params, **kwargs, ) async def show_tv_guide(self, device_id: str, **kwargs) -> CommandResponse: """ Show TV Guide Args: device_id: ID of console (from console list) Returns: Command Response """ return await self._send_one_shot_command(device_id, "TV", "ShowGuide", **kwargs) async def _fetch_list( self, list_name: str, params: Optional[dict] = None, **kwargs ) -> Response: """ Fetch arbitrary list Args: list_name: name of list params: query params Returns: :class:`httpx.Response`: HTTP Response """ url = f"{self.SG_URL}/lists/{list_name}" resp = await self.client.session.get( url, params=params, headers=self.HEADERS_SG, **kwargs ) resp.raise_for_status() return resp async def _send_one_shot_command( self, device_id: str, command_type: str, command: str, params: Optional[List[dict]] = None, **kwargs, ) -> CommandResponse: """ Send One Shot command to console Args: device_id: ID of console (from console list) type: type of command command: name of command params: command parameters Returns: Command Response """ url = f"{self.SG_URL}/commands" body = { "destination": "Xbox", "type": command_type, "command": command, "sessionId": self._smartglass_session_id, "sourceId": "com.microsoft.smartglass", "parameters": params or [{}], "linkedXboxId": device_id, } resp = await self.client.session.post( url, json=body, headers=self.HEADERS_SG, **kwargs ) resp.raise_for_status() return CommandResponse(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/api/provider/smartglass/models.py000066400000000000000000000103711465040003600261250ustar00rootroot00000000000000from datetime import datetime from enum import Enum from typing import List, Optional from xbox.webapi.common.models import CamelCaseModel # Responses class ConsoleType(str, Enum): XboxOne = "XboxOne" XboxOneS = "XboxOneS" XboxOneSDigital = "XboxOneSDigital" XboxOneX = "XboxOneX" XboxSeriesS = "XboxSeriesS" XboxSeriesX = "XboxSeriesX" class PowerState(str, Enum): Unknown = "Unknown" On = "On" Off = "Off" ConnectedStandby = "ConnectedStandby" SystemUpdate = "SystemUpdate" class PlaybackState(str, Enum): Unknown = "Unknown" Playing = "Playing" Paused = "Paused" Stopped = "Stopped" class ErrorCode(str, Enum): OK = "OK" CurrentConsoleNotFound = "CurrentConsoleNotFound" RemoteManagementDisabled = "RemoteManagementDisabled" XboxDataNotFound = "XboxDataNotFound" XboxNotPaired = "XboxNotPaired" class OpStatus(str, Enum): Paused = "Paused" OffConsoleError = "OffConsoleError" Pending = "Pending" TimedOut = "TimedOut" Error = "Error" Succeeded = "Succeeded" class SmartglassApiStatus(CamelCaseModel): error_code: str error_message: Optional[str] = None class StorageDevice(CamelCaseModel): storage_device_id: str storage_device_name: str is_default: bool total_space_bytes: float free_space_bytes: float class SmartglassConsole(CamelCaseModel): id: str name: str console_type: ConsoleType power_state: PowerState console_streaming_enabled: bool digital_assistant_remote_control_enabled: bool remote_management_enabled: bool storage_devices: Optional[List[StorageDevice]] = None class SmartglassConsoleList(CamelCaseModel): agent_user_id: Optional[str] = None result: List[SmartglassConsole] status: SmartglassApiStatus class SmartglassConsoleStatus(CamelCaseModel): power_state: PowerState console_streaming_enabled: bool digital_assistant_remote_control_enabled: bool remote_management_enabled: bool focus_app_aumid: str is_tv_configured: bool login_state: Optional[str] = None playback_state: PlaybackState power_state: PowerState storage_devices: Optional[List[StorageDevice]] = None status: SmartglassApiStatus class InstalledPackage(CamelCaseModel): one_store_product_id: Optional[str] = None title_id: int aumid: Optional[str] = None last_active_time: Optional[datetime] = None is_game: bool name: Optional[str] = None content_type: str instance_id: str storage_device_id: str unique_id: str legacy_product_id: Optional[str] = None version: int size_in_bytes: int install_time: datetime update_time: Optional[datetime] = None parent_id: Optional[str] = None class InstalledPackagesList(CamelCaseModel): result: List[InstalledPackage] status: SmartglassApiStatus agent_user_id: Optional[str] = None class StorageDevicesList(CamelCaseModel): device_id: str result: List[StorageDevice] status: SmartglassApiStatus class OpStatusNode(CamelCaseModel): operation_status: OpStatus op_id: str originating_session_id: str command: str succeeded: bool console_status_code: Optional[int] = None xccs_error_code: Optional[ErrorCode] = None h_result: Optional[int] = None message: Optional[str] = None class OperationStatusResponse(CamelCaseModel): op_status_list: List[OpStatusNode] status: SmartglassApiStatus class CommandDestination(CamelCaseModel): id: str name: str power_state: PowerState remote_management_enabled: bool console_streaming_enabled: bool console_type: ConsoleType wireless_warning: Optional[str] = None out_of_home_warning: Optional[str] = None class CommandResponse(CamelCaseModel): result: Optional[str] = None ui_text: Optional[str] = None destination: CommandDestination user_info: Optional[str] = None op_id: str status: SmartglassApiStatus # Requests class VolumeDirection(str, Enum): Up = "Up" Down = "Down" class InputKeyType(str, Enum): Guide = "Guide" Menu = "Menu" View = "View" A = "A" B = "B" X = "X" Y = "Y" Up = "Up" Down = "Down" Left = "Left" Right = "Right" class GuideTab(str, Enum): Guide = "Guide" python-xbox-webapi-2.1.0/xbox/webapi/api/provider/titlehub/000077500000000000000000000000001465040003600237265ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/titlehub/__init__.py000066400000000000000000000106551465040003600260460ustar00rootroot00000000000000""" Titlehub - Get Title history and info """ from typing import List, Optional from xbox.webapi.api.provider.baseprovider import BaseProvider from xbox.webapi.api.provider.titlehub.models import TitleFields, TitleHubResponse class TitlehubProvider(BaseProvider): TITLEHUB_URL = "https://titlehub.xboxlive.com" SEPARATOR = "," def __init__(self, client): """ Initialize Baseclass, set 'Accept-Language' header from client instance Args: client (:class:`XboxLiveClient`): Instance of client """ super().__init__(client) self._headers = { "x-xbl-contract-version": "2", "x-xbl-client-name": "XboxApp", "x-xbl-client-type": "UWA", "x-xbl-client-version": "39.39.22001.0", "Accept-Language": self.client.language.locale, } async def get_title_history( self, xuid: str, fields: Optional[List[TitleFields]] = None, max_items: Optional[int] = 5, **kwargs, ) -> TitleHubResponse: """ Get recently played titles Args: xuid: Xuid fields: List of titlefield max_items: Maximum items Returns: :class:`TitleHubResponse`: Title Hub Response """ if not fields: fields = [ TitleFields.ACHIEVEMENT, TitleFields.IMAGE, TitleFields.SERVICE_CONFIG_ID, ] fields = self.SEPARATOR.join(fields) url = f"{self.TITLEHUB_URL}/users/xuid({xuid})/titles/titlehistory/decoration/{fields}" params = {"maxItems": max_items} resp = await self.client.session.get( url, params=params, headers=self._headers, **kwargs ) resp.raise_for_status() return TitleHubResponse(**resp.json()) async def _get_title_info( self, moniker: str, fields: Optional[List[TitleFields]] = None, **kwargs ) -> TitleHubResponse: if not fields: fields = [ TitleFields.ACHIEVEMENT, TitleFields.ALTERNATE_TITLE_ID, TitleFields.DETAIL, TitleFields.IMAGE, TitleFields.SERVICE_CONFIG_ID, ] fields = self.SEPARATOR.join(fields) url = f"{self.TITLEHUB_URL}/users/xuid({self.client.xuid})/titles/{moniker}/decoration/{fields}" resp = await self.client.session.get(url, headers=self._headers, **kwargs) resp.raise_for_status() return TitleHubResponse(**resp.json()) async def get_title_info( self, title_id: str, fields: Optional[List[TitleFields]] = None, **kwargs ) -> TitleHubResponse: """ Get info for specific title Args: title_id: Title Id fields: List of title fields Returns: :class:`TitleHubResponse`: Title Hub Response """ return await self._get_title_info(f"titleid({title_id})", fields, **kwargs) async def get_title_info_by_pfn( self, pfn: str, fields: Optional[List[TitleFields]] = None, **kwargs ) -> TitleHubResponse: """ Get info for specific title by PFN Args: pfn: Package family name fields: List of title fields Returns: :class:`TitleHubResponse`: Title Hub Response """ return await self._get_title_info(f"pfn({pfn})", fields, **kwargs) async def get_titles_batch( self, pfns: List[str], fields: Optional[List[TitleFields]] = None, **kwargs ) -> TitleHubResponse: """ Get Title info via PFN ids Args: pfns: List of Package family names (e.g. 'Microsoft.XboxApp_8wekyb3d8bbwe') fields: List of title fields Returns: :class:`TitleHubResponse`: Title Hub Response """ if not fields: fields = [ TitleFields.ACHIEVEMENT, TitleFields.DETAIL, TitleFields.IMAGE, TitleFields.SERVICE_CONFIG_ID, ] fields = self.SEPARATOR.join(fields) url = self.TITLEHUB_URL + f"/titles/batch/decoration/{fields}" post_data = {"pfns": pfns, "windowsPhoneProductIds": []} resp = await self.client.session.post( url, json=post_data, headers=self._headers, **kwargs ) resp.raise_for_status() return TitleHubResponse(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/api/provider/titlehub/models.py000066400000000000000000000050421465040003600255640ustar00rootroot00000000000000from datetime import datetime from enum import Enum from typing import Any, List, Optional from xbox.webapi.common.models import CamelCaseModel, PascalCaseModel class TitleFields(str, Enum): SERVICE_CONFIG_ID = "scid" ACHIEVEMENT = "achievement" STATS = "stats" GAME_PASS = "gamepass" IMAGE = "image" DETAIL = "detail" FRIENDS_WHO_PLAYED = "friendswhoplayed" ALTERNATE_TITLE_ID = "alternateTitleId" PRODUCT_ID = "productId" CONTENT_BOARD = "contentBoard" class Achievement(CamelCaseModel): current_achievements: int total_achievements: int current_gamerscore: int total_gamerscore: int progress_percentage: float source_version: int class Stats(CamelCaseModel): source_version: int class GamePass(CamelCaseModel): is_game_pass: bool class Image(CamelCaseModel): url: str type: str class TitleHistory(CamelCaseModel): last_time_played: datetime visible: bool can_hide: bool class Attribute(CamelCaseModel): applicable_platforms: Optional[List[str]] = None maximum: Optional[int] = None minimum: Optional[int] = None name: str class Availability(PascalCaseModel): actions: List[str] availability_id: str platforms: List[str] sku_id: str class Detail(CamelCaseModel): attributes: List[Attribute] availabilities: List[Availability] capabilities: List[str] description: str developer_name: str genres: Optional[List[str]] = None publisher_name: str min_age: int release_date: Optional[datetime] = None short_description: Optional[str] = None vui_display_name: Optional[str] = None xbox_live_gold_required: bool class Title(CamelCaseModel): title_id: str pfn: Optional[str] = None bing_id: Optional[str] = None service_config_id: Optional[str] = None windows_phone_product_id: Optional[str] = None name: str type: str devices: List[str] display_image: str media_item_type: str modern_title_id: Optional[str] = None is_bundle: bool achievement: Optional[Achievement] = None stats: Optional[Stats] = None game_pass: Optional[GamePass] = None images: Optional[List[Image]] = None title_history: Optional[TitleHistory] = None detail: Optional[Detail] = None friends_who_played: Any = None alternate_title_ids: Any = None content_boards: Any = None xbox_live_tier: Optional[str] = None is_streamable: Optional[bool] = None class TitleHubResponse(CamelCaseModel): xuid: Optional[str] = None titles: List[Title] python-xbox-webapi-2.1.0/xbox/webapi/api/provider/usersearch/000077500000000000000000000000001465040003600242525ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/usersearch/__init__.py000066400000000000000000000016211465040003600263630ustar00rootroot00000000000000""" Usersearch - Search for gamertags / userprofiles """ from xbox.webapi.api.provider.baseprovider import BaseProvider from xbox.webapi.api.provider.usersearch.models import UserSearchResponse class UserSearchProvider(BaseProvider): USERSEARCH_URL = "https://usersearch.xboxlive.com" HEADERS_USER_SEARCH = {"x-xbl-contract-version": "1"} async def get_live_search(self, query: str, **kwargs) -> UserSearchResponse: """ Get userprofiles for search query Args: query: Search query Returns: :class:`UserSearchResponse`: User Search Response """ url = self.USERSEARCH_URL + "/suggest" params = {"q": query} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_USER_SEARCH, **kwargs ) resp.raise_for_status() return UserSearchResponse(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/api/provider/usersearch/models.py000066400000000000000000000005151465040003600261100ustar00rootroot00000000000000from typing import List from xbox.webapi.common.models import CamelCaseModel class UserDetail(CamelCaseModel): id: str gamertag: str display_pic_uri: str score: float class UserResult(CamelCaseModel): text: str result: UserDetail class UserSearchResponse(CamelCaseModel): results: List[UserResult] python-xbox-webapi-2.1.0/xbox/webapi/api/provider/userstats/000077500000000000000000000000001465040003600241435ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/api/provider/userstats/__init__.py000066400000000000000000000111651465040003600262600ustar00rootroot00000000000000""" Userstats - Get game statistics """ from typing import List, Optional from xbox.webapi.api.provider.baseprovider import BaseProvider from xbox.webapi.api.provider.userstats.models import ( GeneralStatsField, UserStatsResponse, ) class UserStatsProvider(BaseProvider): USERSTATS_URL = "https://userstats.xboxlive.com" HEADERS_USERSTATS = {"x-xbl-contract-version": "2"} HEADERS_USERSTATS_WITH_METADATA = {"x-xbl-contract-version": "3"} SEPERATOR = "," async def get_stats( self, xuid: str, service_config_id: str, stats_fields: Optional[List[GeneralStatsField]] = None, **kwargs, ) -> UserStatsResponse: """ Get userstats Args: xuid: Xbox User Id service_config_id: Service Config Id of Game (scid) stats_fields: List of stats fields to acquire Returns: :class:`UserStatsResponse`: User Stats Response """ if not stats_fields: stats_fields = [GeneralStatsField.MINUTES_PLAYED] stats = self.SEPERATOR.join(stats_fields) url = f"{self.USERSTATS_URL}/users/xuid({xuid})/scids/{service_config_id}/stats/{stats}" resp = await self.client.session.get( url, headers=self.HEADERS_USERSTATS, **kwargs ) resp.raise_for_status() return UserStatsResponse(**resp.json()) async def get_stats_with_metadata( self, xuid: str, service_config_id: str, stats_fields: Optional[List[GeneralStatsField]] = None, **kwargs, ) -> UserStatsResponse: """ Get userstats including metadata for each stat (if available) Args: xuid: Xbox User Id service_config_id: Service Config Id of Game (scid) stats_fields: List of stats fields to acquire Returns: :class:`UserStatsResponse`: User Stats Response """ if not stats_fields: stats_fields = [GeneralStatsField.MINUTES_PLAYED] stats = self.SEPERATOR.join(stats_fields) url = f"{self.USERSTATS_URL}/users/xuid({xuid})/scids/{service_config_id}/stats/{stats}" params = {"include": "valuemetadata"} resp = await self.client.session.get( url, params=params, headers=self.HEADERS_USERSTATS_WITH_METADATA, **kwargs ) resp.raise_for_status() return UserStatsResponse(**resp.json()) async def get_stats_batch( self, xuids: List[str], title_id: str, stats_fields: Optional[List[GeneralStatsField]] = None, **kwargs, ) -> UserStatsResponse: """ Get userstats in batch mode Args: xuids: List of XUIDs to get stats for title_id: Game Title Id stats_fields: List of stats fields to acquire Returns: :class:`UserStatsResponse`: User Stats Response """ if not stats_fields: stats_fields = [GeneralStatsField.MINUTES_PLAYED] url = self.USERSTATS_URL + "/batch" post_data = { "arrangebyfield": "xuid", "groups": [{"name": "Hero", "titleId": title_id}], "stats": [dict(name=stat, titleId=title_id) for stat in stats_fields], "xuids": xuids, } resp = await self.client.session.post( url, json=post_data, headers=self.HEADERS_USERSTATS, **kwargs ) resp.raise_for_status() return UserStatsResponse(**resp.json()) async def get_stats_batch_by_scid( self, xuids: List[str], service_config_id: str, stats_fields: Optional[List[GeneralStatsField]] = None, **kwargs, ) -> UserStatsResponse: """ Get userstats in batch mode, via scid Args: xuids: List of XUIDs to get stats for service_config_id: Service Config Id of Game (scid) stats_fields: List of stats fields to acquire Returns: :class:`UserStatsResponse`: User Stats Response """ if not stats_fields: stats_fields = [GeneralStatsField.MINUTES_PLAYED] url = self.USERSTATS_URL + "/batch" post_data = { "arrangebyfield": "xuid", "groups": [{"name": "Hero", "scid": service_config_id}], "stats": [dict(name=stat, scid=service_config_id) for stat in stats_fields], "xuids": xuids, } resp = await self.client.session.post( url, json=post_data, headers=self.HEADERS_USERSTATS, **kwargs ) resp.raise_for_status() return UserStatsResponse(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/api/provider/userstats/models.py000066400000000000000000000020501465040003600257750ustar00rootroot00000000000000from typing import List, Optional from xbox.webapi.common.models import LowerCaseModel, PascalCaseModel class GeneralStatsField: MINUTES_PLAYED = "MinutesPlayed" class GroupProperties(PascalCaseModel): ordinal: Optional[str] = None sort_order: Optional[str] = None display_name: Optional[str] = None display_format: Optional[str] = None display_semantic: Optional[str] = None class Properties(PascalCaseModel): display_name: Optional[str] = None class Stat(LowerCaseModel): group_properties: Optional[GroupProperties] = None xuid: str scid: str name: str type: str value: str properties: Properties class StatListsCollectionItem(LowerCaseModel): arrange_by_field: str arrange_by_field_id: str stats: List[Stat] class Group(LowerCaseModel): name: str title_id: Optional[str] = None statlistscollection: List[StatListsCollectionItem] class UserStatsResponse(LowerCaseModel): groups: Optional[List[Group]] = None statlistscollection: List[StatListsCollectionItem] python-xbox-webapi-2.1.0/xbox/webapi/authentication/000077500000000000000000000000001465040003600225225ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/authentication/__init__.py000066400000000000000000000000001465040003600246210ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/authentication/manager.py000066400000000000000000000131571465040003600245150ustar00rootroot00000000000000""" Authentication Manager Authenticate with Windows Live Server and Xbox Live. """ import logging from typing import List, Optional import httpx from xbox.webapi.authentication.models import ( OAuth2TokenResponse, XAUResponse, XSTSResponse, ) from xbox.webapi.common.exceptions import AuthenticationException from xbox.webapi.common.signed_session import SignedSession log = logging.getLogger("authentication") DEFAULT_SCOPES = ["Xboxlive.signin", "Xboxlive.offline_access"] class AuthenticationManager: def __init__( self, client_session: SignedSession, client_id: str, client_secret: str, redirect_uri: str, scopes: Optional[List[str]] = None, ): if not isinstance(client_session, (SignedSession, httpx.AsyncClient)): raise DeprecationWarning( """Xbox WebAPI changed to use SignedSession (wrapped httpx.AsyncClient). Please check the documentation""" ) self.session: SignedSession = client_session self._client_id: str = client_id self._client_secret: str = client_secret self._redirect_uri: str = redirect_uri self._scopes: List[str] = scopes or DEFAULT_SCOPES self.oauth: OAuth2TokenResponse = None self.user_token: XAUResponse = None self.xsts_token: XSTSResponse = None def generate_authorization_url(self, state: Optional[str] = None) -> str: """Generate Windows Live Authorization URL.""" query_params = { "client_id": self._client_id, "response_type": "code", "approval_prompt": "auto", "scope": " ".join(self._scopes), "redirect_uri": self._redirect_uri, } if state: query_params["state"] = state return str( httpx.URL( "https://login.live.com/oauth20_authorize.srf", params=query_params ) ) async def request_tokens(self, authorization_code: str) -> None: """Request all tokens.""" self.oauth = await self.request_oauth_token(authorization_code) self.user_token = await self.request_user_token() self.xsts_token = await self.request_xsts_token() async def refresh_tokens(self) -> None: """Refresh all tokens.""" if not (self.oauth and self.oauth.is_valid()): self.oauth = await self.refresh_oauth_token() if not (self.user_token and self.user_token.is_valid()): self.user_token = await self.request_user_token() if not (self.xsts_token and self.xsts_token.is_valid()): self.xsts_token = await self.request_xsts_token() async def request_oauth_token(self, authorization_code: str) -> OAuth2TokenResponse: """Request OAuth2 token.""" return await self._oauth2_token_request( { "grant_type": "authorization_code", "code": authorization_code, "scope": " ".join(self._scopes), "redirect_uri": self._redirect_uri, } ) async def refresh_oauth_token(self) -> OAuth2TokenResponse: """Refresh OAuth2 token.""" return await self._oauth2_token_request( { "grant_type": "refresh_token", "scope": " ".join(self._scopes), "refresh_token": self.oauth.refresh_token, } ) async def _oauth2_token_request(self, data: dict) -> OAuth2TokenResponse: """Execute token requests.""" data["client_id"] = self._client_id if self._client_secret: data["client_secret"] = self._client_secret resp = await self.session.post( "https://login.live.com/oauth20_token.srf", data=data ) resp.raise_for_status() return OAuth2TokenResponse(**resp.json()) async def request_user_token( self, relying_party: str = "http://auth.xboxlive.com", use_compact_ticket: bool = False, ) -> XAUResponse: """Authenticate via access token and receive user token.""" url = "https://user.auth.xboxlive.com/user/authenticate" headers = {"x-xbl-contract-version": "1"} data = { "RelyingParty": relying_party, "TokenType": "JWT", "Properties": { "AuthMethod": "RPS", "SiteName": "user.auth.xboxlive.com", "RpsTicket": self.oauth.access_token if use_compact_ticket else f"d={self.oauth.access_token}", }, } resp = await self.session.post(url, json=data, headers=headers) resp.raise_for_status() return XAUResponse(**resp.json()) async def request_xsts_token( self, relying_party: str = "http://xboxlive.com" ) -> XSTSResponse: """Authorize via user token and receive final X token.""" url = "https://xsts.auth.xboxlive.com/xsts/authorize" headers = {"x-xbl-contract-version": "1"} data = { "RelyingParty": relying_party, "TokenType": "JWT", "Properties": { "UserTokens": [self.user_token.token], "SandboxId": "RETAIL", }, } resp = await self.session.post(url, json=data, headers=headers) if resp.status_code == 401: # if unauthorized print( "Failed to authorize you! Your password or username may be wrong or you are trying to use child account (< 18 years old)" ) raise AuthenticationException() resp.raise_for_status() return XSTSResponse(**resp.json()) python-xbox-webapi-2.1.0/xbox/webapi/authentication/models.py000066400000000000000000000067731465040003600243740ustar00rootroot00000000000000"""Authentication Models.""" from datetime import datetime, timedelta, timezone from typing import Dict, List, Optional from pydantic import BaseModel, Field from pydantic.dataclasses import dataclass from xbox.webapi.common.models import PascalCaseModel def utc_now(): return datetime.now(timezone.utc) class XTokenResponse(PascalCaseModel): issue_instant: datetime not_after: datetime token: str def is_valid(self) -> bool: return self.not_after > utc_now() class XADDisplayClaims(BaseModel): # {"xdi": {"did": "F.....", "dcs": "0"}} xdi: Dict[str, str] class XADResponse(XTokenResponse): display_claims: XADDisplayClaims class XATDisplayClaims(BaseModel): xti: Dict[str, str] class XATResponse(XTokenResponse): display_claims: XATDisplayClaims class XAUDisplayClaims(BaseModel): xui: List[Dict[str, str]] class XAUResponse(XTokenResponse): display_claims: XAUDisplayClaims class XSTSDisplayClaims(BaseModel): xui: List[Dict[str, str]] class XSTSResponse(XTokenResponse): display_claims: XSTSDisplayClaims @property def xuid(self) -> str: return self.display_claims.xui[0]["xid"] @property def userhash(self) -> str: return self.display_claims.xui[0]["uhs"] @property def gamertag(self) -> str: return self.display_claims.xui[0]["gtg"] @property def age_group(self) -> str: return self.display_claims.xui[0]["agg"] @property def privileges(self) -> str: return self.display_claims.xui[0]["prv"] @property def user_privileges(self) -> str: return self.display_claims.xui[0]["usr"] @property def authorization_header_value(self) -> str: return f"XBL3.0 x={self.userhash};{self.token}" class OAuth2TokenResponse(BaseModel): token_type: str expires_in: int scope: str access_token: str refresh_token: Optional[str] = None user_id: str issued: datetime = Field(default_factory=utc_now) def is_valid(self) -> bool: return (self.issued + timedelta(seconds=self.expires_in)) > utc_now() """XAL related models""" @dataclass class XalAppParameters: app_id: str title_id: str redirect_uri: str @dataclass class XalClientParameters: user_agent: str device_type: str client_version: str query_display: str class SisuAuthenticationResponse(PascalCaseModel): msa_oauth_redirect: str msa_request_parameters: Dict[str, str] class SisuAuthorizationResponse(PascalCaseModel): device_token: str title_token: XATResponse user_token: XAUResponse authorization_token: XSTSResponse web_page: str sandbox: str use_modern_gamertag: Optional[bool] = None """Signature related models""" class TitleEndpoint(PascalCaseModel): protocol: str host: str host_type: str path: Optional[str] = None relying_party: Optional[str] = None sub_relying_party: Optional[str] = None token_type: Optional[str] = None signature_policy_index: Optional[int] = None server_cert_index: Optional[List[int]] = None class SignaturePolicy(PascalCaseModel): version: int supported_algorithms: List[str] max_body_bytes: int class TitleEndpointCertificate(PascalCaseModel): thumbprint: str is_issuer: Optional[bool] = None root_cert_index: int class TitleEndpointsResponse(PascalCaseModel): end_points: List[TitleEndpoint] signature_policies: List[SignaturePolicy] certs: List[TitleEndpointCertificate] root_certs: List[str] python-xbox-webapi-2.1.0/xbox/webapi/authentication/xal.py000066400000000000000000000264351465040003600236720ustar00rootroot00000000000000""" Xbox Authentication Library Authenticate with Windows Live Server and Xbox Live (used by mobile Xbox Apps) """ import base64 import hashlib import logging import os from typing import Callable, Tuple from urllib import parse import uuid import httpx from ms_cv import CorrelationVector from xbox.webapi.authentication.models import ( OAuth2TokenResponse, SisuAuthenticationResponse, SisuAuthorizationResponse, TitleEndpointsResponse, XADResponse, XalAppParameters, XalClientParameters, XSTSResponse, ) from xbox.webapi.common.signed_session import SignedSession log = logging.getLogger("xal.authentication") APP_PARAMS_XBOX_BETA_APP = XalAppParameters( app_id="000000004415494b", title_id="177887386", redirect_uri="ms-xal-000000004415494b://auth", ) APP_PARAMS_XBOX_APP = XalAppParameters( app_id="000000004c12ae6f", title_id="328178078", redirect_uri="ms-xal-000000004c12ae6f://auth", ) APP_PARAMS_GAMEPASS = XalAppParameters( app_id="000000004c20a908", title_id="1016898439", redirect_uri="ms-xal-000000004c20a908://auth", ) APP_PARAMS_GAMEPASS_BETA = XalAppParameters( app_id="000000004c20a908", title_id="1016898439", redirect_uri="ms-xal-public-beta-000000004c20a908://auth", ) APP_PARAMS_FAMILY_SETTINGS = XalAppParameters( app_id="00000000482C8F49", title_id="1618633878", redirect_uri="https://login.live.com/oauth20_desktop.srf", ) CLIENT_PARAMS_IOS = XalClientParameters( user_agent="XAL iOS 2021.11.20211021.000", device_type="iOS", client_version="15.6.1", query_display="ios_phone", ) CLIENT_PARAMS_ANDROID = XalClientParameters( user_agent="XAL Android 2020.07.20200714.000", device_type="Android", client_version="8.0.0", query_display="android_phone", ) class XALManager: def __init__( self, session: SignedSession, device_id: uuid.UUID, app_params: XalAppParameters, client_params: XalClientParameters, ): self.session = session self.device_id = device_id self.app_params = app_params self.client_params = client_params self.cv = CorrelationVector() @staticmethod def _get_random_bytes(length) -> bytes: return os.urandom(length) @staticmethod def _generate_code_verifier() -> str: # https://tools.ietf.org/html/rfc7636 code_verifier = ( base64.urlsafe_b64encode(XALManager._get_random_bytes(32)) .decode() .rstrip("=") ) assert len(code_verifier) >= 43 and len(code_verifier) <= 128 return code_verifier @staticmethod def _get_code_challenge_from_code_verifier(code_verifier: str) -> str: code_challenge = hashlib.sha256(code_verifier.encode()).digest() # Base64 urlsafe encoding WITH stripping trailing '=' code_challenge = base64.urlsafe_b64encode(code_challenge).decode().rstrip("=") return code_challenge @staticmethod def _generate_random_state() -> str: state = str(uuid.uuid4()).encode() # Base64 urlsafe encoding WITHOUT stripping trailing '=' return base64.b64encode(state).decode() @staticmethod async def get_title_endpoints(session: httpx.AsyncClient) -> TitleEndpointsResponse: url = "https://title.mgt.xboxlive.com/titles/default/endpoints" headers = {"x-xbl-contract-version": "1"} params = {"type": 1} resp = await session.get(url, headers=headers, params=params) resp.raise_for_status() return TitleEndpointsResponse(**resp.json()) async def request_device_token(self) -> XADResponse: # Proof of possession: https://tools.ietf.org/html/rfc7800 device_id = str(self.device_id) if self.client_params.device_type.lower() == "android": # {decf45e4-945d-4379-b708-d4ee92c12d99} device_id = "{%s}" % device_id else: # iOSs # DECF45E4-945D-4379-B708-D4EE92C12D99 device_id = device_id.upper() url = "https://device.auth.xboxlive.com/device/authenticate" headers = {"x-xbl-contract-version": "1", "MS-CV": self.cv.get_value()} data = { "RelyingParty": "http://auth.xboxlive.com", "TokenType": "JWT", "Properties": { "AuthMethod": "ProofOfPossession", "Id": device_id, "DeviceType": self.client_params.device_type, "Version": self.client_params.client_version, "ProofKey": self.session.request_signer.proof_field, }, } resp = await self.session.send_signed("POST", url, headers=headers, json=data) resp.raise_for_status() return XADResponse(**resp.json()) async def __oauth20_token_endpoint(self, json_body: dict) -> httpx.Response: url = "https://login.live.com/oauth20_token.srf" headers = {"MS-CV": self.cv.increment()} # NOTE: No signature necessary return await self.session.post(url, headers=headers, data=json_body) async def exchange_code_for_token( self, authorization_code: str, code_verifier: str ) -> OAuth2TokenResponse: post_body = { "client_id": self.app_params.app_id, "code": authorization_code, "code_verifier": code_verifier, "grant_type": "authorization_code", "redirect_uri": self.app_params.redirect_uri, "scope": "service::user.auth.xboxlive.com::MBI_SSL", } resp = await self.__oauth20_token_endpoint(post_body) resp.raise_for_status() return OAuth2TokenResponse(**resp.json()) async def refresh_token(self, refresh_token_jwt: str) -> httpx.Response: post_body = { "client_id": self.app_params.app_id, "refresh_token": refresh_token_jwt, "grant_type": "refresh_token", "redirect_uri": self.app_params.redirect_uri, "scope": "service::user.auth.xboxlive.com::MBI_SSL", } resp = await self.__oauth20_token_endpoint(post_body) resp.raise_for_status() return resp async def request_sisu_authentication( self, device_token_jwt: str, code_challenge: str, state: str ) -> Tuple[SisuAuthenticationResponse, str]: """ Request Sisu authentication URL Response holds authentication URL that needs to be called by the user in webbrowser Returns: Tuple of (authentication response, sisu session id) """ url = "https://sisu.xboxlive.com/authenticate" headers = {"x-xbl-contract-version": "1", "MS-CV": self.cv.increment()} post_body = { "AppId": self.app_params.app_id, "TitleId": self.app_params.title_id, "RedirectUri": self.app_params.redirect_uri, "DeviceToken": device_token_jwt, "Sandbox": "RETAIL", "TokenType": "code", "Offers": ["service::user.auth.xboxlive.com::MBI_SSL"], "Query": { "display": self.client_params.query_display, "code_challenge": code_challenge, "code_challenge_method": "S256", "state": state, }, } resp = await self.session.send_signed( "POST", url, headers=headers, json=post_body ) resp.raise_for_status() return ( SisuAuthenticationResponse.model_validate_json(resp.content), resp.headers["X-SessionId"], ) async def do_sisu_authorization( self, sisu_session_id: str, access_token_jwt: str, device_token_jwt: str ) -> SisuAuthorizationResponse: """ Sisu authorization Returns: Response with device-/title-/user-tokens """ url = "https://sisu.xboxlive.com/authorize" headers = {"MS-CV": self.cv.increment()} post_body = { "AccessToken": f"t={access_token_jwt}", "AppId": self.app_params.app_id, "DeviceToken": device_token_jwt, "Sandbox": "RETAIL", "SiteName": "user.auth.xboxlive.com", "SessionId": sisu_session_id, "ProofKey": self.session.request_signer.proof_field, } resp = await self.session.send_signed( "POST", url, headers=headers, json=post_body ) resp.raise_for_status() return SisuAuthorizationResponse(**resp.json()) async def xsts_authorization( self, device_token_jwt: str, title_token_jwt: str, user_token_jwt: str, relying_party: str, ) -> XSTSResponse: """ Request additional XSTS tokens for specific relying parties """ url = "https://xsts.auth.xboxlive.com/xsts/authorize" headers = {"x-xbl-contract-version": "1", "MS-CV": self.cv.increment()} post_body = { "RelyingParty": relying_party, "TokenType": "JWT", "Properties": { "SandboxId": "RETAIL", "DeviceToken": device_token_jwt, "TitleToken": title_token_jwt, "UserTokens": [user_token_jwt], }, } resp = await self.session.send_signed( "POST", url, headers=headers, json=post_body ) resp.raise_for_status() return XSTSResponse(**resp.json()) async def auth_flow( self, user_input_cb: Callable[[str], str] ) -> SisuAuthorizationResponse: """ Does the whole XAL/Sisu authentication flow Args: user_input_cb: User callback which takes args: (auth_url: str) and returns the redirect URL (str) Returns: Sisu authorization response with all tokens """ # Fetch device token device_token_resp = await self.request_device_token() # Generate states for OAUTH code_verifier = self._generate_code_verifier() code_challenge = self._get_code_challenge_from_code_verifier(code_verifier) state = self._generate_random_state() # Request Sisu authentication URL ( sisu_authenticate_resp, sisu_session_id, ) = await self.request_sisu_authentication( device_token_resp.token, code_challenge, state ) # Prompt user for redirect URI after auth redirect_uri = user_input_cb(sisu_authenticate_resp.msa_oauth_redirect) # Ensure redirect URI looks like expected if not redirect_uri.startswith(self.app_params.redirect_uri): raise Exception("Wrong data passed as redirect URI") # Parse URL query query_params = dict(parse.parse_qsl(parse.urlsplit(redirect_uri).query)) # Extract code and state resp_authorization_code = query_params["code"] resp_state = query_params["state"] if resp_state != state: raise Exception("Response with non-matching state received") # Exchange authentication code for tokens tokens = await self.exchange_code_for_token( resp_authorization_code, code_verifier ) # Do Sisu authorization sisu_authorization = await self.do_sisu_authorization( sisu_session_id, tokens.access_token, device_token_resp.token ) return sisu_authorization python-xbox-webapi-2.1.0/xbox/webapi/common/000077500000000000000000000000001465040003600207735ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/common/__init__.py000066400000000000000000000000001465040003600230720ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/common/exceptions.py000066400000000000000000000022441465040003600235300ustar00rootroot00000000000000""" Special Exception subclasses """ class XboxException(Exception): """Base exception for all Xbox exceptions to subclass""" pass class AuthenticationException(XboxException): """Raised when logging in fails, likely due to incorrect auth credentials""" pass class TwoFactorAuthRequired(XboxException): def __init__(self, message, server_data): """ Raised when 2FA is required Args: message (str): Exception message server_data (dict): Server data dict, extracted js object from windows live auth request """ super().__init__(message) self.server_data = server_data class InvalidRequest(XboxException): def __init__(self, message, response): """ Raised when something is wrong with the request Args: message (str): error message returned by the server response (requests.Response): Instance of :class:`requests.Response` """ self.message = message self.response = response class NotFoundException(XboxException): """Any exception raised due to a resource being missing will subclass this""" pass python-xbox-webapi-2.1.0/xbox/webapi/common/filetimes.py000066400000000000000000000070321465040003600233300ustar00rootroot00000000000000# Copyright (c) 2009, David Buxton # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS # IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A # PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """Tools to convert between Python datetime instances and Microsoft times. """ from calendar import timegm from datetime import datetime, timezone, tzinfo, timedelta # http://support.microsoft.com/kb/167296 # How To Convert a UNIX time_t to a Win32 FILETIME or SYSTEMTIME EPOCH_AS_FILETIME = 116444736000000000 # January 1, 1970 as MS file time HUNDREDS_OF_NANOSECONDS = 10000000 ZERO = timedelta(0) HOUR = timedelta(hours=1) class UTC(tzinfo): """UTC""" def utcoffset(self, dt: datetime) -> timedelta: return ZERO def tzname(self, dt: datetime) -> str: return "UTC" def dst(self, dt: datetime) -> timedelta: return ZERO utc = UTC() def dt_to_filetime(dt: datetime) -> int: """Converts a datetime to Microsoft filetime format. If the object is time zone-naive, it is forced to UTC before conversion. >>> "%.0f" % dt_to_filetime(datetime(2009, 7, 25, 23, 0)) '128930364000000000' >>> "%.0f" % dt_to_filetime(datetime(1970, 1, 1, 0, 0, tzinfo=utc)) '116444736000000000' >>> "%.0f" % dt_to_filetime(datetime(1970, 1, 1, 0, 0)) '116444736000000000' >>> dt_to_filetime(datetime(2009, 7, 25, 23, 0, 0, 100)) 128930364000001000 """ if (dt.tzinfo is None) or (dt.tzinfo.utcoffset(dt) is None): dt = dt.replace(tzinfo=utc) ft = EPOCH_AS_FILETIME + (timegm(dt.timetuple()) * HUNDREDS_OF_NANOSECONDS) return ft + (dt.microsecond * 10) def filetime_to_dt(ft: int) -> datetime: """Converts a Microsoft filetime number to a Python datetime. The new datetime object is time zone-naive but is equivalent to tzinfo=utc. >>> filetime_to_dt(116444736000000000) datetime.datetime(1970, 1, 1, 0, 0) >>> filetime_to_dt(128930364000000000) datetime.datetime(2009, 7, 25, 23, 0) >>> filetime_to_dt(128930364000001000) datetime.datetime(2009, 7, 25, 23, 0, 0, 100) """ # Get seconds and remainder in terms of Unix epoch (s, ns100) = divmod(ft - EPOCH_AS_FILETIME, HUNDREDS_OF_NANOSECONDS) # Convert to datetime object dt = datetime.fromtimestamp(s, timezone.utc) # Add remainder in as microseconds. Python 3.2 requires an integer dt = dt.replace(microsecond=(ns100 // 10)) return dt python-xbox-webapi-2.1.0/xbox/webapi/common/models.py000066400000000000000000000014051465040003600226300ustar00rootroot00000000000000"""Base Models.""" from pydantic import ConfigDict, BaseModel def to_pascal(string): return "".join(word.capitalize() for word in string.split("_")) def to_camel(string): words = string.split("_") return words[0] + "".join(word.capitalize() for word in words[1:]) def to_lower(string): return string.replace("_", "") class PascalCaseModel(BaseModel): model_config = ConfigDict(arbitrary_types_allowed=True, populate_by_name=True, alias_generator=to_pascal) class CamelCaseModel(BaseModel): model_config = ConfigDict(arbitrary_types_allowed=True, populate_by_name=True, alias_generator=to_camel) class LowerCaseModel(BaseModel): model_config = ConfigDict(arbitrary_types_allowed=True, populate_by_name=True, alias_generator=to_lower) python-xbox-webapi-2.1.0/xbox/webapi/common/request_signer.py000066400000000000000000000125651465040003600244150ustar00rootroot00000000000000""" Request Signer Employed for generating the "Signature" header in authentication requests. """ import base64 from datetime import datetime, timezone import hashlib import struct from typing import Optional from ecdsa import NIST256p, SigningKey, VerifyingKey from xbox.webapi.authentication.models import SignaturePolicy from xbox.webapi.common import filetimes DEFAULT_SIGNING_POLICY = SignaturePolicy( version=1, supported_algorithms=["ES256"], max_body_bytes=8192 ) class RequestSigner: def __init__(self, signing_key=None, signing_policy=None): self.signing_key: SigningKey = signing_key or SigningKey.generate( curve=NIST256p ) self.signing_policy = signing_policy or DEFAULT_SIGNING_POLICY pk_point = self.signing_key.verifying_key.pubkey.point self.proof_field = { "use": "sig", "alg": self.signing_policy.supported_algorithms[0], "kty": "EC", "crv": "P-256", "x": self.__encode_ec_coord(pk_point.x()), "y": self.__encode_ec_coord(pk_point.y()), } def export_signing_key(self) -> str: return self.signing_key.to_pem().decode() @staticmethod def import_signing_key(signing_key: str) -> SigningKey: return SigningKey.from_pem(signing_key) @classmethod def from_pem(cls, pem_string: str): request_signer = RequestSigner.import_signing_key(pem_string) return cls(request_signer) @staticmethod def get_timestamp_buffer(dt: datetime) -> bytes: """ Get usable buffer from datetime dt: Input datetime Returns: bytes: FILETIME buffer (network order/big endian) """ filetime = filetimes.dt_to_filetime(dt) return struct.pack("!Q", filetime) @staticmethod def get_signature_version_buffer(version: int) -> bytes: """ Get big endian uint32 bytes-representation from signature version version: Signature version Returns: Version as uint32 big endian bytes """ return struct.pack("!I", version) def verify_digest( self, signature: bytes, digest: bytes, verifying_key: Optional[VerifyingKey] = None, ) -> bool: """ Verify signature against digest signature: Signature to validate message: Digest to verify verifying_key: Public key to use for verification. If that key is not provided, the private key used for signing is used. Returns: True on successful verification, False otherwise """ verifier = verifying_key or self.signing_key.verifying_key return verifier.verify_digest(signature, digest) def sign( self, method: str, path_and_query: str, body: bytes = b"", authorization: str = "", timestamp: datetime = None, ) -> str: if timestamp is None: timestamp = datetime.now(timezone.utc) signature = self._sign_raw( method, path_and_query, body, authorization, timestamp ) return base64.b64encode(signature).decode("ascii") def _sign_raw( self, method: str, path_and_query: str, body: bytes, authorization: str, timestamp: datetime, ) -> bytes: # Get big-endian representation of signature version and timestamp (FILETIME) signature_version_bytes = self.get_signature_version_buffer( self.signing_policy.version ) ts_bytes = self.get_timestamp_buffer(timestamp) # Concatenate bytes to sign + hash data = self._concat_data_to_sign( signature_version_bytes, method, path_and_query, body, authorization, ts_bytes, self.signing_policy.max_body_bytes, ) # Calculate digest digest = self._hash(data) # Sign the hash signature = self.signing_key.sign_digest_deterministic(digest) # Return signature version + timestamp encoded + signature return signature_version_bytes + ts_bytes + signature @staticmethod def _hash(data: bytes) -> bytes: hash = hashlib.sha256() hash.update(data) return hash.digest() @staticmethod def _concat_data_to_sign( signature_version: bytes, method: str, path_and_query: str, body: bytes, authorization: str, ts_bytes: bytes, max_body_bytes: int, ) -> bytes: body_size_to_hash = min(len(body), max_body_bytes) return ( signature_version + b"\x00" + ts_bytes + b"\x00" + method.upper().encode("ascii") + b"\x00" + path_and_query.encode("ascii") + b"\x00" + authorization.encode("ascii") + b"\x00" + body[:body_size_to_hash] + b"\x00" ) @staticmethod def __base64_escaped(binary: bytes) -> str: encoded = base64.b64encode(binary).decode("ascii") encoded = encoded.rstrip("=") encoded = encoded.replace("+", "-") encoded = encoded.replace("/", "_") return encoded @staticmethod def __encode_ec_coord(coord) -> str: return RequestSigner.__base64_escaped(coord.to_bytes(32, "big")) python-xbox-webapi-2.1.0/xbox/webapi/common/signed_session.py000066400000000000000000000031531465040003600243630ustar00rootroot00000000000000""" Signed Session A wrapper around httpx' AsyncClient which transparently calculates the "Signature" header. """ import httpx from xbox.webapi.common.request_signer import RequestSigner class SignedSession(httpx.AsyncClient): def __init__(self, request_signer=None): super().__init__() self.request_signer = request_signer or RequestSigner() @classmethod def from_pem_signing_key(cls, pem_string: str): request_signer = RequestSigner.from_pem(pem_string) return cls(request_signer) def _prepare_signed_request(self, request: httpx.Request) -> httpx.Request: path_and_query = request.url.raw_path.decode() authorization = request.headers.get("Authorization", "") body = b"" for byte in request.stream: body += byte signature = self.request_signer.sign( method=request.method, path_and_query=path_and_query, body=body, authorization=authorization, ) request.headers["Signature"] = signature return request async def send_request_signed(self, request: httpx.Request) -> httpx.Response: """ Shorthand for prepare signed + send """ prepared = self._prepare_signed_request(request) return await self.send(prepared) async def send_signed(self, method: str, url: str, **kwargs): """ Shorthand for creating request + prepare signed + send """ request = httpx.Request(method, url, **kwargs) prepared = self._prepare_signed_request(request) return await self.send(prepared) python-xbox-webapi-2.1.0/xbox/webapi/scripts/000077500000000000000000000000001465040003600211725ustar00rootroot00000000000000python-xbox-webapi-2.1.0/xbox/webapi/scripts/__init__.py000066400000000000000000000007021465040003600233020ustar00rootroot00000000000000import os from appdirs import user_data_dir CLIENT_ID = "388ea51c-0b25-4029-aae2-17df49d23905" # No secret needed, we registered as "Desktop App" in Azure AD CLIENT_SECRET = "" REDIRECT_URI = "http://localhost:8080/auth/callback" DATA_DIR = user_data_dir("xbox", "OpenXbox") TOKENS_FILE = os.path.join(DATA_DIR, "tokens.json") XAL_TOKENS_FILE = os.path.join(DATA_DIR, "xal_tokens.json") if not os.path.exists(DATA_DIR): os.makedirs(DATA_DIR) python-xbox-webapi-2.1.0/xbox/webapi/scripts/authenticate.py000066400000000000000000000116121465040003600242230ustar00rootroot00000000000000""" Example scripts that performs XBL authentication """ import argparse import asyncio import http.server import os import queue import socketserver import threading from urllib.parse import parse_qs, urlparse import webbrowser from xbox.webapi.authentication.manager import AuthenticationManager from xbox.webapi.authentication.models import OAuth2TokenResponse from xbox.webapi.common.signed_session import SignedSession from xbox.webapi.scripts import CLIENT_ID, CLIENT_SECRET, REDIRECT_URI, TOKENS_FILE QUEUE = queue.Queue(1) class AuthCallbackRequestHandler(http.server.BaseHTTPRequestHandler): """ Handles the auth callback that's received when Windows Live auth flow completed """ def do_GET(self): try: url_path = self.requestline.split(" ")[1] query_params = parse_qs(urlparse(url_path).query) except Exception as e: self.send_error( 400, explain=f"Invalid request='{self.requestline}' - Failed to parse URL Path, error={e}", ) self.end_headers() return if query_params.get("error"): error_description = query_params.get("error_description") self.send_error( 400, explain=f"Auth callback failed - Error: {error_description}" ) self.end_headers() return auth_code = query_params.get("code") if not auth_code: self.send_error( 400, explain=f"Auth callback failed - No code received - Original request: {self.requestline}", ) self.end_headers() return if isinstance(auth_code, list): auth_code = auth_code[0] elif isinstance(auth_code, str): pass else: raise Exception(f"Invalid code query param: {auth_code}") # Put auth_code into queue for do_auth to receive QUEUE.put(auth_code) response_body = b"" self.send_response(200) self.send_header("Content-Type", "text/html") self.send_header("Content-Length", str(len(response_body))) self.end_headers() self.wfile.write(response_body) async def do_auth( client_id: str, client_secret: str, redirect_uri: str, token_filepath: str ): async with SignedSession() as session: auth_mgr = AuthenticationManager( session, client_id, client_secret, redirect_uri ) # Refresh tokens if we have them if os.path.exists(token_filepath): with open(token_filepath) as f: tokens = f.read() auth_mgr.oauth = OAuth2TokenResponse.model_validate_json(tokens) await auth_mgr.refresh_tokens() # Request new ones if they are not valid if not (auth_mgr.xsts_token and auth_mgr.xsts_token.is_valid()): auth_url = auth_mgr.generate_authorization_url() webbrowser.open(auth_url) # Wait for auth code from http server thread code = QUEUE.get() await auth_mgr.request_tokens(code) with open(token_filepath, mode="w") as f: print(f"Finished authentication, writing tokens to {token_filepath}") f.write(auth_mgr.oauth.json()) async def async_main(): parser = argparse.ArgumentParser(description="Authenticate with XBL") parser.add_argument( "--tokens", "-t", default=TOKENS_FILE, help=f"Token filepath. Default: '{TOKENS_FILE}'", ) parser.add_argument( "--client-id", "-cid", default=os.environ.get("CLIENT_ID", CLIENT_ID), help="OAuth2 Client ID", ) parser.add_argument( "--client-secret", "-cs", default=os.environ.get("CLIENT_SECRET", CLIENT_SECRET), help="OAuth2 Client Secret", ) parser.add_argument( "--redirect-uri", "-ru", default=os.environ.get("REDIRECT_URI", REDIRECT_URI), help="OAuth2 Redirect URI", ) parser.add_argument( "--port", "-p", default=8080, type=int, help=""" HTTP Server port for awaiting auth callback * NOTE: Changing this will break default auth flow and requires providing own OAUTH parameters """, ) args = parser.parse_args() with socketserver.TCPServer( ("0.0.0.0", args.port), AuthCallbackRequestHandler ) as httpd: print(f"Serving HTTP Server for auth callback at port {args.port}") server_thread = threading.Thread(target=httpd.serve_forever) # Exit the server thread when the main thread terminates server_thread.daemon = True server_thread.start() await do_auth( args.client_id, args.client_secret, args.redirect_uri, args.tokens ) def main(): asyncio.run(async_main()) if __name__ == "__main__": main() python-xbox-webapi-2.1.0/xbox/webapi/scripts/change_gamertag.py000066400000000000000000000063541465040003600246500ustar00rootroot00000000000000""" Example script that enables using your one-time-free gamertag change """ import argparse import asyncio import os import sys from httpx import HTTPStatusError from xbox.webapi.api.client import XboxLiveClient from xbox.webapi.api.provider.account.models import ( ChangeGamertagResult, ClaimGamertagResult, ) from xbox.webapi.authentication.manager import AuthenticationManager from xbox.webapi.authentication.models import OAuth2TokenResponse from xbox.webapi.common.signed_session import SignedSession from xbox.webapi.scripts import CLIENT_ID, CLIENT_SECRET, TOKENS_FILE async def async_main(): parser = argparse.ArgumentParser(description="Change your gamertag") parser.add_argument( "--tokens", "-t", default=TOKENS_FILE, help=f"Token filepath. Default: '{TOKENS_FILE}'", ) parser.add_argument( "--client-id", "-cid", default=os.environ.get("CLIENT_ID", CLIENT_ID), help="OAuth2 Client ID", ) parser.add_argument( "--client-secret", "-cs", default=os.environ.get("CLIENT_SECRET", CLIENT_SECRET), help="OAuth2 Client Secret", ) parser.add_argument("gamertag", help="Desired Gamertag") args = parser.parse_args() if len(args.gamertag) > 15: print("Desired gamertag exceedes limit of 15 chars") sys.exit(-1) if not os.path.exists(args.tokens): print("No token file found, run xbox-authenticate") sys.exit(-1) async with SignedSession() as session: auth_mgr = AuthenticationManager( session, args.client_id, args.client_secret, "" ) with open(args.tokens) as f: tokens = f.read() auth_mgr.oauth = OAuth2TokenResponse.model_validate_json(tokens) try: await auth_mgr.refresh_tokens() except HTTPStatusError: print("Could not refresh tokens") sys.exit(-1) with open(args.tokens, mode="w") as f: f.write(auth_mgr.oauth.json()) xbl_client = XboxLiveClient(auth_mgr) print( ":: Trying to change gamertag to '%s' for xuid '%i'..." % (args.gamertag, xbl_client.xuid) ) print("Claiming gamertag...") try: resp = await xbl_client.account.claim_gamertag( xbl_client.xuid, args.gamertag ) if resp == ClaimGamertagResult.NotAvailable: print("Claiming gamertag failed - Desired gamertag is unavailable") sys.exit(-1) except HTTPStatusError: print("Invalid HTTP response from claim") sys.exit(-1) print("Changing gamertag...") try: resp = await xbl_client.account.change_gamertag( xbl_client.xuid, args.gamertag ) if resp == ChangeGamertagResult.NoFreeChangesAvailable: print("Changing gamertag failed - You are out of free changes") sys.exit(-1) except HTTPStatusError: print("Invalid HTTP response from change") sys.exit(-1) print("Gamertag successfully changed to %s" % args.gamertag) def main(): asyncio.run(async_main()) if __name__ == "__main__": main() python-xbox-webapi-2.1.0/xbox/webapi/scripts/friends.py000066400000000000000000000041171465040003600232010ustar00rootroot00000000000000""" Example script that enables using your one-time-free gamertag change """ import argparse import asyncio import os from pprint import pprint import sys from httpx import HTTPStatusError from xbox.webapi.api.client import XboxLiveClient from xbox.webapi.authentication.manager import AuthenticationManager from xbox.webapi.authentication.models import OAuth2TokenResponse from xbox.webapi.common.signed_session import SignedSession from xbox.webapi.scripts import CLIENT_ID, CLIENT_SECRET, TOKENS_FILE async def async_main(): parser = argparse.ArgumentParser(description="Change your gamertag") parser.add_argument( "--tokens", "-t", default=TOKENS_FILE, help=f"Token filepath. Default: '{TOKENS_FILE}'", ) parser.add_argument( "--client-id", "-cid", default=os.environ.get("CLIENT_ID", CLIENT_ID), help="OAuth2 Client ID", ) parser.add_argument( "--client-secret", "-cs", default=os.environ.get("CLIENT_SECRET", CLIENT_SECRET), help="OAuth2 Client Secret", ) args = parser.parse_args() if not os.path.exists(args.tokens): print("No token file found, run xbox-authenticate") sys.exit(-1) async with SignedSession() as session: auth_mgr = AuthenticationManager( session, args.client_id, args.client_secret, "" ) with open(args.tokens) as f: tokens = f.read() auth_mgr.oauth = OAuth2TokenResponse.model_validate_json(tokens) try: await auth_mgr.refresh_tokens() except HTTPStatusError: print("Could not refresh tokens") sys.exit(-1) with open(args.tokens, mode="w") as f: f.write(auth_mgr.oauth.json()) xbl_client = XboxLiveClient(auth_mgr) try: resp = await xbl_client.people.get_friends_own() except HTTPStatusError: print("Invalid HTTP response") sys.exit(-1) pprint(resp.dict()) def main(): asyncio.run(async_main()) if __name__ == "__main__": main() python-xbox-webapi-2.1.0/xbox/webapi/scripts/search.py000066400000000000000000000020441465040003600230110ustar00rootroot00000000000000""" Example script that utilizes EDSProvider to search XBL marketplace """ import argparse import asyncio from pprint import pprint import sys from httpx import HTTPStatusError from xbox.webapi.api.client import XboxLiveClient from xbox.webapi.authentication.manager import AuthenticationManager from xbox.webapi.common.signed_session import SignedSession async def async_main(): parser = argparse.ArgumentParser(description="Search for Content on XBL") parser.add_argument("search_query", help="Name to search for") args = parser.parse_args() async with SignedSession() as session: auth_mgr = AuthenticationManager(session, "", "", "") # No Auth necessary for catalog searches xbl_client = XboxLiveClient(auth_mgr) try: resp = await xbl_client.catalog.product_search(args.search_query) except HTTPStatusError: print("Search failed") sys.exit(-1) pprint(resp.dict()) def main(): asyncio.run(async_main()) if __name__ == "__main__": main() python-xbox-webapi-2.1.0/xbox/webapi/scripts/xal.py000066400000000000000000000055731465040003600223420ustar00rootroot00000000000000""" Example scripts that performs XBL authentication via XAL """ import argparse import asyncio import json import os import uuid from pydantic import BaseModel from pydantic.json import pydantic_encoder from xbox.webapi.authentication.models import ( SisuAuthorizationResponse, XalAppParameters, XalClientParameters, ) from xbox.webapi.authentication.xal import ( APP_PARAMS_GAMEPASS_BETA, CLIENT_PARAMS_ANDROID, XALManager, ) from xbox.webapi.common.signed_session import SignedSession from xbox.webapi.scripts import XAL_TOKENS_FILE class XALStore(BaseModel): """Used to store/load authorization data""" sisu: SisuAuthorizationResponse device_id: uuid.UUID app_params: XalAppParameters client_params: XalClientParameters def user_prompt_authentication(auth_url: str) -> str: """ Handles the auth callback when user is prompted to authenticate via URL in webbrowser Takes the redirect URL from stdin """ redirect_url = input( f"Continue auth with the following URL:\n\n" f"URL: {auth_url}\n\n" f"Provide redirect URI: " ) return redirect_url async def do_auth(device_id: uuid.UUID, token_filepath: str): async with SignedSession() as session: app_params = APP_PARAMS_GAMEPASS_BETA client_params = CLIENT_PARAMS_ANDROID store = None # Load existing sisu authorization data, if it exists if os.path.exists(token_filepath): with open(token_filepath) as f: store = json.load(f) # Convert SISU authorization data store = XALStore(**store) if store: raise NotImplementedError("Token refreshing") # Do authentication xal = XALManager(session, device_id, app_params, client_params) response = await xal.auth_flow(user_prompt_authentication) print(f"Sisu auth finished:\n\n{response}") # Save authorization data store = XALStore( sisu=response, device_id=device_id, app_params=app_params, client_params=client_params, ) with open(token_filepath, mode="w") as f: print(f"Finished authentication, writing tokens to {token_filepath}") json.dump(store, f, default=pydantic_encoder) async def async_main(): parser = argparse.ArgumentParser(description="Authenticate with XBL via XAL") parser.add_argument( "--tokens", "-t", default=XAL_TOKENS_FILE, help=f"Token filepath. Default: '{XAL_TOKENS_FILE}'", ) parser.add_argument( "--device-id", "-did", default=uuid.uuid4(), type=uuid.UUID, help="Device ID (for device auth)", ) args = parser.parse_args() await do_auth(args.device_id, args.tokens) def main(): asyncio.run(async_main()) if __name__ == "__main__": main()