diff --git a/.github/workflows/build-images.yaml b/.github/workflows/build-images.yaml new file mode 100644 index 0000000..cb55376 --- /dev/null +++ b/.github/workflows/build-images.yaml @@ -0,0 +1,195 @@ +name: Build template images +on: + push: + branches: [main] + paths: + - .github/workflows/** + - dockerfiles/** + - src/** + workflow_dispatch: +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true +permissions: + contents: read + id-token: write +env: + IMAGE_NS: ghcr.io/open-rmf/rmf_deployment_template/rmf-deployment + IMAGE_TAG: ${{ github.sha }} + IMAGE_TAG_LATEST: latest +jobs: + builder: + name: builder + runs-on: ubuntu-latest + steps: + - name: Login to Github Packages + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GHCR_PAT }} + - name: checkout + uses: actions/checkout@v4 + - name: build and push + run: | + IMAGE=$IMAGE_NS/builder:$IMAGE_TAG + IMAGE_LATEST=$IMAGE_NS/builder:$IMAGE_TAG_LATEST + docker build -t $IMAGE dockerfiles/builder + docker push $IMAGE + docker tag $IMAGE $IMAGE_LATEST + docker push $IMAGE_LATEST + rmf: + name: rmf + runs-on: ubuntu-latest + needs: builder + steps: + - name: Login to Github Packages + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GHCR_PAT }} + - name: checkout + uses: actions/checkout@v4 + - name: build and push + run: | + IMAGE=$IMAGE_NS/rmf:$IMAGE_TAG + IMAGE_LATEST=$IMAGE_NS/rmf:$IMAGE_TAG_LATEST + BUILDER_IMAGE=$IMAGE_NS/builder:$IMAGE_TAG + . dockerfiles/build-args.sh + docker build -t $IMAGE $RMF_BUILD_ARGS dockerfiles/rmf + docker push $IMAGE + docker tag $IMAGE $IMAGE_LATEST + docker push $IMAGE_LATEST + rmf-site: + name: rmf-site + runs-on: ubuntu-latest + needs: rmf + steps: + - name: Login to Github Packages + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GHCR_PAT }} + - name: checkout + uses: actions/checkout@v4 + - name: build and push + run: | + IMAGE=$IMAGE_NS/rmf-site:$IMAGE_TAG + IMAGE_LATEST=$IMAGE_NS/rmf-site:$IMAGE_TAG_LATEST + BUILDER_IMAGE=$IMAGE_NS/rmf:$IMAGE_TAG + . dockerfiles/build-args.sh + docker build -t $IMAGE $RMF_SITE_BUILD_ARGS dockerfiles/rmf-site + docker push $IMAGE + docker tag $IMAGE $IMAGE_LATEST + docker push $IMAGE_LATEST + api_server: + name: api-server + runs-on: ubuntu-latest + needs: builder + steps: + - name: Login to Github Packages + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GHCR_PAT }} + - name: checkout + uses: actions/checkout@v4 + - name: build and push + run: | + IMAGE=$IMAGE_NS/api-server:$IMAGE_TAG + IMAGE_LATEST=$IMAGE_NS/api-server:$IMAGE_TAG_LATEST + BUILDER_IMAGE=$IMAGE_NS/builder:$IMAGE_TAG + . dockerfiles/build-args.sh + docker build -t $IMAGE $API_SERVER_BUILD_ARGS dockerfiles/rmf-web/api-server + docker push $IMAGE + docker tag $IMAGE $IMAGE_LATEST + docker push $IMAGE_LATEST + dashboard: + name: dashboard + runs-on: ubuntu-latest + steps: + - name: Login to Github Packages + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GHCR_PAT }} + - name: checkout + uses: actions/checkout@v4 + - name: build and push + run: | + IMAGE=$IMAGE_NS/dashboard:$IMAGE_TAG + IMAGE_LATEST=$IMAGE_NS/dashboard:$IMAGE_TAG_LATEST + . dockerfiles/build-args.sh + docker build -t $IMAGE $DASHBOARD_BUILD_ARGS dockerfiles/rmf-web/dashboard + docker push $IMAGE + docker tag $IMAGE $IMAGE_LATEST + docker push $IMAGE_LATEST + ## Dashboard without custom url, use defaults env for react app for local testing + dashboard-local: + name: dashboard-local + runs-on: ubuntu-latest + steps: + - name: Login to Github Packages + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GHCR_PAT }} + - name: checkout + uses: actions/checkout@v4 + - name: build and push + run: | + IMAGE=$IMAGE_NS/dashboard-local:$IMAGE_TAG + IMAGE_LATEST=$IMAGE_NS/dashboard-local:$IMAGE_TAG_LATEST + . dockerfiles/build-args.sh + docker build -t $IMAGE $DASHBOARD_LOCAL_BUILD_ARGS dockerfiles/rmf-web/dashboard + docker push $IMAGE + docker tag $IMAGE $IMAGE_LATEST + docker push $IMAGE_LATEST + keycloak_setup: + name: keycloak-setup + runs-on: ubuntu-latest + steps: + - name: Login to Github Packages + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GHCR_PAT }} + - name: checkout + uses: actions/checkout@v4 + - name: build and push + run: | + IMAGE=$IMAGE_NS/keycloak-setup:$IMAGE_TAG + IMAGE_LATEST=$IMAGE_NS/keycloak-setup:$IMAGE_TAG_LATEST + docker build -t $IMAGE dockerfiles/rmf-web/keycloak-setup + docker push $IMAGE + docker tag $IMAGE $IMAGE_LATEST + docker push $IMAGE_LATEST + rmf-sim: + name: rmf-sim + runs-on: ubuntu-latest + needs: rmf + steps: + - name: Login to Github Packages + uses: docker/login-action@v1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GHCR_PAT }} + - name: checkout + uses: actions/checkout@v4 + - name: build and push + run: | + IMAGE=$IMAGE_NS/rmf-sim:$IMAGE_TAG + IMAGE_LATEST=$IMAGE_NS/rmf-sim:$IMAGE_TAG_LATEST + BUILDER_IMAGE=$IMAGE_NS/rmf:$IMAGE_TAG + . dockerfiles/build-args.sh + docker build -t $IMAGE $RMF_SIM_BUILD_ARGS dockerfiles/rmf-sim + docker push $IMAGE + docker tag $IMAGE $IMAGE_LATEST + docker push $IMAGE_LATEST diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml deleted file mode 100644 index deaa3c5..0000000 --- a/.github/workflows/docker-image.yml +++ /dev/null @@ -1,155 +0,0 @@ -name: docker-img-latest - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] -jobs: - build: - runs-on: ubuntu-latest - ############################################################## - ## Configurations - ############################################################## - env: - builder_ns: ghcr.io/open-rmf/rmf_deployment_template - base_registry: docker.io - domain_url: rmf-deployment-template.open-rmf.org - ros_distro: humble - tag: latest - ############################################################## - steps: - # ### - # Login to github packages, our container registry - # ### - - name: Login to Github Packages - uses: docker/login-action@v1 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GHCR_PAT }} - - - name: Checkout - uses: actions/checkout@v3 - - - name: Install and run vcs import rmf - run: | - curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr/share/keyrings/ros-archive-keyring.gpg - echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/ros-archive-keyring.gpg] http://packages.ros.org/ros2/ubuntu $(lsb_release -cs) main" | \ - sudo tee /etc/apt/sources.list.d/ros2.list > /dev/null - sudo apt update - sudo apt install python3-vcstool -y - mkdir rmf-src - vcs import rmf-src < rmf/rmf.repos - - # ### - # build rosdep builder image - # ### - - - name: Build builder-rosdep - uses: docker/build-push-action@v3 - with: - context: . - file: rmf/builder-rosdep.Dockerfile - build-args: | - BASE_REGISTRY=${{ env.base_registry }} - ROS_DISTRO=${{ env.ros_distro }} - # push: true - tags: ${{ env.builder_ns }}/builder-rosdep:${{ env.tag }} - - # ### - # build rmf image - # ### - - - name: Build rmf - uses: docker/build-push-action@v3 - with: - context: . - file: rmf/rmf.Dockerfile - build-args: | - BUILDER_NS=${{ env.builder_ns }} - TAG=${{ env.tag }} - push: true - tags: ${{ env.builder_ns }}/rmf:${{ env.tag }} - - # ### - # build rmf simulation images - # ### - - - name: run vcs import rmf-simulation - run: | - mkdir rmf-simulation-src - vcs import rmf-simulation-src < rmf-simulation/rmf-simulation.repos - - - name: Build rmf-simulation - uses: docker/build-push-action@v3 - with: - context: . - file: rmf-simulation/rmf-simulation.Dockerfile - build-args: | - BUILDER_NS=${{ env.builder_ns }} - TAG=${{ env.tag }} - push: true - tags: ${{ env.builder_ns }}/rmf-simulation:${{ env.tag }} - - # ### - # build rmf web images - # ### - - - name: run vcs import rmf-web - run: | - mkdir rmf-web-src - vcs import rmf-web-src < rmf-web/rmf-web.repos - - - name: Build builder-rmf-web - uses: docker/build-push-action@v3 - with: - context: . - file: rmf-web/builder-rmf-web.Dockerfile - build-args: | - BUILDER_NS=${{ env.builder_ns }} - TAG=${{ env.tag }} - # push: true - tags: ${{ env.builder_ns }}/builder-rmf-web:${{ env.tag }} - - - name: Build rmf-web-rmf-server - uses: docker/build-push-action@v3 - with: - context: . - file: rmf-web/rmf-web-rmf-server.Dockerfile - build-args: | - BUILDER_NS=${{ env.builder_ns }} - TAG=${{ env.tag }} - push: true - tags: ${{ env.builder_ns }}/rmf-web-rmf-server:${{ env.tag }} - - - name: Build rmf-web-dashboard - uses: docker/build-push-action@v3 - with: - context: . - file: rmf-web/rmf-web-dashboard.Dockerfile - build-args: | - BASE_REGISTRY=${{ env.base_registry }} - TAG=${{ env.tag }} - DOMAIN_URL=${{ env.domain_url }} - BUILDER_NS=${{ env.builder_ns }} - push: true - tags: ${{ env.builder_ns }}/rmf-web-dashboard:${{ env.tag }} - - - ## Dashboard without custom url, use defaults env for react app - name: Build rmf-web-dashboard without auth - uses: docker/build-push-action@v3 - with: - context: . - file: rmf-web/rmf-web-dashboard.Dockerfile - build-args: | - BASE_REGISTRY=${{ env.base_registry }} - TAG=${{ env.tag }} - DOMAIN_URL=${{ env.domain_url }} - BUILDER_NS=${{ env.builder_ns }} - REACT_APP_TRAJECTORY_SERVER=ws://localhost:8006 - REACT_APP_RMF_SERVER=http://localhost:8000 - REACT_APP_AUTH_PROVIDER= - REACT_APP_KEYCLOAK_CONFIG= - push: true - tags: ${{ env.builder_ns }}/rmf-web-dashboard-local:${{ env.tag }} diff --git a/README.md b/README.md index 05ef1a2..787a47c 100644 --- a/README.md +++ b/README.md @@ -1,56 +1,154 @@ -![](https://github.com/open-rmf/rmf_deployment_template/workflows/docker-img-latest/badge.svg) -![](https://github.com/open-rmf/rmf_deployment_template/workflows/rmf-site-ci/badge.svg) +[![CI image builder](https://github.com/open-rmf/rmf_deployment_template/actions/workflows/build-images.yaml/badge.svg?branch=main)](https://github.com/open-rmf/rmf_deployment_template/actions/workflows/build-images.yaml) # Open-RMF Deployment Template -This repo provides a sample template to build, deploy and manage an [Open-RMF](https://github.com/open-rmf/rmf) installation (i.e. GitOps for RMF) +This repo provides a reference template to build, deploy and manage an [Open-RMF](https://github.com/open-rmf/rmf) installation for production use, in cloud as +well as on-prem environments ![](../media/rmf_banner.png?raw=true) -## The Kubernetes way for cloud deployment -This repo is structured as - -- `main` - Contains Dockerfiles and CI pipeline to build images for this example deployment -- [build/rmf-site](https://github.com/open-rmf/rmf_deployment_template/tree/build/rmf-site) - Contains example rmf-site related resources, dockerfiles and CI process -- [cloud_infra](https://github.com/open-rmf/rmf_deployment_template/tree/cloud_infra) - Cloud cluster bringup scripts, resources and runtime configs +## The Kubernetes way of deployment -_(These branches may be setup as independant repos for a production environment, the intent in having them as branches here is to provide a concise one-stop location for easy reference.)_ +### Build +#### CI +If you are deploying on a public cloud, it is recommeded to use CI / CD pipelines; +you may follow the github actions in this repo to setup CI. -We will use the following tools for this example - -- CI : [Github actions](https://github.com/features/actions) -- Container registry: [Github packages](https://github.com/features/packages) -- VM hosting: [AWS EC2](https://aws.amazon.com/ec2/) -- DNS: [AWS Route 53](https://aws.amazon.com/route53/) -- Kubernetes distribution: [k3s](https://k3s.io) -- CD: [ArgoCD](https://argoproj.github.io/cd) +#### (Alternate method) Manual +To build manually, follow the steps in `.github/workflows/build-images.yaml` to build dockerfiles for deployment. -Run thru the setups in `cloud_infra` branch to deploy these images to a cloud instance and access Open-RMF web dashbaord over a public URL +### Install kubernetes and setup infrastructure +There are various kubernetes distributions available, we will be using [k3s](https://k3s.io/) for this template; please feel free to use alternates you may be comfortable with. -## Alternate method for quick local deployment -If you are planning to run a small local deployment and do not want to setup up a kubernetes cluster for it OR run `rmf_demos` with simulation on your local machine. +```bash +# install docker +curl -fsSL get.docker.com -o get-docker.sh && sh get-docker.sh +sudo usermod -aG docker $USER +newgrp docker + +# install k3s (https://docs.k3s.io/) +# replace ens5 with the interface of your choice +curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC="--flannel-iface=ens5 --disable=traefik --write-kubeconfig-mode=644 --docker" sh -s - + +# install helm (https://helm.sh/docs/intro/install/) +curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash + +# clone this repo +git clone git@github.com:open-rmf/rmf_deployment_template.git + +# deploy infrastructure components +cd rmf_deployment_template/charts/ +./infrastructure/tools/helm_charts_build.bash +export KUBECONFIG=/etc/rancher/k3s/k3s.yaml +helm install -n=infra --create-namespace rmf-infra infrastructure +``` + +If you are deploying locally, add your cluster's IP to `/etc/hosts` to point to be +able to resolve https://rmf.test +```bash +sudo bash -c "echo $(kubectl get svc rmf-infra-ingress-nginx-controller -n infra -o jsonpath="{.spec.clusterIP}") rmf.test >> /etc/hosts" +``` + +### Setup SSL certifications + +#### Installation on public cloud +If you are deploying on the internet (eg. Cloud VM / managed cluser / etc), letsencrypt provides an easy way of obtaining SSL certificates +```bash +# IMPORTANT: Before you proceed to the next steps, make sure your DNS is indeed setup +# and resolving; this is to avoid hitting letsencrypt's rate limits on DNS failure. +# NOTE: Specify your `ACME_EMAIL` and `DOMAIN_NAME` for letsencrypt-issuer-production +export DOMAIN_NAME=rmf.test +export ACME_EMAIL=YOUREMAIL@DOMAIN.com +envsubst < charts/infrastructure/tools/letsencrypt-issuer-production.yaml | kubectl apply -f - + +# Verify if certificate was issued successfully. +kubectl get certificates # should be true, if not, might need to wait a couple minutes. +``` +#### (Alternate method) Local installation +If you are deploying locally (eg. on your computer / on-prem server / etc) the cluster provides a certification authority that signs different certificates used +in different services by the cluster. The root ca certificate can be obtained by: +```bash +# create testing ca +kubectl apply -f devel/certs.yaml + +# get the ca cert +kubectl -n=infra get secrets rmf-dev-secret --template='{{index .data "ca.crt"}}' | base64 -dw0 > ca.crt +``` + +##### Browser https connections +For self signed certificates, tell your browser to trust the ca.crt cert (instructions depends on the browser). + +### DEPLOY + +#### CD +We will use [ArgoCD](https://argoproj.github.io/cd) to handle chart changes on this +branch of the repository and apply to the cluster. The `charts` directory consists of +[helm charts](https://helm.sh/docs/topics/charts/) which describes the provisioning +of the deployment. ```bash -docker run --network=host \ --it ghcr.io/open-rmf/rmf_deployment_template/rmf-simulation:latest \ -bash -c "ros2 launch rmf_demos_gz office.launch.xml \ -headless:=1 \ -server_uri:=ws://localhost:8000/_internal" +kubectl create namespace rmf +kubectl create namespace argocd +kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml +kubectl port-forward svc/argocd-server -n argocd 9090:443 +# If you get an error forwarding the port, it is likely that socat is unavailable +# on your machine, to fix - sudo apt -y install socat + +# Start a new ssh session with port forward 9090 to the VM, you should now be able +# to view the admin panel on port localhost:9090 +# (eg. ssh -L 9090:localhost:9090 my-awesome-server.tld and then open ArgoCD web UI +# by going to localhost:9090 on your workstation) +# In case you have problems with port forwarding, you may be missing socat on the +# server, install by sudo apt install -y socat + +# Get the initial password for ArgoCD +kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d ``` +For more on ArgoCD, vist their [readthedocs](https://argo-cd.readthedocs.io/en/stable/) page. +```bash +# Connect the repository + +## When adding a "new app" on argocd, we will specify the repo, this branch and +## `charts/rmf-deployment` directory. Similarly to deploy the monitoring tools, use +## `charts/monitoring` directory. + +## Now if you sync the app, we should see the full deployment "come alive" +``` + +#### (Alternate method) Manual deployment +In case it is not feasible to deploy via CD, a manual deployment is possible via helm -Run `rmf-api-server` ```bash -docker run --network=host \ --it ghcr.io/open-rmf/rmf_deployment_template/rmf-web-rmf-server:latest +# deploy monitoring stack +helm install -n=monitoring --create-namespace rmf-monitoring charts/monitoring + +# install rmf stack +helm install -n=rmf --create-namespace rmf charts/rmf-deployment + +# wait for keycloak to be ready +kubectl -n=rmf wait --for=condition=Complete --timeout=5m jobs keycloak-setup +``` + +### Grafana (using Prometheus and Loki) +The deployment includes a prometheus stack (with grafana). It can be accessed from +https://rmf.test/grafana. + +To get the admin password, run + ``` +kubectl -n=monitoring get secrets rmf-monitoring-grafana -o=jsonpath='{.data.admin-password}' | base64 -d - +``` + +## (Alternate method) Quick local deployment +If you are planning to run a small local deployment and do not want to setup up a kubernetes cluster for it OR run `rmf_demos` with simulation on your local machine. -Run `rmf-web-dashboard` ```bash -docker run -p 3000:80 \ --it ghcr.io/open-rmf/rmf_deployment_template/rmf-web-dashboard-local:latest +docker-compose -f devel/docker-compose-local.yaml up -d ``` Now access the dashboard with: http://localhost:3000/dashboard and try dispatch a task. -### Docker images structure +## Docker images structure ```mermaid flowchart LR subgraph Legend @@ -69,23 +167,77 @@ flowchart LR builder-rmf-web --> rmf-web-dashboard-local builder-rmf-web --> rmf-web-rmf-server ``` -### Building images -You can look into the github workflow to get an idea of how to build images: -[Github Workflow](https://github.com/open-rmf/rmf_deployment_template/blob/main/.github/workflows/docker-image.yml). + +# Troubleshooting + +### Unable to list resources on kubectl cli + +The kubeconfig file stored at `/etc/rancher/k3s/k3s.yaml` is used to configure access to the Kubernetes cluster. If you have installed upstream Kubernetes command line tools such as kubectl or helm you will need to configure them with the correct kubeconfig path. This can be done by either exporting the `KUBECONFIG` environment variable or by invoking the `--kubeconfig` command line flag. Refer to the examples below for details. + +Leverage the KUBECONFIG environment variable: +```bash +export KUBECONFIG=/etc/rancher/k3s/k3s.yaml +kubectl get pods --all-namespaces +helm ls --all-namespaces +``` +Or specify the location of the kubeconfig file in the command: +```bash +kubectl --kubeconfig /etc/rancher/k3s/k3s.yaml get pods --all-namespaces +helm --kubeconfig /etc/rancher/k3s/k3s.yaml ls --all-namespaces +``` +### Services + +List of ports and URIs used by the different services: + +| Service | Port | Port handled by | Test Env IP | Production access | +|-----------------|----------|---------------------|-------------|------------------------| +| RMF http | 80 | ingress-nginx http | 127.0.0.1 | http://${URL}/dashboard/ | +| RMF https | 443 | ingress-nginx https | 127.0.0.1 | https://${URL}:443/dashboard/ | +| Grafana UI | 443 | ingress-nginx https | cluster IP | https://${URL}/grafana/ | +| Keycloak UI | 443 | ingress-nginx https | cluster IP | https://${URL}/auth/ | + +### Production Deployment + +To reserve a node for rmf. + +```bash +kubectl taint node reserved=rmf:NoSchedule +``` -From the root directory of this repo, you can run the following commands to build the images: +### Deleting and Removing the local deployment / installation + +To delete the local deployment + +```bash +helm uninstall -n=rmf rmf ``` -# Install and run vcs import rmf -curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr/share/keyrings/ros-archive-keyring.gpg -echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/ros-archive-keyring.gpg] http://packages.ros.org/ros2/ubuntu $(lsb_release -cs) main" | \ -sudo tee /etc/apt/sources.list.d/ros2.list > /dev/null -sudo apt update -sudo apt install python3-vcstool -y -mkdir rmf-src -vcs import rmf-src < rmf/rmf.repos + +### API server crash loop backoff and jwt-pub-key missing + +It is generally normal for the first deployment to see this happening, as it has to wait +for keycloak to be ready and the `keycloak-setup` job to be completed. + +If this issue is persisting and the `keycloak-setup` job does not show up on `kubectl get jobs -A`, +it means the job was somehow not started. It can be manually spun up again using + ``` +helm upgrade rmf rmf-deployment -n rmf ``` -ROS_DISTRO="${ROS_DISTRO:-humble}" -docker build -f rmf/builder-rosdep.Dockerfile -t open-rmf/rmf_deployment_template/builder-rosdep . -docker build -f rmf/rmf.Dockerfile -t open-rmf/rmf_deployment_template/rmf . + +The job should take less than a minute. Verify if `keycloak-setup` shows up again using + +``` +kubectl get jobs -A +``` + +and + +``` +kubectl get pods -n rmf +``` + +Restart the API server pod by running, + ``` +kubectl rollout restart deployments/rmf-web-rmf-server +``` \ No newline at end of file diff --git a/charts/README.md b/charts/README.md new file mode 100644 index 0000000..d632088 --- /dev/null +++ b/charts/README.md @@ -0,0 +1 @@ +Charts for deploying Open-RMF and supporting infra diff --git a/charts/infrastructure/Chart.lock b/charts/infrastructure/Chart.lock new file mode 100644 index 0000000..d859676 --- /dev/null +++ b/charts/infrastructure/Chart.lock @@ -0,0 +1,9 @@ +dependencies: +- name: ingress-nginx + repository: https://kubernetes.github.io/ingress-nginx + version: 4.10.1 +- name: cert-manager + repository: https://charts.jetstack.io + version: v1.14.5 +digest: sha256:eca0ad2a1ed27d679b82450d98aae7d590e0a72bdd68fb70d96ae2dd5c6e7b0c +generated: "2024-05-27T15:03:03.940036044+08:00" diff --git a/charts/infrastructure/Chart.yaml b/charts/infrastructure/Chart.yaml new file mode 100644 index 0000000..87bc510 --- /dev/null +++ b/charts/infrastructure/Chart.yaml @@ -0,0 +1,12 @@ +apiVersion: v2 +name: rmf-deployment-infra +description: Helm Chart for RMF deployment infrastructure +version: 1.0.0 +dependencies: + - name: ingress-nginx + repository: https://kubernetes.github.io/ingress-nginx + version: 4.10.1 + condition: ingress-nginx.enabled + - name: cert-manager + repository: https://charts.jetstack.io + version: 1.14.5 diff --git a/charts/infrastructure/tools/helm_charts_build.bash b/charts/infrastructure/tools/helm_charts_build.bash new file mode 100755 index 0000000..1a3cd8e --- /dev/null +++ b/charts/infrastructure/tools/helm_charts_build.bash @@ -0,0 +1,20 @@ +#!/bin/bash + +SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" +ROOT_REPO="$(realpath "${SCRIPT_DIR}/../../..")" + +# safety check +if [[ ! -d $ROOT_REPO/.git ]]; then + echo "Can not find .git in $ROOT_REPO. This probably means that the script needs to be udpated" + exit 1 +fi + +pushd "${ROOT_REPO}" 2> /dev/null || exit +helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx +helm repo add jetstack https://charts.jetstack.io +helm repo add prometheus-community https://prometheus-community.github.io/helm-charts +helm repo add grafana https://grafana.github.io/helm-charts +helm repo add t3n https://storage.googleapis.com/t3n-helm-charts +helm dep build charts/infrastructure +helm dep build charts/monitoring +popd 2> /dev/null || exit diff --git a/charts/infrastructure/tools/letsencrypt-issuer-production.yaml b/charts/infrastructure/tools/letsencrypt-issuer-production.yaml new file mode 100644 index 0000000..ac62d70 --- /dev/null +++ b/charts/infrastructure/tools/letsencrypt-issuer-production.yaml @@ -0,0 +1,34 @@ +--- +apiVersion: cert-manager.io/v1 +kind: ClusterIssuer +metadata: + name: letsencrypt-prod +spec: + acme: + # The ACME server URL + server: https://acme-v02.api.letsencrypt.org/directory + # Email address used for ACME registration + email: $ACME_EMAIL + # Name of a secret used to store the ACME account private key + privateKeySecretRef: + name: letsencrypt-prod + # Enable the HTTP-01 challenge provider + solvers: + - http01: + ingress: + class: nginx + +--- +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: tls-certificate-secret-name + namespace: default +spec: + secretName: tls-certificate-secret-name + issuerRef: + name: letsencrypt-prod + kind: ClusterIssuer + commonName: $DOMAIN_NAME + dnsNames: + - $DOMAIN_NAME diff --git a/charts/infrastructure/values.yaml b/charts/infrastructure/values.yaml new file mode 100644 index 0000000..5759f25 --- /dev/null +++ b/charts/infrastructure/values.yaml @@ -0,0 +1,18 @@ +cert-manager: + installCRDs: true + +ingress-nginx: + enabled: true + controller: + hostPort: + enabled: true + ports: + http: 80 + https: 443 + service: + type: ClusterIP + metrics: + enabled: true + podAnnotations: + prometheus.io/port: "10254" + prometheus.io/scrape: "true" diff --git a/charts/monitoring/Chart.lock b/charts/monitoring/Chart.lock new file mode 100644 index 0000000..02e2dcd --- /dev/null +++ b/charts/monitoring/Chart.lock @@ -0,0 +1,15 @@ +dependencies: +- name: prometheus + repository: https://prometheus-community.github.io/helm-charts + version: 25.20.1 +- name: grafana + repository: https://grafana.github.io/helm-charts + version: 7.3.10 +- name: loki + repository: https://grafana.github.io/helm-charts + version: 6.5.1 +- name: promtail + repository: https://grafana.github.io/helm-charts + version: 6.15.5 +digest: sha256:5c6dccacf5f8e1734eda2f17818526830748ab4b857c030cb76ccbbc286fac63 +generated: "2024-05-13T16:29:03.091274927+08:00" diff --git a/charts/monitoring/Chart.yaml b/charts/monitoring/Chart.yaml new file mode 100644 index 0000000..1dbca9c --- /dev/null +++ b/charts/monitoring/Chart.yaml @@ -0,0 +1,17 @@ +apiVersion: v2 +name: rmf-deployment-monitoring +description: Helm Chart for RMF deployment monitoring +version: 1.0.0 +dependencies: + - name: prometheus + repository: https://prometheus-community.github.io/helm-charts + version: 25.20.1 + - name: grafana + repository: https://grafana.github.io/helm-charts + version: 7.3.10 + - name: loki + repository: https://grafana.github.io/helm-charts + version: 6.5.1 + - name: promtail + repository: https://grafana.github.io/helm-charts + version: 6.15.5 diff --git a/charts/monitoring/dashboards/README.md b/charts/monitoring/dashboards/README.md new file mode 100644 index 0000000..cb801cd --- /dev/null +++ b/charts/monitoring/dashboards/README.md @@ -0,0 +1,2 @@ +Dashboards in this directory are from: +https://github.com/dotdc/grafana-dashboards-kubernetes/releases/tag/v2.1.1 diff --git a/charts/monitoring/dashboards/k8s-addons-prometheus.json b/charts/monitoring/dashboards/k8s-addons-prometheus.json new file mode 100644 index 0000000..02b0d4e --- /dev/null +++ b/charts/monitoring/dashboards/k8s-addons-prometheus.json @@ -0,0 +1,3150 @@ +{ + "__inputs": [ + { + "name": "DS_PROMETHEUS", + "label": "Prometheus", + "description": "", + "type": "datasource", + "pluginId": "prometheus", + "pluginName": "Prometheus" + } + ], + "__elements": [], + "__requires": [ + { + "type": "grafana", + "id": "grafana", + "name": "Grafana", + "version": "8.5.0" + }, + { + "type": "datasource", + "id": "prometheus", + "name": "Prometheus", + "version": "5.0.0" + }, + { + "type": "panel", + "id": "timeseries", + "name": "Time series", + "version": "" + }, + { + "type": "panel", + "id": "stat", + "name": "Stat", + "version": "" + }, + { + "type": "panel", + "id": "table", + "name": "Table", + "version": "" + } + ], + "annotations": { + "list": [ + { + "builtIn": 1, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "target": { + "limit": 100, + "matchAny": false, + "tags": [], + "type": "dashboard" + }, + "type": "dashboard" + } + ] + }, + "description": "This is a modern 'Prometheus' dashboard for your Kubernetes cluster(s). Made for kube-prometheus-stack and take advantage of the latest Grafana features. GitHub repository: https://github.com/dotdc/grafana-dashboards-kubernetes", + "editable": true, + "fiscalYearStartMonth": 0, + "graphTooltip": 1, + "links": [], + "liveNow": false, + "panels": [ + { + "collapsed": false, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 89, + "panels": [], + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "refId": "A" + } + ], + "title": "Information", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "?", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "orange", + "value": null + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 6, + "x": 0, + "y": 1 + }, + "id": 78, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "name" + }, + "pluginVersion": "10.0.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "prometheus_build_info{pod=~\"$pod\", cluster=~\"$cluster\"}", + "instant": true, + "interval": "", + "legendFormat": "{{ version }}", + "range": false, + "refId": "A" + } + ], + "title": "Prometheus version", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 1 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 6, + "x": 6, + "y": 1 + }, + "id": 92, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.0.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "up{pod=~\"$pod\", cluster=~\"$cluster\"} < 1", + "instant": true, + "interval": "", + "legendFormat": "__auto", + "range": false, + "refId": "A" + } + ], + "title": "Instance Down", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "text", + "value": null + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 6, + "x": 12, + "y": 1 + }, + "id": 72, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.0.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(prometheus_tsdb_head_series{pod=~\"$pod\", cluster=~\"$cluster\"}) by (pod)", + "interval": "", + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "TSDB Head Series", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "blue", + "value": null + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 6, + "x": 18, + "y": 1 + }, + "id": 94, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "text": {}, + "textMode": "value" + }, + "pluginVersion": "10.0.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(prometheus_sd_discovered_targets{pod=~\"$pod\", cluster=~\"$cluster\"}) by (pod)", + "instant": true, + "interval": "", + "legendFormat": "__auto", + "range": false, + "refId": "A" + } + ], + "title": "Discovered Targets", + "type": "stat" + }, + { + "collapsed": false, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 5 + }, + "id": 64, + "panels": [], + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "refId": "A" + } + ], + "title": "Prometheus", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 6 + }, + "id": 93, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "up{pod=~\"$pod\", cluster=~\"$cluster\"}", + "interval": "", + "legendFormat": "{{ pod }}", + "range": true, + "refId": "A" + } + ], + "title": "Liveness by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 6 + }, + "id": 96, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(prometheus_config_last_reload_successful{pod=~\"$pod\", cluster=~\"$cluster\"}) by (pod)", + "interval": "", + "legendFormat": "{{ pod }}", + "range": true, + "refId": "A" + } + ], + "title": "Config - Last Successful Reload by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 14 + }, + "id": 74, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(prometheus_target_scrapes_exceeded_body_size_limit_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "", + "legendFormat": "{{ pod }} - Exceeded body size limit", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(rate(prometheus_target_scrapes_exceeded_sample_limit_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "hide": false, + "legendFormat": "{{ pod }} - Exceeded sample limit", + "range": true, + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(rate(prometheus_target_scrapes_sample_duplicate_timestamp_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "hide": false, + "legendFormat": "{{ pod }} - Duplicate timestamp", + "range": true, + "refId": "C" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(rate(prometheus_target_scrapes_sample_out_of_bounds_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "hide": false, + "legendFormat": "{{ pod }} - Sample out of bounds", + "range": true, + "refId": "D" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(rate(prometheus_target_scrapes_sample_out_of_order_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "hide": false, + "legendFormat": "{{ pod }} - Sample out of order", + "range": true, + "refId": "E" + } + ], + "title": "Target Scrapes Errors by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 14 + }, + "id": 84, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(prometheus_sd_discovered_targets{pod=~\"$pod\", cluster=~\"$cluster\"}) by (pod)", + "interval": "", + "legendFormat": "{{ pod }}", + "range": true, + "refId": "A" + } + ], + "title": "Number of Targets by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "ms" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 22 + }, + "id": 75, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(prometheus_target_sync_length_seconds_sum{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod, scrape_job) * 1000", + "interval": "", + "legendFormat": "{{ pod }} - {{ scrape_job }}", + "range": true, + "refId": "A" + } + ], + "title": "Target Sync by pod, scrape_job", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 22 + }, + "id": 85, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "round(sum(rate(prometheus_target_interval_length_seconds_sum{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval]) / rate(prometheus_target_interval_length_seconds_count{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod))", + "interval": "", + "legendFormat": "{{ pod }}", + "range": true, + "refId": "A" + } + ], + "title": "Average Scrape Interval by pod", + "type": "timeseries" + }, + { + "collapsed": false, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 30 + }, + "id": 98, + "panels": [], + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "refId": "A" + } + ], + "title": "Prometheus TSDB / Query Engine", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 31 + }, + "id": 59, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(prometheus_tsdb_head_series{pod=~\"$pod\", cluster=~\"$cluster\"}) by (pod)", + "interval": "", + "legendFormat": "{{ pod }} - Head Series", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(prometheus_tsdb_head_chunks{pod=~\"$pod\", cluster=~\"$cluster\"}) by (pod)", + "hide": false, + "legendFormat": "{{ pod }} - Head Chunks", + "range": true, + "refId": "B" + } + ], + "title": "TSDB Head Series & Chunks by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 31 + }, + "id": 60, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(prometheus_tsdb_head_samples_appended_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "", + "legendFormat": "{{ pod }}", + "range": true, + "refId": "A" + } + ], + "title": "TSDB Head samples appended - rate by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 39 + }, + "id": 101, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(prometheus_tsdb_blocks_loaded{pod=~\"$pod\", cluster=~\"$cluster\"}) by (pod)", + "interval": "", + "legendFormat": "{{ pod }} - Head Series", + "range": true, + "refId": "A" + } + ], + "title": "TSDB Blocks Loaded by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 39 + }, + "id": 102, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(prometheus_tsdb_compactions_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "", + "legendFormat": "{{ pod }} - Total Compactions", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(rate(prometheus_tsdb_compactions_triggered_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "hide": false, + "legendFormat": "{{ pod }} - Triggered Compactions", + "range": true, + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(rate(prometheus_tsdb_compactions_skipped_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "hide": false, + "legendFormat": "{{ pod }} - Skipped Compactions", + "range": true, + "refId": "C" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(rate(prometheus_tsdb_compactions_failed_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "hide": false, + "legendFormat": "{{ pod }} - Failed Compactions", + "range": true, + "refId": "D" + } + ], + "title": "TSDB Rate of Compactions by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 47 + }, + "id": 90, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(prometheus_tsdb_reloads_failures_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "", + "legendFormat": "{{ pod }}", + "range": true, + "refId": "A" + } + ], + "title": "TSDB Reload Failures by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 47 + }, + "id": 95, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(prometheus_tsdb_head_series_created_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "", + "legendFormat": "{{ pod }} - Created series", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(rate(prometheus_tsdb_head_series_removed_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "hide": false, + "legendFormat": "{{ pod }} - Deleted series", + "range": true, + "refId": "B" + } + ], + "title": "TSDB Created & Deleted series by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 55 + }, + "id": 73, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(prometheus_engine_query_duration_seconds_count{pod=~\"$pod\", slice=\"inner_eval\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "", + "legendFormat": "{{ pod }}", + "range": true, + "refId": "A" + } + ], + "title": "Engine Query Count by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "ms" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 55 + }, + "id": 86, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "max(prometheus_engine_query_duration_seconds{pod=~\"$pod\", cluster=~\"$cluster\"}) by (pod, slice) * 1000", + "interval": "", + "legendFormat": "{{ pod }} - {{ slice }}", + "range": true, + "refId": "A" + } + ], + "title": "Engine Query Duration by pod, slice", + "type": "timeseries" + }, + { + "collapsed": false, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 63 + }, + "id": 47, + "panels": [], + "targets": [ + { + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "refId": "A" + } + ], + "title": "Resources", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "CPU Cores", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 4, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "limit" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "#F2495C", + "mode": "fixed" + } + }, + { + "id": "custom.fillOpacity", + "value": 0 + } + ] + } + ] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 64 + }, + "id": 29, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(container_cpu_usage_seconds_total{pod=~\"$pod\", image!=\"\", container!=\"\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod, container)", + "interval": "$resolution", + "legendFormat": "{{ pod }} - {{ container }}", + "range": true, + "refId": "A" + } + ], + "title": "CPU Usage by pod, container", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "Bytes", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 64 + }, + "id": 51, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(container_memory_working_set_bytes{pod=~\"$pod\", image!=\"\", container!=\"\", cluster=~\"$cluster\"}) by (pod, container)", + "interval": "", + "legendFormat": "{{ pod }} - {{ container }}", + "range": true, + "refId": "A" + } + ], + "title": "Memory Usage by container", + "type": "timeseries" + }, + { + "collapsed": false, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 72 + }, + "id": 66, + "panels": [], + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "refId": "A" + } + ], + "title": "Storage", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 73 + }, + "id": 62, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(kubelet_volume_stats_used_bytes{persistentvolumeclaim=~\".*prom.*\", cluster=~\"$cluster\"}) by (persistentvolumeclaim) / sum(kubelet_volume_stats_capacity_bytes{persistentvolumeclaim=~\".*prom.*\", cluster=~\"$cluster\"}) by (persistentvolumeclaim)", + "interval": "", + "legendFormat": "{{ persistentvolumeclaim }}", + "range": true, + "refId": "A" + } + ], + "title": "Persistent Volumes - Capacity and usage in %", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 73 + }, + "id": 87, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(kubelet_volume_stats_used_bytes{persistentvolumeclaim=~\".*prom.*\", cluster=~\"$cluster\"}) by (persistentvolumeclaim)", + "interval": "", + "legendFormat": "{{ persistentvolumeclaim }} - Used", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(kubelet_volume_stats_capacity_bytes{persistentvolumeclaim=~\".*prom.*\", cluster=~\"$cluster\"}) by (persistentvolumeclaim)", + "hide": false, + "legendFormat": "{{ persistentvolumeclaim }} - Capacity", + "range": true, + "refId": "B" + } + ], + "title": "Persistent Volumes - Capacity and usage in bytes", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "links": [], + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 81 + }, + "id": 68, + "links": [], + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.4", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "1 - sum(kubelet_volume_stats_inodes_used{persistentvolumeclaim=~\".*prom.*\", cluster=~\"$cluster\"}) by (persistentvolumeclaim) / sum(kubelet_volume_stats_inodes{persistentvolumeclaim=~\".*prom.*\", cluster=~\"$cluster\"}) by (persistentvolumeclaim)", + "format": "time_series", + "interval": "", + "intervalFactor": 1, + "legendFormat": "{{ persistentvolumeclaim }}", + "range": true, + "refId": "A", + "step": 240 + } + ], + "title": "Persistent Volumes - Inodes", + "type": "timeseries" + }, + { + "collapsed": false, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 89 + }, + "id": 45, + "panels": [], + "targets": [ + { + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "refId": "A" + } + ], + "title": "Network", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 90 + }, + "id": 31, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(container_network_receive_bytes_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "$resolution", + "legendFormat": "{{ pod }} - Received", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "- sum(rate(container_network_transmit_bytes_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "$resolution", + "legendFormat": "{{ pod }} - Transmitted", + "range": true, + "refId": "B" + } + ], + "title": "Network - Bandwidth by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "pps" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 90 + }, + "id": 34, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(container_network_receive_packets_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "$resolution", + "legendFormat": "{{ pod }} - Received", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "- sum(rate(container_network_transmit_packets_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "$resolution", + "legendFormat": "{{ pod }} - Transmitted", + "range": true, + "refId": "B" + } + ], + "title": "Network - Packets rate by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "pps" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 98 + }, + "id": 36, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(container_network_receive_packets_dropped_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "$resolution", + "legendFormat": "{{ pod }} - Received", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "- sum(rate(container_network_transmit_packets_dropped_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "$resolution", + "legendFormat": "{{ pod }} - Transmitted", + "range": true, + "refId": "B" + } + ], + "title": "Network - Packets Dropped by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": true, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "pps" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 98 + }, + "id": 37, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(container_network_receive_errors_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "$resolution", + "legendFormat": "{{ pod }} - Received", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "- sum(rate(container_network_transmit_errors_total{pod=~\"$pod\", cluster=~\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "$resolution", + "legendFormat": "{{ pod }} - Transmitted", + "range": true, + "refId": "B" + } + ], + "title": "Network - Errors by pod", + "type": "timeseries" + } + ], + "refresh": "30s", + "revision": 1, + "schemaVersion": 38, + "style": "dark", + "tags": [ + "Kubernetes", + "Prometheus" + ], + "templating": { + "list": [ + { + "current": { + "selected": true, + "text": "Prometheus", + "value": "Prometheus" + }, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "datasource", + "options": [], + "query": "prometheus", + "queryValue": "", + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "type": "datasource" + }, + { + "current": { + "isNone": true, + "selected": false, + "text": "None", + "value": "" + }, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_node_info,cluster)", + "hide": 0, + "includeAll": false, + "multi": false, + "name": "cluster", + "options": [], + "query": { + "qryType": 1, + "query": "label_values(kube_node_info,cluster)", + "refId": "PrometheusVariableQueryEditor-VariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + }, + { + "current": { + "selected": false, + "text": "All", + "value": "$__all" + }, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(prometheus_build_info{cluster=\"$cluster\"}, pod)", + "hide": 0, + "includeAll": true, + "multi": false, + "name": "pod", + "options": [], + "query": { + "query": "label_values(prometheus_build_info{cluster=\"$cluster\"}, pod)", + "refId": "StandardVariableQuery" + }, + "refresh": 2, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "tagValuesQuery": "", + "tagsQuery": "", + "type": "query", + "useTags": false + }, + { + "current": { + "selected": false, + "text": "30s", + "value": "30s" + }, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "resolution", + "options": [ + { + "selected": false, + "text": "1s", + "value": "1s" + }, + { + "selected": false, + "text": "15s", + "value": "15s" + }, + { + "selected": true, + "text": "30s", + "value": "30s" + }, + { + "selected": false, + "text": "1m", + "value": "1m" + }, + { + "selected": false, + "text": "3m", + "value": "3m" + }, + { + "selected": false, + "text": "5m", + "value": "5m" + } + ], + "query": "1s, 15s, 30s, 1m, 3m, 5m", + "queryValue": "", + "skipUrlSync": false, + "type": "custom" + } + ] + }, + "time": { + "from": "now-15m", + "to": "now" + }, + "timepicker": {}, + "timezone": "", + "title": "Prometheus", + "uid": "k8s_addons_prometheus", + "version": 3, + "weekStart": "" +} \ No newline at end of file diff --git a/charts/monitoring/dashboards/k8s-addons-trivy-operator.json b/charts/monitoring/dashboards/k8s-addons-trivy-operator.json new file mode 100644 index 0000000..7cd8d08 --- /dev/null +++ b/charts/monitoring/dashboards/k8s-addons-trivy-operator.json @@ -0,0 +1,2696 @@ +{ + "__inputs": [ + { + "name": "DS_PROMETHEUS", + "label": "Prometheus", + "description": "", + "type": "datasource", + "pluginId": "prometheus", + "pluginName": "Prometheus" + } + ], + "__elements": [], + "__requires": [ + { + "type": "grafana", + "id": "grafana", + "name": "Grafana", + "version": "8.5.0" + }, + { + "type": "datasource", + "id": "prometheus", + "name": "Prometheus", + "version": "5.0.0" + }, + { + "type": "panel", + "id": "timeseries", + "name": "Time series", + "version": "" + }, + { + "type": "panel", + "id": "stat", + "name": "Stat", + "version": "" + }, + { + "type": "panel", + "id": "table", + "name": "Table", + "version": "" + } + ], + "annotations": { + "list": [ + { + "builtIn": 1, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "target": { + "limit": 100, + "matchAny": false, + "tags": [], + "type": "dashboard" + }, + "type": "dashboard" + } + ] + }, + "description": "This is a modern dashboard for the Trivy Operator from Aqua Security. Made to take advantage of the latest Grafana features. GitHub repository: https://github.com/dotdc/grafana-dashboards-kubernetes", + "editable": true, + "fiscalYearStartMonth": 0, + "graphTooltip": 1, + "links": [], + "liveNow": false, + "panels": [ + { + "collapsed": false, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 43, + "panels": [], + "title": "Vulnerabilities", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 0, + "y": 1 + }, + "id": 51, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_image_vulnerabilities{severity=\"Critical\", namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "CRITICAL", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "orange", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 4, + "y": 1 + }, + "id": 50, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_image_vulnerabilities{severity=\"High\", namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "HIGH", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "yellow", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 8, + "y": 1 + }, + "id": 49, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_image_vulnerabilities{severity=\"Medium\", namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "MEDIUM", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "blue", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 12, + "y": 1 + }, + "id": 60, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_image_vulnerabilities{severity=\"Low\", namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "LOW", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "purple", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 16, + "y": 1 + }, + "id": 52, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_image_vulnerabilities{severity=\"Unknown\", namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "UNKNOWN", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "text", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 20, + "y": 1 + }, + "id": 39, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_image_vulnerabilities{namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "TOTAL", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 15, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "blue", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 5 + }, + "id": 58, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.5.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_image_vulnerabilities{cluster=~\"$cluster\"}) by (namespace)", + "instant": false, + "interval": "$resolution", + "legendFormat": "{{namespace}}", + "range": true, + "refId": "A" + } + ], + "title": "Total vulnerabilities by namespaces", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 15, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "blue", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Critical" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "red", + "mode": "fixed" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "High" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "orange", + "mode": "fixed" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Medium" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "yellow", + "mode": "fixed" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Low" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "blue", + "mode": "fixed" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Unknown" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "purple", + "mode": "fixed" + } + } + ] + } + ] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 5 + }, + "id": 61, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.5.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_image_vulnerabilities{cluster=~\"$cluster\"}) by (severity)", + "instant": false, + "interval": "$resolution", + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Total vulnerabilities by severity", + "type": "timeseries" + }, + { + "collapsed": false, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 13 + }, + "id": 85, + "panels": [], + "title": "Vulnerability Details", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "custom": { + "align": "auto", + "displayMode": "auto", + "filterable": true, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "orange", + "value": 80 + } + ] + } + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "severity" + }, + "properties": [ + { + "id": "mappings", + "value": [ + { + "options": { + "Critical": { + "color": "red", + "index": 0 + }, + "High": { + "color": "orange", + "index": 1 + }, + "Low": { + "color": "blue", + "index": 3 + }, + "Medium": { + "color": "yellow", + "index": 2 + }, + "Unknown": { + "color": "purple", + "index": 4 + } + }, + "type": "value" + } + ] + }, + { + "id": "custom.displayMode", + "value": "color-text" + } + ] + } + ] + }, + "gridPos": { + "h": 12, + "w": 24, + "x": 0, + "y": 14 + }, + "id": 83, + "options": { + "footer": { + "enablePagination": true, + "fields": [ + "Value" + ], + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": true, + "sortBy": [] + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_image_vulnerabilities{namespace=~\"$namespace\", cluster=~\"$cluster\"}) by (namespace, image_registry, image_repository, image_tag, severity) > 0", + "format": "table", + "instant": false, + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Vulnerability count per image and severity in $namespace namespace(s)", + "transformations": [ + { + "id": "organize", + "options": { + "excludeByName": { + "Time": true, + "Value": false + }, + "indexByName": { + "Time": 0, + "Value": 6, + "image_registry": 2, + "image_repository": 3, + "image_tag": 4, + "namespace": 1, + "severity": 5 + }, + "renameByName": { + "Value": "Nb of vulnerabilities", + "image_registry": "Image Registry", + "image_repository": "Image Repository", + "image_tag": "Image Tag", + "namespace": "Namespace", + "severity": "Severity" + } + } + }, + { + "id": "groupBy", + "options": { + "fields": { + "All values": { + "aggregations": [], + "operation": "groupby" + }, + "Count": { + "aggregations": [], + "operation": "groupby" + }, + "Image Registry": { + "aggregations": [], + "operation": "groupby" + }, + "Image Repository": { + "aggregations": [], + "operation": "groupby" + }, + "Image Tag": { + "aggregations": [], + "operation": "groupby" + }, + "Namespace": { + "aggregations": [], + "operation": "groupby" + }, + "Nb of vulnerabilities": { + "aggregations": [], + "operation": "groupby" + }, + "Severity": { + "aggregations": [], + "operation": "groupby" + }, + "Value": { + "aggregations": [], + "operation": "groupby" + }, + "image_registry": { + "aggregations": [], + "operation": "groupby" + }, + "image_repository": { + "aggregations": [], + "operation": "groupby" + }, + "image_tag": { + "aggregations": [], + "operation": "groupby" + }, + "namespace": { + "aggregations": [], + "operation": "groupby" + }, + "severity": { + "aggregations": [], + "operation": "groupby" + } + } + } + } + ], + "type": "table" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "Require operator.metricsVulnIdEnabled: true", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "displayMode": "auto", + "filterable": true, + "inspect": false + }, + "links": [], + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "blue", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "severity" + }, + "properties": [ + { + "id": "mappings", + "value": [ + { + "options": { + "Critical": { + "color": "red", + "index": 0 + }, + "High": { + "color": "orange", + "index": 1 + }, + "Low": { + "color": "blue", + "index": 3 + }, + "Medium": { + "color": "yellow", + "index": 2 + }, + "Unknown": { + "color": "purple", + "index": 4 + } + }, + "type": "value" + } + ] + }, + { + "id": "custom.displayMode", + "value": "color-text" + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "vuln_id" + }, + "properties": [ + { + "id": "links", + "value": [ + { + "targetBlank": true, + "title": "https://nvd.nist.gov/vuln/detail/${__value.text}", + "url": "https://nvd.nist.gov/vuln/detail/${__value.text}" + } + ] + } + ] + } + ] + }, + "gridPos": { + "h": 12, + "w": 24, + "x": 0, + "y": 26 + }, + "id": 78, + "options": { + "footer": { + "enablePagination": true, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": true, + "sortBy": [] + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_vulnerability_id{vuln_id=~\"CVE.*\", namespace=~\"$namespace\", cluster=~\"$cluster\"}) by (namespace, image_registry, image_repository, image_tag, vuln_id, severity)", + "format": "table", + "instant": false, + "interval": "$resolution", + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Detaillled CVE vulnerabilities in $namespace namespace(s)", + "transformations": [ + { + "id": "organize", + "options": { + "excludeByName": { + "Time": true, + "Value": true, + "__name__": true, + "container": true, + "endpoint": true, + "instance": true, + "job": true, + "namespace": false, + "service": true + }, + "indexByName": { + "Time": 0, + "Value": 7, + "image_registry": 2, + "image_repository": 3, + "image_tag": 4, + "namespace": 1, + "severity": 6, + "vuln_id": 5 + }, + "renameByName": { + "image_namespace": "namespace", + "image_registry": "Image Registry", + "image_repository": "Image Repository", + "image_tag": "Image Tag", + "namespace": "Namespace", + "severity": "Severity", + "vuln_id": "Vulnerability", + "vulnerability_id": "" + } + } + }, + { + "id": "groupBy", + "options": { + "fields": { + "Image Registry": { + "aggregations": [], + "operation": "groupby" + }, + "Image Repository": { + "aggregations": [], + "operation": "groupby" + }, + "Image Tag": { + "aggregations": [], + "operation": "groupby" + }, + "Namespace": { + "aggregations": [], + "operation": "groupby" + }, + "Severity": { + "aggregations": [], + "operation": "groupby" + }, + "Value": { + "aggregations": [ + "lastNotNull" + ] + }, + "Vulnerability": { + "aggregations": [], + "operation": "groupby" + }, + "image_namespace": { + "aggregations": [], + "operation": "groupby" + }, + "namespace": { + "aggregations": [], + "operation": "groupby" + }, + "severity": { + "aggregations": [], + "operation": "groupby" + }, + "vuln_id": { + "aggregations": [], + "operation": "groupby" + }, + "vulnerability_id": { + "aggregations": [], + "operation": "groupby" + } + } + } + } + ], + "type": "table" + }, + { + "collapsed": false, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 38 + }, + "id": 47, + "panels": [], + "title": "Config Audit Reports", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 0, + "y": 39 + }, + "id": 56, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_resource_configaudits{severity=\"Critical\", namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "CRITICAL", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "orange", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 4, + "y": 39 + }, + "id": 55, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_resource_configaudits{severity=\"High\", namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "HIGH", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "yellow", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 8, + "y": 39 + }, + "id": 54, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_resource_configaudits{severity=\"Medium\", namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "MEDIUM", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "blue", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 12, + "y": 39 + }, + "id": 53, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_resource_configaudits{severity=\"Low\", namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "LOW", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "text", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 16, + "y": 39 + }, + "id": 65, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_resource_configaudits{namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "TOTAL", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 15, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "blue", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 43 + }, + "id": 62, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.5.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_resource_configaudits{cluster=~\"$cluster\"}) by (namespace)", + "instant": false, + "interval": "$resolution", + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Total config audit report by namespaces", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 15, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "blue", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Critical" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "red", + "mode": "fixed" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "High" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "orange", + "mode": "fixed" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Medium" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "yellow", + "mode": "fixed" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Low" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "blue", + "mode": "fixed" + } + } + ] + } + ] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 43 + }, + "id": 63, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.5.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_resource_configaudits{cluster=~\"$cluster\"}) by (severity)", + "instant": false, + "interval": "$resolution", + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Total config audit report by severity", + "type": "timeseries" + }, + { + "collapsed": false, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 51 + }, + "id": 68, + "panels": [], + "title": "RBAC Assessments", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 0, + "y": 52 + }, + "id": 72, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_role_rbacassessments{severity=\"Critical\", namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "CRITICAL", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "orange", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 4, + "y": 52 + }, + "id": 71, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_role_rbacassessments{severity=\"High\", namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "HIGH", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "yellow", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 8, + "y": 52 + }, + "id": 70, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_role_rbacassessments{severity=\"Medium\", namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "MEDIUM", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "blue", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 12, + "y": 52 + }, + "id": 69, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_role_rbacassessments{severity=\"Low\", namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "LOW", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "text", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 4, + "x": 16, + "y": 52 + }, + "id": 73, + "options": { + "colorMode": "value", + "graphMode": "area", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "textMode": "auto" + }, + "pluginVersion": "9.3.8", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_role_rbacassessments{namespace=~\"$namespace\", cluster=~\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "__auto", + "refId": "A" + } + ], + "title": "TOTAL", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 15, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "blue", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 56 + }, + "id": 74, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.5.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_role_rbacassessments{cluster=~\"$cluster\"}) by (namespace)", + "instant": false, + "interval": "$resolution", + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Total RBAC Assessments by namespaces", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 15, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "blue", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Critical" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "red", + "mode": "fixed" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "High" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "orange", + "mode": "fixed" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Medium" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "yellow", + "mode": "fixed" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Low" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "blue", + "mode": "fixed" + } + } + ] + } + ] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 56 + }, + "id": 75, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.5.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_role_rbacassessments{cluster=~\"$cluster\"}) by (severity)", + "instant": false, + "interval": "$resolution", + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Total RBAC Assessments by severity", + "type": "timeseries" + }, + { + "collapsed": false, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 64 + }, + "id": 81, + "panels": [], + "title": "Exposed Secrets", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 15, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "blue", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 24, + "x": 0, + "y": 65 + }, + "id": 76, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.5.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(trivy_image_exposedsecrets{cluster=~\"$cluster\"}) by (namespace)", + "instant": false, + "interval": "$resolution", + "legendFormat": "__auto", + "range": true, + "refId": "A" + } + ], + "title": "Total Exposed Secrets by namespaces", + "type": "timeseries" + } + ], + "refresh": "30s", + "schemaVersion": 37, + "style": "dark", + "tags": [ + "Prometheus", + "Addons", + "Trivy", + "Trivy-operator" + ], + "templating": { + "list": [ + { + "current": { + "selected": false, + "text": "Prometheus", + "value": "Prometheus" + }, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "datasource", + "options": [], + "query": "prometheus", + "queryValue": "", + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "type": "datasource" + }, + { + "current": { + "isNone": true, + "selected": false, + "text": "None", + "value": "" + }, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_node_info,cluster)", + "hide": 0, + "includeAll": false, + "multi": false, + "name": "cluster", + "options": [], + "query": { + "qryType": 1, + "query": "label_values(kube_node_info,cluster)", + "refId": "PrometheusVariableQueryEditor-VariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + }, + { + "current": { + "selected": true, + "text": [ + "All" + ], + "value": [ + "$__all" + ] + }, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_pod_info{cluster=\"$cluster\"}, namespace)", + "hide": 0, + "includeAll": true, + "multi": true, + "name": "namespace", + "options": [], + "query": { + "query": "label_values(kube_pod_info{cluster=\"$cluster\"}, namespace)", + "refId": "StandardVariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + }, + { + "current": { + "selected": true, + "text": "30s", + "value": "30s" + }, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "resolution", + "options": [ + { + "selected": false, + "text": "1s", + "value": "1s" + }, + { + "selected": false, + "text": "15s", + "value": "15s" + }, + { + "selected": true, + "text": "30s", + "value": "30s" + }, + { + "selected": false, + "text": "1m", + "value": "1m" + }, + { + "selected": false, + "text": "3m", + "value": "3m" + }, + { + "selected": false, + "text": "5m", + "value": "5m" + } + ], + "query": "1s, 15s, 30s, 1m, 3m, 5m", + "queryValue": "", + "skipUrlSync": false, + "type": "custom" + } + ] + }, + "time": { + "from": "now-1h", + "to": "now" + }, + "timepicker": {}, + "timezone": "", + "title": "Trivy Operator - Vulnerabilities", + "uid": "security_trivy_operator", + "version": 12, + "weekStart": "" +} diff --git a/charts/monitoring/dashboards/k8s-system-api-server.json b/charts/monitoring/dashboards/k8s-system-api-server.json new file mode 100644 index 0000000..2fceda8 --- /dev/null +++ b/charts/monitoring/dashboards/k8s-system-api-server.json @@ -0,0 +1,1363 @@ +{ + "__inputs": [ + { + "name": "DS_PROMETHEUS", + "label": "Prometheus", + "description": "", + "type": "datasource", + "pluginId": "prometheus", + "pluginName": "Prometheus" + } + ], + "__elements": [], + "__requires": [ + { + "type": "grafana", + "id": "grafana", + "name": "Grafana", + "version": "8.4.4" + }, + { + "type": "datasource", + "id": "prometheus", + "name": "Prometheus", + "version": "5.0.0" + }, + { + "type": "panel", + "id": "timeseries", + "name": "Time series", + "version": "" + }, + { + "type": "panel", + "id": "stat", + "name": "Stat", + "version": "" + } + ], + "annotations": { + "list": [ + { + "builtIn": 1, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "target": { + "limit": 100, + "matchAny": false, + "tags": [], + "type": "dashboard" + }, + "type": "dashboard" + } + ] + }, + "description": "This is a modern API Server dashboard for your Kubernetes cluster(s). Made for kube-prometheus-stack and take advantage of the latest Grafana features. GitHub repository: https://github.com/dotdc/grafana-dashboards-kubernetes", + "editable": true, + "fiscalYearStartMonth": 0, + "graphTooltip": 1, + "links": [], + "liveNow": false, + "panels": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [ + { + "options": { + "0": { + "text": "DOWN" + }, + "1": { + "text": "UP" + } + }, + "type": "value" + } + ], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "green", + "value": 1 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 0 + }, + "id": 42, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "textMode": "value_and_name" + }, + "pluginVersion": "10.0.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "up{job=\"apiserver\", cluster=~\"$cluster\"}", + "interval": "", + "legendFormat": "{{ instance }}", + "refId": "A" + } + ], + "title": "API Server - Health Status", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "__name__" + }, + "properties": [ + { + "id": "custom.width", + "value": 188 + } + ] + } + ] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 0 + }, + "id": 60, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": true, + "sortBy": [ + { + "desc": false, + "displayName": "removed_release" + } + ] + }, + "pluginVersion": "10.0.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "apiserver_requested_deprecated_apis{cluster=~\"$cluster\"}", + "interval": "", + "legendFormat": "", + "refId": "A" + } + ], + "title": "Deprecated Kubernetes Resources", + "transformations": [ + { + "id": "labelsToFields", + "options": { + "keepLabels": [ + "group", + "job", + "removed_release", + "resource", + "version", + "name" + ], + "mode": "columns" + } + }, + { + "id": "merge", + "options": {} + }, + { + "id": "organize", + "options": { + "excludeByName": { + "Time": true, + "Value": true, + "job": true + }, + "indexByName": { + "Time": 6, + "Value": 7, + "group": 1, + "job": 5, + "namespace": 0, + "removed_release": 4, + "resource": 3, + "version": 2 + }, + "renameByName": {} + } + }, + { + "id": "groupBy", + "options": { + "fields": { + "group": { + "aggregations": [ + "lastNotNull" + ], + "operation": "groupby" + }, + "job": { + "aggregations": [], + "operation": "groupby" + }, + "namespace": { + "aggregations": [ + "lastNotNull" + ], + "operation": "groupby" + }, + "removed_release": { + "aggregations": [], + "operation": "groupby" + }, + "resource": { + "aggregations": [ + "lastNotNull" + ], + "operation": "groupby" + }, + "version": { + "aggregations": [], + "operation": "groupby" + } + } + } + } + ], + "type": "table" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 8 + }, + "id": 38, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum by (code) (rate(apiserver_request_total{cluster=~\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "{{ code }}", + "refId": "A" + } + ], + "title": "API Server - HTTP Requests by code", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 8 + }, + "id": 39, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum by (verb) (rate(apiserver_request_total{cluster=~\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "{{ verb}}", + "refId": "A" + } + ], + "title": "API Server - HTTP Requests by verb", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "ms" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 16 + }, + "id": 53, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(apiserver_request_duration_seconds_sum{job=\"apiserver\", cluster=~\"$cluster\"}[$__rate_interval])) by (instance)\n/\nsum(rate(apiserver_request_duration_seconds_count{job=\"apiserver\", cluster=~\"$cluster\"}[$__rate_interval])) by (instance)", + "interval": "$resolution", + "legendFormat": "{{ instance }}", + "refId": "A" + } + ], + "title": "API Server - HTTP Requests Latency by instance", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "ms" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 16 + }, + "id": 54, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(apiserver_request_duration_seconds_sum{job=\"apiserver\", cluster=~\"$cluster\"}[$__rate_interval])) by (verb)\n/\nsum(rate(apiserver_request_duration_seconds_count{job=\"apiserver\", cluster=~\"$cluster\"}[$__rate_interval])) by (verb)", + "interval": "$resolution", + "legendFormat": "{{ verb }}", + "refId": "A" + } + ], + "title": "API Server - HTTP Requests Latency by verb", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 24 + }, + "id": 50, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum by(instance) (rate(apiserver_request_total{code=~\"5..\", job=\"apiserver\", cluster=~\"$cluster\"}[$__rate_interval]))\n / sum by(instance) (rate(apiserver_request_total{job=\"apiserver\", cluster=~\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "{{ instance }}", + "refId": "A" + } + ], + "title": "API Server - Errors by Instance", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 24 + }, + "id": 51, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum by(verb) (rate(apiserver_request_total{code=~\"5..\",job=\"apiserver\", cluster=~\"$cluster\"}[$__rate_interval]))\n / sum by(verb) (rate(apiserver_request_total{job=\"apiserver\", cluster=~\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "{{ verb }}", + "refId": "A" + } + ], + "title": "API Server - Errors by verb", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "normal" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 32 + }, + "id": 40, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(apiserver_request_total{cluster=~\"$cluster\"}[$__rate_interval])) by (instance)", + "interval": "$resolution", + "legendFormat": "{{ instance }}", + "refId": "A" + } + ], + "title": "API Server - Stacked HTTP Requests by instance", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 32 + }, + "id": 56, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(workqueue_depth{job=\"apiserver\", cluster=~\"$cluster\"}[$__rate_interval])) by (instance)", + "interval": "$resolution", + "legendFormat": "{{ instance }}", + "refId": "A" + } + ], + "title": "API Server - Work Queue by instance", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 40 + }, + "id": 47, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "rate(process_cpu_seconds_total{job=\"apiserver\", cluster=~\"$cluster\"}[$__rate_interval])", + "interval": "$resolution", + "legendFormat": "{{ instance }}", + "refId": "A" + } + ], + "title": "API Server - CPU Usage by instance", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 40 + }, + "id": 48, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "process_resident_memory_bytes{job=\"apiserver\", cluster=~\"$cluster\"}", + "interval": "$resolution", + "legendFormat": "{{ instance }}", + "refId": "A" + } + ], + "title": "API Server - Memory Usage by instance", + "type": "timeseries" + } + ], + "refresh": "30s", + "schemaVersion": 38, + "style": "dark", + "tags": [ + "Kubernetes", + "Prometheus" + ], + "templating": { + "list": [ + { + "current": { + "selected": false, + "text": "Prometheus", + "value": "Prometheus" + }, + "hide": 0, + "includeAll": false, + "label": "", + "multi": false, + "name": "datasource", + "options": [], + "query": "prometheus", + "queryValue": "", + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "type": "datasource" + }, + { + "current": { + "isNone": true, + "selected": false, + "text": "None", + "value": "" + }, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_node_info,cluster)", + "hide": 0, + "includeAll": false, + "multi": false, + "name": "cluster", + "options": [], + "query": { + "qryType": 1, + "query": "label_values(kube_node_info,cluster)", + "refId": "PrometheusVariableQueryEditor-VariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + }, + { + "current": { + "selected": true, + "text": "30s", + "value": "30s" + }, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "resolution", + "options": [ + { + "selected": false, + "text": "1s", + "value": "1s" + }, + { + "selected": false, + "text": "15s", + "value": "15s" + }, + { + "selected": true, + "text": "30s", + "value": "30s" + }, + { + "selected": false, + "text": "1m", + "value": "1m" + }, + { + "selected": false, + "text": "3m", + "value": "3m" + }, + { + "selected": false, + "text": "5m", + "value": "5m" + } + ], + "query": "1s, 15s, 30s, 1m, 3m, 5m", + "queryValue": "", + "skipUrlSync": false, + "type": "custom" + } + ] + }, + "time": { + "from": "now-1h", + "to": "now" + }, + "timepicker": {}, + "timezone": "", + "title": "Kubernetes / System / API Server", + "uid": "k8s_system_apisrv", + "version": 16, + "weekStart": "" +} diff --git a/charts/monitoring/dashboards/k8s-system-coredns.json b/charts/monitoring/dashboards/k8s-system-coredns.json new file mode 100644 index 0000000..9fb20ba --- /dev/null +++ b/charts/monitoring/dashboards/k8s-system-coredns.json @@ -0,0 +1,1563 @@ +{ + "__inputs": [ + { + "name": "DS_PROMETHEUS", + "label": "Prometheus", + "description": "", + "type": "datasource", + "pluginId": "prometheus", + "pluginName": "Prometheus" + } + ], + "__elements": [], + "__requires": [ + { + "type": "grafana", + "id": "grafana", + "name": "Grafana", + "version": "8.4.4" + }, + { + "type": "datasource", + "id": "prometheus", + "name": "Prometheus", + "version": "5.0.0" + }, + { + "type": "panel", + "id": "timeseries", + "name": "Time series", + "version": "" + }, + { + "type": "panel", + "id": "stat", + "name": "Stat", + "version": "" + } + ], + "annotations": { + "list": [ + { + "builtIn": 1, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "target": { + "limit": 100, + "matchAny": false, + "tags": [], + "type": "dashboard" + }, + "type": "dashboard" + } + ] + }, + "description": "This is a modern CoreDNS dashboard for your Kubernetes cluster(s). Made for kube-prometheus-stack and take advantage of the latest Grafana features. GitHub repository: https://github.com/dotdc/grafana-dashboards-kubernetes", + "editable": true, + "fiscalYearStartMonth": 0, + "graphTooltip": 1, + "links": [], + "liveNow": false, + "panels": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [ + { + "options": { + "0": { + "text": "DOWN" + }, + "1": { + "text": "UP" + } + }, + "type": "value" + } + ], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "green", + "value": 1 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 25, + "options": { + "colorMode": "background", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "vertical", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "textMode": "value_and_name", + "wideLayout": true + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "up{job=~\"$job\", instance=~\"$instance\", cluster=~\"$cluster\"}", + "interval": "", + "legendFormat": "{{ instance }}", + "refId": "A" + } + ], + "title": "CoreDNS - Health Status", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 3 + }, + "id": 19, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "rate(process_cpu_seconds_total{job=~\"$job\", instance=~\"$instance\", cluster=~\"$cluster\"}[$__rate_interval])", + "interval": "$resolution", + "legendFormat": "{{ instance }}", + "refId": "A" + } + ], + "title": "CoreDNS - CPU Usage by instance", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 3 + }, + "id": 21, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "process_resident_memory_bytes{job=~\"$job\", instance=~\"$instance\", cluster=~\"$cluster\"}", + "interval": "", + "legendFormat": "{{ instance }}", + "refId": "A" + } + ], + "title": "CoreDNS - Memory Usage by instance", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 11 + }, + "id": 9, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(coredns_dns_requests_total{instance=~\"$instance\",proto=\"$protocol\", cluster=~\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "total $protocol requests", + "refId": "A" + } + ], + "title": "CoreDNS - Total DNS Requests ($protocol)", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 11 + }, + "id": 7, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(coredns_dns_request_size_bytes_sum{instance=~\"$instance\",proto=\"$protocol\", cluster=~\"$cluster\"}[$__rate_interval])) by (proto) / sum(rate(coredns_dns_request_size_bytes_count{instance=~\"$instance\",proto=\"$protocol\", cluster=~\"$cluster\"}[$__rate_interval])) by (proto)", + "interval": "$resolution", + "legendFormat": "average $protocol packet size", + "refId": "A" + } + ], + "title": "CoreDNS - Average Packet Size ($protocol)", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 19 + }, + "id": 2, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(coredns_dns_requests_total{instance=~\"$instance\", cluster=~\"$cluster\"}[$__rate_interval])) by (type)", + "interval": "$resolution", + "legendFormat": "{{ type }}", + "refId": "A" + } + ], + "title": "CoreDNS - Requests by type", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 19 + }, + "id": 4, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(coredns_dns_responses_total{instance=~\"$instance\", cluster=~\"$cluster\"}[$__rate_interval])) by (rcode)", + "interval": "$resolution", + "legendFormat": "{{ rcode }}", + "refId": "A" + } + ], + "title": "CoreDNS - Requests by return code", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 27 + }, + "id": 23, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(coredns_forward_requests_total{cluster=~\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "total forward requests", + "refId": "A" + } + ], + "title": "CoreDNS - Total Forward Requests", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 27 + }, + "id": 13, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(coredns_forward_responses_total{rcode=~\"SERVFAIL|REFUSED\", cluster=~\"$cluster\"}[$__rate_interval])) by (rcode)", + "interval": "$resolution", + "legendFormat": "{{ rcode }}", + "refId": "A" + } + ], + "title": "CoreDNS - DNS Errors", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 35 + }, + "id": 17, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(coredns_cache_hits_total{instance=~\"$instance\", cluster=~\"$cluster\"}[$__rate_interval])) by (type)", + "interval": "$resolution", + "legendFormat": "{{ type }}", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(coredns_cache_misses_total{instance=~\"$instance\", cluster=~\"$cluster\"}[$__rate_interval])) by (type)", + "interval": "$resolution", + "legendFormat": "misses", + "refId": "B" + } + ], + "title": "CoreDNS - Cache Hits / Misses", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 35 + }, + "id": 15, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(coredns_cache_entries{cluster=~\"$cluster\"}) by (type)", + "interval": "", + "legendFormat": "{{ type }}", + "refId": "A" + } + ], + "title": "CoreDNS - Cache Size", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "custom": { + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "scaleDistribution": { + "type": "linear" + } + } + }, + "overrides": [] + }, + "gridPos": { + "h": 10, + "w": 12, + "x": 0, + "y": 43 + }, + "id": 27, + "options": { + "calculate": false, + "cellGap": 1, + "color": { + "exponent": 0.5, + "fill": "dark-orange", + "mode": "scheme", + "reverse": false, + "scale": "exponential", + "scheme": "RdYlBu", + "steps": 64 + }, + "exemplars": { + "color": "rgba(255,0,255,0.7)" + }, + "filterValues": { + "le": 1e-9 + }, + "legend": { + "show": true + }, + "rowsFrame": { + "layout": "auto" + }, + "tooltip": { + "mode": "single", + "showColorScale": false, + "yHistogram": false + }, + "yAxis": { + "axisPlacement": "left", + "reverse": false, + "unit": "s" + } + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(increase(coredns_dns_request_duration_seconds_bucket{instance=~\"$instance\", cluster=~\"$cluster\"}[$__rate_interval])) by (le)", + "format": "heatmap", + "legendFormat": "{{le}}", + "range": true, + "refId": "A" + } + ], + "title": "CoreDNS - DNS request duration", + "type": "heatmap" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "custom": { + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "scaleDistribution": { + "type": "linear" + } + } + }, + "overrides": [] + }, + "gridPos": { + "h": 10, + "w": 12, + "x": 12, + "y": 43 + }, + "id": 28, + "options": { + "calculate": false, + "cellGap": 1, + "color": { + "exponent": 0.5, + "fill": "dark-orange", + "mode": "scheme", + "reverse": false, + "scale": "exponential", + "scheme": "RdYlBu", + "steps": 64 + }, + "exemplars": { + "color": "rgba(255,0,255,0.7)" + }, + "filterValues": { + "le": 1e-9 + }, + "legend": { + "show": true + }, + "rowsFrame": { + "layout": "auto" + }, + "tooltip": { + "mode": "single", + "showColorScale": false, + "yHistogram": false + }, + "yAxis": { + "axisPlacement": "left", + "reverse": false, + "unit": "decbytes" + } + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(increase(coredns_dns_request_size_bytes_bucket{instance=~\"$instance\", le!=\"0\", cluster=~\"$cluster\"}[$__rate_interval])) by (le)", + "format": "heatmap", + "legendFormat": "{{le}}", + "range": true, + "refId": "A" + } + ], + "title": "CoreDNS - DNS request size", + "type": "heatmap" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "custom": { + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "scaleDistribution": { + "type": "linear" + } + } + }, + "overrides": [] + }, + "gridPos": { + "h": 10, + "w": 12, + "x": 0, + "y": 53 + }, + "id": 29, + "options": { + "calculate": false, + "cellGap": 1, + "color": { + "exponent": 0.5, + "fill": "dark-orange", + "mode": "scheme", + "reverse": false, + "scale": "exponential", + "scheme": "RdYlBu", + "steps": 64 + }, + "exemplars": { + "color": "rgba(255,0,255,0.7)" + }, + "filterValues": { + "le": 1e-9 + }, + "legend": { + "show": true + }, + "rowsFrame": { + "layout": "auto" + }, + "tooltip": { + "mode": "single", + "showColorScale": false, + "yHistogram": false + }, + "yAxis": { + "axisPlacement": "left", + "reverse": false, + "unit": "decbytes" + } + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(increase(coredns_dns_response_size_bytes_bucket{instance=~\"$instance\", le!=\"0\", cluster=~\"$cluster\"}[$__rate_interval])) by (le)", + "format": "heatmap", + "legendFormat": "{{le}}", + "range": true, + "refId": "A" + } + ], + "title": "CoreDNS - DNS response size", + "type": "heatmap" + } + ], + "refresh": "30s", + "schemaVersion": 39, + "tags": [ + "Kubernetes", + "Prometheus" + ], + "templating": { + "list": [ + { + "current": { + "selected": false, + "text": "Prometheus", + "value": "Prometheus" + }, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "datasource", + "options": [], + "query": "prometheus", + "queryValue": "", + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "type": "datasource" + }, + { + "current": { + "isNone": true, + "selected": false, + "text": "None", + "value": "" + }, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_node_info,cluster)", + "hide": 0, + "includeAll": false, + "multi": false, + "name": "cluster", + "options": [], + "query": { + "qryType": 1, + "query": "label_values(kube_node_info,cluster)", + "refId": "PrometheusVariableQueryEditor-VariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + }, + { + "current": { + "selected": false, + "text": "All", + "value": "$__all" + }, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(up{job=\"$job\", cluster=\"$cluster\"},instance)", + "hide": 0, + "includeAll": true, + "label": "", + "multi": false, + "name": "instance", + "options": [], + "query": { + "qryType": 1, + "query": "label_values(up{job=\"$job\", cluster=\"$cluster\"},instance)", + "refId": "PrometheusVariableQueryEditor-VariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "tagValuesQuery": "", + "tagsQuery": "", + "type": "query", + "useTags": false + }, + { + "allValue": "udp,tcp", + "current": { + "selected": false, + "text": "udp", + "value": "udp" + }, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(coredns_dns_requests_total{cluster=\"$cluster\"}, proto)", + "hide": 0, + "includeAll": false, + "label": "", + "multi": false, + "name": "protocol", + "options": [], + "query": { + "query": "label_values(coredns_dns_requests_total{cluster=\"$cluster\"}, proto)", + "refId": "StandardVariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "tagValuesQuery": "", + "tagsQuery": "", + "type": "query", + "useTags": false + }, + { + "current": { + "selected": false, + "text": "30s", + "value": "30s" + }, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "resolution", + "options": [ + { + "selected": false, + "text": "1s", + "value": "1s" + }, + { + "selected": false, + "text": "15s", + "value": "15s" + }, + { + "selected": true, + "text": "30s", + "value": "30s" + }, + { + "selected": false, + "text": "1m", + "value": "1m" + }, + { + "selected": false, + "text": "3m", + "value": "3m" + }, + { + "selected": false, + "text": "5m", + "value": "5m" + } + ], + "query": "1s, 15s, 30s, 1m, 3m, 5m", + "queryValue": "", + "skipUrlSync": false, + "type": "custom" + }, + { + "current": { + "selected": true, + "text": [ + "coredns" + ], + "value": [ + "coredns" + ] + }, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(coredns_build_info{cluster=\"$cluster\"},job)", + "hide": 0, + "includeAll": false, + "multi": true, + "name": "job", + "options": [], + "query": { + "qryType": 1, + "query": "label_values(coredns_build_info{cluster=\"$cluster\"},job)", + "refId": "PrometheusVariableQueryEditor-VariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + } + ] + }, + "time": { + "from": "now-1h", + "to": "now" + }, + "timepicker": {}, + "timezone": "", + "title": "Kubernetes / System / CoreDNS", + "uid": "k8s_system_coredns", + "version": 18, + "weekStart": "" +} diff --git a/charts/monitoring/dashboards/k8s-views-global.json b/charts/monitoring/dashboards/k8s-views-global.json new file mode 100644 index 0000000..45e3c8d --- /dev/null +++ b/charts/monitoring/dashboards/k8s-views-global.json @@ -0,0 +1,3501 @@ +{ + "__inputs": [ + { + "name": "DS_PROMETHEUS", + "label": "Prometheus", + "description": "", + "type": "datasource", + "pluginId": "prometheus", + "pluginName": "Prometheus" + } + ], + "__elements": {}, + "__requires": [ + { + "type": "panel", + "id": "bargauge", + "name": "Bar gauge", + "version": "" + }, + { + "type": "grafana", + "id": "grafana", + "name": "Grafana", + "version": "10.3.1" + }, + { + "type": "datasource", + "id": "prometheus", + "name": "Prometheus", + "version": "1.0.0" + }, + { + "type": "panel", + "id": "stat", + "name": "Stat", + "version": "" + }, + { + "type": "panel", + "id": "timeseries", + "name": "Time series", + "version": "" + } + ], + "annotations": { + "list": [ + { + "builtIn": 1, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "target": { + "limit": 100, + "matchAny": false, + "tags": [], + "type": "dashboard" + }, + "type": "dashboard" + } + ] + }, + "description": "This is a modern 'Global View' dashboard for your Kubernetes cluster(s). Made for kube-prometheus-stack and take advantage of the latest Grafana features. GitHub repository: https://github.com/dotdc/grafana-dashboards-kubernetes", + "editable": true, + "fiscalYearStartMonth": 0, + "graphTooltip": 1, + "links": [], + "liveNow": false, + "panels": [ + { + "collapsed": false, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 67, + "panels": [], + "title": "Overview", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "continuous-GrYlRd" + }, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 6, + "x": 0, + "y": 1 + }, + "id": 77, + "options": { + "displayMode": "lcd", + "maxVizHeight": 300, + "minVizHeight": 10, + "minVizWidth": 0, + "namePlacement": "auto", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showUnfilled": true, + "sizing": "auto", + "valueMode": "color" + }, + "pluginVersion": "10.4.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "avg(sum by (instance, cpu) (rate(node_cpu_seconds_total{mode!~\"idle|iowait|steal\", cluster=\"$cluster\", job=\"$job\"}[$__rate_interval])))", + "interval": "", + "legendFormat": "Real Linux", + "range": true, + "refId": "Real Linux" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "avg(sum by (core) (rate(windows_cpu_time_total{mode!=\"idle\", cluster=\"$cluster\"}[$__rate_interval])))", + "hide": false, + "interval": "", + "legendFormat": "Real Windows", + "range": true, + "refId": "Real Windows" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_resource_requests{resource=\"cpu\", cluster=\"$cluster\"}) / sum(machine_cpu_cores{cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Requests", + "range": true, + "refId": "Requests" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_resource_limits{resource=\"cpu\", cluster=\"$cluster\"}) / sum(machine_cpu_cores{cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Limits", + "range": true, + "refId": "Limits" + } + ], + "title": "Global CPU Usage", + "transformations": [ + { + "id": "calculateField", + "options": { + "alias": "Real", + "mode": "reduceRow", + "reduce": { + "include": [ + "Real Linux", + "Real Windows" + ], + "reducer": "mean" + } + } + }, + { + "id": "organize", + "options": { + "excludeByName": { + "Real Linux": true, + "Real Windows": true, + "Time": true + }, + "indexByName": { + "Limits": 5, + "Real": 1, + "Real Linux": 2, + "Real Windows": 3, + "Requests": 4, + "Time": 0 + }, + "renameByName": {} + } + } + ], + "type": "bargauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "continuous-GrYlRd" + }, + "decimals": 2, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "percentage", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 6, + "x": 6, + "y": 1 + }, + "id": 78, + "options": { + "displayMode": "lcd", + "maxVizHeight": 300, + "minVizHeight": 10, + "minVizWidth": 0, + "namePlacement": "auto", + "orientation": "horizontal", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showUnfilled": true, + "sizing": "auto", + "text": {}, + "valueMode": "color" + }, + "pluginVersion": "10.4.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(node_memory_MemTotal_bytes{cluster=\"$cluster\", job=\"$job\"} - node_memory_MemAvailable_bytes{cluster=\"$cluster\", job=\"$job\"}) / sum(node_memory_MemTotal_bytes{cluster=\"$cluster\", job=\"$job\"})", + "hide": false, + "interval": "", + "legendFormat": "Real Linux", + "range": true, + "refId": "Real Linux" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(windows_memory_available_bytes{cluster=\"$cluster\"} + windows_memory_cache_bytes{cluster=\"$cluster\"}) / sum(windows_os_visible_memory_bytes{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Real Windows", + "range": true, + "refId": "Real Windows" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_resource_requests{resource=\"memory\", cluster=\"$cluster\"}) / sum(machine_memory_bytes{cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Requests", + "range": true, + "refId": "Requests" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_resource_limits{resource=\"memory\", cluster=\"$cluster\"}) / sum(machine_memory_bytes{cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Limits", + "range": true, + "refId": "Limits" + } + ], + "title": "Global RAM Usage", + "transformations": [ + { + "id": "calculateField", + "options": { + "alias": "Real", + "mode": "reduceRow", + "reduce": { + "include": [ + "Real Linux", + "Real Windows" + ], + "reducer": "mean" + } + } + }, + { + "id": "organize", + "options": { + "excludeByName": { + "Real Linux": true, + "Real Windows": true, + "Time": true + }, + "includeByName": {}, + "indexByName": { + "Limits": 5, + "Real": 3, + "Real Linux": 1, + "Real Windows": 2, + "Requests": 4, + "Time": 0 + }, + "renameByName": {} + } + } + ], + "type": "bargauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "blue", + "value": null + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 2, + "x": 12, + "y": 1 + }, + "id": 63, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "text": {}, + "textMode": "value", + "wideLayout": true + }, + "pluginVersion": "10.4.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "count(count by (node) (kube_node_info{cluster=\"$cluster\"}))", + "interval": "", + "legendFormat": "", + "range": true, + "refId": "A" + } + ], + "title": "Nodes", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 12, + "w": 10, + "x": 14, + "y": 1 + }, + "id": 52, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(kube_namespace_labels{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Namespaces", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_pod_container_status_running{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Running Containers", + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_pod_status_phase{phase=\"Running\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Running Pods", + "refId": "O" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_service_info{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Services", + "refId": "C" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_endpoint_info{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Endpoints", + "refId": "D" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_ingress_info{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Ingresses", + "refId": "E" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_deployment_labels{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Deployments", + "refId": "F" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_statefulset_labels{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Statefulsets", + "refId": "G" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_daemonset_labels{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Daemonsets", + "refId": "H" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_persistentvolumeclaim_info{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Persistent Volume Claims", + "refId": "I" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_hpa_labels{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Horizontal Pod Autoscalers", + "refId": "J" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_configmap_info{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Configmaps", + "refId": "K" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_secret_info{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Secrets", + "refId": "L" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_networkpolicy_labels{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Network Policies", + "refId": "M" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "count(count by (node) (kube_node_info{cluster=\"$cluster\"}))", + "hide": false, + "interval": "", + "legendFormat": "Nodes", + "refId": "N" + } + ], + "title": "Kubernetes Resource Count", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "blue", + "value": null + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 2, + "x": 12, + "y": 5 + }, + "id": 59, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "text": {}, + "textMode": "value", + "wideLayout": true + }, + "pluginVersion": "10.4.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "count(kube_namespace_created{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "", + "refId": "A" + } + ], + "title": "Namespaces", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "rgb(255, 255, 255)", + "value": null + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 6, + "x": 0, + "y": 9 + }, + "id": 37, + "options": { + "colorMode": "none", + "graphMode": "none", + "justifyMode": "center", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "text": {}, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.4.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(node_cpu_seconds_total{mode!~\"idle|iowait|steal\", cluster=\"$cluster\", job=\"$job\"}[$__rate_interval]))", + "interval": "", + "legendFormat": "Real Linux", + "range": true, + "refId": "Real Linux" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(windows_cpu_time_total{mode!=\"idle\", cluster=\"$cluster\"}[$__rate_interval]))", + "hide": false, + "interval": "", + "legendFormat": "Real Windows", + "range": true, + "refId": "Real Windows" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_resource_requests{resource=\"cpu\", cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Requests", + "range": true, + "refId": "Requests" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_resource_limits{resource=\"cpu\", cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Limits", + "range": true, + "refId": "Limits" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(machine_cpu_cores{cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Total", + "range": true, + "refId": "Total" + } + ], + "title": "CPU Usage", + "transformations": [ + { + "id": "calculateField", + "options": { + "alias": "Real", + "mode": "reduceRow", + "reduce": { + "include": [ + "Real Linux", + "Real Windows" + ], + "reducer": "sum" + } + } + }, + { + "id": "organize", + "options": { + "excludeByName": { + "Real Linux": true, + "Real Windows": true, + "Time": true, + "Total Linux": true, + "Total Windows": true + }, + "indexByName": { + "Limits": 5, + "Real": 3, + "Real Linux": 1, + "Real Windows": 2, + "Requests": 4, + "Time": 0, + "Total": 8, + "Total Linux": 6, + "Total Windows": 7 + }, + "renameByName": {} + } + } + ], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "rgb(255, 255, 255)", + "value": null + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 6, + "x": 6, + "y": 9 + }, + "id": 39, + "options": { + "colorMode": "none", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "text": {}, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.4.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(node_memory_MemTotal_bytes{cluster=\"$cluster\", job=\"$job\"} - node_memory_MemAvailable_bytes{cluster=\"$cluster\", job=\"$job\"})", + "interval": "", + "legendFormat": "Real Linux", + "range": true, + "refId": "Real Linux" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(windows_os_visible_memory_bytes{cluster=\"$cluster\"} - windows_memory_available_bytes{cluster=\"$cluster\"} - windows_memory_cache_bytes{cluster=\"$cluster\"})", + "hide": false, + "interval": "", + "legendFormat": "Real Windows", + "range": true, + "refId": "Real Windows" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_resource_requests{resource=\"memory\", cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Requests", + "range": true, + "refId": "Requests" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_resource_limits{resource=\"memory\", cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Limits", + "range": true, + "refId": "Limits" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(machine_memory_bytes{cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Total", + "range": true, + "refId": "Total" + } + ], + "title": "RAM Usage", + "transformations": [ + { + "id": "calculateField", + "options": { + "alias": "Real", + "mode": "reduceRow", + "reduce": { + "include": [ + "Real Linux", + "Real Windows" + ], + "reducer": "mean" + } + } + }, + { + "id": "organize", + "options": { + "excludeByName": { + "Real Linux": true, + "Real Windows": true, + "Time": true + }, + "includeByName": {}, + "indexByName": { + "Limits": 5, + "Real": 3, + "Real Linux": 1, + "Real Windows": 2, + "Requests": 4, + "Time": 0, + "Total": 6 + }, + "renameByName": {} + } + } + ], + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "blue", + "value": null + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 2, + "x": 12, + "y": 9 + }, + "id": 62, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "text": {}, + "textMode": "value", + "wideLayout": true + }, + "pluginVersion": "10.4.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_pod_status_phase{phase=\"Running\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "", + "refId": "A" + } + ], + "title": "Running Pods", + "type": "stat" + }, + { + "collapsed": false, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 13 + }, + "id": 71, + "panels": [], + "title": "Resources", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "continuous-GrYlRd", + "seriesBy": "last" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "CPU %", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "scheme", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "yellow", + "value": 0.5 + }, + { + "color": "red", + "value": 0.7 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 14 + }, + "id": 72, + "options": { + "legend": { + "calcs": [], + "displayMode": "hidden", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "avg(sum by (instance, cpu) (rate(node_cpu_seconds_total{mode!~\"idle|iowait|steal\", cluster=\"$cluster\", job=\"$job\"}[$__rate_interval])))", + "interval": "$resolution", + "legendFormat": "Linux", + "range": true, + "refId": "Linux" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "1 - avg(rate(windows_cpu_time_total{cluster=\"$cluster\",mode=\"idle\"}[$__rate_interval]))", + "hide": false, + "interval": "$resolution", + "legendFormat": "Windows", + "range": true, + "refId": "Windows" + } + ], + "title": "Cluster CPU Utilization", + "transformations": [ + { + "id": "calculateField", + "options": { + "alias": "CPU usage in %", + "mode": "reduceRow", + "reduce": { + "reducer": "mean" + }, + "replaceFields": true + } + } + ], + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "continuous-GrYlRd" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "MEMORY", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 10, + "gradientMode": "scheme", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "#EAB839", + "value": 0.5 + }, + { + "color": "red", + "value": 0.7 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 14 + }, + "id": 55, + "options": { + "legend": { + "calcs": [ + "mean", + "lastNotNull", + "max", + "min" + ], + "displayMode": "hidden", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(node_memory_MemTotal_bytes{cluster=\"$cluster\", job=\"$job\"} - node_memory_MemAvailable_bytes{cluster=\"$cluster\", job=\"$job\"}) / sum(node_memory_MemTotal_bytes{cluster=\"$cluster\", job=\"$job\"})", + "interval": "$resolution", + "legendFormat": "Linux", + "range": true, + "refId": "Linux" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(windows_os_visible_memory_bytes{cluster=\"$cluster\"} - windows_memory_available_bytes{cluster=\"$cluster\"}) / sum(windows_os_visible_memory_bytes{cluster=\"$cluster\"})", + "hide": false, + "interval": "$resolution", + "legendFormat": "Windows", + "range": true, + "refId": "Windows" + } + ], + "title": "Cluster Memory Utilization", + "transformations": [ + { + "id": "calculateField", + "options": { + "alias": "Memory usage in %", + "mode": "reduceRow", + "reduce": { + "reducer": "mean" + }, + "replaceFields": true + } + } + ], + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "CPU CORES", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 22 + }, + "id": 46, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "10.4.0", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(container_cpu_usage_seconds_total{image!=\"\", cluster=\"$cluster\"}[$__rate_interval])) by (namespace)\n+ on (namespace)\n(sum(rate(windows_container_cpu_usage_seconds_total{container_id!=\"\", cluster=\"$cluster\"}[$__rate_interval]) * on (container_id) group_left (container, pod, namespace) max by ( container, container_id, pod, namespace) (kube_pod_container_info{container_id!=\"\", cluster=\"$cluster\"}) OR kube_namespace_created{cluster=\"$cluster\"} * 0) by (namespace))", + "format": "time_series", + "hide": false, + "interval": "$resolution", + "legendFormat": "{{ namespace }}", + "range": true, + "refId": "A" + } + ], + "title": "CPU Utilization by namespace", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 22 + }, + "id": 50, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(container_memory_working_set_bytes{image!=\"\", cluster=\"$cluster\"}) by (namespace)\n+ on (namespace)\n(sum(windows_container_memory_usage_commit_bytes{container_id!=\"\", cluster=\"$cluster\"} * on (container_id) group_left (container, pod, namespace) max by ( container, container_id, pod, namespace) (kube_pod_container_info{container_id!=\"\", cluster=\"$cluster\"}) OR kube_namespace_created{cluster=\"$cluster\"} * 0) by (namespace))", + "interval": "$resolution", + "legendFormat": "{{ namespace }}", + "range": true, + "refId": "A" + } + ], + "title": "Memory Utilization by namespace", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "CPU %", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 30 + }, + "id": 54, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "avg(sum by (instance, cpu) (rate(node_cpu_seconds_total{mode!~\"idle|iowait|steal\", cluster=\"$cluster\", job=\"$job\"}[$__rate_interval]))) by (instance)", + "interval": "$resolution", + "legendFormat": "{{ node }}", + "range": true, + "refId": "Linux" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "avg(sum by (instance,core) (rate(windows_cpu_time_total{mode!=\"idle\", cluster=\"$cluster\"}[$__rate_interval]))) by (instance)", + "hide": false, + "interval": "$resolution", + "legendFormat": "{{ node }}", + "range": true, + "refId": "Windows" + } + ], + "title": "CPU Utilization by instance", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "MEMORY", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 30 + }, + "id": 73, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(node_memory_MemTotal_bytes{cluster=\"$cluster\", job=\"$job\"} - node_memory_MemAvailable_bytes{cluster=\"$cluster\", job=\"$job\"}) by (instance)", + "hide": false, + "interval": "$resolution", + "legendFormat": "{{ instance }}", + "range": true, + "refId": "Linux" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(windows_os_visible_memory_bytes{cluster=\"$cluster\"} - windows_memory_available_bytes{cluster=\"$cluster\"}) by (instance)", + "hide": false, + "interval": "$resolution", + "legendFormat": "{{ instance }}", + "range": true, + "refId": "Windows" + } + ], + "title": "Memory Utilization by instance", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "No data is generally a good thing here.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "SECONDS", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 38 + }, + "id": 82, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(container_cpu_cfs_throttled_seconds_total{image!=\"\", cluster=\"$cluster\"}[$__rate_interval])) by (namespace) > 0", + "interval": "$resolution", + "legendFormat": "{{ namespace }}", + "range": true, + "refId": "A" + } + ], + "title": "CPU Throttled seconds by namespace", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "No data is generally a good thing here.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "NB", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 38 + }, + "id": 83, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(node_cpu_core_throttles_total{cluster=\"$cluster\", job=\"$job\"}[$__rate_interval])) by (instance)", + "interval": "$resolution", + "legendFormat": "{{ instance }}", + "range": true, + "refId": "A" + } + ], + "title": "CPU Core Throttled by instance", + "type": "timeseries" + }, + { + "collapsed": false, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 46 + }, + "id": 86, + "panels": [], + "title": "Kubernetes", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 9, + "w": 12, + "x": 0, + "y": 47 + }, + "id": 84, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(kube_pod_status_qos_class{cluster=\"$cluster\"}) by (qos_class)", + "interval": "", + "legendFormat": "{{ qos_class }} pods", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_info{cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Total pods", + "range": true, + "refId": "B" + } + ], + "title": "Kubernetes Pods QoS classes", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 9, + "w": 12, + "x": 12, + "y": 47 + }, + "id": 85, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(kube_pod_status_reason{cluster=\"$cluster\"}) by (reason)", + "interval": "", + "legendFormat": "{{ reason }}", + "range": true, + "refId": "A" + } + ], + "title": "Kubernetes Pods Status Reason", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "No data is generally a good thing here.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "points", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 9, + "w": 12, + "x": 0, + "y": 56 + }, + "id": 87, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(increase(container_oom_events_total{cluster=\"$cluster\"}[$__rate_interval])) by (namespace) > 0", + "interval": "", + "legendFormat": "{{ namespace }}", + "range": true, + "refId": "A" + } + ], + "title": "OOM Events by namespace", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "No data is generally a good thing here.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "points", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 9, + "w": 12, + "x": 12, + "y": 56 + }, + "id": 88, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(increase(kube_pod_container_status_restarts_total{cluster=\"$cluster\"}[$__rate_interval])) by (namespace) > 0", + "interval": "", + "legendFormat": "{{ namespace }}", + "range": true, + "refId": "A" + } + ], + "title": "Container Restarts by namespace", + "type": "timeseries" + }, + { + "collapsed": false, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 65 + }, + "id": 69, + "panels": [], + "title": "Network", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "Dropped noisy virtual devices for readability.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "BANDWIDTH", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 66 + }, + "id": 44, + "options": { + "legend": { + "calcs": [], + "displayMode": "hidden", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(node_network_receive_bytes_total{device!~\"(veth|azv|lxc).*\", cluster=\"$cluster\", job=\"$job\"}[$__rate_interval])) by (device)", + "interval": "$resolution", + "legendFormat": "Received : {{ device }}", + "range": true, + "refId": "Linux Received" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "- sum(rate(node_network_transmit_bytes_total{device!~\"(veth|azv|lxc).*\", cluster=\"$cluster\", job=\"$job\"}[$__rate_interval])) by (device)", + "interval": "$resolution", + "legendFormat": "Transmitted : {{ device }}", + "range": true, + "refId": "Linux Transmitted" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(windows_net_bytes_received_total{cluster=\"$cluster\"}[$__rate_interval])) by (nic)", + "hide": false, + "interval": "$resolution", + "legendFormat": "Received : {{ nic }}", + "range": true, + "refId": "Windows Received" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "- sum(rate(windows_net_bytes_sent_total{cluster=\"$cluster\"}[$__rate_interval])) by (nic)", + "hide": false, + "interval": "$resolution", + "legendFormat": "Transmitted : {{ device }}", + "range": true, + "refId": "Windows Transmitted" + } + ], + "title": "Global Network Utilization by device", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "DROPPED PACKETS", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 66 + }, + "id": 53, + "options": { + "legend": { + "calcs": [], + "displayMode": "hidden", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(node_network_receive_drop_total{cluster=\"$cluster\", job=\"$job\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "Linux Packets dropped (receive)", + "range": true, + "refId": "Linux Packets dropped (receive)" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "- sum(rate(node_network_transmit_drop_total{cluster=\"$cluster\", job=\"$job\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "Linux Packets dropped (transmit)", + "range": true, + "refId": "Linux Packets dropped (transmit)" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(windows_net_packets_received_discarded_total{cluster=\"$cluster\"}[$__rate_interval]))", + "hide": false, + "interval": "$resolution", + "legendFormat": "Windows Packets dropped (receive)", + "range": true, + "refId": "Windows Packets dropped (receive)" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "- sum(rate(windows_net_packets_outbound_discarded_total{cluster=\"$cluster\"}[$__rate_interval]))", + "hide": false, + "interval": "$resolution", + "legendFormat": "Windows Packets dropped (transmit)", + "range": true, + "refId": "Windows Packets dropped (transmit)" + } + ], + "title": "Network Saturation - Packets dropped", + "transformations": [ + { + "id": "calculateField", + "options": { + "alias": "Packets dropped (receive)", + "mode": "reduceRow", + "reduce": { + "include": [ + "Linux Packets dropped (receive)", + "Windows Packets dropped (receive)" + ], + "reducer": "mean" + } + } + }, + { + "id": "calculateField", + "options": { + "alias": "Packets dropped (transmit)", + "mode": "reduceRow", + "reduce": { + "include": [ + "Linux Packets dropped (transmit)", + "Windows Packets dropped (transmit)" + ], + "reducer": "mean" + } + } + }, + { + "id": "organize", + "options": { + "excludeByName": { + "Linux Packets dropped (receive)": true, + "Linux Packets dropped (transmit)": true, + "Time": false, + "Windows Packets dropped (receive)": true, + "Windows Packets dropped (transmit)": true + }, + "includeByName": {}, + "indexByName": {}, + "renameByName": {} + } + } + ], + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "BANDWIDTH", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 74 + }, + "id": 79, + "options": { + "legend": { + "calcs": [], + "displayMode": "hidden", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(container_network_receive_bytes_total{cluster=\"$cluster\"}[$__rate_interval])) by (namespace)\n+ on (namespace)\n(sum(rate(windows_container_network_receive_bytes_total{container_id!=\"\", cluster=\"$cluster\"}[$__rate_interval]) * on (container_id) group_left (container, pod, namespace) max by ( container, container_id, pod, namespace) (kube_pod_container_info{container_id!=\"\", cluster=\"$cluster\"}) OR kube_namespace_created{cluster=\"$cluster\"} * 0) by (namespace))", + "interval": "$resolution", + "legendFormat": "Received : {{ namespace }}", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "- (sum(rate(container_network_transmit_bytes_total{cluster=\"$cluster\"}[$__rate_interval])) by (namespace)\n+ on (namespace)\n(sum(rate(windows_container_network_transmit_bytes_total{container_id!=\"\", cluster=\"$cluster\"}[$__rate_interval]) * on (container_id) group_left (container, pod, namespace) max by ( container, container_id, pod, namespace) (kube_pod_container_info{container_id!=\"\", cluster=\"$cluster\"}) OR kube_namespace_created{cluster=\"$cluster\"} * 0) by (namespace)))", + "hide": false, + "interval": "$resolution", + "legendFormat": "Transmitted : {{ namespace }}", + "range": true, + "refId": "B" + } + ], + "title": "Network Received by namespace", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "BANDWIDTH", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 74 + }, + "id": 80, + "options": { + "legend": { + "calcs": [], + "displayMode": "hidden", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(node_network_receive_bytes_total{cluster=\"$cluster\", job=\"$job\"}[$__rate_interval])) by (instance)", + "interval": "$resolution", + "legendFormat": "Received bytes in {{ instance }}", + "range": true, + "refId": "Linux Received bytes" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "- sum(rate(node_network_transmit_bytes_total{cluster=\"$cluster\", job=\"$job\"}[$__rate_interval])) by (instance)", + "hide": false, + "interval": "$resolution", + "legendFormat": "Transmitted bytes in {{ instance }}", + "range": true, + "refId": "Linux Transmitted bytes" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(windows_net_bytes_received_total{cluster=\"$cluster\"}[$__rate_interval])) by (instance)", + "hide": false, + "interval": "$resolution", + "legendFormat": "Received bytes in {{ instance }}", + "range": true, + "refId": "Windows Received bytes" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "- sum(rate(windows_net_bytes_sent_total{cluster=\"$cluster\"}[$__rate_interval])) by (instance)", + "hide": false, + "interval": "$resolution", + "legendFormat": "Transmitted bytes in {{ instance }}", + "range": true, + "refId": "Windows Transmitted bytes" + } + ], + "title": "Total Network Received (with all virtual devices) by instance", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "Dropped noisy virtual devices for readability.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "BANDWIDTH", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 82 + }, + "id": 56, + "options": { + "legend": { + "calcs": [], + "displayMode": "hidden", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(node_network_receive_bytes_total{device!~\"(veth|azv|lxc|lo).*\", cluster=\"$cluster\", job=\"$job\"}[$__rate_interval])) by (instance)", + "interval": "$resolution", + "legendFormat": "Received bytes in {{ instance }}", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "- sum(rate(node_network_transmit_bytes_total{device!~\"(veth|azv|lxc|lo).*\", cluster=\"$cluster\", job=\"$job\"}[$__rate_interval])) by (instance)", + "hide": false, + "interval": "$resolution", + "legendFormat": "Transmitted bytes in {{ instance }}", + "range": true, + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(windows_net_bytes_received_total{nic!~\".*Virtual.*\",cluster=\"$cluster\"}[$__rate_interval])) by (instance)", + "hide": false, + "interval": "$resolution", + "legendFormat": "Received bytes in {{ instance }}", + "range": true, + "refId": "C" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "- sum(rate(windows_net_bytes_sent_total{nic!~\".*Virtual.*\",cluster=\"$cluster\"}[$__rate_interval])) by (instance)", + "hide": false, + "interval": "$resolution", + "legendFormat": "Transmitted bytes in {{ instance }}", + "range": true, + "refId": "D" + } + ], + "title": "Network Received (without loopback) by instance", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "Dropped noisy virtual devices for readability.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "BANDWIDTH", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 82 + }, + "id": 81, + "options": { + "legend": { + "calcs": [], + "displayMode": "hidden", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(node_network_receive_bytes_total{device=\"lo\", cluster=\"$cluster\", job=\"$job\"}[$__rate_interval])) by (instance)", + "interval": "$resolution", + "legendFormat": "Received bytes in {{ instance }}", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "- sum(rate(node_network_transmit_bytes_total{device=\"lo\", cluster=\"$cluster\", job=\"$job\"}[$__rate_interval])) by (instance)", + "hide": false, + "interval": "$resolution", + "legendFormat": "Transmitted bytes in {{ instance }}", + "range": true, + "refId": "B" + } + ], + "title": "Network Received (loopback only) by instance", + "type": "timeseries" + } + ], + "refresh": "30s", + "schemaVersion": 39, + "tags": [ + "Kubernetes", + "Prometheus" + ], + "templating": { + "list": [ + { + "current": { + "selected": false, + "text": "", + "value": "" + }, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "datasource", + "options": [], + "query": "prometheus", + "queryValue": "", + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "type": "datasource" + }, + { + "current": {}, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_node_info,cluster)", + "hide": 0, + "includeAll": false, + "multi": false, + "name": "cluster", + "options": [], + "query": { + "qryType": 1, + "query": "label_values(kube_node_info,cluster)", + "refId": "PrometheusVariableQueryEditor-VariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + }, + { + "current": { + "selected": false, + "text": "30s", + "value": "30s" + }, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "resolution", + "options": [ + { + "selected": false, + "text": "1s", + "value": "1s" + }, + { + "selected": false, + "text": "15s", + "value": "15s" + }, + { + "selected": true, + "text": "30s", + "value": "30s" + }, + { + "selected": false, + "text": "1m", + "value": "1m" + }, + { + "selected": false, + "text": "3m", + "value": "3m" + }, + { + "selected": false, + "text": "5m", + "value": "5m" + } + ], + "query": "1s, 15s, 30s, 1m, 3m, 5m", + "queryValue": "", + "skipUrlSync": false, + "type": "custom" + }, + { + "current": { + "selected": false, + "text": "", + "value": "" + }, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(node_cpu_seconds_total{cluster=\"$cluster\"},job)", + "hide": 0, + "includeAll": false, + "multi": true, + "name": "job", + "options": [], + "query": { + "qryType": 1, + "query": "label_values(node_cpu_seconds_total{cluster=\"$cluster\"},job)", + "refId": "PrometheusVariableQueryEditor-VariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + } + ] + }, + "time": { + "from": "now-1h", + "to": "now" + }, + "timepicker": {}, + "timezone": "", + "title": "Kubernetes / Views / Global", + "uid": "k8s_views_global", + "version": 39, + "weekStart": "" +} diff --git a/charts/monitoring/dashboards/k8s-views-namespaces.json b/charts/monitoring/dashboards/k8s-views-namespaces.json new file mode 100644 index 0000000..62d2ce4 --- /dev/null +++ b/charts/monitoring/dashboards/k8s-views-namespaces.json @@ -0,0 +1,2307 @@ +{ + "__inputs": [ + { + "name": "DS_PROMETHEUS", + "label": "Prometheus", + "description": "", + "type": "datasource", + "pluginId": "prometheus", + "pluginName": "Prometheus" + } + ], + "__elements": {}, + "__requires": [ + { + "type": "panel", + "id": "gauge", + "name": "Gauge", + "version": "" + }, + { + "type": "grafana", + "id": "grafana", + "name": "Grafana", + "version": "10.3.1" + }, + { + "type": "datasource", + "id": "prometheus", + "name": "Prometheus", + "version": "1.0.0" + }, + { + "type": "panel", + "id": "stat", + "name": "Stat", + "version": "" + }, + { + "type": "panel", + "id": "timeseries", + "name": "Time series", + "version": "" + } + ], + "annotations": { + "list": [ + { + "builtIn": 1, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "target": { + "limit": 100, + "matchAny": false, + "tags": [], + "type": "dashboard" + }, + "type": "dashboard" + } + ] + }, + "description": "This is a modern 'Namespaces View' dashboard for your Kubernetes cluster(s). Made for kube-prometheus-stack and take advantage of the latest Grafana features. GitHub repository: https://github.com/dotdc/grafana-dashboards-kubernetes", + "editable": true, + "fiscalYearStartMonth": 0, + "graphTooltip": 1, + "links": [], + "liveNow": false, + "panels": [ + { + "collapsed": false, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 38, + "panels": [], + "title": "Overview", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "decimals": 2, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "percentage", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "orange", + "value": 50 + }, + { + "color": "red", + "value": 70 + } + ] + }, + "unit": "percentunit", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 6, + "x": 0, + "y": 1 + }, + "id": 46, + "options": { + "minVizHeight": 75, + "minVizWidth": 75, + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true, + "sizing": "auto", + "text": {} + }, + "pluginVersion": "10.3.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(rate(container_cpu_usage_seconds_total{namespace=~\"$namespace\", image!=\"\", cluster=\"$cluster\"}[$__rate_interval])) / sum(machine_cpu_cores{cluster=\"$cluster\"})", + "instant": true, + "interval": "", + "legendFormat": "", + "range": false, + "refId": "A" + } + ], + "title": "Namespace(s) usage on total cluster CPU in %", + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "decimals": 2, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "percentage", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "orange", + "value": 50 + }, + { + "color": "red", + "value": 70 + } + ] + }, + "unit": "percentunit", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 7, + "w": 6, + "x": 6, + "y": 1 + }, + "id": 48, + "options": { + "minVizHeight": 75, + "minVizWidth": 75, + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true, + "sizing": "auto", + "text": {} + }, + "pluginVersion": "10.3.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(container_memory_working_set_bytes{namespace=~\"$namespace\", image!=\"\", cluster=\"$cluster\"}) / sum(machine_memory_bytes{cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "", + "refId": "A" + } + ], + "title": "Namespace(s) usage on total cluster RAM in %", + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 11, + "w": 12, + "x": 12, + "y": 1 + }, + "id": 32, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_pod_info{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Running Pods", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_service_info{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Services", + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_ingress_info{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Ingresses", + "refId": "C" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_deployment_labels{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Deployments", + "refId": "D" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_statefulset_labels{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Statefulsets", + "refId": "E" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_daemonset_labels{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Daemonsets", + "refId": "F" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_persistentvolumeclaim_info{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Persistent Volume Claims", + "refId": "G" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_hpa_labels{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Horizontal Pod Autoscalers", + "refId": "H" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_configmap_info{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Configmaps", + "refId": "I" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_secret_info{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Secrets", + "refId": "J" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_networkpolicy_labels{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Network Policies", + "refId": "K" + } + ], + "title": "Kubernetes Resource Count", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "rgb(255, 255, 255)", + "value": null + } + ] + }, + "unit": "none", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 6, + "x": 0, + "y": 8 + }, + "id": 62, + "options": { + "colorMode": "none", + "graphMode": "none", + "justifyMode": "center", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "text": {}, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.3.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(container_cpu_usage_seconds_total{namespace=~\"$namespace\", image!=\"\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "", + "legendFormat": "Real", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_resource_requests{namespace=~\"$namespace\", resource=\"cpu\", cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Requests", + "range": true, + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_resource_limits{namespace=~\"$namespace\", resource=\"cpu\", cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Limits", + "range": true, + "refId": "C" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(machine_cpu_cores{cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Cluster Total", + "range": true, + "refId": "D" + } + ], + "title": "Namespace(s) CPU Usage in cores", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "rgb(255, 255, 255)", + "value": null + } + ] + }, + "unit": "bytes", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 4, + "w": 6, + "x": 6, + "y": 8 + }, + "id": 64, + "options": { + "colorMode": "none", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "text": {}, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.3.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(container_memory_working_set_bytes{namespace=~\"$namespace\", image!=\"\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Real", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_resource_requests{namespace=~\"$namespace\", resource=\"memory\", cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Requests", + "range": true, + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_resource_limits{namespace=~\"$namespace\", resource=\"memory\", cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Limits", + "range": true, + "refId": "C" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(machine_memory_bytes{cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Cluster Total", + "range": true, + "refId": "D" + } + ], + "title": "Namespace(s) RAM Usage in bytes", + "type": "stat" + }, + { + "collapsed": false, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 12 + }, + "id": 40, + "panels": [], + "title": "Resources", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "CPU CORES", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 13 + }, + "id": 29, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(container_cpu_usage_seconds_total{namespace=~\"$namespace\", image!=\"\", pod=~\"${created_by}.*\", cluster=\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "$resolution", + "legendFormat": "{{ pod }}", + "range": true, + "refId": "A" + } + ], + "title": "CPU usage by Pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 13 + }, + "id": 30, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(container_memory_working_set_bytes{namespace=~\"$namespace\", image!=\"\", pod=~\"${created_by}.*\", cluster=\"$cluster\"}) by (pod)", + "interval": "$resolution", + "legendFormat": "{{ pod }}", + "range": true, + "refId": "A" + } + ], + "title": "Memory usage by Pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "SECONDS", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 21 + }, + "id": 68, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(container_cpu_cfs_throttled_seconds_total{namespace=~\"$namespace\", image!=\"\", pod=~\"${created_by}.*\", cluster=\"$cluster\"}[$__rate_interval])) by (pod) > 0", + "interval": "$resolution", + "legendFormat": "{{ pod }}", + "range": true, + "refId": "A" + } + ], + "title": "CPU Throttled seconds by pod", + "type": "timeseries" + }, + { + "collapsed": false, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 29 + }, + "id": 73, + "panels": [], + "title": "Kubernetes", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 9, + "w": 12, + "x": 0, + "y": 30 + }, + "id": 70, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(kube_pod_status_qos_class{namespace=~\"$namespace\", cluster=\"$cluster\"}) by (qos_class)", + "interval": "", + "legendFormat": "{{ qos_class }} pods", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_info{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "hide": false, + "legendFormat": "Total pods", + "range": true, + "refId": "B" + } + ], + "title": "Kubernetes Pods QoS classes", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 9, + "w": 12, + "x": 12, + "y": 30 + }, + "id": 72, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(kube_pod_status_reason{cluster=\"$cluster\"}) by (reason)", + "interval": "", + "legendFormat": "{{ reason }}", + "range": true, + "refId": "A" + } + ], + "title": "Kubernetes Pods Status Reason", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "No data is generally a good thing here.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "points", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 9, + "w": 12, + "x": 0, + "y": 39 + }, + "id": 74, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(increase(container_oom_events_total{namespace=~\"${namespace}\", cluster=\"$cluster\"}[$__rate_interval])) by (namespace, pod) > 0", + "interval": "", + "legendFormat": "namespace: {{ namespace }} - pod: {{ pod }}", + "range": true, + "refId": "A" + } + ], + "title": "OOM Events by namespace, pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "No data is generally a good thing here.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "points", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 9, + "w": 12, + "x": 12, + "y": 39 + }, + "id": 75, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(increase(kube_pod_container_status_restarts_total{namespace=~\"${namespace}\", cluster=\"$cluster\"}[$__rate_interval])) by (namespace, pod) > 0", + "interval": "", + "legendFormat": "namespace: {{ namespace }} - pod: {{ pod }}", + "range": true, + "refId": "A" + } + ], + "title": "Container Restarts by namespace, pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 0, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 48 + }, + "id": 5, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_status_ready{namespace=~\"$namespace\", pod=~\"${created_by}.*\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Ready", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_status_running{namespace=~\"$namespace\", pod=~\"${created_by}.*\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Running", + "range": true, + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_pod_container_status_waiting{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Waiting", + "refId": "C" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_pod_container_status_restarts_total{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Restarts Total", + "refId": "D" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "expr": "sum(kube_pod_container_status_terminated{namespace=~\"$namespace\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "Terminated", + "refId": "E" + } + ], + "title": "Nb of pods by state", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 0, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 48 + }, + "id": 2, + "options": { + "legend": { + "calcs": [], + "displayMode": "hidden", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_pod_container_info{namespace=~\"$namespace\", pod=~\"${created_by}.*\", cluster=\"$cluster\"}) by (pod)", + "interval": "", + "legendFormat": "{{ pod }}", + "range": true, + "refId": "A" + } + ], + "title": "Nb of containers by pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 56 + }, + "id": 7, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(kube_deployment_status_replicas_available{namespace=~\"$namespace\", cluster=\"$cluster\"}) by (deployment)", + "interval": "", + "legendFormat": "{{ deployment }}", + "range": true, + "refId": "A" + } + ], + "title": "Replicas available by deployment", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "short" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 56 + }, + "id": 8, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(kube_deployment_status_replicas_unavailable{namespace=~\"$namespace\", pod=~\"${created_by}.*\", cluster=\"$cluster\"}) by (deployment)", + "interval": "", + "legendFormat": "{{ deployment }}", + "range": true, + "refId": "A" + } + ], + "title": "Replicas unavailable by deployment", + "type": "timeseries" + }, + { + "collapsed": false, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 64 + }, + "id": 42, + "panels": [], + "title": "Kubernetes Storage", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 65 + }, + "id": 65, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(kubelet_volume_stats_used_bytes{namespace=~\"$namespace\", cluster=\"$cluster\"}) by (persistentvolumeclaim) / sum(kubelet_volume_stats_capacity_bytes{namespace=~\"$namespace\", cluster=\"$cluster\"}) by (persistentvolumeclaim)", + "interval": "", + "legendFormat": "{{ persistentvolumeclaim }}", + "refId": "A" + } + ], + "title": "Persistent Volumes - Capacity and usage in %", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 65 + }, + "id": 66, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(kubelet_volume_stats_used_bytes{namespace=~\"$namespace\", cluster=\"$cluster\"}) by (persistentvolumeclaim)", + "interval": "", + "legendFormat": "{{ persistentvolumeclaim }} - Used", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(kubelet_volume_stats_capacity_bytes{namespace=~\"$namespace\", cluster=\"$cluster\"}) by (persistentvolumeclaim)", + "hide": false, + "interval": "", + "legendFormat": "{{ persistentvolumeclaim }} - Capacity", + "refId": "B" + } + ], + "title": "Persistent Volumes - Capacity and usage in bytes", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 73 + }, + "id": 27, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "1 - sum(kubelet_volume_stats_inodes_used{namespace=~\"$namespace\", cluster=\"$cluster\"}) by (persistentvolumeclaim) / sum(kubelet_volume_stats_inodes{namespace=~\"$namespace\", cluster=\"$cluster\"}) by (persistentvolumeclaim)", + "interval": "", + "legendFormat": "{{ persistentvolumeclaim }}", + "refId": "A" + } + ], + "title": "Persistent Volumes - Inodes", + "type": "timeseries" + } + ], + "refresh": "30s", + "schemaVersion": 39, + "tags": [ + "Kubernetes", + "Prometheus" + ], + "templating": { + "list": [ + { + "current": {}, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "datasource", + "options": [], + "query": "prometheus", + "queryValue": "", + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "type": "datasource" + }, + { + "current": {}, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_node_info,cluster)", + "hide": 0, + "includeAll": false, + "multi": false, + "name": "cluster", + "options": [], + "query": { + "qryType": 1, + "query": "label_values(kube_node_info,cluster)", + "refId": "PrometheusVariableQueryEditor-VariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + }, + { + "current": {}, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_pod_info{cluster=\"$cluster\"}, namespace)", + "hide": 0, + "includeAll": true, + "multi": true, + "name": "namespace", + "options": [], + "query": { + "query": "label_values(kube_pod_info{cluster=\"$cluster\"}, namespace)", + "refId": "StandardVariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "tagValuesQuery": "", + "tagsQuery": "", + "type": "query", + "useTags": false + }, + { + "current": { + "selected": false, + "text": "30s", + "value": "30s" + }, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "resolution", + "options": [ + { + "selected": false, + "text": "1s", + "value": "1s" + }, + { + "selected": false, + "text": "15s", + "value": "15s" + }, + { + "selected": true, + "text": "30s", + "value": "30s" + }, + { + "selected": false, + "text": "1m", + "value": "1m" + }, + { + "selected": false, + "text": "3m", + "value": "3m" + }, + { + "selected": false, + "text": "5m", + "value": "5m" + } + ], + "query": "1s, 15s, 30s, 1m, 3m, 5m", + "queryValue": "", + "skipUrlSync": false, + "type": "custom" + }, + { + "current": {}, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_pod_info{namespace=~\"$namespace\", container!=\"\", cluster=\"$cluster\"},created_by_name)", + "description": "Can be used to filter on a specific deployment, statefulset or deamonset (only relevant panels).", + "hide": 0, + "includeAll": true, + "multi": true, + "name": "created_by", + "options": [], + "query": { + "query": "label_values(kube_pod_info{namespace=~\"$namespace\", container!=\"\", cluster=\"$cluster\"},created_by_name)", + "refId": "PrometheusVariableQueryEditor-VariableQuery" + }, + "refresh": 2, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + } + ] + }, + "time": { + "from": "now-1h", + "to": "now" + }, + "timepicker": {}, + "timezone": "", + "title": "Kubernetes / Views / Namespaces", + "uid": "k8s_views_ns", + "version": 34, + "weekStart": "" +} diff --git a/charts/monitoring/dashboards/k8s-views-nodes.json b/charts/monitoring/dashboards/k8s-views-nodes.json new file mode 100644 index 0000000..2a4221a --- /dev/null +++ b/charts/monitoring/dashboards/k8s-views-nodes.json @@ -0,0 +1,3939 @@ +{ + "__inputs": [ + { + "name": "DS_PROMETHEUS", + "label": "Prometheus", + "description": "", + "type": "datasource", + "pluginId": "prometheus", + "pluginName": "Prometheus" + } + ], + "__elements": {}, + "__requires": [ + { + "type": "panel", + "id": "gauge", + "name": "Gauge", + "version": "" + }, + { + "type": "grafana", + "id": "grafana", + "name": "Grafana", + "version": "10.3.1" + }, + { + "type": "datasource", + "id": "prometheus", + "name": "Prometheus", + "version": "1.0.0" + }, + { + "type": "panel", + "id": "stat", + "name": "Stat", + "version": "" + }, + { + "type": "panel", + "id": "table", + "name": "Table", + "version": "" + }, + { + "type": "panel", + "id": "timeseries", + "name": "Time series", + "version": "" + } + ], + "annotations": { + "list": [ + { + "builtIn": 1, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "target": { + "limit": 100, + "matchAny": false, + "tags": [], + "type": "dashboard" + }, + "type": "dashboard" + } + ] + }, + "description": "This is a modern 'Nodes View' dashboard for your Kubernetes cluster(s). Made for kube-prometheus-stack and take advantage of the latest Grafana features. GitHub repository: https://github.com/dotdc/grafana-dashboards-kubernetes", + "editable": true, + "fiscalYearStartMonth": 0, + "graphTooltip": 1, + "links": [], + "liveNow": false, + "panels": [ + { + "collapsed": false, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 40, + "panels": [], + "title": "Overview", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "decimals": 2, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "percentage", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "orange", + "value": 50 + }, + { + "color": "red", + "value": 70 + } + ] + }, + "unit": "percentunit", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 4, + "x": 0, + "y": 1 + }, + "id": 7, + "options": { + "minVizHeight": 75, + "minVizWidth": 75, + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true, + "sizing": "auto", + "text": {} + }, + "pluginVersion": "10.3.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": false, + "expr": "avg(sum by (cpu) (rate(node_cpu_seconds_total{mode!~\"idle|iowait|steal\", instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval])))", + "instant": true, + "interval": "$resolution", + "legendFormat": "", + "refId": "A" + } + ], + "title": "CPU Usage", + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "decimals": 2, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "percentage", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "orange", + "value": 50 + }, + { + "color": "red", + "value": 70 + } + ] + }, + "unit": "percentunit", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 4, + "x": 4, + "y": 1 + }, + "id": 13, + "options": { + "minVizHeight": 75, + "minVizWidth": 75, + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true, + "sizing": "auto", + "text": {} + }, + "pluginVersion": "10.3.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": false, + "expr": "sum(node_memory_MemTotal_bytes{instance=\"$instance\", cluster=\"$cluster\"} - node_memory_MemAvailable_bytes{instance=\"$instance\", cluster=\"$cluster\"}) / sum(node_memory_MemTotal_bytes{instance=\"$instance\", cluster=\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "", + "refId": "A" + } + ], + "title": "RAM Usage", + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "blue", + "value": null + } + ] + }, + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 4, + "x": 8, + "y": 1 + }, + "id": 24, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "text": {}, + "textMode": "value", + "wideLayout": true + }, + "pluginVersion": "10.3.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(kube_pod_info{node=\"$node\", cluster=\"$cluster\"})", + "interval": "", + "legendFormat": "", + "refId": "A" + } + ], + "title": "Pods on node", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "inspect": false + }, + "links": [ + { + "targetBlank": true, + "title": "Pod details", + "url": "/d/k8s_views_pods/kubernetes-views-pods?${datasource:queryparam}&var-namespace=${__data.fields.namespace}&var-pod=${__data.fields.pod}&${resolution:queryparam}&${__url_time_range}" + } + ], + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unitScale": true + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "pod" + }, + "properties": [ + { + "id": "custom.width", + "value": 416 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "priority_class" + }, + "properties": [ + { + "id": "custom.width", + "value": 176 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "pod_ip" + }, + "properties": [ + { + "id": "custom.width", + "value": 157 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "created_by_kind" + }, + "properties": [ + { + "id": "custom.width", + "value": 205 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "namespace" + }, + "properties": [ + { + "id": "custom.width", + "value": 263 + } + ] + } + ] + }, + "gridPos": { + "h": 11, + "w": 12, + "x": 12, + "y": 1 + }, + "id": 5, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": true, + "sortBy": [] + }, + "pluginVersion": "10.3.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "kube_pod_info{node=\"$node\", cluster=\"$cluster\"}", + "format": "table", + "interval": "", + "legendFormat": "", + "refId": "A" + } + ], + "title": "List of pods on node ($node)", + "transformations": [ + { + "id": "organize", + "options": { + "excludeByName": { + "Time": true, + "Value": true, + "__name__": true, + "container": true, + "created_by_kind": false, + "created_by_name": true, + "endpoint": true, + "env": true, + "host_ip": true, + "host_network": true, + "instance": true, + "job": true, + "node": true, + "project": true, + "prometheus_replica": true, + "service": true, + "uid": true + }, + "indexByName": { + "Time": 6, + "Value": 20, + "__name__": 7, + "container": 8, + "created_by_kind": 2, + "created_by_name": 9, + "endpoint": 10, + "env": 11, + "host_ip": 5, + "host_network": 12, + "instance": 13, + "job": 14, + "namespace": 1, + "node": 15, + "pod": 0, + "pod_ip": 3, + "priority_class": 4, + "project": 16, + "prometheus_replica": 17, + "service": 18, + "uid": 19 + }, + "renameByName": {} + } + }, + { + "id": "groupBy", + "options": { + "fields": { + "created_by_kind": { + "aggregations": [], + "operation": "groupby" + }, + "host_ip": { + "aggregations": [], + "operation": "groupby" + }, + "namespace": { + "aggregations": [ + "last" + ], + "operation": "groupby" + }, + "pod": { + "aggregations": [], + "operation": "groupby" + }, + "pod_ip": { + "aggregations": [], + "operation": "groupby" + }, + "priority_class": { + "aggregations": [], + "operation": "groupby" + } + } + } + } + ], + "type": "table" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "decimals": 3, + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "rgb(255, 255, 255)", + "value": null + } + ] + }, + "unit": "none", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 0, + "y": 9 + }, + "id": 9, + "options": { + "colorMode": "none", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "text": {}, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.3.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": false, + "expr": "sum(rate(node_cpu_seconds_total{mode!~\"idle|iowait|steal\", instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval]))", + "instant": true, + "interval": "$resolution", + "legendFormat": "", + "refId": "A" + } + ], + "title": "CPU Used", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "rgb(255, 255, 255)", + "value": null + } + ] + }, + "unit": "none", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 2, + "y": 9 + }, + "id": 11, + "options": { + "colorMode": "none", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "text": {}, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.3.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(machine_cpu_cores{node=\"$node\", cluster=\"$cluster\"})", + "interval": "$resolution", + "legendFormat": "", + "refId": "A" + } + ], + "title": "CPU Total", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "rgb(255, 255, 255)", + "value": null + } + ] + }, + "unit": "bytes", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 4, + "y": 9 + }, + "id": 15, + "options": { + "colorMode": "none", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "text": {}, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.3.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": false, + "expr": "sum(node_memory_MemTotal_bytes{instance=\"$instance\", cluster=\"$cluster\"} - node_memory_MemAvailable_bytes{instance=\"$instance\", cluster=\"$cluster\"})", + "instant": true, + "interval": "", + "legendFormat": "", + "refId": "A" + } + ], + "title": "RAM Used", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "rgb(255, 255, 255)", + "value": null + } + ] + }, + "unit": "bytes", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 2, + "x": 6, + "y": 9 + }, + "id": 17, + "options": { + "colorMode": "none", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "text": {}, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.3.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "machine_memory_bytes{node=\"$node\", cluster=\"$cluster\"}", + "instant": false, + "interval": "", + "legendFormat": "", + "refId": "A" + } + ], + "title": "RAM Total", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "mappings": [], + "noValue": "0", + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "#EAB839", + "value": 25228800 + }, + { + "color": "red", + "value": 31536000 + } + ] + }, + "unit": "s", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 3, + "w": 4, + "x": 8, + "y": 9 + }, + "id": 18, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "lastNotNull" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "text": {}, + "textMode": "auto", + "wideLayout": true + }, + "pluginVersion": "10.3.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "node_time_seconds{instance=\"$instance\", cluster=\"$cluster\"} - node_boot_time_seconds{instance=\"$instance\", cluster=\"$cluster\"}", + "instant": false, + "interval": "", + "legendFormat": "", + "refId": "A" + } + ], + "title": "uptime", + "type": "stat" + }, + { + "collapsed": false, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 12 + }, + "id": 38, + "panels": [], + "title": "Resources", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "max": 100, + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percent", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 9, + "w": 12, + "x": 0, + "y": 13 + }, + "id": 2, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "avg(rate(node_cpu_seconds_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval]) * 100) by (mode)", + "hide": false, + "instant": false, + "interval": "$resolution", + "legendFormat": "{{ mode }}", + "refId": "A" + } + ], + "title": "CPU Usage", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes", + "unitScale": true + }, + "overrides": [] + }, + "gridPos": { + "h": 9, + "w": 12, + "x": 12, + "y": 13 + }, + "id": 3, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "node_memory_MemTotal_bytes{instance=\"$instance\", cluster=\"$cluster\"} - node_memory_MemFree_bytes{instance=\"$instance\", cluster=\"$cluster\"} - (node_memory_Cached_bytes{instance=\"$instance\", cluster=\"$cluster\"} + node_memory_Buffers_bytes{instance=\"$instance\", cluster=\"$cluster\"})", + "instant": false, + "interval": "$resolution", + "legendFormat": "RAM Used", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "node_memory_MemTotal_bytes{instance=\"$instance\", cluster=\"$cluster\"}", + "hide": false, + "interval": "$resolution", + "legendFormat": "RAM Total", + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "node_memory_Cached_bytes{instance=\"$instance\", cluster=\"$cluster\"}", + "hide": false, + "interval": "$resolution", + "legendFormat": "RAM Cache", + "refId": "C" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "node_memory_Buffers_bytes{instance=\"$instance\", cluster=\"$cluster\"}", + "hide": false, + "interval": "$resolution", + "legendFormat": "RAM Buffer", + "refId": "D" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "node_memory_MemFree_bytes{instance=\"$instance\", cluster=\"$cluster\"}", + "hide": false, + "interval": "$resolution", + "legendFormat": "RAM Free", + "refId": "E" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "node_memory_SwapTotal_bytes{instance=\"$instance\", cluster=\"$cluster\"} - node_memory_SwapFree_bytes{instance=\"$instance\", cluster=\"$cluster\"}", + "hide": false, + "interval": "$resolution", + "legendFormat": "SWAP Used", + "refId": "F" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "node_memory_SwapTotal_bytes{instance=\"$instance\", cluster=\"$cluster\"}", + "hide": false, + "interval": "$resolution", + "legendFormat": "SWAP Total", + "refId": "G" + } + ], + "title": "Memory Usage", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "CPU Cores", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 22 + }, + "id": 26, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(container_cpu_usage_seconds_total{node=\"$node\", image!=\"\", cluster=\"$cluster\"}[$__rate_interval])) by (pod)", + "interval": "$resolution", + "legendFormat": "{{ pod }}", + "refId": "A" + } + ], + "title": "CPU usage by Pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 22 + }, + "id": 28, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(container_memory_working_set_bytes{node=\"$node\", image!=\"\", cluster=\"$cluster\"}) by (pod)", + "interval": "$resolution", + "legendFormat": "{{ pod }}", + "refId": "A" + } + ], + "title": "Memory usage by Pod", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "Number of times a CPU core has been throttled on an instance.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "CPU CORES", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 30 + }, + "id": 66, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(node_cpu_core_throttles_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "Nb of cpu core throttles", + "range": true, + "refId": "A" + } + ], + "title": "Number of CPU Core Throttled", + "type": "timeseries" + }, + { + "collapsed": false, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 38 + }, + "id": 44, + "panels": [], + "title": "System", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 39 + }, + "id": 48, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "node_load1{instance=\"$instance\", cluster=\"$cluster\"}", + "interval": "$resolution", + "legendFormat": "1m", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "node_load5{instance=\"$instance\", cluster=\"$cluster\"}", + "hide": false, + "interval": "$resolution", + "legendFormat": "5m", + "range": true, + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "node_load15{instance=\"$instance\", cluster=\"$cluster\"}", + "hide": false, + "interval": "$resolution", + "legendFormat": "15m", + "range": true, + "refId": "C" + } + ], + "title": "System Load", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 39 + }, + "id": 46, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "rate(node_context_switches_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval])", + "interval": "$resolution", + "intervalFactor": 1, + "legendFormat": "Context switches", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "rate(node_intr_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval])", + "hide": false, + "interval": "$resolution", + "legendFormat": "Interrupts", + "range": true, + "refId": "B" + } + ], + "title": "Context Switches & Interrupts", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 47 + }, + "id": 49, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "node_filefd_maximum{instance=\"$instance\", cluster=\"$cluster\"}", + "instant": false, + "interval": "$resolution", + "legendFormat": "Maximum file descriptors", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "node_filefd_allocated{instance=\"$instance\", cluster=\"$cluster\"}", + "hide": false, + "instant": false, + "interval": "$resolution", + "legendFormat": "Allocated file descriptors", + "refId": "B" + } + ], + "title": "File Descriptors", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 47 + }, + "id": 50, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "node_timex_estimated_error_seconds{instance=\"$instance\", cluster=\"$cluster\"}", + "instant": false, + "interval": "$resolution", + "intervalFactor": 1, + "legendFormat": "Estimated error in seconds", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "node_timex_maxerror_seconds{instance=\"$instance\", cluster=\"$cluster\"}", + "hide": false, + "interval": "$resolution", + "intervalFactor": 1, + "legendFormat": "Maximum error in seconds", + "range": true, + "refId": "B" + } + ], + "title": "Time Sync", + "type": "timeseries" + }, + { + "collapsed": false, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 55 + }, + "id": 36, + "panels": [], + "title": "Network", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "BANDWIDTH", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "linear", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 56 + }, + "id": 20, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(node_network_receive_bytes_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "In", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "- sum(rate(node_network_transmit_bytes_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "Out", + "range": true, + "refId": "B" + } + ], + "title": "Network usage (bytes)", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 56 + }, + "id": 61, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(node_network_receive_errs_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "In", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "- sum(rate(node_network_transmit_errs_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "Out", + "range": true, + "refId": "B" + } + ], + "title": "Network errors", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "pps" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 64 + }, + "id": 62, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(node_network_receive_packets_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "In", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "- sum(rate(node_network_transmit_packets_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "Out", + "range": true, + "refId": "B" + } + ], + "title": "Network usage (packet/s)", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 64 + }, + "id": 64, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(node_network_receive_drop_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval]))", + "hide": false, + "interval": "$resolution", + "legendFormat": "In", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "- sum(rate(node_network_transmit_drop_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval]))", + "hide": false, + "interval": "$resolution", + "legendFormat": "Out", + "refId": "B" + } + ], + "title": "Network total drops", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 72 + }, + "id": 60, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "node_netstat_Tcp_CurrEstab{instance=\"$instance\", cluster=\"$cluster\"}", + "instant": false, + "interval": "$resolution", + "legendFormat": "TCP Currently Established", + "refId": "A" + } + ], + "title": "TCP Currently Established", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "NF Conntrack limit" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "red", + "mode": "fixed" + } + } + ] + } + ] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 72 + }, + "id": 63, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "node_nf_conntrack_entries{instance=\"$instance\", cluster=\"$cluster\"}", + "instant": false, + "interval": "$resolution", + "legendFormat": "NF Conntrack entries", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "node_nf_conntrack_entries_limit{instance=\"$instance\", cluster=\"$cluster\"}", + "hide": false, + "interval": "$resolution", + "legendFormat": "NF Conntrack limit", + "range": true, + "refId": "B" + } + ], + "title": "NF Conntrack", + "type": "timeseries" + }, + { + "collapsed": false, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 80 + }, + "id": 54, + "panels": [], + "title": "Kubernetes Storage", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 81 + }, + "id": 30, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(kubelet_volume_stats_used_bytes{node=\"$node\", cluster=\"$cluster\"}) by (persistentvolumeclaim) / sum(kubelet_volume_stats_capacity_bytes{node=\"$node\", cluster=\"$cluster\"}) by (persistentvolumeclaim)", + "interval": "$resolution", + "legendFormat": "{{ persistentvolumeclaim }}", + "range": true, + "refId": "A" + } + ], + "title": "Persistent Volumes - Usage in %", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "continuous-GrYlRd" + }, + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "filterable": false, + "inspect": false + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Used" + }, + "properties": [ + { + "id": "custom.width", + "value": 146 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Total" + }, + "properties": [ + { + "id": "custom.width", + "value": 167 + } + ] + } + ] + }, + "gridPos": { + "h": 16, + "w": 12, + "x": 12, + "y": 81 + }, + "id": 34, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": true, + "sortBy": [] + }, + "pluginVersion": "10.2.2", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(kubelet_volume_stats_used_bytes{node=\"$node\", cluster=\"$cluster\"}) by (persistentvolumeclaim)", + "format": "table", + "hide": false, + "interval": "", + "legendFormat": "", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(kubelet_volume_stats_capacity_bytes{node=\"$node\", cluster=\"$cluster\"}) by (persistentvolumeclaim)", + "format": "table", + "hide": false, + "interval": "", + "legendFormat": "", + "refId": "B" + } + ], + "title": "Persistent Volumes - Usage in GB", + "transformations": [ + { + "id": "groupBy", + "options": { + "fields": { + "Value": { + "aggregations": [ + "lastNotNull" + ], + "operation": "aggregate" + }, + "Value #A": { + "aggregations": [ + "lastNotNull" + ], + "operation": "aggregate" + }, + "Value #B": { + "aggregations": [ + "lastNotNull" + ], + "operation": "aggregate" + }, + "persistentvolumeclaim": { + "aggregations": [], + "operation": "groupby" + } + } + } + }, + { + "id": "seriesToColumns", + "options": { + "byField": "persistentvolumeclaim" + } + }, + { + "id": "organize", + "options": { + "excludeByName": {}, + "indexByName": {}, + "renameByName": { + "Value #A (lastNotNull)": "Used", + "Value #B (lastNotNull)": "Total", + "persistentvolumeclaim": "Persistent Volume Claim" + } + } + } + ], + "type": "table" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percent" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 89 + }, + "id": 32, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(kubelet_volume_stats_inodes_used{node=\"$node\", cluster=\"$cluster\"}) by (persistentvolumeclaim) / sum(kubelet_volume_stats_inodes{node=\"$node\", cluster=\"$cluster\"}) by (persistentvolumeclaim) * 100", + "interval": "$resolution", + "legendFormat": "{{ persistentvolumeclaim }}", + "range": true, + "refId": "A" + } + ], + "title": "Persistent Volumes - Inodes", + "type": "timeseries" + }, + { + "collapsed": false, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 97 + }, + "id": 42, + "panels": [], + "title": "Node Storage", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percent" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 98 + }, + "id": 33, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "100 - ((node_filesystem_avail_bytes{instance=\"$instance\", cluster=\"$cluster\"} * 100) / node_filesystem_size_bytes{instance=\"$instance\", cluster=\"$cluster\"})", + "hide": false, + "interval": "$resolution", + "legendFormat": "{{ mountpoint }}", + "range": true, + "refId": "A" + } + ], + "title": "FS usage in %", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percent" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 98 + }, + "id": 59, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "100 - (node_filesystem_files_free{instance=\"$instance\", cluster=\"$cluster\"} / node_filesystem_files{instance=\"$instance\", cluster=\"$cluster\"} * 100)", + "hide": false, + "interval": "$resolution", + "legendFormat": "{{ mountpoint }}", + "range": true, + "refId": "A" + } + ], + "title": "FS inode usage in %", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 106 + }, + "id": 52, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "rate(node_disk_read_bytes_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval])", + "interval": "$resolution", + "legendFormat": "{{device}}", + "range": true, + "refId": "A" + } + ], + "title": "Reads by disk (bytes)", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 106 + }, + "id": 57, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "rate(node_disk_written_bytes_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval])", + "hide": false, + "interval": "$resolution", + "legendFormat": "{{device}}", + "range": true, + "refId": "A" + } + ], + "title": "Writes by disk (bytes)", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "read/s" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 114 + }, + "id": 51, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "rate(node_disk_reads_completed_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval])", + "interval": "$resolution", + "legendFormat": "{{device}}", + "range": true, + "refId": "A" + } + ], + "title": "Completed reads by disk", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "write/s" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 114 + }, + "id": 56, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "rate(node_disk_writes_completed_total{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval])", + "hide": false, + "interval": "$resolution", + "legendFormat": "{{device}}", + "range": true, + "refId": "A" + } + ], + "title": "Completed writes by disk", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "io/s" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 122 + }, + "id": 58, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "rate(node_disk_io_now{instance=\"$instance\", cluster=\"$cluster\"}[$__rate_interval]) ", + "interval": "$resolution", + "legendFormat": "{{device}}", + "range": true, + "refId": "A" + } + ], + "title": "Disk(s) io/s", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green" + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 122 + }, + "id": 55, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "right", + "showLegend": false + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(node_filesystem_device_error{instance=\"$instance\", cluster=\"$cluster\"}) by (mountpoint)", + "interval": "$resolution", + "legendFormat": "{{ mountpoint }}", + "range": true, + "refId": "A" + } + ], + "title": "FS - Device Errors", + "type": "timeseries" + } + ], + "refresh": "30s", + "schemaVersion": 39, + "tags": [ + "Kubernetes", + "Prometheus" + ], + "templating": { + "list": [ + { + "current": {}, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "datasource", + "options": [], + "query": "prometheus", + "queryValue": "", + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "type": "datasource" + }, + { + "current": {}, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_node_info,cluster)", + "hide": 0, + "includeAll": false, + "multi": false, + "name": "cluster", + "options": [], + "query": { + "qryType": 1, + "query": "label_values(kube_node_info,cluster)", + "refId": "PrometheusVariableQueryEditor-VariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + }, + { + "current": { + "selected": false, + "text": "30s", + "value": "30s" + }, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "resolution", + "options": [ + { + "selected": false, + "text": "1s", + "value": "1s" + }, + { + "selected": false, + "text": "15s", + "value": "15s" + }, + { + "selected": true, + "text": "30s", + "value": "30s" + }, + { + "selected": false, + "text": "1m", + "value": "1m" + }, + { + "selected": false, + "text": "3m", + "value": "3m" + }, + { + "selected": false, + "text": "5m", + "value": "5m" + } + ], + "query": "1s, 15s, 30s, 1m, 3m, 5m", + "queryValue": "", + "skipUrlSync": false, + "type": "custom" + }, + { + "current": {}, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_node_info{cluster=\"$cluster\"}, node)", + "hide": 0, + "includeAll": false, + "multi": false, + "name": "node", + "options": [], + "query": { + "query": "label_values(kube_node_info{cluster=\"$cluster\"}, node)", + "refId": "StandardVariableQuery" + }, + "refresh": 2, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + }, + { + "current": {}, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(node_uname_info{nodename=~\"(?i:($node))\"}, instance)", + "hide": 2, + "includeAll": false, + "multi": false, + "name": "instance", + "options": [], + "query": { + "query": "label_values(node_uname_info{nodename=~\"(?i:($node))\"}, instance)", + "refId": "StandardVariableQuery" + }, + "refresh": 2, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + } + ] + }, + "time": { + "from": "now-1h", + "to": "now" + }, + "timepicker": {}, + "timezone": "", + "title": "Kubernetes / Views / Nodes", + "uid": "k8s_views_nodes", + "version": 29, + "weekStart": "" +} diff --git a/charts/monitoring/dashboards/k8s-views-pods.json b/charts/monitoring/dashboards/k8s-views-pods.json new file mode 100644 index 0000000..c0284ca --- /dev/null +++ b/charts/monitoring/dashboards/k8s-views-pods.json @@ -0,0 +1,2699 @@ +{ + "__inputs": [ + { + "name": "DS_PROMETHEUS", + "label": "Prometheus", + "description": "", + "type": "datasource", + "pluginId": "prometheus", + "pluginName": "Prometheus" + } + ], + "__elements": [], + "__requires": [ + { + "type": "grafana", + "id": "grafana", + "name": "Grafana", + "version": "8.3.4" + }, + { + "type": "datasource", + "id": "prometheus", + "name": "Prometheus", + "version": "5.0.0" + }, + { + "type": "panel", + "id": "timeseries", + "name": "Time series", + "version": "" + }, + { + "type": "panel", + "id": "stat", + "name": "Stat", + "version": "" + }, + { + "type": "panel", + "id": "gauge", + "name": "Gauge", + "version": "" + }, + { + "type": "panel", + "id": "table", + "name": "Table", + "version": "" + } + ], + "annotations": { + "list": [ + { + "builtIn": 1, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "enable": true, + "hide": true, + "iconColor": "rgba(0, 211, 255, 1)", + "name": "Annotations & Alerts", + "target": { + "limit": 100, + "matchAny": false, + "tags": [], + "type": "dashboard" + }, + "type": "dashboard" + } + ] + }, + "description": "This is a modern 'Pods View' dashboard for your Kubernetes cluster(s). Made for kube-prometheus-stack and take advantage of the latest Grafana features. GitHub repository: https://github.com/dotdc/grafana-dashboards-kubernetes", + "editable": true, + "fiscalYearStartMonth": 0, + "graphTooltip": 1, + "links": [], + "liveNow": false, + "panels": [ + { + "collapsed": false, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 0 + }, + "id": 43, + "panels": [], + "targets": [ + { + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "refId": "A" + } + ], + "title": "Information", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "Panel only works when a single pod is selected.", + "fieldConfig": { + "defaults": { + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "rgb(255, 255, 255)", + "value": null + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 2, + "w": 12, + "x": 0, + "y": 1 + }, + "id": 2, + "options": { + "colorMode": "none", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "mean" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "textMode": "name", + "wideLayout": true + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "kube_pod_info{namespace=\"$namespace\", pod=\"$pod\", cluster=\"$cluster\"}", + "instant": true, + "interval": "", + "legendFormat": "{{ created_by_kind }}: {{ created_by_name }}", + "refId": "A" + } + ], + "title": "Created by", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "Panel only works when a single pod is selected.", + "fieldConfig": { + "defaults": { + "links": [ + { + "title": "", + "url": "/d/k8s_views_nodes/kubernetes-views-nodes?var-datasource=${datasource}&var-node=${__data.fields.node}" + } + ], + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "rgb(255, 255, 255)", + "value": null + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 2, + "w": 6, + "x": 12, + "y": 1 + }, + "id": 33, + "options": { + "colorMode": "none", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "mean" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "textMode": "name", + "wideLayout": true + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "kube_pod_info{namespace=\"$namespace\", pod=\"$pod\", cluster=\"$cluster\"}", + "instant": true, + "interval": "", + "legendFormat": "{{ node }}", + "refId": "A" + } + ], + "title": "Running on", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "Panel only works when a single pod is selected.", + "fieldConfig": { + "defaults": { + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "rgb(255, 255, 255)", + "value": null + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 2, + "w": 6, + "x": 18, + "y": 1 + }, + "id": 41, + "options": { + "colorMode": "none", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "mean" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "textMode": "name", + "wideLayout": true + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "kube_pod_info{namespace=\"$namespace\", pod=\"$pod\", cluster=\"$cluster\"}", + "instant": true, + "interval": "", + "legendFormat": "{{ pod_ip }}", + "refId": "A" + } + ], + "title": "Pod IP", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "Panel only works when a single pod is selected.", + "fieldConfig": { + "defaults": { + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "rgb(255, 255, 255)", + "value": null + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 2, + "w": 5, + "x": 0, + "y": 3 + }, + "id": 52, + "options": { + "colorMode": "none", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "mean" + ], + "fields": "", + "values": false + }, + "showPercentChange": false, + "textMode": "name", + "wideLayout": true + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "kube_pod_info{namespace=\"$namespace\", pod=\"$pod\", priority_class!=\"\", cluster=\"$cluster\"}", + "format": "time_series", + "instant": true, + "interval": "", + "legendFormat": "{{ priority_class }}", + "range": false, + "refId": "A" + } + ], + "title": "Priority Class", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "Panel only works when a single pod is selected.", + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Burstable" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "red", + "mode": "fixed" + } + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "BestEffort" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "orange", + "mode": "fixed" + } + } + ] + } + ] + }, + "gridPos": { + "h": 2, + "w": 7, + "x": 5, + "y": 3 + }, + "id": 53, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [], + "fields": "", + "values": false + }, + "showPercentChange": false, + "textMode": "name", + "wideLayout": true + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "kube_pod_status_qos_class{namespace=\"$namespace\", pod=\"$pod\", cluster=\"$cluster\"} > 0", + "instant": true, + "interval": "", + "legendFormat": "{{ qos_class }}", + "refId": "A" + } + ], + "title": "QOS Class", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "Panel only works when a single pod is selected.", + "fieldConfig": { + "defaults": { + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "text", + "value": null + }, + { + "color": "red", + "value": 1 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 2, + "w": 6, + "x": 12, + "y": 3 + }, + "id": 56, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [], + "fields": "", + "values": false + }, + "showPercentChange": false, + "textMode": "name", + "wideLayout": true + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "kube_pod_container_status_last_terminated_reason{namespace=\"$namespace\", pod=\"$pod\", cluster=\"$cluster\"}", + "instant": true, + "interval": "", + "legendFormat": "{{ reason }}", + "refId": "A" + } + ], + "title": "Last Terminated Reason", + "type": "stat" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "Panel only works when a single pod is selected.", + "fieldConfig": { + "defaults": { + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "text", + "value": null + }, + { + "color": "red", + "value": 1 + }, + { + "color": "#EAB839", + "value": 2 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 2, + "w": 6, + "x": 18, + "y": 3 + }, + "id": 57, + "options": { + "colorMode": "value", + "graphMode": "none", + "justifyMode": "auto", + "orientation": "auto", + "reduceOptions": { + "calcs": [], + "fields": "", + "values": true + }, + "showPercentChange": false, + "textMode": "value", + "wideLayout": true + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "kube_pod_container_status_last_terminated_exitcode{namespace=\"$namespace\", pod=\"$pod\", cluster=\"$cluster\"}", + "instant": true, + "interval": "", + "legendFormat": "__auto", + "range": false, + "refId": "A" + } + ], + "title": "Last Terminated Exit Code", + "type": "stat" + }, + { + "collapsed": false, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 5 + }, + "id": 47, + "panels": [], + "targets": [ + { + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "refId": "A" + } + ], + "title": "Resources", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "fixedColor": "blue", + "mode": "fixed" + }, + "decimals": 2, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "percentage", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "#EAB839", + "value": 60 + }, + { + "color": "red", + "value": 75 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 3, + "x": 0, + "y": 6 + }, + "id": 39, + "options": { + "minVizHeight": 75, + "minVizWidth": 75, + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true, + "sizing": "auto" + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(rate(container_cpu_usage_seconds_total{namespace=\"$namespace\", pod=~\"$pod\", image!=\"\", cluster=\"$cluster\"}[$__rate_interval])) / sum(kube_pod_container_resource_requests{namespace=\"$namespace\", pod=~\"$pod\", resource=\"cpu\", job=~\"$job\", cluster=\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "Requests", + "refId": "A" + } + ], + "title": "Total pod CPU Requests usage", + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "decimals": 2, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "percentage", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "#EAB839", + "value": 60 + }, + { + "color": "red", + "value": 75 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 3, + "x": 3, + "y": 6 + }, + "id": 48, + "options": { + "minVizHeight": 75, + "minVizWidth": 75, + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true, + "sizing": "auto" + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(rate(container_cpu_usage_seconds_total{namespace=\"$namespace\", pod=~\"$pod\", image!=\"\", cluster=\"$cluster\"}[$__rate_interval])) / sum(kube_pod_container_resource_limits{namespace=\"$namespace\", pod=~\"$pod\", resource=\"cpu\", job=~\"$job\", cluster=\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "Limits", + "refId": "A" + } + ], + "title": "Total pod CPU Limits usage", + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "fixedColor": "blue", + "mode": "fixed" + }, + "decimals": 2, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "percentage", + "steps": [ + { + "color": "blue", + "value": null + }, + { + "color": "#EAB839", + "value": 80 + }, + { + "color": "red", + "value": 99 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 3, + "x": 6, + "y": 6 + }, + "id": 40, + "options": { + "minVizHeight": 75, + "minVizWidth": 75, + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true, + "sizing": "auto" + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(container_memory_working_set_bytes{namespace=\"$namespace\", pod=~\"$pod\", image!=\"\", cluster=\"$cluster\"}) / sum(kube_pod_container_resource_requests{namespace=\"$namespace\", pod=~\"$pod\", resource=\"memory\", job=~\"$job\", cluster=\"$cluster\"})", + "instant": true, + "interval": "$resolution", + "legendFormat": "Requests", + "refId": "A" + } + ], + "title": "Total pod RAM Requests usage", + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "decimals": 2, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "percentage", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "#EAB839", + "value": 60 + }, + { + "color": "red", + "value": 75 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 3, + "x": 9, + "y": 6 + }, + "id": 49, + "options": { + "minVizHeight": 75, + "minVizWidth": 75, + "orientation": "auto", + "reduceOptions": { + "calcs": [ + "last" + ], + "fields": "", + "values": false + }, + "showThresholdLabels": false, + "showThresholdMarkers": true, + "sizing": "auto" + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(container_memory_working_set_bytes{namespace=\"$namespace\", pod=~\"$pod\", image!=\"\", cluster=\"$cluster\"}) / sum(kube_pod_container_resource_limits{namespace=\"$namespace\", pod=~\"$pod\", resource=\"memory\", job=~\"$job\", cluster=\"$cluster\"}) ", + "instant": true, + "interval": "$resolution", + "legendFormat": "Limits", + "refId": "B" + } + ], + "title": "Total pod RAM Limits usage", + "type": "gauge" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "filterable": false, + "inspect": false, + "minWidth": 100 + }, + "decimals": 4, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "blue", + "value": null + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "Memory Requests" + }, + "properties": [ + { + "id": "unit", + "value": "bytes" + }, + { + "id": "decimals", + "value": 2 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Memory Limits" + }, + "properties": [ + { + "id": "unit", + "value": "bytes" + }, + { + "id": "decimals", + "value": 2 + } + ] + }, + { + "matcher": { + "id": "byName", + "options": "Memory Used" + }, + "properties": [ + { + "id": "unit", + "value": "bytes" + }, + { + "id": "decimals", + "value": 2 + } + ] + } + ] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 6 + }, + "id": 38, + "options": { + "cellHeight": "sm", + "footer": { + "countRows": false, + "fields": "", + "reducer": [ + "sum" + ], + "show": false + }, + "showHeader": true, + "sortBy": [] + }, + "pluginVersion": "10.4.1", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(kube_pod_container_resource_requests{namespace=\"$namespace\", pod=~\"$pod\", resource=\"cpu\", job=~\"$job\", cluster=\"$cluster\"}) by (container)", + "format": "table", + "instant": true, + "interval": "", + "intervalFactor": 1, + "legendFormat": "", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(kube_pod_container_resource_limits{namespace=\"$namespace\", pod=~\"$pod\", resource=\"cpu\", job=~\"$job\", cluster=\"$cluster\"}) by (container)", + "format": "table", + "instant": true, + "interval": "", + "intervalFactor": 1, + "legendFormat": "", + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(kube_pod_container_resource_requests{namespace=\"$namespace\", pod=~\"$pod\", resource=\"memory\", job=~\"$job\", cluster=\"$cluster\"}) by (container)", + "format": "table", + "instant": true, + "interval": "", + "legendFormat": "", + "refId": "C" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(kube_pod_container_resource_limits{namespace=\"$namespace\", pod=~\"$pod\", resource=\"memory\", job=~\"$job\", cluster=\"$cluster\"}) by (container)", + "format": "table", + "instant": true, + "interval": "", + "legendFormat": "", + "refId": "D" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(rate(container_cpu_usage_seconds_total{namespace=\"$namespace\", pod=~\"$pod\", image!=\"\", container!=\"\", cluster=\"$cluster\"}[$__rate_interval])) by (container)", + "format": "table", + "hide": false, + "instant": true, + "legendFormat": "__auto", + "range": false, + "refId": "E" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": false, + "expr": "sum(container_memory_working_set_bytes{namespace=\"$namespace\", pod=~\"$pod\", image!=\"\", container!=\"\", cluster=\"$cluster\"}) by (container)", + "format": "table", + "hide": false, + "instant": true, + "range": false, + "refId": "F" + } + ], + "title": "Resources by container", + "transformations": [ + { + "id": "seriesToColumns", + "options": { + "byField": "container" + } + }, + { + "id": "organize", + "options": { + "excludeByName": { + "Time": true, + "Time 1": true, + "Time 2": true, + "Time 4": true, + "__name__": true, + "__name__ 1": true, + "__name__ 2": true, + "__name__ 3": true, + "__name__ 4": true, + "container": false, + "endpoint": true, + "endpoint 2": true, + "endpoint 3": true, + "endpoint 4": true, + "instance": true, + "instance 2": true, + "instance 3": true, + "instance 4": true, + "job": true, + "job 2": true, + "job 3": true, + "job 4": true, + "namespace": true, + "namespace 2": true, + "namespace 3": true, + "namespace 4": true, + "node": true, + "node 2": true, + "node 3": true, + "node 4": true, + "pod": true, + "pod 2": true, + "pod 3": true, + "pod 4": true, + "resource 1": true, + "resource 2": true, + "resource 3": true, + "resource 4": true, + "service": true, + "service 2": true, + "service 3": true, + "service 4": true, + "uid 1": true, + "uid 2": true, + "uid 3": true, + "uid 4": true, + "unit 1": true, + "unit 2": true, + "unit 3": true, + "unit 4": true + }, + "indexByName": { + "Time 1": 7, + "Time 2": 8, + "Time 3": 9, + "Time 4": 10, + "Time 5": 11, + "Time 6": 12, + "Value #A": 2, + "Value #B": 3, + "Value #C": 5, + "Value #D": 6, + "Value #E": 1, + "Value #F": 4, + "container": 0 + }, + "renameByName": { + "Value #A": "CPU Requests", + "Value #B": "CPU Limits", + "Value #C": "Memory Requests", + "Value #D": "Memory Limits", + "Value #E": "CPU Used", + "Value #F": "Memory Used", + "container": "Container" + } + } + } + ], + "type": "table" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "thresholds" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "Percent", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "area" + } + }, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "percentage", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "yellow", + "value": 20 + }, + { + "color": "green", + "value": 30 + }, + { + "color": "yellow", + "value": 70 + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 14 + }, + "id": 50, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(container_cpu_usage_seconds_total{namespace=\"$namespace\", pod=~\"$pod\", image!=\"\", cluster=\"$cluster\"}[$__rate_interval])) by (container) / sum(kube_pod_container_resource_requests{namespace=\"$namespace\", pod=~\"$pod\", resource=\"cpu\", job=~\"$job\", cluster=\"$cluster\"}) by (container)", + "interval": "$resolution", + "legendFormat": "{{ container }} REQUESTS", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(rate(container_cpu_usage_seconds_total{namespace=\"$namespace\", pod=~\"$pod\", image!=\"\", cluster=\"$cluster\"}[$__rate_interval])) by (container) / sum(kube_pod_container_resource_limits{namespace=\"$namespace\", pod=~\"$pod\", resource=\"cpu\", job=~\"$job\", cluster=\"$cluster\"}) by (container)", + "hide": false, + "legendFormat": "{{ container }} LIMITS", + "range": true, + "refId": "B" + } + ], + "title": "CPU Usage / Requests & Limits by container", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "fixedColor": "blue", + "mode": "thresholds" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "Percent", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "area" + } + }, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "percentage", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "yellow", + "value": 20 + }, + { + "color": "green", + "value": 30 + }, + { + "color": "#EAB839", + "value": 70 + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "percentunit" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 14 + }, + "id": 30, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(container_memory_working_set_bytes{namespace=\"$namespace\", pod=~\"$pod\", image!=\"\", cluster=\"$cluster\"}) by (container) / sum(kube_pod_container_resource_requests{namespace=\"$namespace\", pod=~\"$pod\", resource=\"memory\", job=~\"$job\", cluster=\"$cluster\"}) by (container)", + "interval": "", + "legendFormat": "{{ container }} REQUESTS", + "range": true, + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "expr": "sum(container_memory_working_set_bytes{namespace=\"$namespace\", pod=~\"$pod\", image!=\"\", cluster=\"$cluster\"}) by (container) / sum(kube_pod_container_resource_limits{namespace=\"$namespace\", pod=~\"$pod\", resource=\"memory\", job=~\"$job\", cluster=\"$cluster\"}) by (container)", + "hide": false, + "legendFormat": "{{ container }} LIMITS", + "range": true, + "refId": "B" + } + ], + "title": "Memory Usage / Requests & Limits by container", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "CPU Cores", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 4, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "limit" + }, + "properties": [ + { + "id": "color", + "value": { + "fixedColor": "#F2495C", + "mode": "fixed" + } + }, + { + "id": "custom.fillOpacity", + "value": 0 + } + ] + } + ] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 22 + }, + "id": 29, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(container_cpu_usage_seconds_total{namespace=\"$namespace\", pod=~\"$pod\", image!=\"\", container!=\"\", cluster=\"$cluster\"}[$__rate_interval])) by (container)", + "interval": "$resolution", + "legendFormat": "{{ container }}", + "range": true, + "refId": "A" + } + ], + "title": "CPU Usage by container", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "Bytes", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 22 + }, + "id": 51, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(container_memory_working_set_bytes{namespace=\"$namespace\", pod=~\"$pod\", image!=\"\", container!=\"\", cluster=\"$cluster\"}) by (container)", + "interval": "", + "legendFormat": "{{ container }}", + "range": true, + "refId": "A" + } + ], + "title": "Memory Usage by container", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "description": "", + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "SECONDS", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "decimals": 2, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "s" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 30 + }, + "id": 59, + "options": { + "legend": { + "calcs": [ + "min", + "max", + "mean" + ], + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Max", + "sortDesc": true + }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(rate(container_cpu_cfs_throttled_seconds_total{namespace=~\"$namespace\", pod=~\"$pod\", image!=\"\", container!=\"\", cluster=\"$cluster\"}[$__rate_interval])) by (container)", + "interval": "$resolution", + "legendFormat": "{{ container }}", + "range": true, + "refId": "A" + } + ], + "title": "CPU Throttled seconds by container", + "type": "timeseries" + }, + { + "collapsed": false, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 38 + }, + "id": 62, + "panels": [], + "title": "Kubernetes", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "fixedColor": "blue", + "mode": "thresholds" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "Percent", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "area" + } + }, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "percentage", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "yellow", + "value": 20 + }, + { + "color": "green", + "value": 30 + }, + { + "color": "#EAB839", + "value": 70 + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 39 + }, + "id": 60, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(increase(container_oom_events_total{namespace=\"${namespace}\", pod=\"${pod}\", container!=\"\", cluster=\"$cluster\"}[$__rate_interval])) by (container)", + "interval": "", + "legendFormat": "{{ container }}", + "range": true, + "refId": "A" + } + ], + "title": "OOM Events by container", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "fixedColor": "blue", + "mode": "thresholds" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "Percent", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineStyle": { + "fill": "solid" + }, + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "area" + } + }, + "mappings": [], + "max": 1, + "min": 0, + "thresholds": { + "mode": "percentage", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "yellow", + "value": 20 + }, + { + "color": "green", + "value": 30 + }, + { + "color": "#EAB839", + "value": 70 + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "none" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 39 + }, + "id": 61, + "options": { + "legend": { + "calcs": [], + "displayMode": "table", + "placement": "right", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "desc" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "editorMode": "code", + "exemplar": true, + "expr": "sum(increase(kube_pod_container_status_restarts_total{namespace=~\"${namespace}\", pod=\"${pod}\", container!=\"\", job=~\"$job\", cluster=\"$cluster\"}[$__rate_interval])) by (container)", + "interval": "", + "legendFormat": "{{ container }}", + "range": true, + "refId": "A" + } + ], + "title": "Container Restarts by container", + "type": "timeseries" + }, + { + "collapsed": false, + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 47 + }, + "id": 45, + "panels": [], + "targets": [ + { + "datasource": { + "type": "datasource", + "uid": "grafana" + }, + "refId": "A" + } + ], + "title": "Network", + "type": "row" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "bytes" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 48 + }, + "id": 31, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(container_network_receive_bytes_total{namespace=\"$namespace\", pod=~\"$pod\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "Received", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "- sum(rate(container_network_transmit_bytes_total{namespace=\"$namespace\", pod=~\"$pod\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "Transmitted", + "refId": "B" + } + ], + "title": "Network - Bandwidth", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "pps" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 48 + }, + "id": 34, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(container_network_receive_packets_total{namespace=\"$namespace\", pod=~\"$pod\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "Received", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "- sum(rate(container_network_transmit_packets_total{namespace=\"$namespace\", pod=~\"$pod\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "Transmitted", + "refId": "B" + } + ], + "title": "Network - Packets Rate", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "pps" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 56 + }, + "id": 36, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(container_network_receive_packets_dropped_total{namespace=\"$namespace\", pod=~\"$pod\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "Received", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "- sum(rate(container_network_transmit_packets_dropped_total{namespace=\"$namespace\", pod=~\"$pod\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "Transmitted", + "refId": "B" + } + ], + "title": "Network - Packets Dropped", + "type": "timeseries" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "fieldConfig": { + "defaults": { + "color": { + "mode": "palette-classic" + }, + "custom": { + "axisBorderShow": false, + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 25, + "gradientMode": "opacity", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "insertNulls": false, + "lineInterpolation": "smooth", + "lineWidth": 2, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "never", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" + } + }, + "mappings": [], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": null + }, + { + "color": "red", + "value": 80 + } + ] + }, + "unit": "pps" + }, + "overrides": [] + }, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 56 + }, + "id": 37, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true + }, + "tooltip": { + "mode": "multi", + "sort": "none" + } + }, + "pluginVersion": "8.3.3", + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "sum(rate(container_network_receive_errors_total{namespace=\"$namespace\", pod=~\"$pod\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "Received", + "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "exemplar": true, + "expr": "- sum(rate(container_network_transmit_errors_total{namespace=\"$namespace\", pod=~\"$pod\", cluster=\"$cluster\"}[$__rate_interval]))", + "interval": "$resolution", + "legendFormat": "Transmitted", + "refId": "B" + } + ], + "title": "Network - Errors", + "type": "timeseries" + } + ], + "refresh": "30s", + "schemaVersion": 39, + "tags": [ + "Kubernetes", + "Prometheus" + ], + "templating": { + "list": [ + { + "current": { + "selected": false, + "text": "", + "value": "" + }, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "datasource", + "options": [], + "query": "prometheus", + "queryValue": "", + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "type": "datasource" + }, + { + "current": { + "isNone": true, + "selected": false, + "text": "None", + "value": "" + }, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_node_info,cluster)", + "hide": 0, + "includeAll": false, + "multi": false, + "name": "cluster", + "options": [], + "query": { + "qryType": 1, + "query": "label_values(kube_node_info,cluster)", + "refId": "PrometheusVariableQueryEditor-VariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + }, + { + "current": { + "selected": false, + "text": "monitoring", + "value": "monitoring" + }, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_pod_info{cluster=\"$cluster\"}, namespace)", + "hide": 0, + "includeAll": false, + "multi": false, + "name": "namespace", + "options": [], + "query": { + "query": "label_values(kube_pod_info{cluster=\"$cluster\"}, namespace)", + "refId": "Prometheus-namespace-Variable-Query" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "tagValuesQuery": "", + "tagsQuery": "", + "type": "query", + "useTags": false + }, + { + "current": { + "selected": false, + "text": "", + "value": "" + }, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_pod_info{namespace=\"$namespace\", cluster=\"$cluster\"}, pod)", + "hide": 0, + "includeAll": true, + "multi": true, + "name": "pod", + "options": [], + "query": { + "query": "label_values(kube_pod_info{namespace=\"$namespace\", cluster=\"$cluster\"}, pod)", + "refId": "Prometheus-pod-Variable-Query" + }, + "refresh": 2, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "tagValuesQuery": "", + "tagsQuery": "", + "type": "query", + "useTags": false + }, + { + "current": { + "selected": false, + "text": "30s", + "value": "30s" + }, + "hide": 0, + "includeAll": false, + "multi": false, + "name": "resolution", + "options": [ + { + "selected": false, + "text": "1s", + "value": "1s" + }, + { + "selected": false, + "text": "15s", + "value": "15s" + }, + { + "selected": true, + "text": "30s", + "value": "30s" + }, + { + "selected": false, + "text": "1m", + "value": "1m" + }, + { + "selected": false, + "text": "3m", + "value": "3m" + }, + { + "selected": false, + "text": "5m", + "value": "5m" + } + ], + "query": "1s, 15s, 30s, 1m, 3m, 5m", + "queryValue": "", + "skipUrlSync": false, + "type": "custom" + }, + { + "current": { + "selected": false, + "text": "kube-state-metrics", + "value": "kube-state-metrics" + }, + "datasource": { + "type": "prometheus", + "uid": "${datasource}" + }, + "definition": "label_values(kube_pod_info{namespace=\"$namespace\", cluster=\"$cluster\"},job)", + "hide": 0, + "includeAll": false, + "multi": true, + "name": "job", + "options": [], + "query": { + "qryType": 1, + "query": "label_values(kube_pod_info{namespace=\"$namespace\", cluster=\"$cluster\"},job)", + "refId": "PrometheusVariableQueryEditor-VariableQuery" + }, + "refresh": 1, + "regex": "", + "skipUrlSync": false, + "sort": 1, + "type": "query" + } + ] + }, + "time": { + "from": "now-1h", + "to": "now" + }, + "timepicker": {}, + "timezone": "", + "title": "Kubernetes / Views / Pods", + "uid": "k8s_views_pods", + "version": 28, + "weekStart": "" +} diff --git a/charts/monitoring/templates/dashboards-json-configmap.yaml b/charts/monitoring/templates/dashboards-json-configmap.yaml new file mode 100644 index 0000000..7fca985 --- /dev/null +++ b/charts/monitoring/templates/dashboards-json-configmap.yaml @@ -0,0 +1,23 @@ +# Custom template to generate the configmap from +# locally hosted json files. +{{- if .Values.dashboards }} + +{{ $files := .Files }} +{{ $chart := .Chart }} +apiVersion: v1 +kind: ConfigMap +metadata: + name: k8s-all-config-map + labels: + helm.sh/chart: "{{ $chart.Name }}-{{ $chart.Version }}" + dashboard-provider: default + grafana_dashboard: "1" +data: +{{- range $key, $value := .Values.dashboards }} +{{ print $key | indent 2 }}.json: +{{- if hasKey $value "file" }} +{{ toYaml ( $files.Get $value.file ) | indent 4}} +{{- end }} +{{- end }} + +{{- end }} diff --git a/charts/monitoring/values.yaml b/charts/monitoring/values.yaml new file mode 100644 index 0000000..2ad4be6 --- /dev/null +++ b/charts/monitoring/values.yaml @@ -0,0 +1,109 @@ +grafana: + adminPassword: admin + datasources: + datasources.yaml: + apiVersion: 1 + datasources: + - name: Prometheus + type: prometheus + url: "http://{{ tpl .Release.Name . }}-prometheus-server" + access: proxy + isDefault: true + - name: Loki + type: loki + access: proxy + url: "http://{{ tpl .Release.Name . }}-loki:3100" + sidecar: # needed for https://github.com/dotdc/grafana-dashboards-kubernetes?tab=readme-ov-file#installation + dashboards: + enabled: true + defaultFolderName: "General" + label: grafana_dashboard + labelValue: "1" + folderAnnotation: grafana_folder + searchNamespace: ALL + provider: + foldersFromFilesStructure: true + # Provision grafana-dashboards-kubernetes + dashboardProviders: + dashboardproviders.yaml: + apiVersion: 1 + providers: + - name: 'grafana-dashboards-kubernetes' + orgId: 1 + folder: 'Kubernetes' + type: file + disableDeletion: true + editable: true + options: + path: /var/lib/grafana/dashboards/grafana-dashboards-kubernetes + dashboardsConfigMaps: + # The config map is generated from dashboards values below using a + # custom template inside templates/ + grafana-dashboards-kubernetes: k8s-all-config-map + grafana.ini: + server: + root_url: "https://{{ tpl (first .Values.ingress.hosts) . }}/grafana" + ingress: + enabled: true + annotations: + nginx.ingress.kubernetes.io/rewrite-target: /$2 + path: /grafana(/|$)(.*) + pathType: ImplementationSpecific + hosts: + - rmf.test + ingressClassName: nginx + +loki: + deploymentMode: SingleBinary + loki: + auth_enabled: false + commonConfig: + replication_factor: 1 + storage: + type: "filesystem" + schemaConfig: + configs: + - from: 2024-01-01 + store: tsdb + index: + prefix: loki_index_ + period: 24h + object_store: filesystem # we're storing on filesystem so there's no real persistence here. + schema: v13 + singleBinary: + replicas: 1 + read: + replicas: 0 + backend: + replicas: 0 + write: + replicas: 0 + monitoring: + selfMonitoring: + podLogs: + additionalPipelineStages: + - match: + selector: "{__meta_kubernetes_pod_annotation_logging_format=logfmt}" + stages: + - logfmt: + source: content + +promtail: + config: + clients: + - url: "http://{{ tpl .Release.Name . }}-loki-gateway/loki/api/v1/push" + +# Custom configurations to import the dasbboards config from files +dashboards: + k8s-system-api-server: + file: dashboards/k8s-system-api-server.json + k8s-system-coredns: + file: dashboards/k8s-system-coredns.json + k8s-views-global: + file: dashboards/k8s-views-global.json + k8s-views-namespaces: + file: dashboards/k8s-views-namespaces.json + k8s-views-nodes: + file: dashboards/k8s-views-nodes.json + k8s-views-pods: + file: dashboards/k8s-views-pods.json diff --git a/charts/rmf-deployment/Chart.yaml b/charts/rmf-deployment/Chart.yaml new file mode 100644 index 0000000..63d3a68 --- /dev/null +++ b/charts/rmf-deployment/Chart.yaml @@ -0,0 +1,4 @@ +apiVersion: v2 +name: openrmf-deployment +description: Helm Chart for Open-RMF deployment +version: 1.0.0 diff --git a/charts/rmf-deployment/README.md b/charts/rmf-deployment/README.md new file mode 100644 index 0000000..57a30ba --- /dev/null +++ b/charts/rmf-deployment/README.md @@ -0,0 +1 @@ +Helm charts for deployment diff --git a/charts/rmf-deployment/templates/config/cyclonedds-configmap.yaml b/charts/rmf-deployment/templates/config/cyclonedds-configmap.yaml new file mode 100644 index 0000000..b4afe79 --- /dev/null +++ b/charts/rmf-deployment/templates/config/cyclonedds-configmap.yaml @@ -0,0 +1,20 @@ +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: cyclonedds-configmap +data: + cyclonedds.xml: | + + + + default + 8192B + udp + + + auto + 50 + + + diff --git a/charts/rmf-deployment/templates/config/keycloak-secrets.yaml b/charts/rmf-deployment/templates/config/keycloak-secrets.yaml new file mode 100644 index 0000000..272b4dc --- /dev/null +++ b/charts/rmf-deployment/templates/config/keycloak-secrets.yaml @@ -0,0 +1,11 @@ +--- +apiVersion: v1 +kind: Secret +metadata: + name: keycloak-secret +type: Opaque +stringData: + KEYCLOAK_ADMIN: "admin" + KEYCLOAK_ADMIN_PASSWORD: {{ .Values.keycloak.KEYCLOAK_ADMIN_PASSWD }} + DB_USER: "keycloak" + DB_PASSWORD: {{ .Values.keycloak.KEYCLOAK_DB_PASSWD }} diff --git a/charts/rmf-deployment/templates/config/rmf-web-rmf-server-configmap.yaml b/charts/rmf-deployment/templates/config/rmf-web-rmf-server-configmap.yaml new file mode 100644 index 0000000..b766124 --- /dev/null +++ b/charts/rmf-deployment/templates/config/rmf-web-rmf-server-configmap.yaml @@ -0,0 +1,31 @@ +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: rmf-web-rmf-server-configmap +data: + rmf_server_config.py: | + from copy import deepcopy + + from api_server.default_config import config as default_config + + + config = deepcopy(default_config) + config["host"] = "0.0.0.0" + config["port"] = 8000 + config["db_url"] = ( + "postgres://rmf-web-rmf-server:{{ .Values.rmf_web.API_SERVER_DB_PASSWD }}@rmf-web-rmf-server-db/rmf-web-rmf-server" + ) + config["public_url"] = "/rmf/api/v1" + config["log_level"] = "INFO" + config["builtin_admin"] = "admin" + config["jwt_public_key"] = "/jwt-configmap/jwt-pub-key.pub" + config["aud"] = "dashboard" + config["iss"] = "{{ .Values.baseUrl }}/auth/realms/rmf-web" + config["jwt_secret"] = None +--- +# a dummy so that keycloak-setup does not need "create" permissions +apiVersion: v1 +kind: ConfigMap +metadata: + name: jwt-pub-key diff --git a/charts/rmf-deployment/templates/config/rmf-web-rmf-server-secrets.yaml b/charts/rmf-deployment/templates/config/rmf-web-rmf-server-secrets.yaml new file mode 100644 index 0000000..0a559d5 --- /dev/null +++ b/charts/rmf-deployment/templates/config/rmf-web-rmf-server-secrets.yaml @@ -0,0 +1,10 @@ +--- +apiVersion: v1 +kind: Secret +metadata: + name: rmf-web-rmf-server-secret +type: Opaque +stringData: + DB_USER: "rmf-web-rmf-server" + DB_PASSWORD: {{ .Values.rmf_web.API_SERVER_DB_PASSWD | quote }} + ADMIN_PASSWD: {{ .Values.rmf_web.ADMIN_PASSWD }} diff --git a/charts/rmf-deployment/templates/config/tz-singapore-configmap.yaml b/charts/rmf-deployment/templates/config/tz-singapore-configmap.yaml new file mode 100644 index 0000000..6744e78 --- /dev/null +++ b/charts/rmf-deployment/templates/config/tz-singapore-configmap.yaml @@ -0,0 +1,8 @@ +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: cm-tz-singapore +data: + localtime: |- + {{ .Files.Get "tz-singapore" | b64enc }} diff --git a/charts/rmf-deployment/templates/keycloak.yaml b/charts/rmf-deployment/templates/keycloak.yaml new file mode 100644 index 0000000..f87d4c5 --- /dev/null +++ b/charts/rmf-deployment/templates/keycloak.yaml @@ -0,0 +1,279 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: keycloak-db + labels: + app: keycloak + component: db +spec: + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 1Gi +--- +apiVersion: v1 +kind: Service +metadata: + name: keycloak-db + labels: + app: keycloak + component: db +spec: + selector: + app: keycloak + component: db + ports: + - port: 5432 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: keycloak-db + labels: + app: keycloak + component: db +spec: + replicas: 1 + selector: + matchLabels: + app: keycloak + component: db + template: + metadata: + labels: + app: keycloak + component: db + spec: + containers: + - name: postgresql + image: {{ .Values.global.REGISTRY_DOCKER | default "docker.io" }}/{{ .Values.keycloak.POSTGRES_IMAGE }} + imagePullPolicy: IfNotPresent + env: + - name: POSTGRES_USER + valueFrom: + secretKeyRef: + name: keycloak-secret + key: DB_USER + - name: POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: keycloak-secret + key: DB_PASSWORD + - name: POSTGRES_DB + value: keycloak + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: keycloak-db + - mountPath: /etc/localtime + subPath: localtime + name: vol-tz-singapore + readOnly: true + volumes: + - name: keycloak-db + persistentVolumeClaim: + claimName: keycloak-db + - name: vol-tz-singapore + configMap: + name: cm-tz-singapore + tolerations: + - key: reserved + operator: Equal + value: rmf + effect: NoSchedule +--- +apiVersion: v1 +kind: Service +metadata: + name: keycloak + labels: + app: keycloak + component: app +spec: + ports: + - name: http + port: 8080 + selector: + app: keycloak + component: app +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: keycloak + labels: + app: keycloak + component: app +spec: + replicas: 1 + selector: + matchLabels: + app: keycloak + component: app + template: + metadata: + labels: + app: keycloak + component: app + spec: + containers: + - name: keycloak + image: {{ .Values.global.REGISTRY_QUAY | default "quay.io" }}/{{ .Values.keycloak.KEYCLOAK_IMAGE }} + imagePullPolicy: IfNotPresent + args: + - 'start' + - '--hostname-strict' + - 'false' + env: + - name: KEYCLOAK_ADMIN + valueFrom: + secretKeyRef: + name: keycloak-secret + key: KEYCLOAK_ADMIN + - name: KEYCLOAK_ADMIN_PASSWORD + valueFrom: + secretKeyRef: + name: keycloak-secret + key: KEYCLOAK_ADMIN_PASSWORD + - name: PROXY_ADDRESS_FORWARDING + value: 'true' + - name: KC_DB + value: postgres + - name: KC_DB_URL + value: jdbc:postgresql://keycloak-db/keycloak + - name: KC_DB_USERNAME + valueFrom: + secretKeyRef: + name: keycloak-secret + key: DB_USER + - name: KC_DB_PASSWORD + valueFrom: + secretKeyRef: + name: keycloak-secret + key: DB_PASSWORD + - name: KC_HOSTNAME_URL + value: {{ .Values.baseUrl }}/auth + - name: KC_HTTP_RELATIVE_PATH + value: /auth + - name: KC_HOSTNAME_ADMIN_URL + value: {{ .Values.baseUrl }}/auth + - name: KC_HEALTH_ENABLED + value: "true" + - name: KC_HTTP_ENABLED + value: "true" + # We CANNOT tell keycloak that we are behind a proxy even though we are as doing so causes + # it to use "X-Forwarded-*" and "Forwarded" headers to build the base url. The problem is + # that in devel, the ingress thinks it is hosting at port 80 and 443 but + # in fact we are using port remapping so the real url is different. + # While we could technically change the port of the ingress (by using our own ingress image etc), + # kubernetes ingress are designed to be served on the standard ports so it is better to + # not mess with it. Also note that this only affects the devel deploy, a prod deploy will + # be on the standard ports and can tell keycloak it is behind a proxy (but doesn't need to). + # - name: KC_PROXY + # value: edge + volumeMounts: + - mountPath: /etc/localtime + subPath: localtime + name: vol-tz-singapore + readOnly: true + ports: + - name: http + containerPort: 8080 + readinessProbe: + httpGet: + path: /auth/realms/master + port: 8080 + volumes: + - name: vol-tz-singapore + configMap: + name: cm-tz-singapore + tolerations: + - key: reserved + operator: Equal + value: rmf + effect: NoSchedule +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: keycloak + annotations: + cert-manager.io/cluster-issuer: {{ .Values.CERT_MANAGER_ISSUER }} +spec: + ingressClassName: nginx + rules: + - host: {{ .Values.hostName | quote }} + http: + paths: + - path: /auth + pathType: Prefix + backend: + service: + name: keycloak + port: + number: 8080 + tls: + - hosts: + - {{ .Values.hostName | quote }} + secretName: rmf-web-ingress-tls +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: keycloak-setup-sa + annotations: + kubernetes.io/enforce-mountable-secrets: "true" +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + name: keycloak-setup-role +rules: + - apiGroups: [""] + resources: ["secrets"] + resourceNames: + - keycloak-secret + - rmf-web-rmf-server-secret + verbs: ["get"] + - apiGroups: ["apps"] + resources: ["deployments"] + resourceNames: + - keycloak + verbs: ["get", "list", "watch"] + - apiGroups: [""] + resources: ["configmaps"] + resourceNames: + - jwt-pub-key + verbs: ["*"] +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + name: keycloak-setup-rb +subjects: + - kind: ServiceAccount + name: keycloak-setup-sa +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: keycloak-setup-role +--- +apiVersion: batch/v1 +kind: Job +metadata: + name: keycloak-setup +spec: + completions: 1 + parallelism: 1 + activeDeadlineSeconds: 120 + ttlSecondsAfterFinished: 120 + template: + spec: + serviceAccount: keycloak-setup-sa + containers: + - name: keycloak-setup + image: {{ .Values.global.REGISTRY_RMF | default "localhost" }}/{{ .Values.keycloak.KEYCLOAK_SETUP_IMAGE }}:{{ .Values.global.DEPLOYMENT_IMAGE_TAG }} + imagePullPolicy: IfNotPresent + command: ["/keycloak-setup.bash", "{{ .Values.baseUrl }}"] + restartPolicy: Never diff --git a/charts/rmf-deployment/templates/rmf-core-modules.yaml b/charts/rmf-deployment/templates/rmf-core-modules.yaml new file mode 100644 index 0000000..1749c4c --- /dev/null +++ b/charts/rmf-deployment/templates/rmf-core-modules.yaml @@ -0,0 +1,233 @@ +{{- if .Values.ENABLE_RMF -}} +--- +apiVersion: v1 +kind: Pod +metadata: + name: rmf-traffic-schedule + labels: + app: rmf-traffic-schedule +spec: + restartPolicy: Always + containers: + - name: rmf-traffic-schedule + image: {{ .Values.global.REGISTRY_RMF | default "localhost" }}/{{ .Values.rmf.RMF_IMAGE }}:{{ .Values.global.DEPLOYMENT_IMAGE_TAG }} + imagePullPolicy: IfNotPresent + env: + - name: RMF_USE_SIM_TIME + value: {{ .Values.global.RMF_USE_SIM_TIME | quote }} + - name: {{ .Values.global.DDS_ENV | quote }} + value: {{ .Values.global.DDS_CONFIG | quote }} + - name: ROS_DOMAIN_ID + value: {{ .Values.global.ROS_DOMAIN_ID | quote }} + - name: RMW_IMPLEMENTATION + value: {{ .Values.global.RMW_IMPLEMENTATION | quote }} + command: ["/bin/bash"] + args: + - -c + - > + /ros_entrypoint.sh + ros2 run rmf_traffic_ros2 rmf_traffic_schedule --ros-args + -p use_sim_time:=$(RMF_USE_SIM_TIME) + volumeMounts: + - mountPath: {{ .Values.global.DDS_CONFIG_MOUNTPATH | quote }} + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + volumes: + - name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + configMap: + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + tolerations: + - key: reserved + operator: Equal + value: rmf + effect: NoSchedule +--- +apiVersion: v1 +kind: Pod +metadata: + name: rmf-task-dispatcher +spec: + restartPolicy: Always + containers: + - name: rmf-task-dispatcher + image: {{ .Values.global.REGISTRY_RMF | default "localhost" }}/{{ .Values.rmf.RMF_IMAGE }}:{{ .Values.global.DEPLOYMENT_IMAGE_TAG }} + env: + - name: RMF_USE_SIM_TIME + value: {{ .Values.global.RMF_USE_SIM_TIME | quote }} + - name: {{ .Values.global.DDS_ENV | quote }} + value: {{ .Values.global.DDS_CONFIG | quote }} + - name: ROS_DOMAIN_ID + value: {{ .Values.global.ROS_DOMAIN_ID | quote }} + - name: RMW_IMPLEMENTATION + value: {{ .Values.global.RMW_IMPLEMENTATION | quote }} + - name: RMF_BIDDING_TIME_WINDOW + value: {{ .Values.global.RMF_BIDDING_TIME_WINDOW | quote }} + - name: RMF_SERVER_URI + value: {{ .Values.global.RMF_SERVER_URI | quote }} + command: ["/bin/bash"] + args: + - -c + - > + /ros_entrypoint.sh + ros2 run rmf_task_ros2 rmf_task_dispatcher --ros-args + -p use_sim_time:=$(RMF_USE_SIM_TIME) + -p bidding_time_window:=$(RMF_BIDDING_TIME_WINDOW) + # -p server_uri:=$(RMF_SERVER_URI) # remove ws connection as it causes a data race when writing task states + -p use_unique_hex_string_with_task_id:=true + volumeMounts: + - mountPath: {{ .Values.global.DDS_CONFIG_MOUNTPATH | quote }} + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + volumes: + - name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + configMap: + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + tolerations: + - key: reserved + operator: Equal + value: rmf + effect: NoSchedule +--- +apiVersion: v1 +kind: Pod +metadata: + name: rmf-lift-supervisor +spec: + restartPolicy: Always + containers: + - name: rmf-lift-supervisor + image: {{ .Values.global.REGISTRY_RMF | default "localhost" }}/{{ .Values.rmf.RMF_IMAGE }}:{{ .Values.global.DEPLOYMENT_IMAGE_TAG }} + imagePullPolicy: IfNotPresent + env: + - name: RMF_USE_SIM_TIME + value: {{ .Values.global.RMF_USE_SIM_TIME | quote }} + - name: {{ .Values.global.DDS_ENV | quote }} + value: {{ .Values.global.DDS_CONFIG | quote }} + - name: ROS_DOMAIN_ID + value: {{ .Values.global.ROS_DOMAIN_ID | quote }} + - name: RMW_IMPLEMENTATION + value: {{ .Values.global.RMW_IMPLEMENTATION | quote }} + command: ["/bin/bash"] + args: + - -c + - > + /ros_entrypoint.sh + ros2 run rmf_fleet_adapter lift_supervisor + volumeMounts: + - mountPath: {{ .Values.global.DDS_CONFIG_MOUNTPATH | quote }} + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + volumes: + - name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + configMap: + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + tolerations: + - key: reserved + operator: Equal + value: rmf + effect: NoSchedule +--- +apiVersion: v1 +kind: Pod +metadata: + name: rmf-traffic-blockade +spec: + restartPolicy: Always + containers: + - name: rmf-traffic-blockade + image: {{ .Values.global.REGISTRY_RMF | default "localhost" }}/{{ .Values.rmf.RMF_IMAGE }}:{{ .Values.global.DEPLOYMENT_IMAGE_TAG }} + imagePullPolicy: IfNotPresent + env: + - name: RMF_USE_SIM_TIME + value: {{ .Values.global.RMF_USE_SIM_TIME | quote }} + - name: {{ .Values.global.DDS_ENV | quote }} + value: {{ .Values.global.DDS_CONFIG | quote }} + - name: ROS_DOMAIN_ID + value: {{ .Values.global.ROS_DOMAIN_ID | quote }} + - name: RMW_IMPLEMENTATION + value: {{ .Values.global.RMW_IMPLEMENTATION | quote }} + command: ["/bin/bash"] + args: + - -c + - > + /ros_entrypoint.sh + ros2 run rmf_traffic_ros2 rmf_traffic_blockade --ros-args + -p use_sim_time:=$(RMF_USE_SIM_TIME) + volumeMounts: + - mountPath: {{ .Values.global.DDS_CONFIG_MOUNTPATH | quote }} + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + volumes: + - name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + configMap: + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + tolerations: + - key: reserved + operator: Equal + value: rmf + effect: NoSchedule +--- +apiVersion: v1 +kind: Service +metadata: + name: rmf-trajectory-visualizer + labels: + app: rmf-trajectory-visualizer +spec: + selector: + app: rmf-trajectory-visualizer + ports: + - protocol: TCP + port: 8006 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: rmf-trajectory-visualizer + labels: + app: rmf-trajectory-visualizer +spec: + selector: + matchLabels: + app: rmf-trajectory-visualizer + template: + metadata: + labels: + app: rmf-trajectory-visualizer + spec: + restartPolicy: Always + containers: + - name: rmf-trajectory-visualizer + image: {{ .Values.global.REGISTRY_RMF | default "localhost" }}/{{ .Values.rmf.RMF_IMAGE }}:{{ .Values.global.DEPLOYMENT_IMAGE_TAG }} + imagePullPolicy: IfNotPresent + env: + - name: RMF_USE_SIM_TIME + value: {{ .Values.global.RMF_USE_SIM_TIME | quote }} + - name: {{ .Values.global.DDS_ENV | quote }} + value: {{ .Values.global.DDS_CONFIG | quote }} + - name: ROS_DOMAIN_ID + value: {{ .Values.global.ROS_DOMAIN_ID | quote }} + - name: RMW_IMPLEMENTATION + value: {{ .Values.global.RMW_IMPLEMENTATION | quote }} + - name: RMF_TRAJECTORY_VISUALIZER_LEVEL_NAME + value: {{ .Values.global.RMF_TRAJECTORY_VISUALIZER_LEVEL_NAME | quote }} + command: ["/bin/bash"] + args: + - -c + - > + /ros_entrypoint.sh + ros2 launch rmf_visualization visualization.launch.xml + headless:=1 + use_sim_time:=$(RMF_USE_SIM_TIME) + map_name:=$(RMF_TRAJECTORY_VISUALIZER_LEVEL_NAME) + ports: + - containerPort: 8006 + volumeMounts: + - mountPath: {{ .Values.global.DDS_CONFIG_MOUNTPATH | quote }} + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + volumes: + - name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + configMap: + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + tolerations: + - key: reserved + operator: Equal + value: rmf + effect: NoSchedule +{{- end -}} diff --git a/charts/rmf-deployment/templates/rmf-sim.yaml b/charts/rmf-deployment/templates/rmf-sim.yaml new file mode 100644 index 0000000..a20a4e6 --- /dev/null +++ b/charts/rmf-deployment/templates/rmf-sim.yaml @@ -0,0 +1,53 @@ +{{- if .Values.ENABLE_RMF_SIM -}} +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: rmf-sim + labels: + app: rmf-sim +spec: + selector: + matchLabels: + app: rmf-sim + template: + metadata: + labels: + app: rmf-sim + spec: + containers: + - name: rmf-sim + image: {{ .Values.global.REGISTRY_RMF | default "localhost" }}/{{ .Values.rmf_sim.RMF_SIM_IMAGE }}:{{ .Values.global.DEPLOYMENT_IMAGE_TAG }} + imagePullPolicy: IfNotPresent + env: + - name: RMF_USE_SIM_TIME + value: {{ .Values.global.RMF_USE_SIM_TIME | quote }} + - name: {{ .Values.global.DDS_ENV | quote }} + value: {{ .Values.global.DDS_CONFIG | quote }} + - name: ROS_DOMAIN_ID + value: {{ .Values.global.ROS_DOMAIN_ID | quote }} + - name: RMW_IMPLEMENTATION + value: {{ .Values.global.RMW_IMPLEMENTATION | quote }} + command: ["/bin/bash"] + args: + - -c + - > + /ros_entrypoint.sh + ros2 launch {{ .Values.rmf_sim.RMF_SIM_PACKAGE }} {{ .Values.rmf_sim.RMF_SIM_LAUNCH_FILE }} + headless:=true + use_sim_time:={{ .Values.global.RMF_USE_SIM_TIME }} + failover_mode:={{ .Values.global.RMF_FAILOVER_MODE }} + server_uri:={{ .Values.global.RMF_SERVER_URI }} + volumeMounts: + - mountPath: {{ .Values.global.DDS_CONFIG_MOUNTPATH | quote }} + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + volumes: + - name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + configMap: + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + tolerations: + - key: reserved + operator: Equal + value: rmf + effect: NoSchedule +{{- end -}} diff --git a/charts/rmf-deployment/templates/rmf-site.yaml b/charts/rmf-deployment/templates/rmf-site.yaml new file mode 100644 index 0000000..3e8a5b4 --- /dev/null +++ b/charts/rmf-deployment/templates/rmf-site.yaml @@ -0,0 +1,110 @@ +{{- if .Values.ENABLE_RMF -}} +--- +apiVersion: v1 +kind: Pod +namespace: +metadata: + name: rmf-building-map-server +spec: + restartPolicy: Always + hostNetwork: true + containers: + - name: rmf-building-map-server + image: {{ .Values.global.REGISTRY_RMF | default "localhost" }}/{{ .Values.rmf.RMF_SITE_IMAGE }}:{{ .Values.global.DEPLOYMENT_IMAGE_TAG }} + imagePullPolicy: IfNotPresent + env: + - name: {{ .Values.global.DDS_ENV | quote }} + value: {{ .Values.global.DDS_CONFIG | quote }} + - name: ROS_DOMAIN_ID + value: {{ .Values.global.ROS_DOMAIN_ID | quote }} + - name: RMW_IMPLEMENTATION + value: {{ .Values.global.RMW_IMPLEMENTATION | quote }} + - name: RMF_BUILDING_MAP + value: {{ .Values.map.RMF_BUILDING_MAP | quote }} + command: ["/bin/bash"] + args: + - -c + - > + /ros_entrypoint.sh + ros2 run rmf_building_map_tools building_map_server + $(RMF_BUILDING_MAP) + volumeMounts: + - mountPath: {{ .Values.global.DDS_CONFIG_MOUNTPATH | quote }} + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + volumes: + - name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + configMap: + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} +--- +apiVersion: v1 +kind: Pod +namespace: +metadata: + name: rmf-tinyrobot-fleet-adapter +spec: + restartPolicy: Always + hostNetwork: true + containers: + - name: rmf-tinyrobot-fleet-adapter + image: {{ .Values.global.REGISTRY_RMF | default "localhost" }}/{{ .Values.rmf.RMF_SITE_IMAGE }}:{{ .Values.global.DEPLOYMENT_IMAGE_TAG }} + imagePullPolicy: IfNotPresent + env: + - name: {{ .Values.global.DDS_ENV | quote }} + value: {{ .Values.global.DDS_CONFIG | quote }} + - name: ROS_DOMAIN_ID + value: {{ .Values.global.ROS_DOMAIN_ID | quote }} + - name: RMW_IMPLEMENTATION + value: {{ .Values.global.RMW_IMPLEMENTATION | quote }} + - name: RMF_SERVER_URI + value: {{ .Values.global.RMF_SERVER_URI | quote }} + - name: NAV_GRAPH + value: {{ .Values.adapters.NAV_GRAPH | quote }} + - name: FLEET_ADAPTER_CONFIG + value: {{ .Values.adapters.FLEET_ADAPTER_CONFIG | quote }} + command: ["/bin/bash"] + args: + - -c + - > + /ros_entrypoint.sh + ros2 run rmf_demos_fleet_adapter fleet_adapter -c $(FLEET_ADAPTER_CONFIG) -n $(NAV_GRAPH) --ros-args -p server_uri:=$(RMF_SERVER_URI) + volumeMounts: + - mountPath: {{ .Values.global.DDS_CONFIG_MOUNTPATH | quote }} + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + volumes: + - name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + configMap: + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} +--- +apiVersion: v1 +kind: Pod +namespace: +metadata: + name: rmf-mutex-group-supervisor +spec: + restartPolicy: Always + hostNetwork: true + containers: + - name: rmf-mutex-group-supervisor + image: {{ .Values.global.REGISTRY_RMF | default "localhost" }}/{{ .Values.rmf.RMF_SITE_IMAGE }}:{{ .Values.global.DEPLOYMENT_IMAGE_TAG }} + imagePullPolicy: IfNotPresent + env: + - name: {{ .Values.global.DDS_ENV | quote }} + value: {{ .Values.global.DDS_CONFIG | quote }} + - name: ROS_DOMAIN_ID + value: {{ .Values.global.ROS_DOMAIN_ID | quote }} + - name: RMW_IMPLEMENTATION + value: {{ .Values.global.RMW_IMPLEMENTATION | quote }} + command: ["/bin/bash"] + args: + - -c + - > + /ros_entrypoint.sh + ros2 run rmf_fleet_adapter mutex_group_supervisor + volumeMounts: + - mountPath: {{ .Values.global.DDS_CONFIG_MOUNTPATH | quote }} + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + volumes: + - name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + configMap: + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} +{{- end -}} diff --git a/charts/rmf-deployment/templates/rmf-web.yaml b/charts/rmf-deployment/templates/rmf-web.yaml new file mode 100644 index 0000000..b5bd3bc --- /dev/null +++ b/charts/rmf-deployment/templates/rmf-web.yaml @@ -0,0 +1,260 @@ +--- +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: rmf-web-rmf-server-db + labels: + app: rmf-web-rmf-server + component: db +spec: + accessModes: + - ReadWriteOnce + volumeMode: Filesystem + resources: + requests: + storage: 10Gi +--- +apiVersion: v1 +kind: Service +metadata: + name: rmf-web-rmf-server-db + labels: + app: rmf-web-rmf-server + component: db +spec: + selector: + app: rmf-web-rmf-server + component: db + ports: + - port: 5432 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: rmf-web-rmf-server-db + labels: + app: rmf-web-rmf-server + component: db +spec: + replicas: 1 + selector: + matchLabels: + app: rmf-web-rmf-server + component: db + template: + metadata: + labels: + app: rmf-web-rmf-server + component: db + spec: + containers: + - name: postgresql + image: {{ .Values.global.REGISTRY_DOCKER | default "docker.io" }}/{{ .Values.keycloak.POSTGRES_IMAGE }} + imagePullPolicy: IfNotPresent + env: + - name: POSTGRES_USER + valueFrom: + secretKeyRef: + name: rmf-web-rmf-server-secret + key: DB_USER + - name: POSTGRES_PASSWORD + valueFrom: + secretKeyRef: + name: rmf-web-rmf-server-secret + key: DB_PASSWORD + volumeMounts: + - mountPath: /var/lib/postgresql/data + name: rmf-web-rmf-server-db + volumes: + - name: rmf-web-rmf-server-db + persistentVolumeClaim: + claimName: rmf-web-rmf-server-db + tolerations: + - key: reserved + operator: Equal + value: rmf + effect: NoSchedule +--- +apiVersion: v1 +kind: Service +metadata: + name: rmf-web-rmf-server + labels: + app: rmf-web-rmf-server + component: app +spec: + selector: + app: rmf-web-rmf-server + component: app + ports: + - protocol: TCP + port: 8000 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: rmf-web-rmf-server + labels: + app: rmf-web-rmf-server + component: app + # TODO: Uncomment this when we switched to logfmt + # annotations: + # logging.format: logfmt +spec: + selector: + matchLabels: + app: rmf-web-rmf-server + component: app + template: + metadata: + labels: + app: rmf-web-rmf-server + component: app + spec: + containers: + - name: rmf-web-rmf-server + image: {{ .Values.global.REGISTRY_RMF | default "localhost" }}/{{ .Values.rmf_web.API_SERVER_IMAGE }}:{{ .Values.global.DEPLOYMENT_IMAGE_TAG }} + imagePullPolicy: IfNotPresent + ports: + - containerPort: 8000 + env: + - name: RMF_USE_SIM_TIME + value: {{ .Values.global.RMF_USE_SIM_TIME | quote }} + - name: RMF_SERVER_USE_SIM_TIME + value: {{ .Values.global.RMF_USE_SIM_TIME | quote }} + - name: {{ .Values.global.DDS_ENV | quote }} + value: {{ .Values.global.DDS_CONFIG | quote }} + - name: ROS_DOMAIN_ID + value: {{ .Values.global.ROS_DOMAIN_ID | quote }} + - name: RMW_IMPLEMENTATION + value: {{ .Values.global.RMW_IMPLEMENTATION | quote }} + - name: RMF_API_SERVER_CONFIG + value: /rmf-web-rmf-server-config/rmf_server_config.py + volumeMounts: + - mountPath: /rmf-web-rmf-server-config + name: rmf-web-rmf-server-configmap + readOnly: true + - mountPath: {{ .Values.global.DDS_CONFIG_MOUNTPATH | quote }} + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + readOnly: true + - mountPath: /jwt-configmap + name: jwt-pub-key + readOnly: true + - mountPath: /etc/localtime + subPath: localtime + name: vol-tz-singapore + volumes: + - name: rmf-web-rmf-server-configmap + configMap: + name: rmf-web-rmf-server-configmap + - name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + configMap: + name: {{ .Values.global.DDS_CONFIG_VOLUME | quote }} + - name: jwt-pub-key + configMap: + name: jwt-pub-key + - name: vol-tz-singapore + configMap: + name: cm-tz-singapore + tolerations: + - key: reserved + operator: Equal + value: rmf + effect: NoSchedule +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: rmf-web-rmf-server + annotations: + nginx.ingress.kubernetes.io/rewrite-target: /$2 + cert-manager.io/cluster-issuer: {{ .Values.CERT_MANAGER_ISSUER }} +spec: + ingressClassName: nginx + rules: + - host: {{ .Values.hostName | quote }} + http: + paths: + - path: /rmf/api/v1(/(?!_internal)|$)(.*) # must exclude `_internal` as that is not secure + pathType: ImplementationSpecific #Prefix + backend: + service: + name: rmf-web-rmf-server + port: + number: 8000 + tls: + - hosts: + - {{ .Values.hostName | quote }} + secretName: rmf-web-ingress-tls +--- +apiVersion: v1 +kind: Service +metadata: + name: rmf-web-dashboard + labels: + app: rmf-web-dashboard +spec: + selector: + app: rmf-web-dashboard + ports: + - protocol: TCP + port: 80 +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: rmf-web-dashboard + labels: + app: rmf-web-dashboard +spec: + selector: + matchLabels: + app: rmf-web-dashboard + template: + metadata: + labels: + app: rmf-web-dashboard + spec: + containers: + - name: rmf-web-dashboard + image: {{ .Values.global.REGISTRY_RMF | default "localhost" }}/{{ .Values.rmf_web.DASHBOARD_IMAGE }}:{{ .Values.global.DEPLOYMENT_IMAGE_TAG }} + imagePullPolicy: IfNotPresent + env: + - name: RMF_SERVER_URL + value: {{ .Values.baseUrl }}/rmf/api/v1 + - name: TRAJECTORY_SERVER_URL + value: {{ .Values.baseUrl }}/trajectory + - name: KEYCLOAK_URL + value: {{ .Values.baseUrl }}/auth/ + ports: + - containerPort: 80 + tolerations: + - key: reserved + operator: Equal + value: rmf + effect: NoSchedule +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: rmf-web-dashboard + annotations: + cert-manager.io/cluster-issuer: {{ .Values.CERT_MANAGER_ISSUER }} +spec: + ingressClassName: nginx + rules: + - host: {{ .Values.hostName | quote }} + http: + paths: + - path: /dashboard + pathType: Prefix + backend: + service: + name: rmf-web-dashboard + port: + number: 80 + tls: + - hosts: + - {{ .Values.hostName | quote }} + secretName: rmf-web-ingress-tls +--- diff --git a/charts/rmf-deployment/tz-singapore b/charts/rmf-deployment/tz-singapore new file mode 100644 index 0000000..6f2ca9a Binary files /dev/null and b/charts/rmf-deployment/tz-singapore differ diff --git a/charts/rmf-deployment/values.yaml b/charts/rmf-deployment/values.yaml new file mode 100644 index 0000000..d42645c --- /dev/null +++ b/charts/rmf-deployment/values.yaml @@ -0,0 +1,64 @@ +# These are "default" values for local deployment, edit per your available DNS. + +hostName: rmf.test +baseUrl: https://rmf.test +ENABLE_RMF_SIM: true # mutually exclusive with `ENABLE_RMF` +ENABLE_RMF: false # mutually exclusive with `ENABLE_RMF_SIM` +CERT_MANAGER_ISSUER: rmf-dev-issuer + +global: + # change these to the registry you are using + # REGISTRY_DOCKER: docker.io + # REGISTRY_QUAY: quay.io + REGISTRY_RMF: ghcr.io/open-rmf/rmf_deployment_template + + ROS_DOMAIN_ID: 15 + DDS_CONFIG_MOUNTPATH: /etc/cyclonedds + DDS_CONFIG_VOLUME: cyclonedds-configmap + DDS_ENV: CYCLONEDDS_URI + DDS_CONFIG: /etc/cyclonedds/cyclonedds.xml + DDS_NETWORK_INTERFACE: lo + RMW_IMPLEMENTATION: rmw_cyclonedds_cpp + + RMF_USE_SIM_TIME: "true" + RMF_BIDDING_TIME_WINDOW: "2.0" + RMF_TRAJECTORY_VISUALIZER_LEVEL_NAME: "L1" + RMF_FAILOVER_MODE: "false" + RMF_SERVER_URI: "ws://rmf-web-rmf-server:8000/_internal" + + DEPLOYMENT_IMAGE_TAG: "latest" + +rmf: + RMF_IMAGE: rmf-deployment/rmf + RMF_SITE_IMAGE: rmf-deployment/rmf-site + +rmf_sim: + RMF_SIM_IMAGE: rmf-deployment/rmf-sim + RMF_SIM_PACKAGE: rmf_demos_gz + RMF_SIM_LAUNCH_FILE: office.launch.xml + +rmf_web: + POSTGRES_IMAGE: postgres:16.2 + API_SERVER_IMAGE: rmf-deployment/api-server + API_SERVER_DB_PASSWD: lDflqwQuIMP167Xo7Hbyo0STvlebfoEe + DASHBOARD_IMAGE: rmf-deployment/dashboard + ADMIN_PASSWD: admin + +adapters: + LOCALHOST_ADAPTER_CONFIG_STORAGE_PATH: /rmf/adapter_configs + POD_ADAPTER_CONFIG_STORAGE_PATH: /etc/rmf-site/adapter_configs + ADAPTER_CONFIG_VOLUME: adapter-configmap + NAV_GRAPH: /opt/rmf-site/share/rmf_demos_maps/maps/office/nav_graphs/0.yaml + FLEET_ADAPTER_CONFIG: /opt/rmf-site/share/rmf_demos/config/office/tinyRobot_config.yaml + +keycloak: + POSTGRES_IMAGE: postgres:16.2 + KEYCLOAK_IMAGE: keycloak/keycloak:24.0.5 + KEYCLOAK_ADMIN_PASSWD: 00w2n1Nk01b3fbDrOSLDGYx0W4tlyiHl + KEYCLOAK_DB_PASSWD: TbCmjx3hYadXBJrk9x5XxeTmp6mwQbzY + KEYCLOAK_SETUP_IMAGE: rmf-deployment/keycloak-setup + +map: + LOCALHOST_MAP_STORAGE_PATH: /rmf/mysite_maps + POD_MAP_STORAGE_PATH: /etc/rmf-site/mysite_maps + RMF_BUILDING_MAP: /opt/rmf-site/share/rmf_demos_maps/office/office.building.yaml diff --git a/devel/README.md b/devel/README.md new file mode 100644 index 0000000..8cc9230 --- /dev/null +++ b/devel/README.md @@ -0,0 +1 @@ +Local dev and simulation related assets live here (kept out of src/ or dockerfiles/ for ease of exclusion from CI) \ No newline at end of file diff --git a/devel/certs.yaml b/devel/certs.yaml new file mode 100644 index 0000000..685b173 --- /dev/null +++ b/devel/certs.yaml @@ -0,0 +1,37 @@ +--- +apiVersion: v1 +kind: Namespace +metadata: + name: rmf +--- +apiVersion: cert-manager.io/v1 +kind: ClusterIssuer +metadata: + name: selfsigned-issuer +spec: + selfSigned: {} +--- +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: rmf-dev-ca + namespace: infra +spec: + isCA: true + commonName: rmf-dev + secretName: rmf-dev-secret + privateKey: + algorithm: ECDSA + size: 256 + issuerRef: + name: selfsigned-issuer + kind: ClusterIssuer + group: cert-manager.io +--- +apiVersion: cert-manager.io/v1 +kind: ClusterIssuer +metadata: + name: rmf-dev-issuer +spec: + ca: + secretName: rmf-dev-secret diff --git a/devel/docker-compose-local.yaml b/devel/docker-compose-local.yaml new file mode 100644 index 0000000..a900acd --- /dev/null +++ b/devel/docker-compose-local.yaml @@ -0,0 +1,21 @@ +services: + simulation: + image: "ghcr.io/open-rmf/rmf_deployment_template/rmf-deployment/rmf-sim:latest" + entrypoint: ["/ros_entrypoint.sh", "ros2", "launch", "rmf_demos_gz", "office.launch.xml", "headless:=1", "server_uri:=ws://localhost:8000/_internal"] + environment: + RMW_IMPLEMENTATION: "rmw_cyclonedds_cpp" + network_mode: "host" + + api-server: + image: "ghcr.io/open-rmf/rmf_deployment_template/rmf-deployment/api-server:latest" + environment: + RMW_IMPLEMENTATION: "rmw_cyclonedds_cpp" + network_mode: "host" + + web-dashboard: + image: "ghcr.io/open-rmf/rmf_deployment_template/rmf-deployment/dashboard-local:latest" + environment: + RMF_SERVER_URL: "http://localhost:8000" + TRAJECTORY_SERVER_URL: "ws://localhost:8006" + ports: + - "3000:80" diff --git a/devel/rmf.repos b/devel/rmf.repos new file mode 100644 index 0000000..e110e1e --- /dev/null +++ b/devel/rmf.repos @@ -0,0 +1,77 @@ +repositories: + demonstrations/rmf_demos: + type: git + url: https://github.com/open-rmf/rmf_demos.git + version: main + rmf/rmf_simulation: + type: git + url: https://github.com/open-rmf/rmf_simulation.git + version: main + rmf-web: + type: git + url: https://github.com/open-rmf/rmf-web.git + version: main + smart_cart_api_server: + type: git + url: https://github.com/open-rmf/smart_cart_api_server.git + version: main + rmf/ament_cmake_catch2: + type: git + url: https://github.com/open-rmf/ament_cmake_catch2.git + version: main + rmf/rmf_api_msgs: + type: git + url: https://github.com/open-rmf/rmf_api_msgs.git + version: main + rmf/rmf_battery: + type: git + url: https://github.com/open-rmf/rmf_battery.git + version: main + rmf/rmf_building_map_msgs: + type: git + url: https://github.com/open-rmf/rmf_building_map_msgs.git + version: main + rmf/rmf_internal_msgs: + type: git + url: https://github.com/open-rmf/rmf_internal_msgs.git + version: main + rmf/rmf_ros2: + type: git + url: https://github.com/open-rmf/rmf_ros2.git + version: main + rmf/rmf_task: + type: git + url: https://github.com/open-rmf/rmf_task.git + version: main + rmf/rmf_traffic: + type: git + url: https://github.com/open-rmf/rmf_traffic.git + version: main + rmf/rmf_traffic_editor: + type: git + url: https://github.com/open-rmf/rmf_traffic_editor.git + version: main + rmf/rmf_utils: + type: git + url: https://github.com/open-rmf/rmf_utils.git + version: main + rmf/rmf_visualization: + type: git + url: https://github.com/open-rmf/rmf_visualization.git + version: main + rmf/rmf_visualization_msgs: + type: git + url: https://github.com/open-rmf/rmf_visualization_msgs.git + version: main + thirdparty/menge_vendor: + type: git + url: https://github.com/open-rmf/menge_vendor.git + version: master + thirdparty/nlohmann_json_schema_validator_vendor: + type: git + url: https://github.com/open-rmf/nlohmann_json_schema_validator_vendor.git + version: main + thirdparty/pybind11_json_vendor: + type: git + url: https://github.com/open-rmf/pybind11_json_vendor.git + version: main diff --git a/dockerfiles/build-args.sh b/dockerfiles/build-args.sh new file mode 100644 index 0000000..e244a60 --- /dev/null +++ b/dockerfiles/build-args.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +ROS_DISTRO=jazzy +: ${BUILDER_IMAGE:=localhost/rmf/builder:latest} +RMF_INTERNAL_MSGS_COMMIT="main" +RMF_WEB_COMMIT="0.2.0" +RMF_BUILDING_MAP_MSGS_COMMIT="main" + +ARGS=$(getopt --options= --longoptions=ros-distro: --name="$0" -- "$@") +eval set -- "$ARGS" +while true; do + case "$1" in + --ros-distro) + # override ros distro + ROS_DISTRO="$2" + shift 2 + ;; + --) + shift + break + ;; + esac +done + +API_SERVER_BUILD_ARGS="--build-arg=BUILDER=$BUILDER_IMAGE --build-arg=ROS_DISTRO=$ROS_DISTRO --build-arg=RMF_WEB_COMMIT=$RMF_WEB_COMMIT --build-arg=RMF_INTERNAL_MSGS_COMMIT=$RMF_INTERNAL_MSGS_COMMIT --build-arg=RMF_BUILDING_MAP_MSGS_COMMIT=$RMF_BUILDING_MAP_MSGS_COMMIT" +DASHBOARD_BUILD_ARGS="--build-arg=RMF_WEB_COMMIT=$RMF_WEB_COMMIT" +DASHBOARD_LOCAL_BUILD_ARGS="--build-arg=RMF_WEB_COMMIT=$RMF_WEB_COMMIT --build-arg=APP_CONFIG=app-config-local.json" +RMF_BUILD_ARGS="--build-arg=BUILDER=$BUILDER_IMAGE --build-arg=ROS_DISTRO=$ROS_DISTRO" +RMF_SITE_BUILD_ARGS="--build-arg=RMF_IMAGE=$BUILDER_IMAGE --build-arg=ROS_DISTRO=$ROS_DISTRO" +RMF_SIM_BUILD_ARGS="--build-arg=RMF_IMAGE=$BUILDER_IMAGE --build-arg=ROS_DISTRO=$ROS_DISTRO" diff --git a/dockerfiles/builder/Dockerfile b/dockerfiles/builder/Dockerfile new file mode 100644 index 0000000..63ffcec --- /dev/null +++ b/dockerfiles/builder/Dockerfile @@ -0,0 +1,18 @@ +ARG ROS_DISTRO="jazzy" + +FROM docker.io/ros:$ROS_DISTRO + +ENV CI=1 +ENV RMW_IMPLEMENTATION=rmw_cyclonedds_cpp + +RUN apt update && apt install -y \ + cmake \ + curl \ + python3-pip \ + git \ + wget \ + python3-colcon-common-extensions \ + clang \ + lldb \ + lld \ + ros-$ROS_DISTRO-rmw-cyclonedds-cpp diff --git a/dockerfiles/rmf-sim/Dockerfile b/dockerfiles/rmf-sim/Dockerfile new file mode 100644 index 0000000..178cdd8 --- /dev/null +++ b/dockerfiles/rmf-sim/Dockerfile @@ -0,0 +1,32 @@ +# must be an image built from rmf-deployment/builder +ARG RMF_IMAGE +FROM $RMF_IMAGE + +ARG ROS_DISTRO="jazzy" + +RUN mkdir -p /ws/src +WORKDIR /ws + +# fetch sources +COPY rmf_sim.repos rmf_sim.repos +RUN vcs import src < rmf_sim.repos + +RUN apt update && apt upgrade -y && apt install -y \ + clang lld ros-$ROS_DISTRO-rmw-cyclonedds-cpp \ + && rosdep update \ + && bash -c '. /opt/rmf/setup.bash && rosdep install --from-paths /ws/src -yi -t exec --rosdistro=$ROS_DISTRO' + +COPY model_cache.json /root/.pit_crew/ + +RUN bash -c '. /opt/rmf/setup.bash \ + && mkdir -p /opt/rmf_sim \ + && colcon build --mixin clang lld --merge-install --install-base /opt/rmf_sim --cmake-args -DCMAKE_BUILD_TYPE=Release \ + && rm -rf /ws' + +# cleanup +RUN rm -rf /var/lib/apt/lists + +RUN sed -i '$isource "/opt/rmf_sim/setup.bash"' /ros_entrypoint.sh + +ENTRYPOINT ["/ros_entrypoint.sh"] +CMD ["bash"] diff --git a/dockerfiles/rmf-sim/model_cache.json b/dockerfiles/rmf-sim/model_cache.json new file mode 100644 index 0000000..0868db0 --- /dev/null +++ b/dockerfiles/rmf-sim/model_cache.json @@ -0,0 +1,71414 @@ +{ + "model_cache": [ + [ + "XRayMachineSmall", + "OpenRobotics" + ], + [ + "Cessna C-172", + "Dod" + ], + [ + "Cole_Hardware_Dishtowel_Red", + "GoogleResearch" + ], + [ + "Vessel G", + "abmohit" + ], + [ + "Pier", + "OpenRobotics" + ], + [ + "Rexy_Glove_Heavy_Duty_Gloves_Medium", + "GoogleResearch" + ], + [ + "Lemon", + "Gambit" + ], + [ + "Nestle_Raisinets_Milk_Chocolate_35_oz_992_g", + "GoogleResearch" + ], + [ + "HAMMER_BALL", + "GoogleResearch" + ], + [ + "Fiducial", + "OpenRobotics" + ], + [ + "Tag_Dishtowel_Dobby_Stripe_Blue_18_x_26", + "GoogleResearch" + ], + [ + "Coke", + "OpenRobotics" + ], + [ + "Kinect", + "OpenRobotics" + ], + [ + "NIOSH Staging Area", + "OpenRobotics" + ], + [ + "ur5_rg2", + "sproy" + ], + [ + "Nurse", + "OpenRobotics" + ], + [ + "Ecoforms_Plant_Container_Quadra_Turquoise_QP12", + "GoogleResearch" + ], + [ + "House 3", + "OpenRobotics" + ], + [ + "Perricone_MD_No_Mascara_Mascara", + "GoogleResearch" + ], + [ + "Mens_Wave_Driver_Kiltie_Moc_in_Tan_Leather", + "GoogleResearch" + ], + [ + "caytu_model", + "akhad" + ], + [ + "TOOL_BELT", + "GoogleResearch" + ], + [ + "My_Little_Pony_Princess_Celestia", + "GoogleResearch" + ], + [ + "FIRST 2015 trash can", + "OpenRobotics" + ], + [ + "Cave Starting Area Type B", + "angelamaio" + ], + [ + "actor_stand_up", + "Mingfei" + ], + [ + "Frozen_Olafs_In_Trouble_PopOMatic_Game", + "GoogleResearch" + ], + [ + "Electrical Array 2", + "kevinhalim9" + ], + [ + "D_ROSE_ENGLEWOOD_II", + "GoogleResearch" + ], + [ + "Nickelodeon_Teenage_Mutant_Ninja_Turtles_Michelangelo", + "GoogleResearch" + ], + [ + "Ball Bearing", + "OpenRobotics" + ], + [ + "Urban 2 Story Large Side 1 Lights", + "OpenRobotics" + ], + [ + "DRC Practice: Orange Jersey Barrier", + "SegQx" + ], + [ + "ctu_cras_norlab_marv_sensor_config_1", + "OpenRobotics" + ], + [ + "dynamo_x4_sensor_config_1", + "OpenRobotics" + ], + [ + "Crayola_Crayons_120_crayons", + "GoogleResearch" + ], + [ + "DANCING_ALLIGATOR_zoWBjc0jbTs", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Container_S24Turquoise", + "GoogleResearch" + ], + [ + "ElevatorLights", + "OpenRobotics" + ], + [ + "Timberland_Mens_Earthkeepers_Heritage_2Eye_Boat_Shoe", + "GoogleResearch" + ], + [ + "Mens_Billfish_Slip_On_in_Coffee_e8bPKE9Lfgo", + "GoogleResearch" + ], + [ + "Urban Elevation Up", + "OpenRobotics" + ], + [ + "X4 UAV Config 5", + "azeey" + ], + [ + "BIRD_RATTLE", + "GoogleResearch" + ], + [ + "hatchback_red", + "Ruth" + ], + [ + "Saucepan", + "OpenRobotics" + ], + [ + "Cave Corner 01 Type A", + "OpenRobotics" + ], + [ + "Travel_Mate_P_series_Notebook", + "GoogleResearch" + ], + [ + "Test box 1", + "OpenRoboticsTest" + ], + [ + "EXPLORER_R2_VISUALS_ONLY", + "OpenRobotics" + ], + [ + "skybox", + "OpenRobotics" + ], + [ + "GARDEN_SWING", + "GoogleResearch" + ], + [ + "AllergenFree_JarroDophilus", + "GoogleResearch" + ], + [ + "lunar_surface4", + "AndrejOrsula" + ], + [ + "Ecoforms_Plant_Container_Urn_55_Mocha", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Saucer_SQ8COR", + "GoogleResearch" + ], + [ + "Toilet", + "OpenRobotics" + ], + [ + "Santa_Cruz_Mens_vnbiTDDt5xH", + "GoogleResearch" + ], + [ + "Cave Elevation 01 Type A", + "OpenRobotics" + ], + [ + "hatchback_red_1", + "JShep1" + ], + [ + "Cave Tile 9", + "OpenRobotics" + ], + [ + "Dixie_10_ounce_Bowls_35_ct", + "GoogleResearch" + ], + [ + "Nintendo_Wii_Party_U_with_Controller_Wii_U_Game", + "GoogleResearch" + ], + [ + "Cream_Tieks_Italian_Leather_Ballet_Flats", + "GoogleResearch" + ], + [ + "shadow_hand", + "abmohit" + ], + [ + "Rough Tunnel Tile 4-way Intersection Lights", + "OpenRobotics" + ], + [ + "pallet_2", + "Mark" + ], + [ + "Cave Corner 02 Lights", + "OpenRobotics" + ], + [ + "3D_Dollhouse_Sofa", + "GoogleResearch" + ], + [ + "Ocean Rock 03", + "Cole" + ], + [ + "aws_robomaker_warehouse_ShelfD_01", + "OpenRobotics" + ], + [ + "Organic_Whey_Protein_Vanilla", + "GoogleResearch" + ], + [ + "Cabinet", + "OpenRobotics" + ], + [ + "Ecoforms_Plant_Pot_GP9_SAND", + "GoogleResearch" + ], + [ + "Cave Corner 02 Type A", + "OpenRobotics" + ], + [ + "International Space Station (half)", + "OpenRobotics" + ], + [ + "lunar_surface8", + "AndrejOrsula" + ], + [ + "2_of_Jenga_Classic_Game", + "GoogleResearch" + ], + [ + "Peach", + "Gambit" + ], + [ + "Cave 3 Way Elevation 02 Type A", + "OpenRobotics" + ], + [ + "bosdyn_spot", + "Elene" + ], + [ + "Gas Small", + "OpenRobotics" + ], + [ + "FRC 2016 Low Bar", + "OpenRobotics" + ], + [ + "Vessel E", + "kaikaiwu" + ], + [ + "Heightmap Bowl", + "chapulina" + ], + [ + "slide-starterkit", + "nate" + ], + [ + "Full_Circle_Happy_Scraps_Out_Collector_Gray", + "GoogleResearch" + ], + [ + "Cracker Box", + "Gambit" + ], + [ + "Number7", + "OpenRobotics" + ], + [ + "Harmonic Mascot", + "OpenRobotics" + ], + [ + "OSRF Elevator", + "OpenRobotics" + ], + [ + "Transformers_Age_of_Extinction_Mega_1Step_Bumblebee_Figure", + "GoogleResearch" + ], + [ + "Tunnel Corner Right", + "OpenRobotics" + ], + [ + "SNAIL_MEASURING_TAPE", + "GoogleResearch" + ], + [ + "ZX700_mf9Pc06uL06", + "GoogleResearch" + ], + [ + "IsoRich_Soy", + "GoogleResearch" + ], + [ + "fluid_dynamics", + "isabelleeysseric" + ], + [ + "shadow_hand", + "AndrejOrsula" + ], + [ + "charuco_default", + "AndrejOrsula" + ], + [ + "Stop Sign", + "OpenRobotics" + ], + [ + "Utility Cart", + "OpenRobotics" + ], + [ + "ElderMalePatient", + "OpenRobotics" + ], + [ + "Reflective table", + "OpenRobotics" + ], + [ + "FAIRY_TALE_BLOCKS", + "GoogleResearch" + ], + [ + "Sky", + "OpenRobotics" + ], + [ + "Sunken Vase 02", + "Cole" + ], + [ + "ClimaCool_Aerate_2_W_Wide", + "GoogleResearch" + ], + [ + "Hasbro_Dont_Wake_Daddy_Board_Game", + "GoogleResearch" + ], + [ + "SquareShelf", + "OpenRobotics" + ], + [ + "Electrical Array 6", + "kevinhalim9" + ], + [ + "Pioneer 3AT", + "OpenRobotics" + ], + [ + "WIP-robotmodel1danilo", + "NGD1004" + ], + [ + "Bumper", + "rahulbhadani" + ], + [ + "Quadrotor", + "OpenRobotics" + ], + [ + "urban tunnel transition straight", + "OpenRobotics" + ], + [ + "Sunken Ship", + "Cole" + ], + [ + "Fire hydrant", + "OpenRobotics" + ], + [ + "DINNING_ROOM_FURNITURE_SET_1", + "GoogleResearch" + ], + [ + "FisherPrice_Make_A_Match_Game_Thomas_Friends", + "GoogleResearch" + ], + [ + "Rough Tunnel Tile 90-degree Turn", + "OpenRobotics" + ], + [ + "MonitorAndKeyboard", + "OpenRobotics" + ], + [ + "Melissa_Doug_Traffic_Signs_and_Vehicles", + "GoogleResearch" + ], + [ + "Vessel E", + "OpenRobotics" + ], + [ + "Double Pendulum Desktop Sculpture", + "jasmeetsingh" + ], + [ + "CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_1", + "hokaixian" + ], + [ + "Pendulum Demo", + "OpenRobotics" + ], + [ + "lunar_rock3", + "AndrejOrsula" + ], + [ + "EscalatorStart", + "OpenRobotics" + ], + [ + "X4 UAV Config 3", + "OpenRobotics" + ], + [ + "aws_robomaker_warehouse_ShelfE_01", + "OpenRobotics" + ], + [ + "PR2_SDF17", + "OpenRobotics" + ], + [ + "Asphalt Plane", + "OpenRobotics" + ], + [ + "Tunnel Tile 5 Rails", + "angelamaio" + ], + [ + "AirportBench", + "OpenRobotics" + ], + [ + "Poppin_File_Sorter_Pink", + "GoogleResearch" + ], + [ + "Circo_Fish_Toothbrush_Holder_14995988", + "GoogleResearch" + ], + [ + "Wood cube 10cm", + "OpenRobotics" + ], + [ + "Twinlab_100_Whey_Protein_Fuel_Vanilla", + "GoogleResearch" + ], + [ + "ACE_Coffee_Mug_Kristen_16_oz_cup", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Bowl_Turquoise_7", + "GoogleResearch" + ], + [ + "LADYBUG_BEAD", + "GoogleResearch" + ], + [ + "LEGO_Fusion_Set_Town_Master", + "GoogleResearch" + ], + [ + "part_13120ea337f5205cd907dd4fb1a14123", + "miniaevnikita" + ], + [ + "SUV", + "luffyzik" + ], + [ + "Shaxon_100_Molded_Category_6_RJ45RJ45_Shielded_Patch_Cord_White", + "GoogleResearch" + ], + [ + "NIOSH EX Course Shell", + "OpenRobotics" + ], + [ + "Large Dry Box Handles", + "OpenRobotics" + ], + [ + "Turtlebot3_waffle_pi_openmanipulator", + "RooGazebo" + ], + [ + "SubT Challenge Cube", + "OpenRobotics" + ], + [ + "Ecoforms_Plant_Saucer_SQ1HARVEST", + "GoogleResearch" + ], + [ + "Sleep_Optimizer", + "GoogleResearch" + ], + [ + "Urban Straight Door Right", + "OpenRobotics" + ], + [ + "MARBLE_SPOT_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "cave_straight_80m", + "OpenRobotics" + ], + [ + "R160 Subway Car", + "OpenRobotics" + ], + [ + "Xyli_Pure_Xylitol", + "GoogleResearch" + ], + [ + "Dock", + "OpenRobotics" + ], + [ + "lawnmower", + "PX4" + ], + [ + "Cave 3 Way", + "OpenRobotics" + ], + [ + "EXPLORER_DS1_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Sootheze_Toasty_Orca", + "GoogleResearch" + ], + [ + "X1 Config 2", + "azeey" + ], + [ + "pallet_box_mobile", + "NGD1004" + ], + [ + "Fire Hose B", + "OpenRobotics" + ], + [ + "Number3", + "OpenRobotics" + ], + [ + "Office_Depot_Canon_CL211XL_Remanufactured_Ink_Cartridge_TriColor", + "GoogleResearch" + ], + [ + "Vanity", + "OpenRobotics" + ], + [ + "Fire Station", + "OpenRobotics" + ], + [ + "part_281f33b5f470473a8877ad671fb24b8c", + "miniaevnikita" + ], + [ + "WalkingCane", + "OpenRobotics" + ], + [ + "Small Blue Box", + "IslamElsayed95" + ], + [ + "Tunnel Tile 1", + "OpenRobotics" + ], + [ + "Olive_Kids_Game_On_Munch_n_Lunch", + "GoogleResearch" + ], + [ + "Office_Depot_Canon_CL_41_Remanufactured_Ink_Cartridge_TriColor", + "GoogleResearch" + ], + [ + "Cole_Hardware_Dishtowel_Stripe", + "GoogleResearch" + ], + [ + "KITCHEN_FURNITURE_SET_1", + "GoogleResearch" + ], + [ + "Office_Depot_Canon_CLI_8CMY_Remanufactured_Ink_Cartridges_Color_Cyan_Magenta_Yellow_3_count", + "GoogleResearch" + ], + [ + "Gazebo - relative paths", + "chapulina" + ], + [ + "Prius Hybrid with sensors", + "OpenRobotics" + ], + [ + "DRC Practice: 2x6 Lumber", + "OpenRobotics" + ], + [ + "airship", + "hkotze" + ], + [ + "Sonoma Raceway", + "OpenRobotics" + ], + [ + "Six-Eight Door", + "Watermelon123" + ], + [ + "Number5", + "OpenRobotics" + ], + [ + "NIOSH Segment 01", + "OpenRobotics" + ], + [ + "HAMMER_PEG", + "GoogleResearch" + ], + [ + "x1_description", + "nate" + ], + [ + "X1 UGV - Fortress param demo", + "OpenRobotics" + ], + [ + "platypus", + "OpenRobotics" + ], + [ + "CORO_JEANINE_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Rough Tunnel Tile Vertical Shaft", + "OpenRobotics" + ], + [ + "Cave Tunnel Transition Lights", + "OpenRobotics" + ], + [ + "Urban Service Room Straight", + "OpenRobotics" + ], + [ + "Speed limit sign", + "OpenRobotics" + ], + [ + "Womens_Bluefish_2Eye_Boat_Shoe_in_Brown_Deerskin_JJ2pfEHTZG7", + "GoogleResearch" + ], + [ + "Simon_Swipe_Game", + "GoogleResearch" + ], + [ + "Cave Elevation 02 Type A", + "OpenRobotics" + ], + [ + "coro_karen_sensor_config_1", + "OpenRobotics" + ], + [ + "Perricone_MD_No_Bronzer_Bronzer", + "GoogleResearch" + ], + [ + "ALPHABET_AZ_GRADIENT_WQb1ufEycSj", + "GoogleResearch" + ], + [ + "Cave Straight", + "OpenRobotics" + ], + [ + "Cave Corner 01 Lights Type A", + "OpenRobotics" + ], + [ + "FRC 2016 Sally Port", + "OpenRobotics" + ], + [ + "Hasbro_Trivial_Pursuit_Family_Edition_Game", + "GoogleResearch" + ], + [ + "Cave Elevation Straight Type A", + "OpenRobotics" + ], + [ + "Thomas_Friends_Wooden_Railway_Talking_Thomas_z7yi7UFHJRj", + "GoogleResearch" + ], + [ + "LitterBin", + "OpenRobotics" + ], + [ + "Apartment", + "chapulina" + ], + [ + "FRC Field 2016", + "OpenRobotics" + ], + [ + "CORO_ROCKY_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Lidar 3d v1", + "abmohit" + ], + [ + "Lidar 2d v1", + "khulqu15" + ], + [ + "Urban Straight Door Left", + "OpenRobotics" + ], + [ + "Double pendulum with base", + "chapu_org" + ], + [ + "Deskstar_Desk_Top_Hard_Drive_1_TB", + "GoogleResearch" + ], + [ + "RegionEventBox", + "OpenRobotics" + ], + [ + "Box target (green)", + "OpenRobotics" + ], + [ + "Great_Jones_Wingtip_j5NV8GRnitM", + "GoogleResearch" + ], + [ + "DRC Practice: Blue cylinder", + "OpenRobotics" + ], + [ + "Tunnel Bend Right", + "OpenRobotics" + ], + [ + "Coke Can", + "OpenRobotics" + ], + [ + "Salad_on_a_Plate", + "ldowns" + ], + [ + "Vessel B", + "OpenRobotics" + ], + [ + "Jenolan Section 11", + "OpenRobotics" + ], + [ + "barcs_qav500_sensor_config_1", + "OpenRobotics" + ], + [ + "Panda arm - Fortress merge include demo", + "emil01" + ], + [ + "Crayola_Bonus_64_Crayons", + "GoogleResearch" + ], + [ + "Reebok_CLASSIC_JOGGER", + "GoogleResearch" + ], + [ + "actor_stand", + "Mingfei" + ], + [ + "PhosphOmega", + "GoogleResearch" + ], + [ + "Office_Depot_Canon_CLI36_Remanufactured_Ink_Cartridge_TriColor", + "GoogleResearch" + ], + [ + "NIST maze wall triple holes 120", + "OpenRobotics" + ], + [ + "Twinlab_100_Whey_Protein_Fuel_Chocolate", + "GoogleResearch" + ], + [ + "TrolleyBedPatient", + "OpenRobotics" + ], + [ + "TriStar_Products_PPC_Power_Pressure_Cooker_XL_in_Black", + "GoogleResearch" + ], + [ + "HeadphonesRack2", + "OpenRobotics" + ], + [ + "X2_test", + "azeey" + ], + [ + "Hollow Cylinder", + "jasmeetsingh" + ], + [ + "linvel_model", + "Luca" + ], + [ + "Garden moon", + "OpenRobotics" + ], + [ + "Razer_Kraken_71_Chroma_headset_Full_size_Black", + "GoogleResearch" + ], + [ + "VEGETABLE_GARDEN", + "GoogleResearch" + ], + [ + "tv_65in_emissive", + "sebbyjp" + ], + [ + "Just_For_Men_Shampoo_In_Haircolor_Darkest_Brown_50", + "GoogleResearch" + ], + [ + "Mustard Bottle", + "Gambit" + ], + [ + "WhiteCabinet", + "OpenRobotics" + ], + [ + "HospitalPillow", + "OpenRobotics" + ], + [ + "Starting Area Type A", + "OpenRobotics" + ], + [ + "Robotic Finger", + "samir98" + ], + [ + "MalePatientBed", + "OpenRobotics" + ], + [ + "Cole_Hardware_Antislip_Surfacing_White_2_x_60", + "GoogleResearch" + ], + [ + "LTyrosine", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Container_S14Turquoise", + "GoogleResearch" + ], + [ + "Mens_Gold_Cup_ASV_Capetown_Penny_Loafer_in_Black_EjPnk3E8fCs", + "GoogleResearch" + ], + [ + "tennis_ball", + "redtedtezza" + ], + [ + "Hatchback red copy", + "OpenRobotics" + ], + [ + "CERBERUS_M100_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Cave Elevation Lights Type B", + "OpenRobotics" + ], + [ + "tunnel_bend_left", + "OpenRobotics" + ], + [ + "Rough Tunnel Tile Ramp Lights", + "OpenRobotics" + ], + [ + "U_By_Kotex_Cleanwear_Heavy_Flow_Pads_32_Ct", + "GoogleResearch" + ], + [ + "Electrical Array 1", + "kevinhalim9" + ], + [ + "RedPoint", + "EdvardsZ" + ], + [ + "Flippy", + "amargett" + ], + [ + "Test box", + "OpenRoboticsTest" + ], + [ + "Fog Emitter", + "OpenRobotics" + ], + [ + "Campus", + "hujp" + ], + [ + "Pet_Dophilus_powder", + "GoogleResearch" + ], + [ + "SSCI_X4_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Teenage_Mutant_Ninja_Turtles_Rahzar_Action_Figure", + "GoogleResearch" + ], + [ + "Tunnel Tile 5", + "iche033" + ], + [ + "Frankencave 01", + "OpenRobotics" + ], + [ + "HospitalBot", + "OpenRobotics" + ], + [ + "x500", + "frede791" + ], + [ + "Cave Straight 05 Lights", + "OpenRobotics" + ], + [ + "Olive_Kids_Dinosaur_Land_Pack_n_Snack", + "GoogleResearch" + ], + [ + "Timberland_Womens_Waterproof_Nellie_Chukka_Double", + "GoogleResearch" + ], + [ + "Phillips_Stool_Softener_Liquid_Gels_30_liquid_gels", + "GoogleResearch" + ], + [ + "Tugbot-charging-station", + "MovAi" + ], + [ + "hatchback_red_1", + "OpenRoboticsTest" + ], + [ + "NurseTable", + "OpenRobotics" + ], + [ + "Little_House_on_the_Prairie_Season_Two_5_Discs_Includes_Digital", + "GoogleResearch" + ], + [ + "Depth Camera", + "OpenRobotics" + ], + [ + "Rubicon Snowy", + "OpenRobotics" + ], + [ + "Security Booth", + "kevinhalim9" + ], + [ + "Rubicon", + "Jesper" + ], + [ + "Cave Corner 30 Type B", + "OpenRobotics" + ], + [ + "X2 UGV", + "OpenRobotics" + ], + [ + "ASICS_GELBlur33_20_GS_Flash_YellowHot_PunchSilver", + "GoogleResearch" + ], + [ + "Olive_Kids_Birdie_Sidekick_Backpack", + "GoogleResearch" + ], + [ + "Cole_Hardware_Plant_Saucer_Glazed_9", + "GoogleResearch" + ], + [ + "lar_table_circular", + "ielson" + ], + [ + "Cole_Hardware_Deep_Bowl_Good_Earth_1075", + "GoogleResearch" + ], + [ + "Large Crate Handles", + "OpenRobotics" + ], + [ + "Dynamic Rocks Test", + "azeey" + ], + [ + "slide-score", + "nate" + ], + [ + "VRC Driving Terrain", + "OpenRobotics" + ], + [ + "Cole_Hardware_Butter_Dish_Square_Red", + "GoogleResearch" + ], + [ + "RGBD Camera", + "abmohit" + ], + [ + "Hardhat Octagonal", + "quarkytale" + ], + [ + "Edgar Mine Virtual STIX", + "OpenRobotics" + ], + [ + "Wood cube 2.5cm", + "OpenRobotics" + ], + [ + "Adrenaline_GTS_13_Color_DrkDenimWhtBachlorBttnSlvr_Size_50_yfK40TNjq0V", + "GoogleResearch" + ], + [ + "Reebok_R_DANCE_FLASH", + "GoogleResearch" + ], + [ + "TurtleBot", + "abmohit" + ], + [ + "Deneme(Copy)", + "geniusempire" + ], + [ + "NIOSH EX Course Section 02", + "OpenRobotics" + ], + [ + "sand_island", + "OpenRobotics" + ], + [ + "ignlego_stl", + "okan" + ], + [ + "Razer_Blackwidow_Tournament_Edition_Keyboard", + "GoogleResearch" + ], + [ + "Hyaluronic_Acid", + "GoogleResearch" + ], + [ + "room_wall_2x5m", + "makerspet" + ], + [ + "Cave Straight 03 Type B", + "OpenRobotics" + ], + [ + "Cave 4 Way 01 Lights Type A", + "OpenRobotics" + ], + [ + "X2 Config 3", + "azeey" + ], + [ + "Harmonic Terrain", + "OpenRobotics" + ], + [ + "CORO_PAM_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Olive_Kids_Mermaids_Pack_n_Snack_Backpack", + "GoogleResearch" + ], + [ + "SurgicalTrolleyGuards", + "OpenRobotics" + ], + [ + "MINI_EXCAVATOR", + "GoogleResearch" + ], + [ + "X2 Config 3", + "OpenRobotics" + ], + [ + "Reebok_FUELTRAIN", + "GoogleResearch" + ], + [ + "hatchback_1", + "JShep1" + ], + [ + "MainTable", + "OpenRobotics" + ], + [ + "Fog Emitter2 Small", + "OpenRobotics" + ], + [ + "Thomas_Friends_Wooden_Railway_Porter_5JzRhMm3a9o", + "GoogleResearch" + ], + [ + "grasspatch", + "hexarotor" + ], + [ + "TurtleBot", + "abagchi" + ], + [ + "deformable_sphere", + "OpenRobotics" + ], + [ + "Rubicon", + "basti" + ], + [ + "bicycle", + "athackst" + ], + [ + "FRC 2016 Cheval de Frise", + "OpenRobotics" + ], + [ + "Wishbone_Pencil_Case", + "GoogleResearch" + ], + [ + "Checkerboard Plane", + "abmohit" + ], + [ + "Backpack", + "OpenRoboticsTest" + ], + [ + "Fog Generator", + "OpenRobotics" + ], + [ + "Sick LMS111", + "mjcarroll" + ], + [ + "Unexploded Ordnance C", + "quarkytale" + ], + [ + "NASA_PERSEVERANCE_SENSOR_CONFIG_1", + "peci1" + ], + [ + "AirportSign1", + "OpenRobotics" + ], + [ + "Urban Bend Mixed", + "OpenRobotics" + ], + [ + "Breadcrumb Node", + "OpenRobotics" + ], + [ + "StorageRackCoverOpen", + "OpenRobotics" + ], + [ + "New_Super_Mario_BrosWii_Wii_Game", + "GoogleResearch" + ], + [ + "X3 UAV", + "OpenRobotics" + ], + [ + "U Joint Part", + "OpenRobotics" + ], + [ + "Reef_Star_Cushion_Flipflops_Size_8_Black", + "GoogleResearch" + ], + [ + "Sonicare_2_Series_Toothbrush_Plaque_Control", + "GoogleResearch" + ], + [ + "Chair", + "Peyman1372" + ], + [ + "Black_Forest_Fruit_Snacks_Juicy_Filled_Centers_10_pouches_9_oz_total", + "GoogleResearch" + ], + [ + "JUICER_SET", + "GoogleResearch" + ], + [ + "explorer_canary1_sensor_config_1", + "OpenRobotics" + ], + [ + "aws_robomaker_warehouse_TrashCanC_01", + "OpenRobotics" + ], + [ + "Wood block 10 x 2.5 x 1 cm", + "OpenRobotics" + ], + [ + "Tunnel Tile 7", + "iche033" + ], + [ + "Kelp 02", + "Cole" + ], + [ + "Gate", + "kevinhalim9" + ], + [ + "lunar_surface5", + "AndrejOrsula" + ], + [ + "NIOSH SR Course Section 04", + "OpenRobotics" + ], + [ + "Cafe table", + "OpenRobotics" + ], + [ + "Shurtape_Gaffers_Tape_Silver_2_x_60_yd", + "GoogleResearch" + ], + [ + "StorageRackCovered", + "OpenRobotics" + ], + [ + "hatchback_2", + "OpenRobotics" + ], + [ + "Handrail", + "OpenRobotics" + ], + [ + "Reebok_REALFLEX_SELECT", + "GoogleResearch" + ], + [ + "Tunnel Straight", + "OpenRobotics" + ], + [ + "Epson_T5803_Ink_Cartridge_Magenta_1pack", + "GoogleResearch" + ], + [ + "MARBLE_HUSKY_SENSOR_CONFIG_3", + "OpenRobotics" + ], + [ + "DRC Practive: Valve wall", + "OpenRobotics" + ], + [ + "Edgar Mine Virtual STIX 3", + "OpenRobotics" + ], + [ + "cave_3way_20m", + "OpenRobotics" + ], + [ + "Crayola_Washable_Sidewalk_Chalk_16_pack_wDZECiw7J6s", + "GoogleResearch" + ], + [ + "Ocean Rock 02", + "Cole" + ], + [ + "Perricone_MD_No_Foundation_Foundation_No_1", + "GoogleResearch" + ], + [ + "FRUIT_VEGGIE_MEMO_GRADIENT", + "GoogleResearch" + ], + [ + "Mens_Santa_Cruz_Thong_in_Chocolate_lvxYW7lek6B", + "GoogleResearch" + ], + [ + "Bathtub", + "OpenRobotics" + ], + [ + "Jenolan Section 02", + "OpenRobotics" + ], + [ + "Adrenaline_GTS_13_Color_WhtObsdianBlckOlmpcSlvr_Size_70", + "GoogleResearch" + ], + [ + "Crayola_Crayons_24_count", + "GoogleResearch" + ], + [ + "Standard Toilet", + "OpenRobotics" + ], + [ + "iRobot Hand", + "OpenRobotics" + ], + [ + "Cave Corner 30 D Lights Type B", + "OpenRobotics" + ], + [ + "FRC 2016 Draw bridge", + "OpenRobotics" + ], + [ + "aws_robomaker_warehouse_Lamp_01", + "OpenRobotics" + ], + [ + "Truss bridge", + "OpenRobotics" + ], + [ + "SOPHISTICATED_ENGINEERING_X4_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Electrical Box", + "nate" + ], + [ + "pallet", + "MovAi" + ], + [ + "Black_Elderberry_Syrup_54_oz_Gaia_Herbs", + "GoogleResearch" + ], + [ + "Submarine (sinking)", + "OpenRobotics" + ], + [ + "Reebok_BREAKPOINT_MID", + "GoogleResearch" + ], + [ + "Fire station (collapsed)", + "chapulina" + ], + [ + "Construction Cone Label Test", + "adlarkin" + ], + [ + "Hatchback blue", + "OpenRobotics" + ], + [ + "ROV", + "OpenRobotics" + ], + [ + "Frankencave 02", + "OpenRobotics" + ], + [ + "Cave Corner 03 Type A Lights", + "OpenRobotics" + ], + [ + "DigitalSinage", + "OpenRobotics" + ], + [ + "BAKING_UTENSILS", + "GoogleResearch" + ], + [ + "Brother_LC_1053PKS_Ink_Cartridge_CyanMagentaYellow_1pack", + "GoogleResearch" + ], + [ + "Nickelodeon_The_Spongebob_Movie_PopAPart_Spongebob", + "GoogleResearch" + ], + [ + "Nightmare_Before_Christmas_Collectors_Edition_Operation", + "GoogleResearch" + ], + [ + "Telephone pole", + "OpenRobotics" + ], + [ + "Common-rail", + "haris395" + ], + [ + "MARBLE_HUSKY_SENSOR_CONFIG_4", + "OpenRobotics" + ], + [ + "Pitcher Base", + "Gambit" + ], + [ + "TrolleyBox1", + "OpenRobotics" + ], + [ + "Ultra_JarroDophilus", + "GoogleResearch" + ], + [ + "Urban Straight Door Right Extension Lights", + "OpenRobotics" + ], + [ + "Tube 9.5 mm", + "OpenRobotics" + ], + [ + "Weisshai_Great_White_Shark", + "boaringsquare" + ], + [ + "PR2", + "OpenRobotics" + ], + [ + "Water Bottle", + "iche033" + ], + [ + "coro_hd2_sensor_config_1", + "OpenRobotics" + ], + [ + "Fog Emitter Dense", + "OpenRobotics" + ], + [ + "Indoor lightmap", + "veer" + ], + [ + "X2 Config 4", + "azeey" + ], + [ + "X4 UAV Config 4", + "OpenRobotics" + ], + [ + "Poise_Ultimate_Pads_Long", + "GoogleResearch" + ], + [ + "PatientWalkingCane", + "Luca" + ], + [ + "hatchback_red_1", + "nate" + ], + [ + "Lego_Friends_Mia", + "GoogleResearch" + ], + [ + "JS_WINGS_20_BLACK_FLAG", + "GoogleResearch" + ], + [ + "X1 Config 5", + "azeey" + ], + [ + "Rail Tunnel Straight Overlap", + "OpenRobotics" + ], + [ + "ASSORTED_VEGETABLE_SET", + "GoogleResearch" + ], + [ + "X2 Config 4", + "OpenRobotics" + ], + [ + "Shurtape_Tape_Purple_CP28", + "GoogleResearch" + ], + [ + "Reactor", + "OpenRobotics" + ], + [ + "MARBLE_HD2_SENSOR_CONFIG_4", + "OpenRobotics" + ], + [ + "Perricone_MD_High_Potency_Evening_Repair", + "GoogleResearch" + ], + [ + "FISHING_GAME", + "GoogleResearch" + ], + [ + "LEUCIPPUS_ADIPURE", + "GoogleResearch" + ], + [ + "Falling Rock 6", + "OpenRobotics" + ], + [ + "Cave Corner 30F Type B", + "OpenRobotics" + ], + [ + "Backpack", + "amelhassan" + ], + [ + "Hello Robot Stretch 2", + "chintujaguar" + ], + [ + "Reebok_SMOOTHFLEX_CUSHRUN_20", + "GoogleResearch" + ], + [ + "Pokmon_X_Nintendo_3DS_Game", + "GoogleResearch" + ], + [ + "Chessboard4", + "justartemm" + ], + [ + "EdgarMineVirtualSTIXFull", + "EkinBear" + ], + [ + "SHAPE_MATCHING_NxacpAY9jDt", + "GoogleResearch" + ], + [ + "Smoke", + "chapulina" + ], + [ + "Cave Tile 3", + "OpenRobotics" + ], + [ + "Black_and_Decker_TR3500SD_2Slice_Toaster", + "GoogleResearch" + ], + [ + "Fire hose long curled", + "OpenRobotics" + ], + [ + "Super_Mario_3D_World_Deluxe_Set", + "GoogleResearch" + ], + [ + "mb_marker_buoy_black", + "OpenRobotics" + ], + [ + "Wood cube 5cm", + "OpenRobotics" + ], + [ + "Reebok_CL_LTHR_R12", + "GoogleResearch" + ], + [ + "Colton_Wntr_Chukka_y4jO0I8JQFW", + "GoogleResearch" + ], + [ + "Womens_Canvas_Bahama_in_Black", + "GoogleResearch" + ], + [ + "X4 UAV Config 1", + "azeey" + ], + [ + "Jarrow_Formulas_Glucosamine_Hci_Mega_1000_100_ct", + "GoogleResearch" + ], + [ + "cave_4way_20m", + "nate" + ], + [ + "slide-mine", + "nate" + ], + [ + "Avengers_Gamma_Green_Smash_Fists", + "GoogleResearch" + ], + [ + "Superman_Battle_of_Smallville", + "GoogleResearch" + ], + [ + "Borage_GLA240Gamma_Tocopherol", + "GoogleResearch" + ], + [ + "PARENT_ROOM_FURNITURE_SET_1_DLKEy8H4mwK", + "GoogleResearch" + ], + [ + "Tiek_Blue_Patent_Tieks_Italian_Leather_Ballet_Flats", + "GoogleResearch" + ], + [ + "Monterey Bay", + "jennuine" + ], + [ + "lar_walls", + "ielson" + ], + [ + "lunar_rock8", + "AndrejOrsula" + ], + [ + "Mens_Authentic_Original_Boat_Shoe_in_Navy_Leather_xgoEcZtRNmH", + "GoogleResearch" + ], + [ + "DRC Practice: Hinged door", + "OpenRobotics" + ], + [ + "Netgear_Nighthawk_X6_AC3200_TriBand_Gigabit_Wireless_Router", + "GoogleResearch" + ], + [ + "RC Cessna", + "PX4" + ], + [ + "Parrot Bebop 2", + "OpenRobotics" + ], + [ + "SAMOA", + "GoogleResearch" + ], + [ + "Tunnel Tile 6", + "iche033" + ], + [ + "Crayola_Crayons_Washable_24_crayons", + "GoogleResearch" + ], + [ + "Breyer_Horse_Of_The_Year_2015", + "GoogleResearch" + ], + [ + "Cave Straight Type A", + "OpenRobotics" + ], + [ + "pallet", + "Mark" + ], + [ + "Cross Joint Part", + "OpenRobotics" + ], + [ + "Backpack", + "nate" + ], + [ + "Office_Depot_HP_564XL_Remanufactured_Ink_Cartridges_Color_Cyan_Magenta_Yellow_3_count", + "GoogleResearch" + ], + [ + "Just_For_Men_Mustache_Beard_Brushin_Hair_Color_Gel_MediumDark_Brown_M40", + "GoogleResearch" + ], + [ + "Copperhead_Snake_Tieks_Brown_Snake_Print_Ballet_Flats", + "GoogleResearch" + ], + [ + "Urban Straight Door Right Flipped Lights", + "OpenRobotics" + ], + [ + "Cave Corner 03 Type A", + "OpenRobotics" + ], + [ + "lunar_rock0", + "AndrejOrsula" + ], + [ + "Zephyr Delta Wing", + "OpenRobotics" + ], + [ + "BUILD_A_ROBOT", + "GoogleResearch" + ], + [ + "Playmates_nickelodeon_teenage_mutant_ninja_turtles_shredder", + "GoogleResearch" + ], + [ + "MetalCabinetYellow", + "OpenRobotics" + ], + [ + "Spectrum Plane", + "OpenRobotics" + ], + [ + "tv_65in", + "sebbyjp" + ], + [ + "HyperX_Cloud_II_Headset_Gun_Metal", + "GoogleResearch" + ], + [ + "Prius Hybrid", + "OpenRobotics" + ], + [ + "Tunnel Intersection", + "OpenRobotics" + ], + [ + "deformable_sphere_no_shadows", + "iche033" + ], + [ + "Post office", + "OpenRobotics" + ], + [ + "NurseFemaleWalk", + "Luca" + ], + [ + "JanSport Backpack Red", + "OpenRobotics" + ], + [ + "FoodCourtBenchShort", + "OpenRobotics" + ], + [ + "Black_Decker_CM2035B_12Cup_Thermal_Coffeemaker", + "GoogleResearch" + ], + [ + "Large Rock Fall", + "OpenRobotics" + ], + [ + "cart_model_2", + "MovAi" + ], + [ + "Cave Cap Type B", + "OpenRobotics" + ], + [ + "Melissa_Doug_Pattern_Blocks_and_Boards", + "GoogleResearch" + ], + [ + "Moon", + "Hyundai" + ], + [ + "Kelp 01", + "Cole" + ], + [ + "Subway Station", + "nate" + ], + [ + "Wood cube 7.5cm", + "OpenRobotics" + ], + [ + "NIOSH SR Course Section 03", + "OpenRobotics" + ], + [ + "OrangeDoors", + "OpenRobotics" + ], + [ + "Pokmon_Y_Nintendo_3DS_Game", + "GoogleResearch" + ], + [ + "Perricone_MD_Cold_Plasma_Body", + "GoogleResearch" + ], + [ + "Seagate_1TB_Backup_Plus_portable_drive_for_Mac", + "GoogleResearch" + ], + [ + "Box 5cm", + "09ubberboy90" + ], + [ + "Table Marble", + "OpenRobotics" + ], + [ + "Target_Basket_Medium", + "GoogleResearch" + ], + [ + "Womens_Betty_Chukka_Boot_in_Navy_Jersey_Sequin_y0SsHk7dKUX", + "GoogleResearch" + ], + [ + "Vtech_Cruise_Learn_Car_25_Years", + "GoogleResearch" + ], + [ + "Panda with Ignition position controller model", + "OpenRobotics" + ], + [ + "Urban Stairwell Platform Centered Lights", + "OpenRobotics" + ], + [ + "Ocean Rock 04", + "Cole" + ], + [ + "CORO_ROCKY_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "urban cave transition straight lights", + "OpenRobotics" + ], + [ + "Womens_Angelfish_Boat_Shoe_in_Linen_Oat", + "GoogleResearch" + ], + [ + "VisitorKidWalk", + "Luca" + ], + [ + "Timberland_Mens_Earthkeepers_Stormbuck_Plain_Toe_Oxford", + "GoogleResearch" + ], + [ + "IEEE Maze", + "ksommerk" + ], + [ + "Climbing Rope", + "OpenRobotics" + ], + [ + "Box Test", + "Ydenker" + ], + [ + "Lactoferrin", + "GoogleResearch" + ], + [ + "tent", + "OpenRobotics" + ], + [ + "Oven", + "OpenRobotics" + ], + [ + "hatchback_1", + "OpenRoboticsTest" + ], + [ + "actor_run", + "Mingfei" + ], + [ + "Cordless Drill Simplified", + "iche033" + ], + [ + "NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY", + "Yaren" + ], + [ + "assembly_249cb526b3ba9d3bbca7dfa6c4b98072", + "miniaevnikita" + ], + [ + "Deneme", + "ibrahim123123" + ], + [ + "50_BLOCKS", + "GoogleResearch" + ], + [ + "MaleVisitorSit", + "OpenRobotics" + ], + [ + "Pennington_Electric_Pot_Cabana_4", + "GoogleResearch" + ], + [ + "Marc_Anthony_Skip_Professional_Oil_of_Morocco_Conditioner_with_Argan_Oil", + "GoogleResearch" + ], + [ + "Firefly_Clue_Board_Game", + "GoogleResearch" + ], + [ + "louisville mega cave", + "nibe6600" + ], + [ + "DRC Practice: Weighted door", + "OpenRobotics" + ], + [ + "Vtech_Roll_Learn_Turtle", + "GoogleResearch" + ], + [ + "Perricone_MD_Vitamin_C_Ester_Serum", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Saucer_S14MOCHA", + "GoogleResearch" + ], + [ + "Chefmate_8_Frypan", + "GoogleResearch" + ], + [ + "Jersey Barrier", + "OpenRobotics" + ], + [ + "5_HTP", + "GoogleResearch" + ], + [ + "Just_For_Men_Mustache_Beard_Brushin_Hair_Color_Gel_Kit_Jet_Black_M60", + "GoogleResearch" + ], + [ + "TEAMBASE", + "OpenRoboticsTest" + ], + [ + "LEGO_5887_Dino_Defense_HQ", + "GoogleResearch" + ], + [ + "REEF_BANTU", + "GoogleResearch" + ], + [ + "Rocky Tunnel Tile 1", + "OpenRobotics" + ], + [ + "MARBLE_HUSKY_SENSOR_CONFIG_1", + "moxo" + ], + [ + "Tetris_Link_Game", + "GoogleResearch" + ], + [ + "Crayola_Model_Magic_Modeling_Material_White_3_oz", + "GoogleResearch" + ], + [ + "CTU_CRAS_NORLAB_SPOT_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "Google_Cardboard_Original_package", + "GoogleResearch" + ], + [ + "Reebok_VERSA_TRAIN", + "GoogleResearch" + ], + [ + "Nescafe_Memento_Latte_Caramel_8_08_oz_23_g_packets_64_oz_184_g", + "GoogleResearch" + ], + [ + "CERBERUS_ANYMAL_C_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "TOP_TEN_HI", + "GoogleResearch" + ], + [ + "Cinder block wide", + "OpenRobotics" + ], + [ + "Black and Decker Cordless Drill", + "OpenRobotics" + ], + [ + "Coast Water", + "amargett" + ], + [ + "Granimals_20_Wooden_ABC_Blocks_Wagon", + "GoogleResearch" + ], + [ + "Toolbox", + "OpenRobotics" + ], + [ + "3D_Dollhouse_Refrigerator", + "GoogleResearch" + ], + [ + "Office_Depot_HP_950XL_Ink_Cartridge_Black_CN045AN", + "GoogleResearch" + ], + [ + "Rescue Randy", + "iche033" + ], + [ + "FRC 2016 Ball", + "OpenRobotics" + ], + [ + "Maze2", + "ksommerk" + ], + [ + "Kuka YouBot", + "OpenRobotics" + ], + [ + "Cave Tile 8", + "OpenRobotics" + ], + [ + "Cave Corner 02 Lights Type A", + "OpenRobotics" + ], + [ + "TrolleyBox2", + "OpenRobotics" + ], + [ + "Orbbec Astra Depth Camera", + "OpenRobotics" + ], + [ + "Falling Rock 2", + "OpenRobotics" + ], + [ + "GRANDFATHER_DOLL", + "GoogleResearch" + ], + [ + "Stop sign with spaces", + "chapulina" + ], + [ + "Iris with Standoffs", + "abmohit" + ], + [ + "MINI_FIRE_ENGINE", + "GoogleResearch" + ], + [ + "Rubicon", + "OpenRobotics" + ], + [ + "part_9bb1115a75847cf38415a778ea80f89d", + "miniaevnikita" + ], + [ + "bosdyn_spot", + "OpenRobotics" + ], + [ + "PHEEHAN_RUN", + "GoogleResearch" + ], + [ + "Humanoid from MJCF", + "OpenRobotics" + ], + [ + "Top_Paw_Dog_Bowl_Blue_Paw_Bone_Ceramic_25_fl_oz_total", + "GoogleResearch" + ], + [ + "MegaCavern", + "OpenRobotics" + ], + [ + "AnesthesiaMachine", + "OpenRobotics" + ], + [ + "Cave Cavern Split 02", + "OpenRobotics" + ], + [ + "bosdyn_spot", + "zilork" + ], + [ + "slide-deadend", + "nate" + ], + [ + "Standard VTOL", + "frede791" + ], + [ + "lar_wardrobe", + "ielson" + ], + [ + "Olive_Kids_Butterfly_Garden_Munch_n_Lunch_Bag", + "GoogleResearch" + ], + [ + "X2 Config 1", + "OpenRobotics" + ], + [ + "Cessna C-172", + "chapulina" + ], + [ + "Just_For_Men_ShampooIn_Haircolor_Jet_Black_60", + "GoogleResearch" + ], + [ + "x500-Base", + "silverXnoise" + ], + [ + "Cardboard box", + "jliu6718" + ], + [ + "Central_Garden_Flower_Pot_Goo_425", + "GoogleResearch" + ], + [ + "Ortho_Forward_Facing_QCaor9ImJ2G", + "GoogleResearch" + ], + [ + "Perricone_MD_Hypoallergenic_Firming_Eye_Cream_05_oz", + "GoogleResearch" + ], + [ + "Corningware_CW_by_Corningware_3qt_Oblong_Casserole_Dish_Blue", + "GoogleResearch" + ], + [ + "Cole_Hardware_Orchid_Pot_85", + "GoogleResearch" + ], + [ + "Edgar Mine Virtual STIX 10", + "OpenRobotics" + ], + [ + "MiRCart", + "OpenRobotics" + ], + [ + "Sushi_Mat", + "GoogleResearch" + ], + [ + "LaR_chair", + "ielson" + ], + [ + "NIOSH SR Course Section 11", + "OpenRobotics" + ], + [ + "Asus_Sabertooth_Z97_MARK_1_Motherboard_ATX_LGA1150_Socket", + "GoogleResearch" + ], + [ + "X2 Config 5", + "azeey" + ], + [ + "Beer", + "chapulina" + ], + [ + "Glycerin_11_Color_BrllntBluSkydvrSlvrBlckWht_Size_80", + "GoogleResearch" + ], + [ + "ada_lovelace_poster", + "LeDSantos" + ], + [ + "GarbagePileV1", + "OpenRobotics" + ], + [ + "Sofa", + "sebbyjp" + ], + [ + "House 3", + "AmrElsersy" + ], + [ + "Elephant", + "GoogleResearch" + ], + [ + "Tunnel Tile 1", + "nate" + ], + [ + "part_ee2cfbbd02263f57da9c400a0a879946", + "miniaevnikita" + ], + [ + "Ecoforms_Plant_Container_QP_Turquoise", + "GoogleResearch" + ], + [ + "ctu_cras_norlab_marv_sensor_config_4", + "OpenRobotics" + ], + [ + "Tag_Dishtowel_Green", + "GoogleResearch" + ], + [ + "Ortho_Forward_Facing_CkAW6rL25xH", + "GoogleResearch" + ], + [ + "Cave Elevation", + "OpenRobotics" + ], + [ + "CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_1", + "91G69" + ], + [ + "X2 Config 2", + "azeey" + ], + [ + "X2 Config 5", + "OpenRobotics" + ], + [ + "TOWER_TUMBLING", + "GoogleResearch" + ], + [ + "ASICS_GELAce_Pro_Pearl_WhitePink", + "GoogleResearch" + ], + [ + "Office_Depot_Dell_Series_1_Remanufactured_Ink_Cartridge_Black", + "GoogleResearch" + ], + [ + "ParkingTrolleyMin", + "OpenRobotics" + ], + [ + "Tory_Burch_Kiernan_Riding_Boot", + "GoogleResearch" + ], + [ + "Beetle_Adventure_Racing_Nintendo_64", + "GoogleResearch" + ], + [ + "mono_cam", + "PX4" + ], + [ + "AirportSign4", + "OpenRobotics" + ], + [ + "Closetmaid_Premium_Fabric_Cube_Red", + "GoogleResearch" + ], + [ + "Standing person", + "abmohit" + ], + [ + "X2 Config 2", + "OpenRobotics" + ], + [ + "SmallCubicle", + "OpenRobotics" + ], + [ + "Iris with Standoffs and Camera LiftDrag ArduCopter Plugins", + "abmohit" + ], + [ + "Gigabyte_GA78LMTUSB3_50_Motherboard_Micro_ATX_Socket_AM3", + "GoogleResearch" + ], + [ + "Cole_Hardware_Antislip_Surfacing_Material_White", + "GoogleResearch" + ], + [ + "Tunnel Tile 4 Rails", + "OpenRobotics" + ], + [ + "adistar_boost_m", + "GoogleResearch" + ], + [ + "Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Oat_niKJKeWsmxY", + "GoogleResearch" + ], + [ + "TinyRobot", + "Luca" + ], + [ + "simple_robot", + "ranat11" + ], + [ + "actor_walk", + "Mingfei" + ], + [ + "Urban Stairwell Platform", + "OpenRobotics" + ], + [ + "Wilton_PreCut_Parchment_Sheets_10_x_15_24_sheets", + "GoogleResearch" + ], + [ + "Control Room", + "kevinhalim9" + ], + [ + "Tune_Belt_Sport_Armband_For_Samsung_Galaxy_S3", + "GoogleResearch" + ], + [ + "building_L1", + "shrijitsingh99" + ], + [ + "Sofa", + "OpenRobotics" + ], + [ + "X1 Config 1 - relative paths", + "chapulina" + ], + [ + "Mastic_Gum", + "GoogleResearch" + ], + [ + "Panda arm - Fortress merge include demo", + "mustafapicak" + ], + [ + "hatchback_1", + "nate" + ], + [ + "Perricone_MD_AcylGlutathione_Deep_Crease_Serum", + "GoogleResearch" + ], + [ + "Office_Depot_Dell_Series_11_Remanufactured_Ink_Cartridge_TriColor", + "GoogleResearch" + ], + [ + "Melissa_Doug_Pound_and_Roll", + "GoogleResearch" + ], + [ + "Chair", + "OpenRobotics" + ], + [ + "DANCING_ALLIGATOR", + "GoogleResearch" + ], + [ + "Fortress island", + "Pine" + ], + [ + "antenna", + "OpenRobotics" + ], + [ + "Whey_Protein_Vanilla", + "GoogleResearch" + ], + [ + "Simple Arm Gripper", + "abmohit" + ], + [ + "Dino_5", + "GoogleResearch" + ], + [ + "pet_gate", + "makerspet" + ], + [ + "Timberland_Mens_Earthkeepers_Stormbuck_Chukka", + "GoogleResearch" + ], + [ + "Male visitor", + "WANG" + ], + [ + "MARBLE_HUSKY_SENSOR_CONFIG_1", + "qewer" + ], + [ + "Police station", + "OpenRobotics" + ], + [ + "TestTexture", + "Ydenker" + ], + [ + "Threshold_Ramekin_White_Porcelain", + "GoogleResearch" + ], + [ + "Sperry_TopSider_tNB9t6YBUf3", + "GoogleResearch" + ], + [ + "X4 UAV", + "OpenRobotics" + ], + [ + "OutsideBench", + "OpenRobotics" + ], + [ + "Razer_Taipan_Black_Ambidextrous_Gaming_Mouse", + "GoogleResearch" + ], + [ + "Cave Tile 10", + "OpenRobotics" + ], + [ + "Stop light", + "OpenRobotics" + ], + [ + "Tunnel Intersection T", + "OpenRobotics" + ], + [ + "Reebok_TURBO_RC", + "GoogleResearch" + ], + [ + "Rough Tunnel Tile Ramp", + "OpenRobotics" + ], + [ + "Valve", + "OpenRobotics" + ], + [ + "Room_Essentials_Dish_Drainer_Collapsible_White", + "GoogleResearch" + ], + [ + "HELICOPTER", + "GoogleResearch" + ], + [ + "Panda arm - Fortress merge include demo", + "OpenRobotics" + ], + [ + "Reebok_ZIGLITE_RUSH_AC", + "GoogleResearch" + ], + [ + "ASICS_GELLinksmaster_WhiteCoffeeSand", + "GoogleResearch" + ], + [ + "Kanex_MultiSync_Wireless_Keyboard", + "GoogleResearch" + ], + [ + "CONE_SORTING", + "GoogleResearch" + ], + [ + "STACKING_BEAR", + "GoogleResearch" + ], + [ + "Cascadia_8_Color_AquariusHibscsBearingSeaBlk_Size_50", + "GoogleResearch" + ], + [ + "Reebok_PUMP_OMNI_LITE_HLS", + "GoogleResearch" + ], + [ + "Office_Depot_HP_98_Remanufactured_Ink_Cartridge_Black", + "GoogleResearch" + ], + [ + "Cave Straight 04", + "OpenRobotics" + ], + [ + "MARBLE_HUSKY_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "pallet", + "ctrazziwp" + ], + [ + "cave_straight_40m", + "OpenRobotics" + ], + [ + "Mattel_SKIP_BO_Card_Game", + "GoogleResearch" + ], + [ + "Wrigley_Orbit_Mint_Variety_18_Count", + "GoogleResearch" + ], + [ + "TrashBin", + "OpenRobotics" + ], + [ + "x500", + "seifeldeen18" + ], + [ + "FRC 2016 Rough Terrain", + "OpenRobotics" + ], + [ + "Edgar Mine Virtual STIX 5", + "OpenRobotics" + ], + [ + "BUILD_A_ZOO", + "GoogleResearch" + ], + [ + "Real_Deal_1nIwCHX1MTh", + "GoogleResearch" + ], + [ + "Falling Rock 3", + "OpenRobotics" + ], + [ + "BAGEL_WITH_CHEESE", + "GoogleResearch" + ], + [ + "InformationCounter", + "OpenRobotics" + ], + [ + "Euro pallet", + "OpenRobotics" + ], + [ + "Oak tree", + "OpenRobotics" + ], + [ + "Olive_Kids_Robots_Pencil_Case", + "GoogleResearch" + ], + [ + "POUNDING_MUSHROOMS", + "GoogleResearch" + ], + [ + "Perricone_MD_Omega_3_Supplements", + "GoogleResearch" + ], + [ + "Round tin (top)", + "OpenRobotics" + ], + [ + "NIOSH SR Course Section 10", + "OpenRobotics" + ], + [ + "box", + "ielson" + ], + [ + "lunar_rock7", + "AndrejOrsula" + ], + [ + "Torpedo MK46", + "quarkytale" + ], + [ + "PhonesDisplay", + "OpenRobotics" + ], + [ + "Grreat_Choice_Dog_Double_Dish_Plastic_Blue", + "GoogleResearch" + ], + [ + "Ladder 60 Degrees 2 Handrails", + "OpenRobotics" + ], + [ + "SAMe_200_KX7ZmOw47co", + "GoogleResearch" + ], + [ + "MBARI Tethys LRAUV", + "accurrent" + ], + [ + "Cave Straight 04 Lights Type B", + "OpenRobotics" + ], + [ + "Electrical Array 7", + "kevinhalim9" + ], + [ + "U_By_Kotex_Sleek_Regular_Unscented_Tampons_36_Ct_Box", + "GoogleResearch" + ], + [ + "FIRE_ENGINE", + "GoogleResearch" + ], + [ + "NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY", + "OpenRobotics" + ], + [ + "Climbing Helmet With Light", + "OpenRobotics" + ], + [ + "x3_description", + "nate" + ], + [ + "Cart: soft suspension", + "OpenRobotics" + ], + [ + "Stop light post", + "OpenRobotics" + ], + [ + "Ecoforms_Plant_Container_QP6CORAL", + "GoogleResearch" + ], + [ + "TVStand", + "OpenRobotics" + ], + [ + "part_01c539e2c7ce9f504a491eb14015d9ab", + "miniaevnikita" + ], + [ + "Edgar Mine Virtual STIX 6", + "OpenRobotics" + ], + [ + "Lovestruck_Tieks_Glittery_Rose_Gold_Italian_Leather_Ballet_Flats", + "GoogleResearch" + ], + [ + "F5_TRX_FG", + "GoogleResearch" + ], + [ + "ASICS_GELTour_Lyte_WhiteOrchidSilver", + "GoogleResearch" + ], + [ + "Nestle_Candy_19_oz_Butterfinger_Singles_116567", + "GoogleResearch" + ], + [ + "Number1", + "OpenRobotics" + ], + [ + "Universal Robotics UR10 robot arm", + "OpenRobotics" + ], + [ + "Fire Hose", + "OpenRobotics" + ], + [ + "NIOSH EX Course Section 03", + "OpenRobotics" + ], + [ + "Small Dry Bag Handle", + "OpenRobotics" + ], + [ + "Vtech_Stack_Sing_Rings_636_Months", + "GoogleResearch" + ], + [ + "x500_base", + "PX4" + ], + [ + "Arm Part", + "OpenRobotics" + ], + [ + "EXPLORER_R2_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "Perricone_MD_Face_Finishing_Moisturizer", + "GoogleResearch" + ], + [ + "X4 UAV", + "dreamerql" + ], + [ + "Tunnel Tile 3", + "OpenRobotics" + ], + [ + "Frozen_Olafs_In_Trouble_PopOMatic_Game_OEu83W9T8pD", + "GoogleResearch" + ], + [ + "ConstructionCone", + "cggos" + ], + [ + "Cave Vertical Shaft Straight Bottom Lights Type A", + "OpenRobotics" + ], + [ + "actor_sit_down", + "Mingfei" + ], + [ + "IBeam", + "TjalleDijkstra" + ], + [ + "LEGO_Creationary_Game", + "GoogleResearch" + ], + [ + "INTERNATIONAL_PAPER_Willamette_4_Brown_Bag_500Count", + "GoogleResearch" + ], + [ + "KID_ROOM_FURNITURE_SET_1", + "GoogleResearch" + ], + [ + "MEAT_SET", + "GoogleResearch" + ], + [ + "PUNCH_DROP", + "GoogleResearch" + ], + [ + "Urban Service Room Straight Lights", + "OpenRobotics" + ], + [ + "MARBLE_HUSKY_SENSOR_CONFIG_5", + "OpenRobotics" + ], + [ + "Cave Tile Start", + "nate" + ], + [ + "Edgar Mine Virtual STIX", + "kmltrgyclk" + ], + [ + "Asus_Z87PRO_Motherboard_ATX_LGA1150_Socket", + "GoogleResearch" + ], + [ + "MiR100", + "OpenRobotics" + ], + [ + "Electrical Array 8", + "kevinhalim9" + ], + [ + "UGG_Jena_Womens_Java_7", + "GoogleResearch" + ], + [ + "Tunnel Tile 6 Rails", + "OpenRobotics" + ], + [ + "Gate", + "OpenRobotics" + ], + [ + "Wooden board", + "OpenRobotics" + ], + [ + "Mens_Bahama_in_White_vSwvGMCo32f", + "GoogleResearch" + ], + [ + "Plum", + "Gambit" + ], + [ + "Urban Elevation Up Lights", + "OpenRobotics" + ], + [ + "Ecoforms_Planter_Pot_QP6Ebony", + "GoogleResearch" + ], + [ + "Walker", + "OpenRobotics" + ], + [ + "MARTIN_WEDGE_LACE_BOOT", + "GoogleResearch" + ], + [ + "Tory_Burch_Reva_Metal_Logo_Litus_Snake_Print_in_dark_BranchGold", + "GoogleResearch" + ], + [ + "RoboCup 2014 SPL Goal", + "OpenRobotics" + ], + [ + "Womens_Authentic_Original_Boat_Shoe_in_Navy_Deerskin_50lWJaLWG8R", + "GoogleResearch" + ], + [ + "REEF_ZENFUN", + "GoogleResearch" + ], + [ + "Pepsi_Cola_Caffeine_Free_12_12_fl_oz_355_ml_cans_144_fl_oz_426_lt", + "GoogleResearch" + ], + [ + "Rescue Randy Sitting", + "OpenRobotics" + ], + [ + "Lavender_Snake_Tieks_Snake_Print_Ballet_Flats", + "GoogleResearch" + ], + [ + "MBARI Tethys LRAUV-1", + "makhab" + ], + [ + "Kotobuki_Saucer_Dragon_Fly", + "GoogleResearch" + ], + [ + "Matte_Black_Tieks_Italian_Leather_Ballet_Flats", + "GoogleResearch" + ], + [ + "Vent", + "OpenRobotics" + ], + [ + "Cave Tile 7", + "OpenRobotics" + ], + [ + "Mens_Authentic_Original_Boat_Shoe_in_Navy_Leather_RpT4GvUXRRP", + "GoogleResearch" + ], + [ + "ASICS_GELChallenger_9_Royal_BlueWhiteBlack", + "GoogleResearch" + ], + [ + "Android_Figure_Panda", + "GoogleResearch" + ], + [ + "BathroomSink", + "OpenRobotics" + ], + [ + "NIST elevated floor 120", + "OpenRobotics" + ], + [ + "NormalBed", + "OpenRobotics" + ], + [ + "pet_gate_wide", + "makerspet" + ], + [ + "Lovable_Huggable_Cuddly_Boutique_Teddy_Bear_Beige", + "GoogleResearch" + ], + [ + "Coffee Maker", + "chapulina" + ], + [ + "Tunnel Tile 2", + "OpenRobotics" + ], + [ + "Ladder 75 Degrees 0 Handrails", + "OpenRobotics" + ], + [ + "Pine Tree", + "OpenRobotics" + ], + [ + "Office_Depot_HP_2_Remanufactured_Ink_Cartridges_Color_Cyan_Magenta_Yellow_3_count", + "GoogleResearch" + ], + [ + "Panda with Ignition position controller model", + "nk121" + ], + [ + "Fog Emitter2", + "OpenRobotics" + ], + [ + "3M_Vinyl_Tape_Green_1_x_36_yd", + "GoogleResearch" + ], + [ + "Tunnel Tile 2 Lights", + "OpenRobotics" + ], + [ + "TURBOPROP_AIRPLANE_WITH_PILOT", + "GoogleResearch" + ], + [ + "Nintendo_2DS_Crimson_Red", + "GoogleResearch" + ], + [ + "Radio tower", + "OpenRobotics" + ], + [ + "Large Ammo Can Handles", + "OpenRobotics" + ], + [ + "Epson_LabelWorks_LC4WBN9_Tape_reel_labels_047_x_295_Roll_Black_on_White", + "GoogleResearch" + ], + [ + "Tunnel Tile 2 Rails", + "angelamaio" + ], + [ + "Schleich_S_Bayala_Unicorn_70432", + "GoogleResearch" + ], + [ + "Nickelodeon_Teenage_Mutant_Ninja_Turtles_Raphael", + "GoogleResearch" + ], + [ + "Door handle", + "OpenRobotics" + ], + [ + "JUNGLE_HEIGHT", + "GoogleResearch" + ], + [ + "BedsideTable", + "OpenRobotics" + ], + [ + "Cave Tile Blocker", + "OpenRobotics" + ], + [ + "Submarine (buoyant)", + "OpenRobotics" + ], + [ + "Hatchback copy", + "OpenRobotics" + ], + [ + "Gigabyte_GAZ97XSLI_10_motherboard_ATX_LGA1150_Socket_Z97", + "GoogleResearch" + ], + [ + "Nips_Hard_Candy_Rich_Creamy_Butter_Rum_4_oz_1133_g", + "GoogleResearch" + ], + [ + "Cave Elevation Straight Lights Type A", + "OpenRobotics" + ], + [ + "CORO_MIKE_SENSOR_CONFIG_2", + "AmrElsersy" + ], + [ + "Cave U Turn Elevation Lights Type A", + "OpenRobotics" + ], + [ + "Cave Corner 04 Lights Type A", + "OpenRobotics" + ], + [ + "Hasbro_Cranium_Performance_and_Acting_Game", + "GoogleResearch" + ], + [ + "My_First_Wiggle_Crocodile", + "GoogleResearch" + ], + [ + "DRC Practice: 4x8 Doorway", + "OpenRobotics" + ], + [ + "shelf", + "MovAi" + ], + [ + "Olive_Kids_Birdie_Pack_n_Snack", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Pot_GP9AAvocado", + "asli" + ], + [ + "Sonobuoy", + "quarkytale" + ], + [ + "Urban Platform", + "OpenRobotics" + ], + [ + "Timberland_Mens_Earthkeepers_Casco_Bay_Canvas_SlipOn", + "GoogleResearch" + ], + [ + "Cave Split Type A", + "OpenRobotics" + ], + [ + "BUNNY_RATTLE", + "GoogleResearch" + ], + [ + "JBL_Charge_Speaker_portable_wireless_wired_Green", + "GoogleResearch" + ], + [ + "Cave Corner 04 Type A", + "OpenRobotics" + ], + [ + "lunar_surface1", + "AndrejOrsula" + ], + [ + "Beyonc_Life_is_But_a_Dream_DVD", + "GoogleResearch" + ], + [ + "DRC Practice: Ball valve wall", + "OpenRobotics" + ], + [ + "Reebok_KAMIKAZE_II_MID", + "GoogleResearch" + ], + [ + "Reebok_SOMERSET_RUN", + "GoogleResearch" + ], + [ + "Neat_Solutions_Character_Bib_2_pack", + "GoogleResearch" + ], + [ + "D_ROSE_773_II_Kqclsph05pE", + "GoogleResearch" + ], + [ + "Armchair", + "OpenRobotics" + ], + [ + "Parrot Bebop 2", + "ibalog" + ], + [ + "Slamtec RPLIDAR S1", + "mjcarroll" + ], + [ + "Ecoforms_Planter_Bowl_Cole_Hardware", + "GoogleResearch" + ], + [ + "Caving Helmet", + "OpenRobotics" + ], + [ + "Lidar 3d v2", + "nate" + ], + [ + "Cardboard box", + "NGD1004" + ], + [ + "Mario_Party_9_Wii_Game", + "GoogleResearch" + ], + [ + "CubeSoft", + "isabelleeysseric" + ], + [ + "Mad_Gab_Refresh_Card_Game", + "GoogleResearch" + ], + [ + "Urban Elevation Down", + "OpenRobotics" + ], + [ + "X2 Config 9", + "OpenRobotics" + ], + [ + "KITCHEN_SET_CLASSIC_40HwCHfeG0H", + "GoogleResearch" + ], + [ + "VANS_FIRE_ROASTED_VEGGIE_CRACKERS_GLUTEN_FREE", + "GoogleResearch" + ], + [ + "Flight Data Recorder", + "quarkytale" + ], + [ + "Reebok_BREAKPOINT_LO_2V", + "GoogleResearch" + ], + [ + "Coast Water", + "OpenRobotics" + ], + [ + "Reebok_ZIGLITE_RUSH", + "GoogleResearch" + ], + [ + "Fidget Spinner", + "OpenRobotics" + ], + [ + "Eat_to_Live_The_Amazing_NutrientRich_Program_for_Fast_and_Sustained_Weight_Loss_Revised_Edition_Book", + "GoogleResearch" + ], + [ + "Cootie_Game_tDhURNbfU5J", + "GoogleResearch" + ], + [ + "OfficeChairGrey", + "OpenRobotics" + ], + [ + "aws_robomaker_warehouse_ClutteringA_01", + "OpenRobotics" + ], + [ + "ROAD_CONSTRUCTION_SET", + "GoogleResearch" + ], + [ + "GEARS_PUZZLES_STANDARD_gcYxhNHhKlI", + "GoogleResearch" + ], + [ + "Pepsi_Caffeine_Free_Diet_12_CT", + "GoogleResearch" + ], + [ + "Cave Elevation Corner Type A", + "OpenRobotics" + ], + [ + "DRC Practice: Handle Wheel valve", + "OpenRobotics" + ], + [ + "SPEED_BOAT", + "GoogleResearch" + ], + [ + "FARM_ANIMAL", + "GoogleResearch" + ], + [ + "CAR_CARRIER_TRAIN", + "GoogleResearch" + ], + [ + "ctu_cras_norlab_x500_sensor_config_2", + "OpenRobotics" + ], + [ + "ZX700_lYiwcTIekXk", + "GoogleResearch" + ], + [ + "Office_Depot_Dell_Series_9_Color_Ink_Ink_Cartridge_MK991_MK993", + "GoogleResearch" + ], + [ + "Urban Bend Right", + "OpenRobotics" + ], + [ + "Chessboard2", + "justartemm" + ], + [ + "indian_tunnel", + "OpenRobotics" + ], + [ + "White_Rose_Tieks_Leather_Ballet_Flats_with_Floral_Rosettes", + "GoogleResearch" + ], + [ + "SSCI_X4_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "explorer_spot_sensor_config_1", + "OpenRobotics" + ], + [ + "CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Little_Debbie_Cloud_Cakes_10_ct", + "GoogleResearch" + ], + [ + "Krill_Oil", + "GoogleResearch" + ], + [ + "Gazebo - relative paths", + "OpenRobotics" + ], + [ + "Cave Tile 3", + "nate" + ], + [ + "RetailKiosk2", + "OpenRobotics" + ], + [ + "IVStand", + "OpenRobotics" + ], + [ + "Animal_Planet_Foam_2Headed_Dragon", + "GoogleResearch" + ], + [ + "CTU", + "MechaKim" + ], + [ + "Schleich_African_Black_Rhino", + "GoogleResearch" + ], + [ + "ParkingTrolleyMax", + "OpenRobotics" + ], + [ + "DeliveryBot", + "OpenRobotics" + ], + [ + "mb_marker_buoy_red", + "OpenRobotics" + ], + [ + "Olive_Kids_Dinosaur_Land_Munch_n_Lunch", + "GoogleResearch" + ], + [ + "Garden Mascot", + "OpenRobotics" + ], + [ + "PR2_SDF17", + "antoniojfsousa" + ], + [ + "3M_Antislip_Surfacing_Light_Duty_White", + "GoogleResearch" + ], + [ + "FemDophilus", + "GoogleResearch" + ], + [ + "EXPLORER_X1_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "SIT_N_WALK_PUPPY", + "GoogleResearch" + ], + [ + "Mens_Mako_Canoe_Moc_2Eye_Boat_Shoe_in_Coffee_9d05GG33QQQ", + "GoogleResearch" + ], + [ + "Sun", + "OpenRobotics" + ], + [ + "Crazy_Shadow_2_oW4Jd10HFFr", + "GoogleResearch" + ], + [ + "Victor_Reversible_Bookend", + "GoogleResearch" + ], + [ + "Ambulance", + "chapulina" + ], + [ + "part_a0dafada0d685b39b3e095f05c8497c3", + "miniaevnikita" + ], + [ + "W_Lou_z0dkC78niiZ", + "GoogleResearch" + ], + [ + "ClassCBed", + "OpenRobotics" + ], + [ + "NIOSH Segment 02 Shell", + "OpenRobotics" + ], + [ + "Satsop", + "OpenRobotics" + ], + [ + "room_wall_2x5m", + "sebbyjp" + ], + [ + "Apartment", + "OpenRobotics" + ], + [ + "Bradshaw_International_11642_7_Qt_MP_Plastic_Bowl", + "GoogleResearch" + ], + [ + "Hokuyo UST20LX", + "mjcarroll" + ], + [ + "Threshold_Dinner_Plate_Square_Rim_White_Porcelain", + "GoogleResearch" + ], + [ + "DRC Practice: 45 degree barriers", + "OpenRobotics" + ], + [ + "Reebok_ZIGSTORM", + "GoogleResearch" + ], + [ + "LACING_SHEEP", + "GoogleResearch" + ], + [ + "Torpedo MK48", + "quarkytale" + ], + [ + "COSTAR_HUSKY_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "Cole_Hardware_Plant_Saucer_Brown_125", + "GoogleResearch" + ], + [ + "Markings_Desk_Caddy", + "GoogleResearch" + ], + [ + "Piano", + "OpenRobotics" + ], + [ + "Womens_Suede_Bahama_in_Graphite_Suede_t22AJSRjBOX", + "GoogleResearch" + ], + [ + "fidget_spinner", + "AndrejOrsula" + ], + [ + "lunar_surface2", + "AndrejOrsula" + ], + [ + "Toysmith_Windem_Up_Flippin_Animals_Dog", + "GoogleResearch" + ], + [ + "HandSanitizerStation", + "OpenRobotics" + ], + [ + "Tunnel Wall Debris", + "OpenRobotics" + ], + [ + "actor_sitting", + "Mingfei" + ], + [ + "Mens_Mako_Canoe_Moc_2Eye_Boat_Shoe_in_OysterTaupe_otyRrfvPMiA", + "GoogleResearch" + ], + [ + "CoQ10_wSSVoxVppVD", + "GoogleResearch" + ], + [ + "aws_robomaker_warehouse_PalletJackB_01", + "613bcm" + ], + [ + "Tunnel Entrance", + "OpenRobotics" + ], + [ + "X4 UAV Config 5", + "OpenRobotics" + ], + [ + "Cave Straight 03", + "OpenRobotics" + ], + [ + "Number4", + "OpenRobotics" + ], + [ + "Moon model", + "mgonzs13" + ], + [ + "CORO_JEANINE_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "mb_round_buoy_black", + "OpenRobotics" + ], + [ + "Robonaut 2", + "OpenRobotics" + ], + [ + "Medium Rock Fall", + "OpenRobotics" + ], + [ + "X1 Config 5", + "saurabh" + ], + [ + "Cave Staging Exit Detector", + "OpenRobotics" + ], + [ + "DRC Practice: Truss", + "OpenRobotics" + ], + [ + "Hokuyo UTM30LX", + "mjcarroll" + ], + [ + "Tunnel Tile 4", + "OpenRobotics" + ], + [ + "TWISTED_PUZZLE", + "GoogleResearch" + ], + [ + "MARBLE_HUSKY_SENSOR_CONFIG_1", + "SimonMR" + ], + [ + "Refrigerator", + "OpenRobotics" + ], + [ + "Volcano", + "jennuine" + ], + [ + "Crazy_Shadow_2", + "GoogleResearch" + ], + [ + "X4_GPS_RGBD", + "hexarotor" + ], + [ + "Cave Corner 30F D Type B", + "OpenRobotics" + ], + [ + "ENFR_MID_ENFORCER", + "GoogleResearch" + ], + [ + "NIST fiducial barrel", + "OpenRobotics" + ], + [ + "Down_To_Earth_Orchid_Pot_Ceramic_Lime", + "GoogleResearch" + ], + [ + "Simple Arm", + "OpenRobotics" + ], + [ + "Ecoforms_Quadra_Saucer_SQ1_Avocado", + "GoogleResearch" + ], + [ + "robot", + "devaty" + ], + [ + "Panda hand - Fortress merge include demo", + "OpenRobotics" + ], + [ + "Plastic Cup", + "OpenRobotics" + ], + [ + "green_ball", + "Wavefire" + ], + [ + "Toys_R_Us_Treat_Dispenser_Smart_Puzzle_Foobler", + "GoogleResearch" + ], + [ + "Walkway Metal Straight", + "OpenRobotics" + ], + [ + "lunar_rock1", + "AndrejOrsula" + ], + [ + "TM12", + "JensVanhooydonck" + ], + [ + "JarroDophilusFOS_Value_Size", + "GoogleResearch" + ], + [ + "centauri_conveyor", + "NGD1004" + ], + [ + "SUV", + "tenxlenx00" + ], + [ + "x500-Base", + "Yuvraj" + ], + [ + "Pioneer 2DX", + "OpenRobotics" + ], + [ + "cave_L_20m", + "OpenRobotics" + ], + [ + "TOP_TEN_HI_60KlbRbdoJA", + "GoogleResearch" + ], + [ + "Chef_Style_Round_Cake_Pan_9_inch_pan", + "GoogleResearch" + ], + [ + "StorageRack", + "OpenRobotics" + ], + [ + "NIOSH Segment 01 Shell", + "OpenRobotics" + ], + [ + "explorer_r3_sensor_config_1", + "OpenRobotics" + ], + [ + "particle_dynamics", + "isabelleeysseric" + ], + [ + "Marble 1.5 cm", + "OpenRobotics" + ], + [ + "coro_allie_sensor_config_1", + "OpenRobotics" + ], + [ + "XRayMachine", + "OpenRobotics" + ], + [ + "SAPPHIRE_R7_260X_OC", + "GoogleResearch" + ], + [ + "Urban Service Room Lights", + "OpenRobotics" + ], + [ + "Starstruck_Tieks_Glittery_Gold_Italian_Leather_Ballet_Flats", + "GoogleResearch" + ], + [ + "ConfTable", + "OpenRobotics" + ], + [ + "lunar_surface9", + "AndrejOrsula" + ], + [ + "bot_sample", + "atulchaudhari" + ], + [ + "Melissa_Doug_Shape_Sorting_Clock", + "GoogleResearch" + ], + [ + "Marc_Anthony_True_Professional_Oil_of_Morocco_Argan_Oil_Treatment", + "GoogleResearch" + ], + [ + "Cave Corner 30F D Lights Type B", + "OpenRobotics" + ], + [ + "SUV", + "isabelleysseric" + ], + [ + "The_Coffee_Bean_Tea_Leaf_KCup_Packs_Jasmine_Green_Tea_16_count", + "GoogleResearch" + ], + [ + "Brick Box 3x1x3", + "OpenRobotics" + ], + [ + "DRC Practice: White Jersey Barrier", + "OpenRobotics" + ], + [ + "Office_Depot_HP_564XL_Ink_Cartridge_Black_CN684WN", + "GoogleResearch" + ], + [ + "CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "Rail Tunnel End", + "OpenRobotics" + ], + [ + "Thomas_Friends_Woodan_Railway_Henry", + "GoogleResearch" + ], + [ + "Reebok_CL_DIBELLO_II", + "GoogleResearch" + ], + [ + "Cave Straight 01 Lights Type B", + "OpenRobotics" + ], + [ + "FRC 2016 Moat", + "OpenRobotics" + ], + [ + "Hokuyo", + "OpenRobotics" + ], + [ + "BigCubicle", + "OpenRobotics" + ], + [ + "MONKEY_BOWLING", + "GoogleResearch" + ], + [ + "X3 UAV Config 5", + "OpenRobotics" + ], + [ + "Mud Anchor", + "quarkytale" + ], + [ + "start", + "Amangupta" + ], + [ + "Sonny_School_Bus", + "GoogleResearch" + ], + [ + "REEF_BRAIDED_CUSHION", + "GoogleResearch" + ], + [ + "Electrical Array 3", + "kevinhalim9" + ], + [ + "Womens_Sequin_Bahama_in_White_Sequin_V9K1hf24Oxe", + "GoogleResearch" + ], + [ + "Phillips_Milk_of_Magnesia_Saline_Laxative_Liquid_Original", + "GoogleResearch" + ], + [ + "Edgar Mine Virtual STIX 1", + "OpenRobotics" + ], + [ + "Mist_Wipe_Warmer", + "GoogleResearch" + ], + [ + "Gear Part", + "OpenRobotics" + ], + [ + "Cole_Hardware_Electric_Pot_Cabana_55", + "GoogleResearch" + ], + [ + "CHILDREN_BEDROOM_CLASSIC", + "GoogleResearch" + ], + [ + "Office_Depot_Canon_PG_240XL_Ink_Cartridge_Black_5206B001", + "GoogleResearch" + ], + [ + "Cave Cap", + "OpenRobotics" + ], + [ + "Paul_Frank_Dot_Lunch_Box", + "GoogleResearch" + ], + [ + "indy7", + "SiddharthSavant" + ], + [ + "Chelsea_BlkHeelPMP_DwxLtZNxLZZ", + "GoogleResearch" + ], + [ + "CERBERUS_ANYMAL_C_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "Womens_Bluefish_2Eye_Boat_Shoe_in_Tan", + "GoogleResearch" + ], + [ + "Creatine_Monohydrate", + "GoogleResearch" + ], + [ + "Jarrow_Glucosamine_Chondroitin_Combination_120_Caps", + "GoogleResearch" + ], + [ + "Metallic_Pewter_Tieks_Italian_Leather_Ballet_Flats", + "GoogleResearch" + ], + [ + "Cave 3 Way Elevation 02 Lights Type A", + "OpenRobotics" + ], + [ + "Seagate_Archive_HDD_8_TB_Internal_hard_drive_SATA_6Gbs_35_ST8000AS0002", + "GoogleResearch" + ], + [ + "test", + "liulei2023" + ], + [ + "Swiss_Miss_Hot_Cocoa_KCups_Milk_Chocolate_12_count", + "GoogleResearch" + ], + [ + "Womens_Canvas_Bahama_in_White_UfZPHGQpvz0", + "GoogleResearch" + ], + [ + "PatientWheelChair", + "OpenRobotics" + ], + [ + "Cave 3 Way 01", + "OpenRobotics" + ], + [ + "X4_GPS_LIDAR_RGBD", + "luispinto" + ], + [ + "RetailKiosk1", + "OpenRobotics" + ], + [ + "rug_ivory_2m", + "makerspet" + ], + [ + "Intel RealSense D435", + "ctrazziwp" + ], + [ + "Mass on rails", + "OpenRobotics" + ], + [ + "JarroSil_Activated_Silicon_5exdZHIeLAp", + "GoogleResearch" + ], + [ + "x4_stereocam", + "hexarotor" + ], + [ + "SpiderMan_Titan_Hero_12Inch_Action_Figure_oo1qph4wwiW", + "GoogleResearch" + ], + [ + "Vessel F", + "coolcoolcol" + ], + [ + "Office_Depot_Dell_Series_11_Remanufactured_Ink_Cartridge_Black", + "GoogleResearch" + ], + [ + "Fruity_Friends", + "GoogleResearch" + ], + [ + "MOVING_MOUSE_PW_6PCSSET", + "GoogleResearch" + ], + [ + "ExitSign", + "OpenRobotics" + ], + [ + "Mens_Billfish_Slip_On_in_Coffee_nK6AJJAHOae", + "GoogleResearch" + ], + [ + "Tunnel Bend Left", + "nate" + ], + [ + "Test box", + "chapulina" + ], + [ + "X4 UAV Config 2", + "azeey" + ], + [ + "Santa_Cruz_Mens_umxTczr1Ygg", + "GoogleResearch" + ], + [ + "STEAK_SET", + "GoogleResearch" + ], + [ + "MARBLE_HD2_SENSOR_CONFIG_1", + "bfschnell" + ], + [ + "Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Oat", + "GoogleResearch" + ], + [ + "X4 UAV Config 2", + "OpenRobotics" + ], + [ + "Dumpster", + "OpenRobotics" + ], + [ + "X1 Config 2", + "OpenRobotics" + ], + [ + "hydraulicPiston", + "onw" + ], + [ + "Blue_Jasmine_Includes_Digital_Copy_UltraViolet_DVD", + "GoogleResearch" + ], + [ + "Master Chef Can", + "petermitrano" + ], + [ + "NIST maze wall 120", + "NGD1004" + ], + [ + "Ecoforms_Plant_Saucer_S20MOCHA", + "GoogleResearch" + ], + [ + "Cave Straight 04 Lights", + "OpenRobotics" + ], + [ + "cave_straight_20m", + "OpenRobotics" + ], + [ + "SurgicalTrolleyMed", + "OpenRobotics" + ], + [ + "FemaleVisitorWalk", + "Luca" + ], + [ + "Reebok_FS_HI_INT_R12", + "GoogleResearch" + ], + [ + "turtle", + "OpenRobotics" + ], + [ + "Advanced Plane", + "PX4" + ], + [ + "X4_GPS_LIDAR_RGBD", + "hexarotor" + ], + [ + "Urban Tunnel Transition", + "OpenRobotics" + ], + [ + "Tunnel Tile 2 Rails", + "OpenRobotics" + ], + [ + "Falling Rock 1", + "OpenRobotics" + ], + [ + "Mens_ASV_Shock_Light_Bungee_in_Light_Grey_xGCOvtLDnQJ", + "GoogleResearch" + ], + [ + "Walking actor", + "NGD1004" + ], + [ + "WIP-robotmodel1danilo", + "danilopejovic" + ], + [ + "Reebok_ALLYLYNN", + "GoogleResearch" + ], + [ + "Aroma_Stainless_Steel_Milk_Frother_2_Cup", + "GoogleResearch" + ], + [ + "Tube Light", + "OpenRobotics" + ], + [ + "ProSport_Harness_to_Booster_Seat", + "GoogleResearch" + ], + [ + "Hefty_Waste_Basket_Decorative_Bronze_85_liter", + "GoogleResearch" + ], + [ + "Nestl_Crunch_Girl_Scouts_Cookie_Flavors_Caramel_Coconut_78_oz_box", + "GoogleResearch" + ], + [ + "DRC Practice: Wheel valve wall", + "OpenRobotics" + ], + [ + "Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Oat_IbrSyJdpT3h", + "GoogleResearch" + ], + [ + "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_4", + "OpenRobotics" + ], + [ + "CoQ10", + "GoogleResearch" + ], + [ + "Wooden case with metal peg", + "OpenRobotics" + ], + [ + "Olive_Kids_Dinosaur_Land_Lunch_Box", + "GoogleResearch" + ], + [ + "Cave 3 Way Type B", + "OpenRobotics" + ], + [ + "Sienna_Brown_Croc_Tieks_Patent_Leather_Crocodile_Print_Ballet_Flats", + "GoogleResearch" + ], + [ + "Transformer", + "kevinhalim9" + ], + [ + "Kingston_DT4000MR_G2_Management_Ready_USB_64GB", + "GoogleResearch" + ], + [ + "x500", + "rrobertson" + ], + [ + "Now_Designs_Snack_Bags_Bicycle_2_count", + "GoogleResearch" + ], + [ + "actor_gesture", + "Mingfei" + ], + [ + "part_5e45ef9442eef64efdf8a0c916144847", + "miniaevnikita" + ], + [ + "SmallTrolley", + "OpenRobotics" + ], + [ + "Ecoforms_Plant_Container_URN_SAN", + "GoogleResearch" + ], + [ + "Campus", + "NCS_robotmanager" + ], + [ + "Arm_Hammer_Diaper_Pail_Refills_12_Pack_MFWkmoweejt", + "GoogleResearch" + ], + [ + "California_Navy_Tieks_Italian_Leather_Ballet_Flats", + "GoogleResearch" + ], + [ + "Rubiks Cube", + "Gambit" + ], + [ + "Large Grey Box Handles", + "OpenRobotics" + ], + [ + "SurgicalTrolley", + "OpenRobotics" + ], + [ + "PR2_SDF17", + "cyitian" + ], + [ + "louisville mega cave pt1", + "nibe6600" + ], + [ + "Demo Joint Types", + "OpenRobotics" + ], + [ + "Pepsi_Max_Cola_Zero_Calorie_12_12_fl_oz_355_ml_cans_144_fl_oz_426_lt", + "GoogleResearch" + ], + [ + "Falling Rock 5", + "OpenRobotics" + ], + [ + "Womens_Betty_Chukka_Boot_in_Salt_Washed_Red_AL2YrOt9CRy", + "GoogleResearch" + ], + [ + "Tory_Burch_Kaitlin_Ballet_Mestico_in_BlackGold", + "GoogleResearch" + ], + [ + "Vessel E", + "Aniskm" + ], + [ + "Utana_5_Porcelain_Ramekin_Large", + "GoogleResearch" + ], + [ + "Cave Tile 6", + "OpenRobotics" + ], + [ + "CORO_MIKE_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "InstrumentCart1", + "OpenRobotics" + ], + [ + "ariac part3", + "OpenRobotics" + ], + [ + "Great_Jones_Wingtip", + "GoogleResearch" + ], + [ + "MARBLE_HD2_VISUALS_ONLY", + "OpenRobotics" + ], + [ + "Apollo15 Landing Site Heightmap 1000x1000 meters", + "OpenRobotics" + ], + [ + "window_curtains", + "makerspet" + ], + [ + "MARBLE_HD2_VISUALS_ONLY", + "nekalvi" + ], + [ + "pallet_box_mobile", + "MovAi" + ], + [ + "Gazebo", + "chapulina" + ], + [ + "Walking actor", + "EthanG" + ], + [ + "bosdyn_spot", + "theputernerd" + ], + [ + "Netgear_N750_Wireless_Dual_Band_Gigabit_Router", + "GoogleResearch" + ], + [ + "Reebok_SL_FLIP_UPDATE", + "GoogleResearch" + ], + [ + "Jansport_School_Backpack_Blue_Streak", + "GoogleResearch" + ], + [ + "MARBLE_HD2_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Birthday cake", + "chapulina" + ], + [ + "hatchback_red_2", + "JShep1" + ], + [ + "Edgar Mine Virtual STIX 2", + "OpenRobotics" + ], + [ + "Ecoforms_Garden_Pot_GP16ATurquois", + "GoogleResearch" + ], + [ + "BEDROOM_CLASSIC", + "GoogleResearch" + ], + [ + "MopCart1", + "OpenRobotics" + ], + [ + "Rose_Garden_Tieks_Leather_Ballet_Flats_with_Floral_Rosettes", + "GoogleResearch" + ], + [ + "Ecoforms_Plate_S20Avocado", + "GoogleResearch" + ], + [ + "Coral01", + "Cole" + ], + [ + "Great_Jones_Wingtip_kAqSg6EgG0I", + "GoogleResearch" + ], + [ + "Transbot", + "charlie" + ], + [ + "ariac part1", + "OpenRobotics" + ], + [ + "aws_robomaker_warehouse_GroundB_01", + "OpenRobotics" + ], + [ + "NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY", + "achien" + ], + [ + "Valve", + "nate" + ], + [ + "4-way finals transition 2", + "OpenRobotics" + ], + [ + "Cave Straight 01", + "OpenRobotics" + ], + [ + "Walkway Metal 45 degree", + "OpenRobotics" + ], + [ + "DRC Practice: 4x4x20 Lumber", + "OpenRobotics" + ], + [ + "Wilton_Pearlized_Sugar_Sprinkles_525_oz_Gold", + "GoogleResearch" + ], + [ + "Lidar 2d v2", + "OpenRobotics" + ], + [ + "Staging Area", + "OpenRobotics" + ], + [ + "shelf", + "ctrazziwp" + ], + [ + "ELM4-Chassis", + "RudisLaboratories" + ], + [ + "Romantic_Blush_Tieks_Metallic_Italian_Leather_Ballet_Flats", + "GoogleResearch" + ], + [ + "InterDesign_Over_Door", + "GoogleResearch" + ], + [ + "Fresca_Peach_Citrus_Sparkling_Flavored_Soda_12_PK", + "GoogleResearch" + ], + [ + "Granimals_20_Wooden_ABC_Blocks_Wagon_85VdSftGsLi", + "GoogleResearch" + ], + [ + "Hey_You_Pikachu_Nintendo_64", + "GoogleResearch" + ], + [ + "Wooden case with wooden peg", + "OpenRobotics" + ], + [ + "Remington_1_12_inch_Hair_Straightener", + "GoogleResearch" + ], + [ + "Reebok_FS_HI_MINI", + "GoogleResearch" + ], + [ + "Vessel G", + "OpenRobotics" + ], + [ + "Cave Tile 1", + "nate" + ], + [ + "Hilary", + "GoogleResearch" + ], + [ + "Perricone_MD_Super_Berry_Powder_with_Acai_Supplements", + "GoogleResearch" + ], + [ + "RoboCup 3D Simulation Field", + "nicolas" + ], + [ + "Mens_Authentic_Original_Boat_Shoe_in_Navy_Leather_NHHQddDLQys", + "GoogleResearch" + ], + [ + "NIOSH SR Course Section 07", + "OpenRobotics" + ], + [ + "Tree", + "facugu123" + ], + [ + "Wooden Block", + "Gambit" + ], + [ + "Digital_Camo_Double_Decker_Lunch_Bag", + "GoogleResearch" + ], + [ + "Cave Tile Ramp", + "OpenRobotics" + ], + [ + "Room_Essentials_Salad_Plate_Turquoise", + "GoogleResearch" + ], + [ + "Embark_Lunch_Cooler_Blue", + "GoogleResearch" + ], + [ + "Urban 2 Story Large Side 2 Lights", + "OpenRobotics" + ], + [ + "SHAPE_MATCHING", + "GoogleResearch" + ], + [ + "Super_Mario_3D_World_Wii_U_Game", + "GoogleResearch" + ], + [ + "Reebok_SH_NEWPORT_LOW", + "GoogleResearch" + ], + [ + "ASICS_GELLinksmaster_WhiteRasberryGunmetal", + "GoogleResearch" + ], + [ + "Quercetin_500", + "GoogleResearch" + ], + [ + "Cave Starting Area Type B", + "OpenRobotics" + ], + [ + "shelf 1", + "Kavya" + ], + [ + "BedsideTable2", + "OpenRobotics" + ], + [ + "baylands", + "OpenRobotics" + ], + [ + "Womens_Suede_Bahama_in_Graphite_Suede_cUAjIMhWSO9", + "GoogleResearch" + ], + [ + "Tena_Pads_Heavy_Long_42_pads", + "GoogleResearch" + ], + [ + "skyboxgrey", + "Cole" + ], + [ + "ColBumper", + "OpenRobotics" + ], + [ + "SUV", + "runnerm" + ], + [ + "Spectrum_Wall_Mount", + "GoogleResearch" + ], + [ + "Design_Ideas_Drawer_Store_Organizer", + "GoogleResearch" + ], + [ + "ElectronicsRecycling", + "OpenRobotics" + ], + [ + "Common_rail", + "haris395" + ], + [ + "CleanerBot1", + "OpenRobotics" + ], + [ + "newer_flippy", + "amargett" + ], + [ + "Banana for Scale", + "mjcarroll" + ], + [ + "Mens_Bahama_in_Khaki_Oyster_xU2jeqYwhQJ", + "GoogleResearch" + ], + [ + "Office_Depot_Dell_Series_9_Ink_Cartridge_Black_MK992", + "GoogleResearch" + ], + [ + "KS_Chocolate_Cube_Box_Assortment_By_Neuhaus_2010_Ounces", + "GoogleResearch" + ], + [ + "Duct", + "OpenRobotics" + ], + [ + "lunar_surface3", + "AndrejOrsula" + ], + [ + "OpScrubsWalk", + "Luca" + ], + [ + "warehouse", + "Kavya" + ], + [ + "Cave 3 Way Elevation 03 Type A", + "OpenRobotics" + ], + [ + "Thomas_Friends_Wooden_Railway_Ascending_Track_Riser_Pack", + "GoogleResearch" + ], + [ + "red_buoy", + "Wavefire" + ], + [ + "Intel RealSense D435", + "OpenRobotics" + ], + [ + "Cootie_Game", + "GoogleResearch" + ], + [ + "part_399dfe944147716624e9cf99541e1c44", + "miniaevnikita" + ], + [ + "monckey", + "beronaeron" + ], + [ + "slide-incline", + "nate" + ], + [ + "Threshold_Bistro_Ceramic_Dinner_Plate_Ruby_Ring", + "GoogleResearch" + ], + [ + "Beer", + "caguero" + ], + [ + "UGG_Bailey_Button_Womens_Boots_Black_7", + "GoogleResearch" + ], + [ + "Perricone_MD_Best_of_Perricone_7Piece_Collection_MEGsO6GIsyL", + "GoogleResearch" + ], + [ + "Footed_Bowl_Sand", + "GoogleResearch" + ], + [ + "iRobot Create", + "OpenRobotics" + ], + [ + "Android_Figure_Chrome", + "GoogleResearch" + ], + [ + "Electrical Building 1", + "kevinhalim9" + ], + [ + "InstrumentCart2", + "OpenRobotics" + ], + [ + "Twinlab_100_Whey_Protein_Fuel_Cookies_and_Cream", + "GoogleResearch" + ], + [ + "Perricone_MD_OVM", + "GoogleResearch" + ], + [ + "Universal Straight 2.5", + "OpenRobotics" + ], + [ + "Robotika_Freyja_Sensor_Config_2", + "OpenRobotics" + ], + [ + "Darwin OP", + "OpenRobotics" + ], + [ + "slide-urban", + "nate" + ], + [ + "Waves", + "OpenRobotics" + ], + [ + "adizero_F50_TRX_FG_LEA", + "GoogleResearch" + ], + [ + "DRC Practice: Ball Valve", + "OpenRobotics" + ], + [ + "Jenolan Section 04", + "OpenRobotics" + ], + [ + "SRC: Doorway", + "OpenRobotics" + ], + [ + "Progressive_Rubber_Spatulas_3_count", + "GoogleResearch" + ], + [ + "Port_Hull", + "gragleas" + ], + [ + "Stecca Centrale", + "Andreamcr" + ], + [ + "Mens_Gold_Cup_ASV_Dress_Casual_Venetian_in_Dark_Brown_Leather", + "GoogleResearch" + ], + [ + "Urban Large Room Split", + "OpenRobotics" + ], + [ + "OakD-Lite", + "NGD1004" + ], + [ + "ariac part4", + "OpenRobotics" + ], + [ + "Jenolan Section 03", + "OpenRobotics" + ], + [ + "Envision_Home_Dish_Drying_Mat_Red_6_x_18", + "GoogleResearch" + ], + [ + "Mine Cart Engine", + "OpenRobotics" + ], + [ + "Curver_Storage_Bin_Black_Small", + "GoogleResearch" + ], + [ + "Cave Corner 02", + "OpenRobotics" + ], + [ + "Hinged door", + "OpenRobotics" + ], + [ + "fence", + "athackst" + ], + [ + "Pok\u00e9mon_Omega_Ruby_Alpha_Sapphire_Dual_Pack_Nintendo_3DS", + "GoogleResearch" + ], + [ + "BEDROOM_NEO", + "GoogleResearch" + ], + [ + "Perricone_MD_No_Foundation_Serum", + "GoogleResearch" + ], + [ + "Phone", + "OpenRobotics" + ], + [ + "Epson_273XL_Ink_Cartridge_Magenta", + "GoogleResearch" + ], + [ + "Urban Straight", + "OpenRobotics" + ], + [ + "Moon base water", + "OpenRobotics" + ], + [ + "NASA_PERSEVERANCE_SENSOR_CONFIG_1 1", + "nealtang" + ], + [ + "Asus_80211ac_DualBand_Gigabit_Wireless_Router_RTAC68R", + "GoogleResearch" + ], + [ + "ALPHABET_AZ_GRADIENT", + "GoogleResearch" + ], + [ + "School", + "OpenRobotics" + ], + [ + "PR2 Gripper", + "OpenRobotics" + ], + [ + "Cole_Hardware_Bowl_Scirocco_YellowBlue", + "GoogleResearch" + ], + [ + "Reebok_ULTIMATIC_2V", + "GoogleResearch" + ], + [ + "baylands", + "kane233" + ], + [ + "TERREX_FAST_R", + "GoogleResearch" + ], + [ + "Bifidus_Balance_FOS", + "GoogleResearch" + ], + [ + "Big Banana for Scale", + "mjcarroll" + ], + [ + "Epson_LabelWorks_LC5WBN9_Tape_reel_labels_071_x_295_Roll_Black_on_White", + "GoogleResearch" + ], + [ + "pallet", + "NGD1004" + ], + [ + "Dell_Series_9_Color_Ink_Cartridge_MK993_High_Yield", + "GoogleResearch" + ], + [ + "TROCHILUS_BOOST", + "GoogleResearch" + ], + [ + "CArm", + "OpenRobotics" + ], + [ + "Cole_Hardware_Dishtowel_Multicolors", + "GoogleResearch" + ], + [ + "TEA_SET", + "GoogleResearch" + ], + [ + "Gigabyte_GA970AUD3P_10_Motherboard_ATX_Socket_AM3", + "GoogleResearch" + ], + [ + "coro_hd2_sensor_config_2", + "OpenRobotics" + ], + [ + "DRAGON_W", + "GoogleResearch" + ], + [ + "Object_REmvBDJStub", + "GoogleResearch" + ], + [ + "DOLL_FAMILY", + "GoogleResearch" + ], + [ + "ChairPotatoChip", + "OpenRobotics" + ], + [ + "Cave Transition Type A to and from Type B Lights", + "OpenRobotics" + ], + [ + "Elevator", + "nlamprian" + ], + [ + "Perricone_MD_Firming_Neck_Therapy_Treatment", + "GoogleResearch" + ], + [ + "Cave Tile 2", + "OpenRobotics" + ], + [ + "Metal Peg", + "OpenRobotics" + ], + [ + "Schleich_Allosaurus", + "GoogleResearch" + ], + [ + "Diamond_Visions_Scissors_Red", + "GoogleResearch" + ], + [ + "Tunnel Tile 6 Lights", + "OpenRobotics" + ], + [ + "Asus_Z97AR_LGA_1150_Intel_ATX_Motherboard", + "GoogleResearch" + ], + [ + "Gas Small 2", + "OpenRobotics" + ], + [ + "Sea_to_Summit_Xl_Bowl", + "GoogleResearch" + ], + [ + "Postbox", + "OpenRobotics" + ], + [ + "mb_marker_buoy_white", + "OpenRobotics" + ], + [ + "FireExtinguisher", + "OpenRobotics" + ], + [ + "barcs_qav500_no_sensors", + "german" + ], + [ + "Kelp 04", + "Cole" + ], + [ + "NIOSH SR Course Section 06", + "OpenRobotics" + ], + [ + "Cordless drill with spaces", + "chapulina" + ], + [ + "Ecoforms_Plant_Saucer_S14NATURAL", + "GoogleResearch" + ], + [ + "actor", + "Mingfei" + ], + [ + "Intel RealSense D435", + "ZWL" + ], + [ + "Justified_The_Complete_Fourth_Season_3_Discs_DVD", + "GoogleResearch" + ], + [ + "lunar_surface6", + "AndrejOrsula" + ], + [ + "Pendulum Sculpture", + "OpenRobotics" + ], + [ + "Winding Valley Heightmap", + "OpenRobotics" + ], + [ + "Robonaut", + "OpenRobotics" + ], + [ + "Reebok_EASYTONE_CL_LEATHER", + "GoogleResearch" + ], + [ + "Leap_Frog_Paint_Dabber_Dot_Art_5_paint_bottles", + "GoogleResearch" + ], + [ + "Bus", + "OpenRobotics" + ], + [ + "Tunnel Tile 5 Lights", + "OpenRobotics" + ], + [ + "FRACTION_FUN_n4h4qte23QR", + "GoogleResearch" + ], + [ + "SHAPE_SORTER", + "GoogleResearch" + ], + [ + "Racoon", + "GoogleResearch" + ], + [ + "Tunnel Tile 5", + "OpenRobotics" + ], + [ + "Tunnel Tile 5 Rails", + "OpenRobotics" + ], + [ + "Standpipe", + "OpenRobotics" + ], + [ + "Chessboard3", + "justartemm" + ], + [ + "part_27bd9fb51ff24afea6471b3cba3eb5e2", + "miniaevnikita" + ], + [ + "Winning_Moves_1180_Aggravation_Board_Game", + "GoogleResearch" + ], + [ + "X3 UAV Config 3", + "azeey" + ], + [ + "SORTING_BUS", + "GoogleResearch" + ], + [ + "Jenolan Section 09", + "OpenRobotics" + ], + [ + "makerspet_poster", + "makerspet" + ], + [ + "actor_talk_b", + "Mingfei" + ], + [ + "Reebok_REESCULPT_TRAINER_II", + "GoogleResearch" + ], + [ + "DRC Practice: Wheel valve", + "OpenRobotics" + ], + [ + "Fortress Statue", + "Cole" + ], + [ + "ScrubsTrolley", + "OpenRobotics" + ], + [ + "Smith_Hawken_Woven_BasketTray_Organizer_with_3_Compartments_95_x_9_x_13", + "GoogleResearch" + ], + [ + "Grass Plane", + "OpenRobotics" + ], + [ + "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Razer_Goliathus_Control_Edition_Small_Soft_Gaming_Mouse_Mat", + "GoogleResearch" + ], + [ + "LaR", + "ielson" + ], + [ + "subt_tunnel_staging_area", + "OpenRobotics" + ], + [ + "Hokuyo UST10LX", + "mjcarroll" + ], + [ + "wam-v", + "OpenRobotics" + ], + [ + "Rayna_BootieWP", + "GoogleResearch" + ], + [ + "Rough Tunnel Tile 4-way Intersection", + "OpenRobotics" + ], + [ + "TrolleyBed", + "OpenRobotics" + ], + [ + "MARBLE_SPOT_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "GoPro_HERO3_Composite_Cable", + "GoogleResearch" + ], + [ + "Sick LMS511", + "mjcarroll" + ], + [ + "Intel RealSense D435", + "bmchale" + ], + [ + "aws_robomaker_warehouse_Bucket_01", + "OpenRobotics" + ], + [ + "ElderLadyPatient", + "OpenRobotics" + ], + [ + "Perricone_MD_No_Lipstick_Lipstick", + "GoogleResearch" + ], + [ + "Room_Essentials_Bowl_Turquiose", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Saucer_S17MOCHA", + "GoogleResearch" + ], + [ + "MOSAIC", + "GoogleResearch" + ], + [ + "Wilton_Easy_Layers_Cake_Pan_Set", + "GoogleResearch" + ], + [ + "X1 Config 5", + "OpenRobotics" + ], + [ + "JarroSil_Activated_Silicon", + "GoogleResearch" + ], + [ + "Vessel D", + "OpenRobotics" + ], + [ + "Cutout Wall", + "OpenRobotics" + ], + [ + "RJ_Rabbit_Easter_Basket_Blue", + "GoogleResearch" + ], + [ + "Cessna C-172", + "OpenRobotics" + ], + [ + "Willow Garage", + "OpenRobotics" + ], + [ + "Horses_in_Pink_Pencil_Case", + "GoogleResearch" + ], + [ + "OSRF First Office", + "OpenRobotics" + ], + [ + "Wild_Copper_Tieks_Metallic_Italian_Leather_Ballet_Flats", + "GoogleResearch" + ], + [ + "PR2_SDF17", + "1111" + ], + [ + "Baby_Elements_Stacking_Cups", + "GoogleResearch" + ], + [ + "CERBERUS_ANYMAL_B_VISUALS_ONLY", + "OpenRobotics" + ], + [ + "Null Island", + "OpenRobotics" + ], + [ + "Perricone_MD_Blue_Plasma_Orbital", + "GoogleResearch" + ], + [ + "Office_Depot_Dell_Series_1_Remanufactured_Ink_Cartridge_TriColor", + "GoogleResearch" + ], + [ + "Small Rock Fall", + "OpenRobotics" + ], + [ + "Grocery store", + "OpenRobotics" + ], + [ + "MegaCavern", + "ctrazziwp" + ], + [ + "Elevator", + "OpenRobotics" + ], + [ + "X4 UAV Config 1", + "OpenRobotics" + ], + [ + "Beer", + "OpenRobotics" + ], + [ + "WoodenChair", + "OpenRobotics" + ], + [ + "GEOMETRIC_PEG_BOARD", + "GoogleResearch" + ], + [ + "Womens_Sparkle_Suede_Angelfish_in_Grey_Sparkle_Suede_Silver", + "GoogleResearch" + ], + [ + "aws_robomaker_warehouse_ShelfD_01", + "NGD1004" + ], + [ + "NIOSH Staging Connector Finals", + "OpenRobotics" + ], + [ + "Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Natural_Sparkle_Suede_w34KNQ41csH", + "GoogleResearch" + ], + [ + "Seagate_1TB_Backup_Plus_portable_drive_Blue", + "GoogleResearch" + ], + [ + "Schleich_Lion_Action_Figure", + "GoogleResearch" + ], + [ + "Extinguisher", + "OpenRobotics" + ], + [ + "Office_Depot_HP_932XL_Ink_Cartridge_Black_CN053A", + "GoogleResearch" + ], + [ + "HospitalRobotCharger", + "OpenRobotics" + ], + [ + "Nintendo_Mario_Action_Figure", + "GoogleResearch" + ], + [ + "Strawberry", + "Gambit" + ], + [ + "Collapsed House", + "OpenRobotics" + ], + [ + "hatchback_2", + "JShep1" + ], + [ + "Down_To_Earth_Ceramic_Orchid_Pot_Asst_Blue", + "GoogleResearch" + ], + [ + "Hoop (red)", + "OpenRobotics" + ], + [ + "DRC Practice: Block wall", + "OpenRobotics" + ], + [ + "Marvel_Avengers_Titan_Hero_Series_Doctor_Doom", + "GoogleResearch" + ], + [ + "CERBERUS_ANYMAL_B_VISUALS_ONLY", + "nealtang" + ], + [ + "Shark", + "GoogleResearch" + ], + [ + "Tunnel Tile 7", + "OpenRobotics" + ], + [ + "Number8", + "OpenRobotics" + ], + [ + "Reebok_SH_PRIME_COURT_LOW", + "GoogleResearch" + ], + [ + "Suitcase2", + "OpenRobotics" + ], + [ + "Lidar 3d v1", + "OpenRobotics" + ], + [ + "Retail_Leadership_Summit_eCT3zqHYIkX", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Container_QP6HARVEST", + "GoogleResearch" + ], + [ + "Canon_Pixma_Chromalife_100_Magenta_8", + "GoogleResearch" + ], + [ + "Threshold_Bead_Cereal_Bowl_White", + "GoogleResearch" + ], + [ + "Olive_Kids_Trains_Planes_Trucks_Bogo_Backpack", + "GoogleResearch" + ], + [ + "PX4 Vision", + "PX4" + ], + [ + "Philips_60ct_Warm_White_LED_Smooth_Mini_String_Lights", + "GoogleResearch" + ], + [ + "urban cave transition straight", + "OpenRobotics" + ], + [ + "Olive_Kids_Game_On_Pack_n_Snack", + "GoogleResearch" + ], + [ + "X1 Config 1", + "azeey" + ], + [ + "Bed", + "OpenRobotics" + ], + [ + "Asus_Sabertooth_990FX_20_Motherboard_ATX_Socket_AM3", + "GoogleResearch" + ], + [ + "FoodCourtBenchLong", + "OpenRobotics" + ], + [ + "MR-Buggy3", + "RudisLaboratories" + ], + [ + "Phillips_Colon_Health_Probiotic_Capsule", + "GoogleResearch" + ], + [ + "Cave Corner 30F D Lights", + "OpenRobotics" + ], + [ + "Simple Arm", + "onieth" + ], + [ + "FoodCourtTable1", + "OpenRobotics" + ], + [ + "BREAKFAST_MENU", + "GoogleResearch" + ], + [ + "Phillips_Caplets_Size_24", + "GoogleResearch" + ], + [ + "Canon_Pixma_Ink_Cartridge_Cyan_251", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Bowl_Atlas_Low", + "GoogleResearch" + ], + [ + "Nestle_Nesquik_Chocolate_Powder_Flavored_Milk_Additive_109_Oz_Canister", + "GoogleResearch" + ], + [ + "csiro_data61_spot_sensor_config_1", + "OpenRobotics" + ], + [ + "Urban Straight Door Left Flipped", + "OpenRobotics" + ], + [ + "Cole_Hardware_Dishtowel_Blue", + "GoogleResearch" + ], + [ + "TruckBox", + "OpenRobotics" + ], + [ + "Magnifying_Glassassrt", + "GoogleResearch" + ], + [ + "actor - relative paths", + "chapulina" + ], + [ + "Large Ammo Can", + "OpenRobotics" + ], + [ + "Ladder 75 Degrees 2 Handrails", + "OpenRobotics" + ], + [ + "Coast Waves", + "abmohit" + ], + [ + "Ecoforms_Plant_Container_URN_NAT", + "GoogleResearch" + ], + [ + "FYW_ALTERNATION", + "GoogleResearch" + ], + [ + "Travel_Smart_Neck_Rest_Inflatable", + "GoogleResearch" + ], + [ + "Robotika_Freyja_Sensor_Config_1", + "OpenRobotics" + ], + [ + "Perricone_MD_Neuropeptide_Firming_Moisturizer", + "GoogleResearch" + ], + [ + "HP_Card_Invitation_Kit", + "GoogleResearch" + ], + [ + "part_984d92044894963f07a7c999e6148e00", + "miniaevnikita" + ], + [ + "Walking person", + "abmohit" + ], + [ + "Cart: front steering", + "OpenRobotics" + ], + [ + "Ortho_Forward_Facing", + "GoogleResearch" + ], + [ + "Niskin", + "Cole" + ], + [ + "Office_Depot_Canon_PG21XL_Remanufactured_Ink_Cartridge_Black", + "GoogleResearch" + ], + [ + "Cart: rigid suspension", + "OpenRobotics" + ], + [ + "Melissa_Doug_See_Spell", + "GoogleResearch" + ], + [ + "Sapota_Threshold_4_Ceramic_Round_Planter_Red", + "GoogleResearch" + ], + [ + "BIA_Porcelain_Ramekin_With_Glazed_Rim_35_45_oz_cup", + "GoogleResearch" + ], + [ + "Crayola_Model_Magic_Modeling_Material_Single_Packs_6_pack_05_oz_packs", + "GoogleResearch" + ], + [ + "Cave Tile 9", + "nate" + ], + [ + "Reebok_DMX_MAX_PLUS_ATHLETIC", + "GoogleResearch" + ], + [ + "courgette_1", + "karojud" + ], + [ + "OXO_Soft_Works_Can_Opener_SnapLock", + "GoogleResearch" + ], + [ + "Tunnel Tile 4", + "nate" + ], + [ + "Perricone_MD_Face_Finishing_Moisturizer_4_oz", + "GoogleResearch" + ], + [ + "NAO with Ignition position controller", + "OpenRobotics" + ], + [ + "Reebok_CLASSIC_LEGACY_II", + "GoogleResearch" + ], + [ + "Rubicon_Quad", + "amaldev" + ], + [ + "Large Grey Box", + "OpenRobotics" + ], + [ + "Nescafe_Tasters_Choice_Instant_Coffee_Decaf_House_Blend_Light_7_oz", + "GoogleResearch" + ], + [ + "turtlebot 3 Burger", + "hexarotor" + ], + [ + "Ladder 60 Degrees 0 Handrails", + "OpenRobotics" + ], + [ + "Canon_Pixma_Ink_Cartridge_8_Green", + "GoogleResearch" + ], + [ + "SCHOOL_BUS", + "GoogleResearch" + ], + [ + "part_efd90921e306f2402e17734cffc5ce80", + "miniaevnikita" + ], + [ + "Womens_Canvas_Bahama_in_White_4UyOhP6rYGO", + "GoogleResearch" + ], + [ + "OverBedTable", + "OpenRobotics" + ], + [ + "Hammer", + "OpenRobotics" + ], + [ + "Box target (red)", + "OpenRobotics" + ], + [ + "Urban 2 Story", + "OpenRobotics" + ], + [ + "Cordless Drill", + "OpenRobotics" + ], + [ + "RESCUE_CREW", + "GoogleResearch" + ], + [ + "Office_Depot_Canon_PGI22_Remanufactured_Ink_Cartridge_Black", + "GoogleResearch" + ], + [ + "Blackcurrant_Lutein", + "GoogleResearch" + ], + [ + "3D_Dollhouse_Happy_Brother", + "GoogleResearch" + ], + [ + "px4_vision_fixed", + "frede791" + ], + [ + "MR-Buggy3", + "pangyinglong" + ], + [ + "Star_Wars_Rogue_Squadron_Nintendo_64", + "GoogleResearch" + ], + [ + "Casual female", + "plateau" + ], + [ + "Urban Service Room Centered Lights", + "OpenRobotics" + ], + [ + "CLIMACOOL_BOAT_BREEZE_IE6CyqSaDwN", + "GoogleResearch" + ], + [ + "PINEAPPLE_MARACA_6_PCSSET", + "GoogleResearch" + ], + [ + "Cave Corner 01", + "OpenRobotics" + ], + [ + "Round tin (base)", + "OpenRobotics" + ], + [ + "mb_round_buoy_orange", + "OpenRobotics" + ], + [ + "Orbit_Bubblemint_Mini_Bottle_6_ct", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Container_GP16A_Coral", + "GoogleResearch" + ], + [ + "RGBD Camera", + "OpenRobotics" + ], + [ + "Table", + "OpenRobotics" + ], + [ + "pallet_box_mobile", + "ctrazziwp" + ], + [ + "Calphalon_Kitchen_Essentials_12_Cast_Iron_Fry_Pan_Black", + "GoogleResearch" + ], + [ + "Cave 3 Way 02 Type A", + "OpenRobotics" + ], + [ + "Mecanum lift", + "OpenRobotics" + ], + [ + "Timberland_Mens_Earthkeepers_Casco_Bay_Canvas_Oxford", + "GoogleResearch" + ], + [ + "Reebok_HIMARA_LTR", + "GoogleResearch" + ], + [ + "Parrot Bebop 2", + "lucamarchiori3" + ], + [ + "Urban Platform Open", + "OpenRobotics" + ], + [ + "SystemsMegacavern", + "OpenRobotics" + ], + [ + "x500", + "alireza73" + ], + [ + "Tower crane", + "OpenRobotics" + ], + [ + "Rail Tunnel Elevation", + "OpenRobotics" + ], + [ + "ASICS_HyperRocketgirl_SP_5_WhiteMalibu_BlueBlack", + "GoogleResearch" + ], + [ + "DRC Practice: Wheel valve large", + "OpenRobotics" + ], + [ + "FirePullStation", + "OpenRobotics" + ], + [ + "PureConnect_2_Color_AnthrcteKnckoutPnkGrnGecko_Size_50", + "GoogleResearch" + ], + [ + "F10_TRX_FG_ssscuo9tGxb", + "GoogleResearch" + ], + [ + "CTU_CRAS_NORLAB_X500_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "NIOSH SR Course Section 08", + "OpenRobotics" + ], + [ + "sample_bot_1", + "atulchaudhari" + ], + [ + "Black_Decker_Stainless_Steel_Toaster_4_Slice", + "GoogleResearch" + ], + [ + "x2_description", + "nate" + ], + [ + "Little_Big_Planet_3_Plush_Edition", + "GoogleResearch" + ], + [ + "Diet_Pepsi_Soda_Cola12_Pack_12_oz_Cans", + "GoogleResearch" + ], + [ + "Cave Cavern Type A", + "OpenRobotics" + ], + [ + "Checkerboard Plane", + "OpenRobotics" + ], + [ + "Little_Debbie_Donut_Sticks_6_cake_donuts_10_oz_total", + "GoogleResearch" + ], + [ + "Coast Waves 2", + "OpenRobotics" + ], + [ + "CERBERUS_ANYMAL_B_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Reebok_ZIGTECH_SHARK_MAYHEM360", + "GoogleResearch" + ], + [ + "ASICS_GELResolution_5_Flash_YellowBlackSilver", + "GoogleResearch" + ], + [ + "Warehouse", + "NGD1004" + ], + [ + "tennis_ball", + "kashodiya" + ], + [ + "Cave Corner 30 D", + "OpenRobotics" + ], + [ + "Tunnel Tile 6", + "OpenRobotics" + ], + [ + "crocodile", + "OpenRobotics" + ], + [ + "recepter", + "egeplnm" + ], + [ + "Jenolan Section 07", + "OpenRobotics" + ], + [ + "Vans_Cereal_Honey_Nut_Crunch_11_oz_box", + "GoogleResearch" + ], + [ + "Calibration Plane", + "abmohit" + ], + [ + "My_First_Rolling_Lion", + "GoogleResearch" + ], + [ + "NIOSH SR Course Section 06 Finals", + "OpenRobotics" + ], + [ + "Paper_Mario_Sticker_Star_Nintendo_3DS_Game", + "GoogleResearch" + ], + [ + "Portuguese Ledge", + "chapulina" + ], + [ + "OfficeChairBlue", + "OpenRobotics" + ], + [ + "Slamtec RPLIDAR A3", + "mjcarroll" + ], + [ + "TinyRobot", + "OpenRobotics" + ], + [ + "Hokuyo URG04LX", + "mjcarroll" + ], + [ + "Ghost_6_Color_MdngtDenmPomBrtePnkSlvBlk_Size_50", + "GoogleResearch" + ], + [ + "LEGO_Star_Wars_Advent_Calendar", + "GoogleResearch" + ], + [ + "Rail Tunnel Corner", + "OpenRobotics" + ], + [ + "MARBLE_HUSKY_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Whey_Protein_Vanilla_12_Packets", + "GoogleResearch" + ], + [ + "Kitchen and Dining", + "OpenRobotics" + ], + [ + "NESCAFE_NESCAFE_TC_STKS_DECAF_6_CT", + "GoogleResearch" + ], + [ + "cave_straight_80m", + "nate" + ], + [ + "Intel RealSense R200", + "abmohit" + ], + [ + "Cave Corner 01 Lights", + "OpenRobotics" + ], + [ + "DRC Practice: Handle wheel valve wall", + "OpenRobotics" + ], + [ + "SOPHISTICATED_ENGINEERING_X2_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Desk", + "OpenRobotics" + ], + [ + "Ecoforms_Saucer_SQ3_Turquoise", + "GoogleResearch" + ], + [ + "Disk Part", + "OpenRobotics" + ], + [ + "Little_Debbie_Chocolate_Cupcakes_8_ct", + "GoogleResearch" + ], + [ + "SoftCube", + "isabelleeysseric" + ], + [ + "Womens_Sparkle_Suede_Bahama_in_Silver_Sparkle_Suede_Grey_Patent_x9rclU7EJXx", + "GoogleResearch" + ], + [ + "Urban Bend Left Lights", + "OpenRobotics" + ], + [ + "NIOSH EX Course Section 03 Finals", + "OpenRobotics" + ], + [ + "Cave Elevation Type B", + "OpenRobotics" + ], + [ + "sandwich_bot_2_0_description", + "rushikeshhalle" + ], + [ + "cave_straight_20m", + "nate" + ], + [ + "TruckDelivery", + "OpenRobotics" + ], + [ + "cerberus_kolibri_sensor_config_1", + "OpenRobotics" + ], + [ + "Cole_Hardware_Electric_Pot_Assortment_55", + "GoogleResearch" + ], + [ + "Asus_M5A78LMUSB3_Motherboard_Micro_ATX_Socket_AM3", + "GoogleResearch" + ], + [ + "Womens_Authentic_Original_Boat_Shoe_in_Classic_Brown_Leather_cJSCWiH7QmB", + "GoogleResearch" + ], + [ + "Polaris Ranger XP900", + "OpenRobotics" + ], + [ + "Breakable Test", + "OpenRobotics" + ], + [ + "Camera with Projector", + "OpenRobotics" + ], + [ + "Mens_ASV_Billfish_Boat_Shoe_in_Tan_Leather_wmUJ5PbwANc", + "aknyunus0" + ], + [ + "Threshold_Performance_Bath_Sheet_Sandoval_Blue_33_x_63", + "GoogleResearch" + ], + [ + "Mario_Luigi_Dream_Team_Nintendo_3DS_Game", + "GoogleResearch" + ], + [ + "Playmates_Industrial_CoSplinter_Teenage_Mutant_Ninja_Turtle_Action_Figure", + "GoogleResearch" + ], + [ + "Imaginext_Castle_Ogre", + "GoogleResearch" + ], + [ + "NattoMax", + "GoogleResearch" + ], + [ + "Vessel F", + "OpenRobotics" + ], + [ + "Black_Forest_Fruit_Snacks_28_Pack_Grape", + "GoogleResearch" + ], + [ + "Urban Bend Left", + "OpenRobotics" + ], + [ + "NIOSH SR Course Shell", + "OpenRobotics" + ], + [ + "Fortress heightmap", + "OpenRobotics" + ], + [ + "NIOSH SR Course Section 10 Finals", + "OpenRobotics" + ], + [ + "Ghost_6_GTX_Color_AnthBlckSlvrFernSulphSprng_Size_80", + "GoogleResearch" + ], + [ + "Clorox_Premium_Choice_Gloves_SM_1_pair", + "GoogleResearch" + ], + [ + "Crunch_Girl_Scouts_Candy_Bars_Peanut_Butter_Creme_78_oz_box", + "GoogleResearch" + ], + [ + "Cave Vertical Shaft Cantilevered Type A", + "OpenRobotics" + ], + [ + "CORO_ROCKY_SENSOR_CONFIG_3", + "OpenRobotics" + ], + [ + "CERBERUS_GAGARIN_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Now_Designs_Dish_Towel_Mojave_18_x_28", + "GoogleResearch" + ], + [ + "Horse_Dreams_Pencil_Case", + "GoogleResearch" + ], + [ + "Mens_Tremont_Kiltie_Tassel_Loafer_in_Black_Amaretto", + "GoogleResearch" + ], + [ + "Womens_Bluefish_2Eye_Boat_Shoe_in_Brown_Deerskin_i1TgjjO0AKY", + "GoogleResearch" + ], + [ + "Reebok_SH_COURT_MID_II", + "GoogleResearch" + ], + [ + "BlueBlack_Nintendo_3DSXL", + "GoogleResearch" + ], + [ + "DRC Vehicle XP900", + "OpenRobotics" + ], + [ + "JA_Henckels_International_Premio_Cutlery_Block_Set_14Piece", + "GoogleResearch" + ], + [ + "hatch", + "OpenRobotics" + ], + [ + "Big_Dot_Aqua_Pencil_Case", + "GoogleResearch" + ], + [ + "PR2_SDF17", + "jofish" + ], + [ + "Womens_Hikerfish_Boot_in_Linen_Leather_Sparkle_Suede_QktIyAkonrU", + "GoogleResearch" + ], + [ + "UGG_Bailey_Button_Triplet_Womens_Boots_Black_7", + "GoogleResearch" + ], + [ + "Rescue Randy", + "OpenRobotics" + ], + [ + "Cole_Hardware_School_Bell_Solid_Brass_38", + "GoogleResearch" + ], + [ + "VRC Grass Plane 2", + "OpenRobotics" + ], + [ + "Womens_Sparkle_Suede_Bahama_in_Silver_Sparkle_Suede_Grey_Patent_tYrIBLMhSTN", + "GoogleResearch" + ], + [ + "MK7", + "GoogleResearch" + ], + [ + "shelf", + "Kavya" + ], + [ + "Polaris Ranger XP900 without roll cage", + "OpenRobotics" + ], + [ + "Pepsi_Cola_Wild_Cherry_Diet_12_12_fl_oz_355_ml_cans_144_fl_oz_426_lt", + "GoogleResearch" + ], + [ + "clf_walls", + "tmarkmann" + ], + [ + "3D_Dollhouse_TablePurple", + "GoogleResearch" + ], + [ + "SAMBA_HEMP", + "GoogleResearch" + ], + [ + "DINING_ROOM_CLASSIC_UJuxQ0hv5XU", + "GoogleResearch" + ], + [ + "Cole_Hardware_Dishtowel_BlueWhite", + "GoogleResearch" + ], + [ + "TWISTED_PUZZLE_twb4AyFtu8Q", + "GoogleResearch" + ], + [ + "Schleich_Bald_Eagle", + "GoogleResearch" + ], + [ + "Rescue Randy - relative paths", + "chapulina" + ], + [ + "NIST maze wall 120", + "OpenRobotics" + ], + [ + "LEGO_Bricks_More_Creative_Suitcase", + "GoogleResearch" + ], + [ + "Olive_Kids_Paisley_Pencil_Case", + "GoogleResearch" + ], + [ + "Control Console", + "OpenRobotics" + ], + [ + "Hasbro_Life_Board_Game", + "GoogleResearch" + ], + [ + "Nickelodeon_Teenage_Mutant_Ninja_Turtles_Leonardo", + "GoogleResearch" + ], + [ + "CGMVanguard", + "OpenRobotics" + ], + [ + "Cave Vertical Shaft Straight Bottom Type A", + "OpenRobotics" + ], + [ + "Number9", + "OpenRobotics" + ], + [ + "ZigKick_Hoops", + "GoogleResearch" + ], + [ + "Cave Corner 02 Type B", + "OpenRobotics" + ], + [ + "box_test", + "Lobotuerk" + ], + [ + "mesh_sample", + "atulchaudhari" + ], + [ + "Electrical Wires 1", + "kevinhalim9" + ], + [ + "BlackBlack_Nintendo_3DSXL", + "GoogleResearch" + ], + [ + "r1_rover", + "PX4" + ], + [ + "Perricone_MD_Skin_Total_Body_Supplements", + "GoogleResearch" + ], + [ + "Apples_to_Apples_Kids_Edition", + "GoogleResearch" + ], + [ + "Male visitor 1", + "WANG" + ], + [ + "Velodyne HDL-32", + "OpenRobotics" + ], + [ + "Ambulance", + "OpenRobotics" + ], + [ + "AMBERLIGHT_UP_W", + "GoogleResearch" + ], + [ + "ctu_cras_norlab_marv_sensor_config_2", + "OpenRobotics" + ], + [ + "NIOSH EX Course Section 01 Finals", + "OpenRobotics" + ], + [ + "Womens_Authentic_Original_Boat_Shoe_in_Classic_Brown_Leather", + "GoogleResearch" + ], + [ + "Tunnel Tile 7 Lights", + "OpenRobotics" + ], + [ + "Razer_Taipan_White_Ambidextrous_Gaming_Mouse", + "GoogleResearch" + ], + [ + "Melissa_Doug_Felt_Food_Pizza_Set", + "GoogleResearch" + ], + [ + "biped robot", + "lightweightreseach" + ], + [ + "Mens_Santa_Cruz_Thong_in_Chocolate_La1fo2mAovE", + "GoogleResearch" + ], + [ + "Cave Tile 5", + "OpenRobotics" + ], + [ + "BedsideTableCart", + "OpenRobotics" + ], + [ + "TABLEWARE_SET_5CHkPjjxVpp", + "GoogleResearch" + ], + [ + "Poppin_File_Sorter_White", + "GoogleResearch" + ], + [ + "Office_Depot_HP_96_Remanufactured_Ink_Cartridge_Black", + "GoogleResearch" + ], + [ + "Medium Rock Fall 3", + "OpenRobotics" + ], + [ + "Mud Box", + "OpenRobotics" + ], + [ + "ASICS_GEL1140V_WhiteRoyalSilver", + "GoogleResearch" + ], + [ + "Fidget Spinner", + "jasmeetsingh" + ], + [ + "Mine Cart Engine", + "kennywang" + ], + [ + "Survivor Male", + "OpenRobotics" + ], + [ + "Pavement Plane", + "OpenRobotics" + ], + [ + "FIRE_TRUCK", + "GoogleResearch" + ], + [ + "LandingPad", + "dronolab" + ], + [ + "Tieks_Ballet_Flats_Diamond_White_Croc", + "GoogleResearch" + ], + [ + "Scrubs", + "OpenRobotics" + ], + [ + "Wastebasket", + "chapulina" + ], + [ + "Reebok_RETRO_RUSH_2V", + "GoogleResearch" + ], + [ + "ClassCWindow", + "OpenRobotics" + ], + [ + "CARSII", + "GoogleResearch" + ], + [ + "Frankencave 04", + "OpenRobotics" + ], + [ + "nathan_benderson_park", + "kane233" + ], + [ + "Timberland_Mens_Earthkeepers_Casco_Bay_Suede_1Eye", + "GoogleResearch" + ], + [ + "Rexy_Glove_Heavy_Duty_Large", + "GoogleResearch" + ], + [ + "Timberland_Womens_Classic_Amherst_2Eye_Boat_Shoe", + "GoogleResearch" + ], + [ + "4-way finals transition", + "OpenRobotics" + ], + [ + "rug_ivory_2m", + "sebbyjp" + ], + [ + "Pok\u00e9mon_Yellow_Special_Pikachu_Edition_Nintendo_Game_Boy_Color", + "GoogleResearch" + ], + [ + "Lidar 2d v1", + "OpenRobotics" + ], + [ + "Womens_Angelfish_Boat_Shoe_in_Linen_Leopard_Sequin_NJDwosWNeZz", + "GoogleResearch" + ], + [ + "Cave Cap Type A", + "OpenRobotics" + ], + [ + "Glycerin_11_Color_AqrsDrsdnBluBlkSlvShckOrng_Size_50", + "GoogleResearch" + ], + [ + "BPCart", + "OpenRobotics" + ], + [ + "Ghost_6_Color_BlckWhtLavaSlvrCitrus_Size_80", + "GoogleResearch" + ], + [ + "House_of_Cards_The_Complete_First_Season_4_Discs_DVD", + "GoogleResearch" + ], + [ + "LockerBig", + "OpenRobotics" + ], + [ + "Remington_TStudio_Hair_Dryer", + "GoogleResearch" + ], + [ + "Netgear_Ac1750_Router_Wireless_Dual_Band_Gigabit_Router", + "GoogleResearch" + ], + [ + "PatientRollingWalker", + "Luca" + ], + [ + "Mens_Tremont_Kiltie_Tassel_Loafer_in_Black_Amaretto_rCdzRZqgCnI", + "GoogleResearch" + ], + [ + "Jenolan Section 05", + "OpenRobotics" + ], + [ + "indy7", + "olive" + ], + [ + "PEEKABOO_ROLLER", + "GoogleResearch" + ], + [ + "X4_test", + "azeey" + ], + [ + "Seagate_1TB_Wireless_Plus_mobile_device_storage", + "GoogleResearch" + ], + [ + "Office_Depot_Canon_CLI_221BK_Ink_Cartridge_Black_2946B001", + "GoogleResearch" + ], + [ + "CERBERUS_RMF_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Threshold_Bamboo_Ceramic_Soap_Dish", + "GoogleResearch" + ], + [ + "Angled Steps", + "OpenRobotics" + ], + [ + "X1_test", + "azeey" + ], + [ + "Cave Cavern Split 02 Type B", + "OpenRobotics" + ], + [ + "Rough Tunnel Tile Straight Lights", + "OpenRobotics" + ], + [ + "shelf", + "NGD1004" + ], + [ + "Shower", + "OpenRobotics" + ], + [ + "LEGO_Duplo_Build_and_Play_Box_4629", + "GoogleResearch" + ], + [ + "Cave Straight Shift Type A", + "OpenRobotics" + ], + [ + "SUPERSTAR_CLR", + "GoogleResearch" + ], + [ + "Vessel E", + "abmohit" + ], + [ + "Transformers_Age_of_Extinction_Stomp_and_Chomp_Grimlock_Figure", + "GoogleResearch" + ], + [ + "MIRACLE_POUNDING", + "GoogleResearch" + ], + [ + "lunar_rock9", + "AndrejOrsula" + ], + [ + "Perricone_MD_The_Cold_Plasma_Face_Eyes_Duo", + "GoogleResearch" + ], + [ + "Sperry_TopSider_pSUFPWQXPp3", + "GoogleResearch" + ], + [ + "Ladder 75 Degrees 1 Handrails", + "OpenRobotics" + ], + [ + "X2 Config 6", + "azeey" + ], + [ + "T Brace Part", + "OpenRobotics" + ], + [ + "Ocean Rock 06", + "Cole" + ], + [ + "NIOSH EX Course Section 06", + "OpenRobotics" + ], + [ + "PUNCH_DROP_TjicLPMqLvz", + "GoogleResearch" + ], + [ + "barcs_qav500_no_sensors", + "shijie" + ], + [ + "X2 Config 6", + "OpenRobotics" + ], + [ + "SSCI_X2_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "YumYum_D3_Liquid", + "GoogleResearch" + ], + [ + "Kotex_U_Tween_Pads_16_pads", + "GoogleResearch" + ], + [ + "Weston_No_33_Signature_Sausage_Tonic_12_fl_oz", + "GoogleResearch" + ], + [ + "Cave Tile 2", + "nate" + ], + [ + "ctu_cras_norlab_marv_sensor_config_3", + "OpenRobotics" + ], + [ + "Threshold_Porcelain_Coffee_Mug_All_Over_Bead_White", + "GoogleResearch" + ], + [ + "Pokmon_Conquest_Nintendo_DS_Game", + "GoogleResearch" + ], + [ + "DRC Practice: 135 degree barriers", + "OpenRobotics" + ], + [ + "Collapsed police station", + "OpenRobotics" + ], + [ + "Submarine", + "OpenRobotics" + ], + [ + "Ortho_Forward_Facing_3Q6J2oKJD92", + "GoogleResearch" + ], + [ + "Black_and_Decker_PBJ2000_FusionBlade_Blender_Jars", + "GoogleResearch" + ], + [ + "Inositol", + "GoogleResearch" + ], + [ + "Kid_Icarus_Uprising_Nintendo_3DS_Game", + "GoogleResearch" + ], + [ + "Fast Food", + "OpenRobotics" + ], + [ + "Edgar Mine Virtual STIX Staging", + "OpenRobotics" + ], + [ + "Cave 3 Way 01 Lights", + "OpenRobotics" + ], + [ + "Edgar Mine Virtual STIX 4", + "OpenRobotics" + ], + [ + "Monkey Wrench", + "OpenRobotics" + ], + [ + "Threshold_Hand_Towel_Blue_Medallion_16_x_27", + "GoogleResearch" + ], + [ + "OVAL_XYLOPHONE", + "GoogleResearch" + ], + [ + "Unexploded Ordnance B", + "quarkytale" + ], + [ + "Reebok_ZIGCOOPERSTOWN_QUAG", + "GoogleResearch" + ], + [ + "RoboCup 3D Simulation Field", + "OpenRobotics" + ], + [ + "Iris with Standoffs", + "OpenRobotics" + ], + [ + "actor_talk_a", + "Mingfei" + ], + [ + "Edgar Mine Virtual STIX 9", + "OpenRobotics" + ], + [ + "Rough Tunnel Tile Straight", + "OpenRobotics" + ], + [ + "Shurtape_30_Day_Removal_UV_Delct_15", + "GoogleResearch" + ], + [ + "Womens_Cloud_Logo_Authentic_Original_Boat_Shoe_in_Black_Supersoft_cZR022qFI4k", + "GoogleResearch" + ], + [ + "ReadytoUse_Rolled_Fondant_Pure_White_24_oz_box", + "GoogleResearch" + ], + [ + "Thomas_Friends_Wooden_Railway_Deluxe_Track_Accessory_Pack", + "GoogleResearch" + ], + [ + "Pinwheel_Pencil_Case", + "GoogleResearch" + ], + [ + "BloodPressureMonitor", + "OpenRobotics" + ], + [ + "RoboCup 2009 SPL Field", + "OpenRobotics" + ], + [ + "Jenolan Section 08", + "OpenRobotics" + ], + [ + "CTU_CRAS_NORLAB_MARMOTTE_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Ocean Rock 01", + "Cole" + ], + [ + "Timberland_Mens_Earthkeepers_Newmarket_6Inch_Cupsole_Boot", + "GoogleResearch" + ], + [ + "test", + "jazz" + ], + [ + "Fire hose (damping test)", + "OpenRobotics" + ], + [ + "window_curtains", + "sebbyjp" + ], + [ + "Perricone_MD_Neuropeptide_Facial_Conformer", + "GoogleResearch" + ], + [ + "Bollard", + "OpenRobotics" + ], + [ + "Electrical Box", + "OpenRobotics" + ], + [ + "Cast Iron Radiator", + "AlexSSoM" + ], + [ + "Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Natural_Sparkle_Suede_kqi81aojcOR", + "GoogleResearch" + ], + [ + "Home_Fashions_Washcloth_Linen", + "GoogleResearch" + ], + [ + "Cave Vertical Shaft Lights", + "OpenRobotics" + ], + [ + "Tag_Dishtowel_Waffle_Gray_Checks_18_x_26", + "GoogleResearch" + ], + [ + "Frozen_Scrabble_Jr", + "GoogleResearch" + ], + [ + "Stereo Camera", + "zainab" + ], + [ + "soft_body_cube", + "isabelleeysseric" + ], + [ + "HAPPY_ENGINE", + "GoogleResearch" + ], + [ + "ABCSign_5m", + "mabelzhang" + ], + [ + "Collapsed industrial building", + "OpenRobotics" + ], + [ + "MopCart4", + "OpenRobotics" + ], + [ + "Rubicon", + "Kavya" + ], + [ + "Edgar Mine Virtual STIX 8", + "OpenRobotics" + ], + [ + "Test box", + "OpenRobotics" + ], + [ + "Electrical Array 5", + "kevinhalim9" + ], + [ + "dynamo_x4_sensor_config_2", + "OpenRobotics" + ], + [ + "FOOD_BEVERAGE_SET", + "GoogleResearch" + ], + [ + "Crazy_8", + "GoogleResearch" + ], + [ + "Crayola_Washable_Fingerpaint_Red_Blue_Yellow_3_count_8_fl_oz_bottes_each", + "GoogleResearch" + ], + [ + "Grey tote", + "OpenRobotics" + ], + [ + "Jenolan Section 10", + "OpenRobotics" + ], + [ + "Hardhat Superribbed", + "quarkytale" + ], + [ + "Ecoforms_Plant_Plate_S11Turquoise", + "GoogleResearch" + ], + [ + "CERBERUS_M100_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "Nestle_Carnation_Cinnamon_Coffeecake_Kit_1913OZ", + "GoogleResearch" + ], + [ + "Robotika_Kloubak_Sensor_Config_3", + "OpenRobotics" + ], + [ + "square Grass patch", + "hexarotor" + ], + [ + "NIOSH SR Course Section 02", + "OpenRobotics" + ], + [ + "TinyBot", + "OpenRobotics" + ], + [ + "lar_table_great", + "ielson" + ], + [ + "NIOSH SR Course Section 02 Finals", + "OpenRobotics" + ], + [ + "ur5_rg2", + "anni" + ], + [ + "Construction Barrel", + "OpenRobotics" + ], + [ + "TERREX_FAST_X_GTX", + "GoogleResearch" + ], + [ + "Rubicon", + "BurakAtay" + ], + [ + "Sterilite_Caddy_Blue_Sky_17_58_x_12_58_x_9_14", + "GoogleResearch" + ], + [ + "X3_test", + "azeey" + ], + [ + "COSTAR_HUSKY_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "EdgarMineVirtualSTIXFull", + "stan911" + ], + [ + "Kotex_U_Barely_There_Liners_Thin_60_count", + "GoogleResearch" + ], + [ + "Tunnel Bend Right(copy)", + "OpenRobotics" + ], + [ + "Standing person", + "OpenRobotics" + ], + [ + "Rag Doll", + "OpenRobotics" + ], + [ + "NUTS_BOLTS", + "GoogleResearch" + ], + [ + "Perricone_MD_The_Metabolic_Formula_Supplements", + "GoogleResearch" + ], + [ + "CleanerBot2", + "OpenRobotics" + ], + [ + "x500-Base", + "RudisLaboratories" + ], + [ + "LEGO_Duplo_Creative_Animals_10573", + "GoogleResearch" + ], + [ + "Mens_Billfish_3Eye_Boat_Shoe_in_Dark_Tan_wyns9HRcEuH", + "GoogleResearch" + ], + [ + "D_ROSE_45", + "GoogleResearch" + ], + [ + "Walking actor", + "chapulina" + ], + [ + "Fujifilm_instax_SHARE_SP1_10_photos", + "GoogleResearch" + ], + [ + "Threshold_Porcelain_Teapot_White", + "GoogleResearch" + ], + [ + "Home_Fashions_Washcloth_Olive_Green", + "GoogleResearch" + ], + [ + "cave_4way_20m", + "OpenRobotics" + ], + [ + "Threshold_Tray_Rectangle_Porcelain", + "GoogleResearch" + ], + [ + "HeavyDuty_Flashlight", + "GoogleResearch" + ], + [ + "Epson_Ink_Cartridge_Black_200", + "GoogleResearch" + ], + [ + "Arrow (red)", + "OpenRobotics" + ], + [ + "Follower Vehicle", + "OpenRobotics" + ], + [ + "RoboCup 3D Simulation Ball", + "OpenRobotics" + ], + [ + "Cube 20k", + "OpenRobotics" + ], + [ + "CHICKEN_RACER", + "GoogleResearch" + ], + [ + "CERBERUS_M100_SENSOR_CONFIG_1", + "abmohit" + ], + [ + "OXO_Cookie_Spatula", + "GoogleResearch" + ], + [ + "DRC Practice: 2x4 Lumber", + "OpenRobotics" + ], + [ + "Poppin_File_Sorter_Blue", + "GoogleResearch" + ], + [ + "Mens_Largo_Slip_On_in_Taupe_gooyS417q4R", + "GoogleResearch" + ], + [ + "Salon", + "OpenRobotics" + ], + [ + "Object", + "GoogleResearch" + ], + [ + "Office_Depot_Dell_Series_5_Remanufactured_Ink_Cartridge_Black", + "GoogleResearch" + ], + [ + "Simple Arm Gripper", + "OpenRobotics" + ], + [ + "3D_Dollhouse_Sink", + "GoogleResearch" + ], + [ + "Olive_Kids_Trains_Planes_Trucks_Munch_n_Lunch_Bag", + "GoogleResearch" + ], + [ + "Backpack", + "OpenRobotics" + ], + [ + "Cave Tunnel Transition", + "OpenRobotics" + ], + [ + "The_Scooper_Hooper", + "GoogleResearch" + ], + [ + "Gasket Part", + "OpenRobotics" + ], + [ + "cube", + "EdvardsZ" + ], + [ + "GarbagePileV2", + "OpenRobotics" + ], + [ + "Cave Corner 30F D", + "OpenRobotics" + ], + [ + "RedBlack_Nintendo_3DSXL", + "GoogleResearch" + ], + [ + "part_c57807519d9419bba77a3d648170ddca", + "miniaevnikita" + ], + [ + "Asus_X99Deluxe_Motherboard_ATX_LGA2011v3_Socket", + "GoogleResearch" + ], + [ + "MPL right arm", + "OpenRobotics" + ], + [ + "PureCadence_2_Color_TleBluLmePnchSlvMoodIndgWh_Size_50_EEzAfcBfHHO", + "GoogleResearch" + ], + [ + "Gazebo", + "OpenRobotics" + ], + [ + "Womens_Betty_Chukka_Boot_in_Grey_Jersey_Sequin", + "GoogleResearch" + ], + [ + "skyboxred", + "Cole" + ], + [ + "Small Blue Box", + "OpenRobotics" + ], + [ + "Frankencave 03", + "OpenRobotics" + ], + [ + "Womens_Canvas_Bahama_in_Black_vnJULsDVyq5", + "GoogleResearch" + ], + [ + "MaleVisitorOnPhone", + "OpenRobotics" + ], + [ + "Cave Corner 30F", + "OpenRobotics" + ], + [ + "Indoor lightmap", + "OpenRobotics" + ], + [ + "Melissa_Doug_Chunky_Puzzle_Vehicles", + "GoogleResearch" + ], + [ + "TWIST_SHAPE", + "GoogleResearch" + ], + [ + "Urban Superpose", + "OpenRobotics" + ], + [ + "simple_robot", + "abmohit" + ], + [ + "GRANDMOTHER", + "GoogleResearch" + ], + [ + "Razer_Naga_MMO_Gaming_Mouse", + "GoogleResearch" + ], + [ + "Subway Station", + "OpenRobotics" + ], + [ + "Remington_TStudio_Silk_Ceramic_Hair_Straightener_2_Inch_Floating_Plates", + "GoogleResearch" + ], + [ + "SSCI_X4_SENSOR_CONFIG_2", + "dreamerql" + ], + [ + "Moon DEM", + "anastasa" + ], + [ + "Piston Rod Part", + "OpenRobotics" + ], + [ + "Cole_Hardware_Saucer_Electric", + "GoogleResearch" + ], + [ + "Wooden_ABC_123_Blocks_50_pack", + "GoogleResearch" + ], + [ + "Urban 3-Way Right Intersection", + "OpenRobotics" + ], + [ + "WATER_LANDING_NET", + "GoogleResearch" + ], + [ + "DRC Practice: Door debris base", + "OpenRobotics" + ], + [ + "Intel RealSense D435", + "abmohit" + ], + [ + "GrabBar", + "OpenRobotics" + ], + [ + "Tunnel Tile 1", + "iche033" + ], + [ + "Parking garage", + "OpenRobotics" + ], + [ + "Grey Wall", + "OpenRobotics" + ], + [ + "OWL_SORTER", + "GoogleResearch" + ], + [ + "upb 12", + "beronaeron" + ], + [ + "lunar_rock4", + "AndrejOrsula" + ], + [ + "Office Chair", + "OpenRobotics" + ], + [ + "Cardboardbox", + "Mark" + ], + [ + "X1 Config 3", + "azeey" + ], + [ + "Nestle_Skinny_Cow_Dreamy_Clusters_Candy_Dark_Chocolate_6_pack_1_oz_pouches", + "GoogleResearch" + ], + [ + "Epson_UltraChrome_T0548_Ink_Cartridge_Matte_Black_1pack", + "GoogleResearch" + ], + [ + "Mens_ASV_Billfish_Boat_Shoe_in_Dark_Brown_Leather_zdHVHXueI3w", + "GoogleResearch" + ], + [ + "DRC Practice: Orange Jersey Barrier", + "OpenRobotics" + ], + [ + "plane", + "isabelleeysseric" + ], + [ + "LaRFloor", + "ielson" + ], + [ + "D_ROSE_773_II_hvInJwJ5HUD", + "GoogleResearch" + ], + [ + "Warehouse Robot", + "OpenRobotics" + ], + [ + "X1 Config 3", + "OpenRobotics" + ], + [ + "Tieks_Ballet_Flats_Electric_Snake", + "GoogleResearch" + ], + [ + "Vessel C", + "OpenRobotics" + ], + [ + "door_08x2m", + "makerspet" + ], + [ + "Waves", + "abmohit" + ], + [ + "Suitcase2H", + "OpenRobotics" + ], + [ + "STACKING_RING", + "GoogleResearch" + ], + [ + "CoQ10_BjTLbuRVt1t", + "GoogleResearch" + ], + [ + "Urban Stairwell Platform Centered", + "OpenRobotics" + ], + [ + "Nestle_Nips_Hard_Candy_Peanut_Butter", + "GoogleResearch" + ], + [ + "Predator_LZ_TRX_FG", + "GoogleResearch" + ], + [ + "Chelsea_lo_fl_rdheel_nQ0LPNF1oMw", + "GoogleResearch" + ], + [ + "X4 UAV Config 6", + "OpenRobotics" + ], + [ + "Prostate_Optimizer", + "GoogleResearch" + ], + [ + "BMWCart", + "OpenRobotics" + ], + [ + "RGBD Camera", + "nate" + ], + [ + "lunar_surface0", + "AndrejOrsula" + ], + [ + "Rescue Randy", + "OpenRoboticsTest" + ], + [ + "EXPLORER_X1_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "Constrained Tunnel Tile Tall", + "OpenRobotics" + ], + [ + "FRC 2016 Ramparts", + "OpenRobotics" + ], + [ + "X3 UAV Config 1", + "azeey" + ], + [ + "VendingMachine", + "OpenRobotics" + ], + [ + "Razer_BlackWidow_Ultimate_2014_Mechanical_Gaming_Keyboard", + "GoogleResearch" + ], + [ + "NurseDesk", + "OpenRobotics" + ], + [ + "Urban Room 2 Way", + "OpenRobotics" + ], + [ + "X3 UAV Config 1", + "OpenRobotics" + ], + [ + "CHILDRENS_ROOM_NEO", + "GoogleResearch" + ], + [ + "Perricone_MD_Photo_Plasma", + "GoogleResearch" + ], + [ + "UGG_Classic_Tall_Womens_Boots_Chestnut_7", + "GoogleResearch" + ], + [ + "ROBOTIKA_KLOUBAK_VISUALS_ONLY", + "Ruth" + ], + [ + "ISS", + "OpenRobotics" + ], + [ + "lunar_rock6", + "AndrejOrsula" + ], + [ + "CORO_MIKE_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Markings_Letter_Holder", + "GoogleResearch" + ], + [ + "Toolbox", + "nate" + ], + [ + "MARBLE_HUSKY_SENSOR_CONFIG_1", + "MovAi" + ], + [ + "Turquoise turbidity generator", + "mabelzhang" + ], + [ + "Mens_RR_Moc_in_Navy_Suede_vmFfijhBzL3", + "GoogleResearch" + ], + [ + "3D_Dollhouse_Lamp", + "GoogleResearch" + ], + [ + "UGG_Classic_Tall_Womens_Boots_Grey_7", + "GoogleResearch" + ], + [ + "Unmellow_Yellow_Tieks_Neon_Patent_Leather_Ballet_Flats", + "GoogleResearch" + ], + [ + "Womens_Sequin_Bahama_in_White_Sequin_XoR8xTlxj1g", + "GoogleResearch" + ], + [ + "Starting Pen", + "OpenRobotics" + ], + [ + "My_First_Animal_Tower", + "GoogleResearch" + ], + [ + "US_Army_Stash_Lunch_Bag", + "GoogleResearch" + ], + [ + "MARBLE_QAV500_SENSOR_CONFIG_1", + "wjfstudent" + ], + [ + "4-Way Finals Transition 2 Lights", + "OpenRobotics" + ], + [ + "HP_1800_Tablet_8GB_7", + "GoogleResearch" + ], + [ + "Stone 10 x 2.5 x 1 cm", + "OpenRobotics" + ], + [ + "F10_TRX_TF_rH7tmKCdUJq", + "GoogleResearch" + ], + [ + "ArmoredPillars", + "OpenRobotics" + ], + [ + "Extinguisher cabinet", + "OpenRobotics" + ], + [ + "Ecoforms_Plant_Container_QP_Harvest", + "GoogleResearch" + ], + [ + "Nestl_Skinny_Cow_Heavenly_Crisp_Candy_Bar_Chocolate_Raspberry_6_pack_462_oz_total", + "GoogleResearch" + ], + [ + "DRC Practice: Wheel valve large wall", + "OpenRobotics" + ], + [ + "DeskChair", + "OpenRobotics" + ], + [ + "Coral02", + "Cole" + ], + [ + "Cave Vertical Shaft Type B", + "OpenRobotics" + ], + [ + "Jenolan Section 01", + "OpenRobotics" + ], + [ + "aws_robomaker_warehouse_PalletJackB_01", + "OpenRobotics" + ], + [ + "Artifact Proximity Detector", + "OpenRobotics" + ], + [ + "X4 UAV Config 3", + "azeey" + ], + [ + "DPC_Thinsulate_Isolate_Gloves_Brown", + "GoogleResearch" + ], + [ + "DRC Vehicle", + "OpenRobotics" + ], + [ + "Great_Jones_Wingtip_wxH3dbtlvBC", + "GoogleResearch" + ], + [ + "simple_cylinder_1p5m_radius", + "mohrad" + ], + [ + "Pony_C_Clamp_1440", + "GoogleResearch" + ], + [ + "Tunnel Elevation", + "OpenRobotics" + ], + [ + "Retail_Leadership_Summit", + "GoogleResearch" + ], + [ + "Womens_Teva_Capistrano_Bootie", + "GoogleResearch" + ], + [ + "MetalCabinet", + "OpenRobotics" + ], + [ + "Number2", + "OpenRobotics" + ], + [ + "Camera", + "OpenRobotics" + ], + [ + "part_c3c4c1cb511660166f7af2f399ed7be4", + "miniaevnikita" + ], + [ + "Cave Corner 30 D Type B", + "OpenRobotics" + ], + [ + "Brother_Ink_Cartridge_Magenta_LC75M", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Container_Urn_55_Avocado", + "GoogleResearch" + ], + [ + "Cave Corner 30", + "OpenRobotics" + ], + [ + "HeadphonesRack1", + "OpenRobotics" + ], + [ + "CERBERUS_ANYMAL_B_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "Office_Depot_HP_61Tricolor_Ink_Cartridge", + "GoogleResearch" + ], + [ + "Snack_Catcher_Snack_Dispenser", + "GoogleResearch" + ], + [ + "Supernatural_Ouija_Board_Game", + "GoogleResearch" + ], + [ + "Tunnel Corner Left", + "OpenRobotics" + ], + [ + "kgeu_sim", + "zet345" + ], + [ + "ASICS_GELLinksmaster_WhiteSilverCarolina_Blue", + "GoogleResearch" + ], + [ + "RoboCup 3D Simulator Goal", + "OpenRobotics" + ], + [ + "RollingWalker", + "OpenRobotics" + ], + [ + "LampAndStand", + "OpenRobotics" + ], + [ + "Fisher_price_Classic_Toys_Buzzy_Bee", + "GoogleResearch" + ], + [ + "WHALE_WHISTLE_6PCS_SET", + "GoogleResearch" + ], + [ + "Canon_225226_Ink_Cartridges_BlackColor_Cyan_Magenta_Yellow_6_count", + "GoogleResearch" + ], + [ + "Lutein", + "GoogleResearch" + ], + [ + "Fountain", + "OpenRobotics" + ], + [ + "Washer", + "OpenRobotics" + ], + [ + "Super_Mario_3D_World_Deluxe_Set_yThuvW9vZed", + "GoogleResearch" + ], + [ + "Orange", + "Gambit" + ], + [ + "Playground", + "OpenRobotics" + ], + [ + "Craftsman_Grip_Screwdriver_Phillips_Cushion", + "GoogleResearch" + ], + [ + "test_car", + "aries2024" + ], + [ + "x500", + "PX4" + ], + [ + "Typhoon H480", + "Gambit" + ], + [ + "Ocedar_Snap_On_Dust_Pan_And_Brush_1_ct", + "GoogleResearch" + ], + [ + "Reebok_DMX_MAX_MANIA_WD_D", + "GoogleResearch" + ], + [ + "Perricone_MD_Cold_Plasma", + "GoogleResearch" + ], + [ + "assembly_091594270d346d8389b0e6cee05f44ba", + "miniaevnikita" + ], + [ + "PureCadence_2_Color_HiRskRedNghtlfeSlvrBlckWht_Size_70", + "GoogleResearch" + ], + [ + "BABY_CAR", + "GoogleResearch" + ], + [ + "Clearpath Robotics Husky A200", + "OpenRobotics" + ], + [ + "Mens_Bahama_in_Black_b4ADzYywRHl", + "GoogleResearch" + ], + [ + "KitchenSink", + "OpenRobotics" + ], + [ + "Cole_Hardware_Saucer_Glazed_6", + "GoogleResearch" + ], + [ + "Whey_Protein_3_Flavor_Variety_Pack_12_Packets", + "GoogleResearch" + ], + [ + "Nintendo_Yoshi_Action_Figure", + "GoogleResearch" + ], + [ + "urban cave transition straight large", + "OpenRobotics" + ], + [ + "Jawbone_UP24_Wireless_Activity_Tracker_Pink_Coral_L", + "GoogleResearch" + ], + [ + "aws_robomaker_warehouse_WallB_01", + "OpenRobotics" + ], + [ + "Parrot Bebop 2", + "abmohit" + ], + [ + "FYW_DIVISION", + "GoogleResearch" + ], + [ + "FallingSnow", + "OpenRobotics" + ], + [ + "KitchenCountertop", + "OpenRobotics" + ], + [ + "PureFlow_2_Color_RylPurHibiscusBlkSlvrWht_Size_50", + "GoogleResearch" + ], + [ + "Rubbermaid_Large_Drainer", + "GoogleResearch" + ], + [ + "Warehouse", + "OpenRobotics" + ], + [ + "Walkway Metal 90 degree", + "OpenRobotics" + ], + [ + "Melissa_Doug_Cart_Turtle_Block", + "GoogleResearch" + ], + [ + "coro_mark_sensor_config_1", + "OpenRobotics" + ], + [ + "Ambulance2", + "OpenRobotics" + ], + [ + "RoboCup SPL Ball", + "OpenRobotics" + ], + [ + "Large Crate", + "OpenRobotics" + ], + [ + "Casual female", + "OpenRobotics" + ], + [ + "coro_bandicoot_sensor_config_1", + "OpenRobotics" + ], + [ + "Shark", + "wutitaxue" + ], + [ + "MaleVisitorPhone", + "OpenRobotics" + ], + [ + "Hatchback copy", + "OpenRoboticsTest" + ], + [ + "VisitorKidSit", + "OpenRobotics" + ], + [ + "Robotika_Kloubak_Sensor_Config_1", + "OpenRobotics" + ], + [ + "Razer_BlackWidow_Stealth_2014_Keyboard_07VFzIVabgh", + "GoogleResearch" + ], + [ + "Womens_Sequin_Bahama_in_White_Sequin_yGVsSA4tOwJ", + "GoogleResearch" + ], + [ + "Hatchback red", + "OpenRobotics" + ], + [ + "kaiaai_poster", + "makerspet" + ], + [ + "sydney_regatta", + "OpenRobotics" + ], + [ + "Cave Vertical Shaft Dead End Type A", + "OpenRobotics" + ], + [ + "Samsung J8 Black", + "OpenRobotics" + ], + [ + "FemaleVisitorSit", + "OpenRobotics" + ], + [ + "ROBOTIKA_KLOUBAK_VISUALS_ONLY", + "OpenRobotics" + ], + [ + "Urban Straight Door Left Extension", + "OpenRobotics" + ], + [ + "Cave Straight 02 Lights Type B", + "OpenRobotics" + ], + [ + "DRC Practice: Wood slats", + "OpenRobotics" + ], + [ + "Pickup", + "OpenRobotics" + ], + [ + "Philips_EcoVantage_43_W_Light_Bulbs_Natural_Light_2_pack", + "GoogleResearch" + ], + [ + "Universal Shift 5x5", + "OpenRobotics" + ], + [ + "TEAMBASE", + "OpenRobotics" + ], + [ + "GEOMETRIC_SORTING_BOARD", + "GoogleResearch" + ], + [ + "Advanced Plane", + "frede791" + ], + [ + "Santa_Cruz_Mens_G7kQXK7cIky", + "GoogleResearch" + ], + [ + "cave_straight_40m", + "nate" + ], + [ + "Gas", + "OpenRobotics" + ], + [ + "FARM_ANIMAL_9GyfdcPyESK", + "GoogleResearch" + ], + [ + "Razer_Kraken_Pro_headset_Full_size_Black", + "GoogleResearch" + ], + [ + "CORO_MIKE_SENSOR_CONFIG_2", + "eslam5" + ], + [ + "Room_Essentials_Kitchen_Towels_16_x_26_2_count", + "GoogleResearch" + ], + [ + "PARENT_ROOM_FURNITURE_SET_1", + "GoogleResearch" + ], + [ + "Electrical Building 2", + "kevinhalim9" + ], + [ + "Wooden case", + "OpenRobotics" + ], + [ + "Cave 2 Way 01 Type A", + "OpenRobotics" + ], + [ + "Male visitor", + "OpenRobotics" + ], + [ + "Office Desk", + "OpenRobotics" + ], + [ + "Cave 3 Way 01 Type B", + "OpenRobotics" + ], + [ + "Cave Straight 01 Type B", + "OpenRobotics" + ], + [ + "Mens_Billfish_Slip_On_in_Tan_Beige_aaVUk0tNTv8", + "GoogleResearch" + ], + [ + "CoffeeTable", + "OpenRobotics" + ], + [ + "EXPLORER_R2_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Ocean Floor Texture", + "OpenRobotics" + ], + [ + "Threshold_Porcelain_Serving_Bowl_Coupe_White", + "GoogleResearch" + ], + [ + "panda", + "mjcarroll" + ], + [ + "GIRLS_DECKHAND", + "GoogleResearch" + ], + [ + "Panda with Ignition position controller model", + "abmohit" + ], + [ + "X2 Config 7", + "OpenRobotics" + ], + [ + "Threshold_Salad_Plate_Square_Rim_Porcelain", + "GoogleResearch" + ], + [ + "QAbsorb_CoQ10_53iUqjWjW3O", + "GoogleResearch" + ], + [ + "ASICS_GELBlur33_20_GS_BlackWhiteSafety_Orange", + "GoogleResearch" + ], + [ + "Power Plant", + "OpenRobotics" + ], + [ + "NIOSH Segment 02", + "OpenRobotics" + ], + [ + "NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY", + "makhab" + ], + [ + "Brother_Printing_Cartridge_PC501", + "GoogleResearch" + ], + [ + "Theanine", + "GoogleResearch" + ], + [ + "Cave Transition Type A to and from Type B", + "OpenRobotics" + ], + [ + "TABLEWARE_SET", + "GoogleResearch" + ], + [ + "Womens_Hikerfish_Boot_in_Linen_Leather_Sparkle_Suede_imlP8VkwqIH", + "GoogleResearch" + ], + [ + "adiZero_Slide_2_SC", + "GoogleResearch" + ], + [ + "Avengers_Thor_PLlrpYniaeB", + "GoogleResearch" + ], + [ + "CleaningSection", + "OpenRobotics" + ], + [ + "Beach", + "OpenRobotics" + ], + [ + "Lenovo_Yoga_2_11", + "GoogleResearch" + ], + [ + "csiro_data61_dtr_sensor_config_1", + "OpenRobotics" + ], + [ + "coro_allie_sensor_config_2", + "OpenRobotics" + ], + [ + "actor - relative paths", + "OpenRobotics" + ], + [ + "Office_Depot_Canon_PGI35_Remanufactured_Ink_Cartridge_Black", + "GoogleResearch" + ], + [ + "Urban 2 Story Large Side 2", + "OpenRobotics" + ], + [ + "soft_cube", + "isabelleeysseric" + ], + [ + "Cave Elevation Lights", + "OpenRobotics" + ], + [ + "Law office", + "OpenRobotics" + ], + [ + "garage_door", + "LeDSantos" + ], + [ + "part_0336c402946fcc22024853a97a2c7941", + "miniaevnikita" + ], + [ + "Urban Large Room Split Lights", + "OpenRobotics" + ], + [ + "Epson_DURABrite_Ultra_786_Black_Ink_Cartridge_T786120S", + "GoogleResearch" + ], + [ + "Hardhat Standard", + "quarkytale" + ], + [ + "Rail Tunnel Straight", + "OpenRobotics" + ], + [ + "ankitha", + "ankitaraorao9898" + ], + [ + "Lidar_2d_v2", + "slim71" + ], + [ + "Reebok_JR_ZIG_COOPERSTOWN_MR", + "GoogleResearch" + ], + [ + "Hasbro_Monopoly_Hotels_Game", + "GoogleResearch" + ], + [ + "Luigis_Mansion_Dark_Moon_Nintendo_3DS_Game", + "GoogleResearch" + ], + [ + "Radio", + "OpenRobotics" + ], + [ + "X1 Config 6", + "OpenRobotics" + ], + [ + "Gate", + "nate" + ], + [ + "Granimals_20_Wooden_ABC_Blocks_Wagon_g2TinmUGGHI", + "GoogleResearch" + ], + [ + "Urban Stairwell Straight", + "OpenRobotics" + ], + [ + "Cave Tile Start", + "OpenRobotics" + ], + [ + "Epson_UltraChrome_T0543_Ink_Cartridge_Magenta_1pack", + "GoogleResearch" + ], + [ + "X1 Config 4", + "azeey" + ], + [ + "Cave Straight 04 Type B", + "OpenRobotics" + ], + [ + "Threshold_Porcelain_Pitcher_White", + "GoogleResearch" + ], + [ + "Android_Figure_Orange", + "GoogleResearch" + ], + [ + "X1 Config 4", + "OpenRobotics" + ], + [ + "Dino_3", + "GoogleResearch" + ], + [ + "short_navigation_course_0", + "Michael" + ], + [ + "NIST stairs 120", + "OpenRobotics" + ], + [ + "BIA_Cordon_Bleu_White_Porcelain_Utensil_Holder_900028", + "GoogleResearch" + ], + [ + "Tube 2.25 cm", + "OpenRobotics" + ], + [ + "House 1", + "OpenRobotics" + ], + [ + "Ocean Rock 05", + "Cole" + ], + [ + "Whey_Protein_Chocolate_12_Packets", + "GoogleResearch" + ], + [ + "smoke_generator2", + "nate" + ], + [ + "Reebok_STUDIO_BEAT_LOW_V", + "GoogleResearch" + ], + [ + "Mens_Mako_Canoe_Moc_2Eye_Boat_Shoe_in_Coffee_K9e8FoV73uZ", + "GoogleResearch" + ], + [ + "Falling Rock 4", + "OpenRobotics" + ], + [ + "MIP robotics Junior 300", + "MIProbotics" + ], + [ + "Cave Straight Type B", + "OpenRobotics" + ], + [ + "MopCart3", + "OpenRobotics" + ], + [ + "Mens_Tremont_Kiltie_Tassel_Loafer_in_Black_Amaretto_FT0I9OjSA6O", + "GoogleResearch" + ], + [ + "MARBLE_QAV500_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Cave 3 Way 01 Lights Type B", + "OpenRobotics" + ], + [ + "Perricone_MD_Chia_Serum", + "GoogleResearch" + ], + [ + "Weisshai_Great_White_Shark", + "GoogleResearch" + ], + [ + "Mens_Gold_Cup_ASV_Capetown_Penny_Loafer_in_Black_GkQBKqABeQN", + "GoogleResearch" + ], + [ + "Cinder Block", + "OpenRobotics" + ], + [ + "Textured mesh", + "chapulina" + ], + [ + "Nescafe_16Count_Dolce_Gusto_Cappuccino_Capsules", + "GoogleResearch" + ], + [ + "ZX700_mzGbdP3u6JB", + "GoogleResearch" + ], + [ + "Room_Essentials_Fabric_Cube_Lavender", + "GoogleResearch" + ], + [ + "Office_Depot_HP_74XL75_Remanufactured_Ink_Cartridges_BlackTriColor_2_count", + "GoogleResearch" + ], + [ + "Fridge", + "OpenRobotics" + ], + [ + "HyperX_Cloud_II_Headset_Red", + "GoogleResearch" + ], + [ + "hatchback_red", + "chapulina" + ], + [ + "Marc_Anthony_Strictly_Curls_Curl_Envy_Perfect_Curl_Cream_6_fl_oz_bottle", + "GoogleResearch" + ], + [ + "test_dae", + "iche033" + ], + [ + "Balderdash_Game", + "GoogleResearch" + ], + [ + "X3 UAV Config 3", + "OpenRobotics" + ], + [ + "goztas_AUV", + "goztas" + ], + [ + "Provence_Bath_Towel_Royal_Blue", + "GoogleResearch" + ], + [ + "NASA_PRESERVERANCE_SENSOR_CONFIG_1", + "peci1" + ], + [ + "hatchback", + "chapulina" + ], + [ + "csiro_data61_dtr_sensor_config_2", + "OpenRobotics" + ], + [ + "Reebok_SH_PRIME_COURT_MID", + "GoogleResearch" + ], + [ + "Perricone_MD_Nutritive_Cleanser", + "GoogleResearch" + ], + [ + "PureConnect_2_Color_BlckBrllntBluNghtlfeAnthrct_Size_70", + "GoogleResearch" + ], + [ + "Harmonic Terrain Objects", + "OpenRobotics" + ], + [ + "Large Dry Box", + "OpenRobotics" + ], + [ + "Suitcase1H", + "OpenRobotics" + ], + [ + "BRAILLE_ALPHABET_AZ", + "GoogleResearch" + ], + [ + "ignlego", + "okan" + ], + [ + "AirportSign5", + "OpenRobotics" + ], + [ + "Olive_Kids_Birdie_Lunch_Box", + "GoogleResearch" + ], + [ + "Perricone_MD_Hypoallergenic_Gentle_Cleanser", + "GoogleResearch" + ], + [ + "Perricone_MD_The_Crease_Cure_Duo", + "GoogleResearch" + ], + [ + "court", + "redtedtezza" + ], + [ + "STACKING_BEAR_V04KKgGBn2A", + "GoogleResearch" + ], + [ + "Down_To_Earth_Orchid_Pot_Ceramic_Red", + "GoogleResearch" + ], + [ + "DronePlatformX1", + "OpenRobotics" + ], + [ + "BedTable", + "OpenRobotics" + ], + [ + "Jenolan Section 05 Lights", + "OpenRobotics" + ], + [ + "45oz_RAMEKIN_ASST_DEEP_COLORS", + "GoogleResearch" + ], + [ + "Nikon_1_AW1_w11275mm_Lens_Silver", + "GoogleResearch" + ], + [ + "ground_station", + "OpenRobotics" + ], + [ + "Portuguese Ledge", + "OpenRobotics" + ], + [ + "Cave", + "OpenRobotics" + ], + [ + "Universal Shift 2.5x2.5", + "OpenRobotics" + ], + [ + "Constrained Tunnel Tile Short", + "OpenRobotics" + ], + [ + "barcs_qav500_sensor_config_2", + "OpenRobotics" + ], + [ + "Threshold_Porcelain_Spoon_Rest_White", + "GoogleResearch" + ], + [ + "coro_karen_sensor_config_2", + "OpenRobotics" + ], + [ + "shoe", + "aknyunus0" + ], + [ + "MARBLE_HD2_SENSOR_CONFIG_3", + "OpenRobotics" + ], + [ + "NIST maze wall 240", + "OpenRobotics" + ], + [ + "ASICS_GEL1140V_WhiteBlackSilver", + "GoogleResearch" + ], + [ + "Weston_No_22_Cajun_Jerky_Tonic_12_fl_oz_nLj64ZnGwDh", + "GoogleResearch" + ], + [ + "Tunnel Tile 4 Rails", + "angelamaio" + ], + [ + "NAPA_VALLEY_NAVAJO_SANDAL", + "GoogleResearch" + ], + [ + "Brisk_Iced_Tea_Lemon_12_12_fl_oz_355_ml_cans_144_fl_oz_426_lt", + "GoogleResearch" + ], + [ + "Lidar 3d v2", + "OpenRobotics" + ], + [ + "RC Boat", + "OpenRobotics" + ], + [ + "Dining Chair", + "OpenRobotics" + ], + [ + "DoctorFemaleWalk", + "Luca" + ], + [ + "CTU_CRAS_NORLAB_LILY_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "AirportSign3", + "OpenRobotics" + ], + [ + "Mens_Billfish_Ultra_Lite_Boat_Shoe_in_Dark_Brown_Blue_c6zDZTtRJr6", + "GoogleResearch" + ], + [ + "Wooden peg board", + "OpenRobotics" + ], + [ + "Cave Cavern Split 01", + "OpenRobotics" + ], + [ + "ariac part2", + "OpenRobotics" + ], + [ + "Cave Straight 01 Lights", + "OpenRobotics" + ], + [ + "Womens_Cloud_Logo_Authentic_Original_Boat_Shoe_in_Black_Supersoft_8LigQYwf4gr", + "GoogleResearch" + ], + [ + "Cave U Turn Elevation Type A", + "OpenRobotics" + ], + [ + "X1 Config 7", + "OpenRobotics" + ], + [ + "MBARI Tethys LRAUV-1", + "alighasemi" + ], + [ + "Threshold_Basket_Natural_Finish_Fabric_Liner_Small", + "GoogleResearch" + ], + [ + "Cube PBR OBJ", + "iche033" + ], + [ + "NAO with Ignition position controller", + "Teste01" + ], + [ + "Sootheze_Cold_Therapy_Elephant", + "GoogleResearch" + ], + [ + "30_CONSTRUCTION_SET", + "GoogleResearch" + ], + [ + "Squirtin_Barnyard_Friends_4pk", + "GoogleResearch" + ], + [ + "Philips_Sonicare_Tooth_Brush_2_count", + "GoogleResearch" + ], + [ + "SORTING_TRAIN", + "GoogleResearch" + ], + [ + "OpScrubs", + "OpenRobotics" + ], + [ + "Tunnel Tile Blocker", + "OpenRobotics" + ], + [ + "X4 UAV Config 4", + "azeey" + ], + [ + "Lunar Tranquillitatis Pit", + "OpenRobotics" + ], + [ + "ksql_airport", + "OpenRobotics" + ], + [ + "Mens_Striper_Sneaker_in_White_rnp8HUli59Y", + "GoogleResearch" + ], + [ + "CTU_CRAS_NORLAB_LILY_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Ubisoft_RockSmith_Real_Tone_Cable_Xbox_360", + "GoogleResearch" + ], + [ + "CSIRO_DATA61_OZBOT_ATR_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "BATHROOM_FURNITURE_SET_1", + "GoogleResearch" + ], + [ + "Polar_Herring_Fillets_Smoked_Peppered_705_oz_total", + "GoogleResearch" + ], + [ + "Office_Depot_Canon_CLI_8Y_Ink_Cartridge_Yellow_0623B002", + "GoogleResearch" + ], + [ + "Perricone_MD_Skin_Clear_Supplements", + "GoogleResearch" + ], + [ + "indian_tunnel", + "nate" + ], + [ + "Reebok_GL_6000", + "GoogleResearch" + ], + [ + "Suitcase1", + "OpenRobotics" + ], + [ + "Jenolan Section 06", + "OpenRobotics" + ], + [ + "Seagate_1TB_Backup_Plus_portable_drive_Silver", + "GoogleResearch" + ], + [ + "Melissa_Doug_Jumbo_Knob_Puzzles_Barnyard_Animals", + "GoogleResearch" + ], + [ + "Super_Mario_Kart_Super_Nintendo_Entertainment_System", + "GoogleResearch" + ], + [ + "Cave Corner 01 Type B", + "OpenRobotics" + ], + [ + "courgette_02", + "karojud" + ], + [ + "Just_For_Men_ShampooIn_Haircolor_Light_Brown_25", + "GoogleResearch" + ], + [ + "Crosley_Alarm_Clock_Vintage_Metal", + "GoogleResearch" + ], + [ + "NASA_PERSEVERANCE_SENSOR_CONFIG_1 1", + "vuthanhcdt" + ], + [ + "Electrical Box Test", + "Cecil" + ], + [ + "CSIRO_DATA61_OZBOT_ATR_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "Cave Vertical Shaft", + "OpenRobotics" + ], + [ + "Twinlab_Premium_Creatine_Fuel_Powder", + "GoogleResearch" + ], + [ + "CONE_SORTING_kg5fbARBwts", + "GoogleResearch" + ], + [ + "60_CONSTRUCTION_SET", + "GoogleResearch" + ], + [ + "Polaris Ranger EV", + "OpenRobotics" + ], + [ + "My_Monopoly_Board_Game", + "GoogleResearch" + ], + [ + "BALANCING_CACTUS", + "GoogleResearch" + ], + [ + "Olive_Kids_Game_On_Lunch_Box", + "GoogleResearch" + ], + [ + "new_flippy", + "amargett" + ], + [ + "Womens_Audrey_Slip_On_Boat_Shoe_in_Graphite_Nubuck_xWVkCJ5vxZe", + "GoogleResearch" + ], + [ + "lunar_rock2", + "AndrejOrsula" + ], + [ + "Olive_Kids_Dinosaur_Land_Sidekick_Backpack", + "GoogleResearch" + ], + [ + "8-Bit Thermal Camera", + "OpenRobotics" + ], + [ + "NIOSH Shell Finals", + "OpenRobotics" + ], + [ + "Urban Straight Lights", + "OpenRobotics" + ], + [ + "VisitorChair", + "OpenRobotics" + ], + [ + "MBARI MARS", + "quarkytale" + ], + [ + "Ecoforms_Plant_Pot_GP9AAvocado", + "GoogleResearch" + ], + [ + "Mine Cart", + "OpenRobotics" + ], + [ + "CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_1", + "almuni" + ], + [ + "Electrical Wires 2", + "kevinhalim9" + ], + [ + "shelf_big", + "MovAi" + ], + [ + "Razer_Abyssus_Ambidextrous_Gaming_Mouse", + "GoogleResearch" + ], + [ + "NIOSH SR Course Section 01", + "OpenRobotics" + ], + [ + "X1 Config 1", + "OpenRobotics" + ], + [ + "Nestle_Pure_Life_Exotics_Sparkling_Water_Strawberry_Dragon_Fruit_8_count_12_fl_oz_can_aX0ygjh3bxi", + "GoogleResearch" + ], + [ + "Urban 4way Intersection", + "OpenRobotics" + ], + [ + "Predito_LZ_TRX_FG_W", + "GoogleResearch" + ], + [ + "Great_Dinos_Triceratops_Toy", + "GoogleResearch" + ], + [ + "Perricone_MD_AcylGlutathione_Eye_Lid_Serum", + "GoogleResearch" + ], + [ + "3D_Dollhouse_Swing", + "GoogleResearch" + ], + [ + "Timberland_Womens_Earthkeepers_Classic_Unlined_Boat_Shoe", + "GoogleResearch" + ], + [ + "Sorry_Sliders_Board_Game", + "GoogleResearch" + ], + [ + "foldable_table", + "OpenRobotics" + ], + [ + "Kong_Puppy_Teething_Rubber_Small_Pink", + "GoogleResearch" + ], + [ + "Electrical Box Test", + "depressedcoder" + ], + [ + "Thrift shop", + "OpenRobotics" + ], + [ + "X4_GPS_LIDAR_RGBD", + "abmohit" + ], + [ + "test1", + "Ben" + ], + [ + "DINING_ROOM_CLASSIC", + "GoogleResearch" + ], + [ + "Cardboard box", + "OpenRobotics" + ], + [ + "Cave Corner 02 Lights Type B", + "OpenRobotics" + ], + [ + "Cave Vertical Shaft Lights Type B", + "OpenRobotics" + ], + [ + "adizero_5Tool_25", + "GoogleResearch" + ], + [ + "NIST simple ramp 120", + "OpenRobotics" + ], + [ + "11pro_SL_TRX_FG", + "GoogleResearch" + ], + [ + "CTU_CRAS_NORLAB_MARMOTTE_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "lar_table_pc", + "ielson" + ], + [ + "Chessboard", + "justartemm" + ], + [ + "Samsung_CLTC406S_Toner_Cartridge_Cyan_1pack", + "GoogleResearch" + ], + [ + "aruco_default", + "AndrejOrsula" + ], + [ + "NIOSH EX Course Section 05 Finals", + "OpenRobotics" + ], + [ + "SUV", + "OpenRobotics" + ], + [ + "ManualFireAlarmButton", + "OpenRobotics" + ], + [ + "MINI_ROLLER", + "GoogleResearch" + ], + [ + "Timberland_Mens_Classic_2Eye_Boat_Shoe", + "GoogleResearch" + ], + [ + "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_6", + "OpenRobotics" + ], + [ + "cylinder_2p7m_radius_20m_length", + "ohradz" + ], + [ + "X1 Config 8", + "OpenRobotics" + ], + [ + "Asus_M5A99FX_PRO_R20_Motherboard_ATX_Socket_AM3", + "GoogleResearch" + ], + [ + "Dining Table", + "OpenRobotics" + ], + [ + "Urban Starting Area", + "OpenRobotics" + ], + [ + "Construction Cone", + "OpenRobotics" + ], + [ + "Electrical Array 4", + "kevinhalim9" + ], + [ + "PEPSI_NEXT_CACRV", + "GoogleResearch" + ], + [ + "Olive_Kids_Butterfly_Garden_Pencil_Case", + "GoogleResearch" + ], + [ + "panda", + "AndrejOrsula" + ], + [ + "Womens_Teva_Capistrano_Bootie_ldjRT9yZ5Ht", + "GoogleResearch" + ], + [ + "DPC_tropical_Trends_Hat", + "GoogleResearch" + ], + [ + "Womens_Authentic_Original_Boat_Shoe_in_Classic_Brown_Leather_48Nh7VuMwW6", + "GoogleResearch" + ], + [ + "Folic_Acid", + "GoogleResearch" + ], + [ + "Now_Designs_Bowl_Akita_Black", + "GoogleResearch" + ], + [ + "simple_cylinder_1m_radius", + "mohrad" + ], + [ + "Office_Depot_Canon_PGI5BK_Remanufactured_Ink_Cartridge_Black", + "GoogleResearch" + ], + [ + "Parking Area", + "kevinhalim9" + ], + [ + "Connect_4_Launchers", + "GoogleResearch" + ], + [ + "PotatoChipChair", + "OpenRobotics" + ], + [ + "lunar_surface7", + "AndrejOrsula" + ], + [ + "Coast Water", + "adyt" + ], + [ + "Dog", + "GoogleResearch" + ], + [ + "Court_Attitude", + "GoogleResearch" + ], + [ + "SANDWICH_MEAL", + "GoogleResearch" + ], + [ + "Solar", + "ShadoRoca" + ], + [ + "Cave Straight 05", + "OpenRobotics" + ], + [ + "Stereo Camera", + "OpenRobotics" + ], + [ + "cave_L_20m", + "nate" + ], + [ + "FemaleVisitor", + "OpenRobotics" + ], + [ + "DRC Practice: Hand wheel valve", + "OpenRobotics" + ], + [ + "tv_65in_emissive", + "makerspet" + ], + [ + "Paint_Maker", + "GoogleResearch" + ], + [ + "PETS_ACCESSORIES", + "GoogleResearch" + ], + [ + "Saccharomyces_Boulardii_MOS_Value_Size", + "GoogleResearch" + ], + [ + "TurtleBot", + "OpenRobotics" + ], + [ + "Womens_Betty_Chukka_Boot_in_Navy_aEE8OqvMII4", + "GoogleResearch" + ], + [ + "Electrical Shack", + "kevinhalim9" + ], + [ + "Hatchback", + "OpenRobotics" + ], + [ + "QAbsorb_CoQ10", + "GoogleResearch" + ], + [ + "Ladder", + "OpenRobotics" + ], + [ + "Canon_Pixma_Ink_Cartridge_8", + "GoogleResearch" + ], + [ + "Tunnel Tile 6 Rails", + "angelamaio" + ], + [ + "Finals Staging Area", + "OpenRobotics" + ], + [ + "Fire Hose A", + "OpenRobotics" + ], + [ + "Lalaloopsy_Peanut_Big_Top_Tricycle", + "GoogleResearch" + ], + [ + "Standard VTOL", + "PX4" + ], + [ + "aws_robomaker_warehouse_ClutteringD_01", + "OpenRobotics" + ], + [ + "Sony_Acid_Music_Studio", + "GoogleResearch" + ], + [ + "Fire Extinguisher", + "OpenRobotics" + ], + [ + "foldable_chair", + "OpenRobotics" + ], + [ + "Sunken Vase", + "Cole" + ], + [ + "Pass_The_Popcorn_Movie_Guessing_Game", + "GoogleResearch" + ], + [ + "Cole_Hardware_Hammer_Black", + "GoogleResearch" + ], + [ + "Retail_Leadership_Summit_tQFCizMt6g0", + "GoogleResearch" + ], + [ + "Cave Vertical Shaft Type A", + "OpenRobotics" + ], + [ + "Fence", + "kevinhalim9" + ], + [ + "16-Bit Thermal Camera", + "OpenRobotics" + ], + [ + "Lamp Post", + "OpenRobotics" + ], + [ + "Small Case", + "OpenRobotics" + ], + [ + "Chelsea_lo_fl_rdheel_zAQrnhlEfw8", + "GoogleResearch" + ], + [ + "DRC Practice: 4x4x40 Lumber", + "OpenRobotics" + ], + [ + "Urban Straight Door Right Flipped", + "OpenRobotics" + ], + [ + "Moon base dome", + "OpenRobotics" + ], + [ + "Urban Wall Debris", + "OpenRobotics" + ], + [ + "Womens_Suede_Bahama_in_Graphite_Suede_p1KUwoWbw7R", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Container_GP16AMOCHA", + "GoogleResearch" + ], + [ + "Android_Lego", + "GoogleResearch" + ], + [ + "Rough Tunnel Tile 90-degree Turn Lights", + "OpenRobotics" + ], + [ + "drc_practice_wheel_valve_large", + "OpenRobotics" + ], + [ + "Canon_Pixma_Ink_Cartridge_251_M", + "GoogleResearch" + ], + [ + "Mens_ASV_Billfish_Boat_Shoe_in_Tan_Leather_wmUJ5PbwANc", + "GoogleResearch" + ], + [ + "Omnicopter", + "PX4" + ], + [ + "Dell_Ink_Cartridge_Yellow_31", + "GoogleResearch" + ], + [ + "Canon_Pixma_Ink_Cartridge_8_Red", + "GoogleResearch" + ], + [ + "Cricket ball", + "OpenRobotics" + ], + [ + "COAST_GUARD_BOAT", + "GoogleResearch" + ], + [ + "RoboCup 2014 SPL Field", + "OpenRobotics" + ], + [ + "TABLEWARE_SET_5ww1UFLuCJG", + "GoogleResearch" + ], + [ + "Olive_Kids_Birdie_Munch_n_Lunch", + "GoogleResearch" + ], + [ + "CGMClassic", + "OpenRobotics" + ], + [ + "NIOSH EX Course Section 04", + "OpenRobotics" + ], + [ + "indy7", + "pmh5050" + ], + [ + "aws_robomaker_warehouse_ClutteringC_01", + "OpenRobotics" + ], + [ + "Urban Cave Transition", + "OpenRobotics" + ], + [ + "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_7", + "OpenRobotics" + ], + [ + "AirportSign2", + "OpenRobotics" + ], + [ + "Exit sign", + "OpenRobotics" + ], + [ + "Tunnel Tile 3 Lights", + "OpenRobotics" + ], + [ + "Double pendulum with base", + "OpenRobotics" + ], + [ + "R32 Subway Car", + "OpenRobotics" + ], + [ + "Depot", + "OpenRobotics" + ], + [ + "Ecoforms_Cup_B4_SAN", + "GoogleResearch" + ], + [ + "SimpleSpider", + "yjphhw" + ], + [ + "Ocean Rock 07", + "Cole" + ], + [ + "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_3", + "OpenRobotics" + ], + [ + "Epson_Ink_Cartridge_126_Yellow", + "GoogleResearch" + ], + [ + "Urban Cave Transition Lights", + "OpenRobotics" + ], + [ + "Simple Gripper", + "OpenRobotics" + ], + [ + "FRC 2016 Portcullis", + "OpenRobotics" + ], + [ + "window_curtains 1", + "sebbyjp" + ], + [ + "Jenolan Section 01", + "nate" + ], + [ + "OceanFloorShipwreck", + "OpenRobotics" + ], + [ + "BATHROOM_CLASSIC", + "GoogleResearch" + ], + [ + "Reebok_CL_RAYEN", + "GoogleResearch" + ], + [ + "MODERN_DOLL_FAMILY", + "GoogleResearch" + ], + [ + "CREATIVE_BLOCKS_35_MM", + "GoogleResearch" + ], + [ + "panda", + "josem11200" + ], + [ + "Sony_Downloadable_Loops", + "GoogleResearch" + ], + [ + "X3 UAV Config 4", + "azeey" + ], + [ + "Spritz_Easter_Basket_Plastic_Teal", + "GoogleResearch" + ], + [ + "part_e6e076b1fc46986168a8c115490cec54", + "miniaevnikita" + ], + [ + "Squirt_Strain_Fruit_Basket", + "GoogleResearch" + ], + [ + "LEGO_Creationary_Game_ZJa163wlWp2", + "GoogleResearch" + ], + [ + "Office_Depot_HP_920XL_920_High_Yield_Black_and_Standard_CMY_Color_Ink_Cartridges", + "GoogleResearch" + ], + [ + "Urban Service Room", + "OpenRobotics" + ], + [ + "MR-Buggy3", + "Krlmeigen" + ], + [ + "X3 UAV Config 4", + "OpenRobotics" + ], + [ + "Cave 4 Way 01 Type A", + "OpenRobotics" + ], + [ + "Asus Xtion Pro Depth Camera", + "OpenRobotics" + ], + [ + "FoodCourtBarricade", + "OpenRobotics" + ], + [ + "Cloverleaf Interchange", + "OpenRobotics" + ], + [ + "Samoa_onepiece", + "GoogleResearch" + ], + [ + "Marc_Anthony_True_Professional_Strictly_Curls_Curl_Defining_Lotion", + "GoogleResearch" + ], + [ + "DigitalKiosk", + "OpenRobotics" + ], + [ + "X2 Config 1", + "azeey" + ], + [ + "Water tower", + "OpenRobotics" + ], + [ + "NIOSH SR Course Section 09", + "OpenRobotics" + ], + [ + "Reebok_R_CROSSFIT_OLY_UFORM", + "GoogleResearch" + ], + [ + "ur5_rg2", + "AndrejOrsula" + ], + [ + "Master Chef Can", + "mallofrench" + ], + [ + "Reebok_DMX_MAX_PLUS_RAINWALKER", + "GoogleResearch" + ], + [ + "Office Building", + "OpenRobotics" + ], + [ + "BEDROOM_CLASSIC_Gi22DjScTVS", + "GoogleResearch" + ], + [ + "Weisshai_Great_White_Shark", + "miki" + ], + [ + "SpiderMan_Titan_Hero_12Inch_Action_Figure_5Hnn4mtkFsP", + "GoogleResearch" + ], + [ + "DRC Practice: Hand wheel valve wall", + "OpenRobotics" + ], + [ + "Wooden Peg", + "OpenRobotics" + ], + [ + "X1 UGV", + "OpenRobotics" + ], + [ + "Universal Straight 10", + "OpenRobotics" + ], + [ + "Tag_Dishtowel_18_x_26", + "GoogleResearch" + ], + [ + "edgar", + "OpenRobotics" + ], + [ + "Warehouse", + "MovAi" + ], + [ + "MiniSofa", + "OpenRobotics" + ], + [ + "Collapsed Fire Station", + "OpenRobotics" + ], + [ + "Textured Shapes", + "OpenRobotics" + ], + [ + "TZX_Runner", + "GoogleResearch" + ], + [ + "Urban Straight Door Right Extension", + "OpenRobotics" + ], + [ + "Urban Station", + "OpenRobotics" + ], + [ + "Squirrel", + "GoogleResearch" + ], + [ + "Azure_Snake_Tieks_Leather_Snake_Print_Ballet_Flats", + "GoogleResearch" + ], + [ + "Tag_Dishtowel_Basket_Weave_Red_18_x_26", + "GoogleResearch" + ], + [ + "yosemite", + "OpenRobotics" + ], + [ + "Juniper Tree", + "shrijitsingh99" + ], + [ + "Moon base fan blade", + "OpenRobotics" + ], + [ + "smoke_generator", + "caguero" + ], + [ + "Cave Corner 01 Lights Type B", + "OpenRobotics" + ], + [ + "Crayola_Washable_Sidewalk_Chalk_16_pack", + "GoogleResearch" + ], + [ + "X1 Config 4 Test", + "CarnesT" + ], + [ + "CORO_CRYSTAL_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Schleich_Therizinosaurus_ln9cruulPqc", + "GoogleResearch" + ], + [ + "In_Green_Company_Surface_Saver_Ring_10_Terra_Cotta", + "GoogleResearch" + ], + [ + "red_ball_10in", + "makerspet" + ], + [ + "X3 UAV Config 2", + "azeey" + ], + [ + "Tory_Burch_Sabe_65mm_Bootie_Split_Suede_in_Caramel", + "GoogleResearch" + ], + [ + "Womens_Hikerfish_Boot_in_Black_Leopard_ridcCWsv8rW", + "GoogleResearch" + ], + [ + "NASA_PERSEVERANCE_SENSOR_CONFIG_1", + "vuthanhcdt" + ], + [ + "Perricone_MD_Health_Weight_Management_Supplements", + "GoogleResearch" + ], + [ + "X3 UAV Config 2", + "OpenRobotics" + ], + [ + "Grreatv_Choice_Dog_Bowl_Gray_Bones_Plastic_20_fl_oz_total", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Container_S24NATURAL", + "GoogleResearch" + ], + [ + "Urban 2 Story Lights", + "OpenRobotics" + ], + [ + "Survivor Female", + "OpenRobotics" + ], + [ + "Nestle_Pure_Life_Exotics_Sparkling_Water_Strawberry_Dragon_Fruit_8_count_12_fl_oz_can", + "GoogleResearch" + ], + [ + "Urban Tunnel Transition 2", + "OpenRobotics" + ], + [ + "explorer_r3_sensor_config_2", + "OpenRobotics" + ], + [ + "MARBLE_HD2_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "Reebok_TRIPLE_BREAK_LITE", + "GoogleResearch" + ], + [ + "Cave Straight Lights Type A", + "OpenRobotics" + ], + [ + "Threshold_Bistro_Ceramic_Dinner_Plate_Ruby_Ring", + "zengchong2003" + ], + [ + "Cafe", + "OpenRobotics" + ], + [ + "PlanarLidar360", + "iche033" + ], + [ + "post", + "OpenRobotics" + ], + [ + "part_8c3a0c4094f4357b7f54c3eeb5baf080", + "miniaevnikita" + ], + [ + "JanSport Backpack Red", + "chapulina" + ], + [ + "nathan_benderson_park", + "OpenRobotics" + ], + [ + "Top_Paw_Dog_Bow_Bone_Ceramic_13_fl_oz_total", + "GoogleResearch" + ], + [ + "mb_marker_buoy_green", + "OpenRobotics" + ], + [ + "Dell_Ink_Cartridge", + "GoogleResearch" + ], + [ + "Unexploded Ordnance A", + "quarkytale" + ], + [ + "PatientFSit", + "OpenRobotics" + ], + [ + "FreezerComp", + "OpenRobotics" + ], + [ + "toilet_paper", + "LeDSantos" + ], + [ + "Air_Hogs_Wind_Flyers_Set_Airplane_Red", + "GoogleResearch" + ], + [ + "Fortress island", + "OpenRobotics" + ], + [ + "NASA_PRESERVERANCE_SENSOR_CONFIG_1", + "anastasa" + ], + [ + "ref", + "astroavery" + ], + [ + "Small Dry Bag", + "OpenRobotics" + ], + [ + "Gazebo flag", + "OpenRobotics" + ], + [ + "Lidar 2d v2", + "nate" + ], + [ + "Tunnel Tile 2", + "iche033" + ], + [ + "Cave Vertical Shaft Straight Top Type A", + "OpenRobotics" + ], + [ + "Depot", + "mustafaxfe" + ], + [ + "Reebok_COMFORT_REEFRESH_FLIP", + "GoogleResearch" + ], + [ + "door_08x2m", + "sebbyjp" + ], + [ + "Lake House", + "OpenRobotics" + ], + [ + "Bookshelf", + "OpenRobotics" + ], + [ + "SLACK_CRUISER", + "GoogleResearch" + ], + [ + "block_angle_base", + "OpenRobotics" + ], + [ + "Ecoforms_Plant_Container_FB6_Tur", + "GoogleResearch" + ], + [ + "FRUIT_VEGGIE_DOMINO_GRADIENT", + "GoogleResearch" + ], + [ + "Cave Straight 05 Type B", + "OpenRobotics" + ], + [ + "Santa_Cruz_Mens", + "GoogleResearch" + ], + [ + "Cave Straight 02 Lights", + "OpenRobotics" + ], + [ + "Table", + "malbonico" + ], + [ + "Cave Tile 4", + "OpenRobotics" + ], + [ + "FRC Field 2015", + "OpenRobotics" + ], + [ + "Cave Tile 1", + "OpenRobotics" + ], + [ + "PureConnect_2_Color_FernNightlifeSilverBlack_Size_70_5w0BYsiogeV", + "GoogleResearch" + ], + [ + "lunar_rock5", + "AndrejOrsula" + ], + [ + "Ground Plane", + "OpenRobotics" + ], + [ + "robotics_gym", + "L4rralde" + ], + [ + "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_5", + "OpenRobotics" + ], + [ + "Cave Corner 30 D Lights", + "OpenRobotics" + ], + [ + "Office_Depot_HP_75_Remanufactured_Ink_Cartridge_TriColor", + "GoogleResearch" + ], + [ + "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_8", + "OpenRobotics" + ], + [ + "Schleich_Spinosaurus_Action_Figure", + "GoogleResearch" + ], + [ + "ROBOTIKA_X2_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "x500 model for test", + "matllama" + ], + [ + "Mailbox", + "OpenRobotics" + ], + [ + "x500-Base", + "abmohit" + ], + [ + "Duct", + "nate" + ], + [ + "Threshold_Textured_Damask_Bath_Towel_Pink", + "GoogleResearch" + ], + [ + "AdjTable", + "OpenRobotics" + ], + [ + "Cave U Turn 01 Type A", + "OpenRobotics" + ], + [ + "BUNNY_RACER", + "GoogleResearch" + ], + [ + "Nescafe_Momento_Mocha_Specialty_Coffee_Mix_8_ct", + "GoogleResearch" + ], + [ + "X4 UAV Config 1", + "OpenRoboticsTest" + ], + [ + "GEOMETRIC_SORTING_BOARD_MNi4Rbuz9vj", + "GoogleResearch" + ], + [ + "UGG_Bailey_Bow_Womens_Clogs_Black_7", + "GoogleResearch" + ], + [ + "Coast Waves", + "OpenRobotics" + ], + [ + "sample_bot", + "atulchaudhari" + ], + [ + "RMF_Materials", + "OpenRobotics" + ], + [ + "MPL right forearm", + "OpenRobotics" + ], + [ + "Dust Emitter Dense", + "OpenRobotics" + ], + [ + "Fence_v2", + "kevinhalim9" + ], + [ + "NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY", + "ikrar" + ], + [ + "Mars Rover", + "OpenRobotics" + ], + [ + "Persona_Q_Shadow_of_the_Labyrinth_Nintendo_3DS", + "GoogleResearch" + ], + [ + "Boxes", + "kevinhalim9" + ], + [ + "Walking person", + "OpenRobotics" + ], + [ + "Cave 3 Way 01 Type A", + "OpenRobotics" + ], + [ + "Double pendulum with base", + "scpeters" + ], + [ + "Car Wheel", + "OpenRobotics" + ], + [ + "CHICKEN_NESTING", + "GoogleResearch" + ], + [ + "DPC_Handmade_Hat_Brown", + "GoogleResearch" + ], + [ + "Extinguisher PBR", + "chapulina" + ], + [ + "Animal_Crossing_New_Leaf_Nintendo_3DS_Game", + "GoogleResearch" + ], + [ + "Hasbro_Dont_Wake_Daddy_Board_Game_NJnjGna4u1a", + "GoogleResearch" + ], + [ + "Asus_Z97IPLUS_Motherboard_Mini_ITX_LGA1150_Socket", + "GoogleResearch" + ], + [ + "MY_MOOD_MEMO", + "GoogleResearch" + ], + [ + "Metal peg board", + "OpenRobotics" + ], + [ + "tv_65in", + "makerspet" + ], + [ + "Universal Straight 5", + "OpenRobotics" + ], + [ + "Mens_Gold_Cup_ASV_2Eye_Boat_Shoe_in_Cognac_Leather", + "GoogleResearch" + ], + [ + "Room_Essentials_Mug_White_Yellow", + "GoogleResearch" + ], + [ + "Cave Cavern Split 01 Type B", + "OpenRobotics" + ], + [ + "Lego_Friends_Advent_Calendar", + "GoogleResearch" + ], + [ + "NIOSH EX Course Section 01", + "OpenRobotics" + ], + [ + "CASTLE_BLOCKS", + "GoogleResearch" + ], + [ + "Perricone_MD_Vitamin_C_Ester_15", + "GoogleResearch" + ], + [ + "simple_cylinder_2m_radius", + "mohrad" + ], + [ + "Mens_Santa_Cruz_Thong_in_Tan_r59C69daRPh", + "GoogleResearch" + ], + [ + "Phone", + "nate" + ], + [ + "Perricoen_MD_No_Concealer_Concealer", + "GoogleResearch" + ], + [ + "DRC Practice: Yellow parking block", + "OpenRobotics" + ], + [ + "Vessel A", + "OpenRobotics" + ], + [ + "RecTable", + "OpenRobotics" + ], + [ + "Robotika_Kloubak_Sensor_Config_2", + "OpenRobotics" + ], + [ + "DRC Practice: Ladder", + "OpenRobotics" + ], + [ + "Gimbal Small 2D", + "OpenRobotics" + ], + [ + "OakD-Lite", + "RudisLaboratories" + ], + [ + "SAMe_200", + "GoogleResearch" + ], + [ + "Ecoforms_Pot_Nova_6_Turquoise", + "GoogleResearch" + ], + [ + "shelf_big", + "ctrazziwp" + ], + [ + "Womens_Bluefish_2Eye_Boat_Shoe_in_White_Tumbled_YG44xIePRHw", + "GoogleResearch" + ], + [ + "Frankencave 05", + "OpenRobotics" + ], + [ + "Ecoforms_Plant_Container_SB9Turquoise", + "GoogleResearch" + ], + [ + "WhiteChipChair", + "OpenRobotics" + ], + [ + "Seagate_3TB_Central_shared_storage", + "GoogleResearch" + ], + [ + "OfficeChairBlack", + "OpenRobotics" + ], + [ + "Rubicon", + "Hyundai" + ], + [ + "Big_O_Sponges_Assorted_Cellulose_12_pack", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Container_B4_Har", + "GoogleResearch" + ], + [ + "RMF_Materials", + "Luca" + ], + [ + "naked tomato plant", + "omermaayany" + ], + [ + "LEGO_City_Advent_Calendar", + "GoogleResearch" + ], + [ + "Cave Straight 02 Type B", + "OpenRobotics" + ], + [ + "House 2", + "OpenRobotics" + ], + [ + "ASICS_GELDirt_Dog_4_SunFlameBlack", + "GoogleResearch" + ], + [ + "Ravenna_4_Color_WhtOlyBluBlkShkOrngSlvRdO_Size_70", + "GoogleResearch" + ], + [ + "Perricone_MD_The_Power_Treatments", + "GoogleResearch" + ], + [ + "NIOSH SR Course Section 05", + "OpenRobotics" + ], + [ + "FRC 2016 Rockwall", + "OpenRobotics" + ], + [ + "Edgar Mine Virtual STIX 7", + "OpenRobotics" + ], + [ + "mt-wilder DEM", + "khaledgabr" + ], + [ + "Canon_Ink_Cartridge_Green_6", + "GoogleResearch" + ], + [ + "mcmillan_airfield", + "OpenRobotics" + ], + [ + "Bottle", + "arichibi" + ], + [ + "FreezerCondenser", + "OpenRobotics" + ], + [ + "Ladder 60 Degrees 1 Handrails", + "OpenRobotics" + ], + [ + "DIM_CDG", + "GoogleResearch" + ], + [ + "Tugbot", + "MovAi" + ], + [ + "iscas_museum", + "OpenRobotics" + ], + [ + "COSTAR_SHAFTER_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "mp_400", + "OpenRobotics" + ], + [ + "Santa_Cruz_Mens_YmsMDkFf11Z", + "GoogleResearch" + ], + [ + "X2 Config 8", + "OpenRobotics" + ], + [ + "Guardians_of_the_Galaxy_Galactic_Battlers_Rocket_Raccoon_Figure", + "GoogleResearch" + ], + [ + "rc_cessna", + "PX4" + ], + [ + "Timberland_Mens_Earthkeepers_Stormbuck_Lite_Plain_Toe_Oxford", + "GoogleResearch" + ], + [ + "Urban Service Room Centered", + "OpenRobotics" + ], + [ + "Cave Straight 02", + "OpenRobotics" + ], + [ + "Cole_Hardware_Mini_Honey_Dipper", + "GoogleResearch" + ], + [ + "Calibration Plane", + "OpenRobotics" + ], + [ + "Base Station", + "OpenRobotics" + ], + [ + "Tunnel Tile 1 Lights", + "OpenRobotics" + ], + [ + "Tunnel Tile 4 Lights", + "OpenRobotics" + ], + [ + "Cardboard Box", + "german" + ], + [ + "Clue_Board_Game_Classic_Edition", + "GoogleResearch" + ], + [ + "EMESENT_HOVERMAP_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Hardhat Ribbed", + "quarkytale" + ], + [ + "CITY_TAXI_POLICE_CAR", + "GoogleResearch" + ], + [ + "Ecoforms_Plant_Container_Quadra_Sand_QP6", + "GoogleResearch" + ], + [ + "Urban 2 Story Large Side 1", + "OpenRobotics" + ], + [ + "Focus_8643_Lime_Squeezer_10x35x188_Enamelled_Aluminum_Light", + "GoogleResearch" + ], + [ + "Cave 3 Way Elevation 01 Type A", + "OpenRobotics" + ], + [ + "Moon DEM", + "OpenRobotics" + ], + [ + "UGG_Cambridge_Womens_Black_7", + "GoogleResearch" + ], + [ + "Cole_Hardware_Mug_Classic_Blue", + "GoogleResearch" + ], + [ + "CTU_CRAS_NORLAB_SPOT_SENSOR_CONFIG_1", + "OpenRobotics" + ], + [ + "Fire truck", + "OpenRobotics" + ], + [ + "Intel RealSense R200", + "OpenRobotics" + ], + [ + "NIOSH EX Course Section 05", + "OpenRobotics" + ], + [ + "aws_robomaker_warehouse_ShelfF_01", + "OpenRobotics" + ], + [ + "MR-Buggy3", + "xorwise" + ], + [ + "Grand_Prix", + "GoogleResearch" + ], + [ + "Cave Straight 05 Lights Type B", + "OpenRobotics" + ], + [ + "actor_moonwalk", + "Mingfei" + ], + [ + "Nordic_Ware_Original_Bundt_Pan", + "GoogleResearch" + ], + [ + "Wide hinged door", + "OpenRobotics" + ], + [ + "Urban Cave Transition 2", + "OpenRobotics" + ], + [ + "Don_Franciscos_Gourmet_Coffee_Medium_Decaf_100_Colombian_12_oz_340_g", + "GoogleResearch" + ], + [ + "Bowl", + "OpenRobotics" + ], + [ + "Office_Depot_HP_71_Remanufactured_Ink_Cartridge_Black", + "GoogleResearch" + ], + [ + "Pulley Part", + "OpenRobotics" + ], + [ + "Cinder Block 2", + "OpenRobotics" + ], + [ + "Womens_Hikerfish_Boot_in_Black_Leopard_bVSNY1Le1sm", + "GoogleResearch" + ], + [ + "Cole_Hardware_Flower_Pot_1025", + "GoogleResearch" + ], + [ + "MopCart2", + "OpenRobotics" + ], + [ + "Gas Station", + "OpenRobotics" + ], + [ + "Big_Dot_Pink_Pencil_Case", + "GoogleResearch" + ], + [ + "aws_robomaker_warehouse_PalletJackB_01", + "ctrazziwp" + ], + [ + "Beta_Glucan", + "GoogleResearch" + ], + [ + "Cave Starting Area", + "OpenRobotics" + ], + [ + "Lionfish", + "Cole" + ], + [ + "Organic_Whey_Protein_Unflavored", + "GoogleResearch" + ], + [ + "Scrubber", + "OpenRobotics" + ], + [ + "LaRShelf", + "ielson" + ], + [ + "International Space Station", + "OpenRobotics" + ], + [ + "Iris with Standoffs and Camera LiftDrag ArduCopter Plugins", + "OpenRobotics" + ], + [ + "Potted Meat Can", + "Gambit" + ], + [ + "Womens_Multi_13", + "GoogleResearch" + ], + [ + "Logitech_Ultimate_Ears_Boom_Wireless_Speaker_Night_Black", + "GoogleResearch" + ], + [ + "Germanium_GE132", + "GoogleResearch" + ], + [ + "Drawer", + "OpenRobotics" + ], + [ + "Kelp 03", + "Cole" + ], + [ + "Dino_4", + "GoogleResearch" + ], + [ + "Ecoforms_Planter_Pot_GP12AAvocado", + "GoogleResearch" + ], + [ + "Extinguisher", + "nate" + ], + [ + "Ecoforms_Plant_Container_12_Pot_Nova", + "GoogleResearch" + ], + [ + "Number6", + "OpenRobotics" + ], + [ + "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_2", + "OpenRobotics" + ], + [ + "Walking actor", + "deepakmaurya" + ], + [ + "Schleich_Hereford_Bull", + "GoogleResearch" + ], + [ + "Final_Fantasy_XIV_A_Realm_Reborn_60Day_Subscription", + "GoogleResearch" + ], + [ + "Lidar 2d v2", + "abmohit" + ], + [ + "Metallic_Gold_Tieks_Italian_Leather_Ballet_Flats", + "GoogleResearch" + ], + [ + "Twinlab_Nitric_Fuel", + "GoogleResearch" + ], + [ + "QHPomegranate", + "GoogleResearch" + ], + [ + "EscalatorEnd", + "OpenRobotics" + ], + [ + "Lidar 3d v1", + "nate" + ] + ], + "fuel_cache": [ + { + "createdAt": "2024-03-31T10:11:39Z", + "updatedAt": "2024-04-03T17:16:38Z", + "name": "Simple Arm", + "owner": "onieth", + "description": "A simple SCARA arm.", + "likes": 0, + "downloads": 32, + "filesize": 19880, + "upload_date": "2024-03-31T10:11:37Z", + "modify_date": "2024-03-31T10:11:37Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/onieth/models/Simple%20Arm/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2024-03-26T07:31:16Z", + "updatedAt": "2024-04-03T14:57:21Z", + "name": "IEEE Maze", + "owner": "ksommerk", + "description": "", + "likes": 0, + "downloads": 56, + "filesize": 942880, + "upload_date": "2024-03-26T07:31:13Z", + "modify_date": "2024-03-26T07:48:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-03-25T02:34:32Z", + "updatedAt": "2024-03-25T02:34:32Z", + "name": "ur5_rg2", + "owner": "anni", + "description": "Universal Robot 5 (UR5) robot with OnRobot RG2 gripper.\n\nMore information on [GitHub](https://github.com/AndrejOrsula/ur5_rg2_ign).", + "likes": 0, + "downloads": 0, + "filesize": 2548812, + "upload_date": "2024-03-25T02:34:28Z", + "modify_date": "2024-03-25T02:34:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/anni/models/ur5_rg2/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2024-03-25T02:34:28Z", + "updatedAt": "2024-04-03T21:15:59Z", + "name": "ur5_rg2", + "owner": "anni", + "description": "Universal Robot 5 (UR5) robot with OnRobot RG2 gripper.\n\nMore information on [GitHub](https://github.com/AndrejOrsula/ur5_rg2_ign).", + "likes": 0, + "downloads": 72, + "filesize": 2548812, + "upload_date": "2024-03-25T02:34:23Z", + "modify_date": "2024-03-25T02:34:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/anni/models/ur5_rg2/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2024-03-17T18:33:54Z", + "updatedAt": "2024-04-03T05:29:16Z", + "name": "Lidar_2d_v2", + "owner": "slim71", + "description": "This is just a copy of the [OpenRobotics model](https://app.gazebosim.org/OpenRobotics/fuel/models/Lidar%202d%20v2).\r\nI needed to modify this model's *.dae* file in order to resolve a Gazebo import error.", + "likes": 0, + "downloads": 102, + "filesize": 257365, + "upload_date": "2024-03-17T18:33:52Z", + "modify_date": "2024-03-17T18:33:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/slim71/models/Lidar_2d_v2/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "lidar", + "2d" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2024-03-15T10:58:57Z", + "updatedAt": "2024-04-03T11:02:49Z", + "name": "CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_1", + "owner": "almuni", + "description": "Team CTU-CRAS-NORLAB's Husky robot for SubT.", + "likes": 0, + "downloads": 146, + "filesize": 5412238, + "upload_date": "2024-03-15T10:58:52Z", + "modify_date": "2024-03-15T10:58:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/almuni/models/CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2024-03-13T00:44:26Z", + "updatedAt": "2024-03-31T11:29:31Z", + "name": "Cordless Drill Simplified", + "owner": "iche033", + "description": "Cordless drill with simplified mesh collision", + "likes": 0, + "downloads": 47, + "filesize": 2019062, + "upload_date": "2024-03-13T00:44:23Z", + "modify_date": "2024-03-25T23:02:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/iche033/models/Cordless%20Drill%20Simplified/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2024-03-12T19:34:45Z", + "updatedAt": "2024-04-02T10:28:44Z", + "name": "panda", + "owner": "josem11200", + "description": "Franka Emika Panda 7 axes robot arm.\n\nMore information on [GitHub](https://github.com/AndrejOrsula/panda_ign).", + "likes": 0, + "downloads": 74, + "filesize": 4278593, + "upload_date": "2024-03-12T19:34:40Z", + "modify_date": "2024-03-12T19:34:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/josem11200/models/panda/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2024-03-12T03:28:51Z", + "updatedAt": "2024-04-03T08:22:27Z", + "name": "CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_1", + "owner": "hokaixian", + "description": "Team CTU-CRAS-NORLAB's Husky robot for SubT.", + "likes": 0, + "downloads": 75, + "filesize": 5412238, + "upload_date": "2024-03-12T03:28:46Z", + "modify_date": "2024-03-12T03:28:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/hokaixian/models/CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2024-03-12T02:36:49Z", + "updatedAt": "2024-04-02T11:33:30Z", + "name": "Maze2", + "owner": "ksommerk", + "description": "", + "likes": 0, + "downloads": 53, + "filesize": 3121643, + "upload_date": "2024-03-12T02:36:45Z", + "modify_date": "2024-03-12T03:11:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-03-08T16:01:06Z", + "updatedAt": "2024-04-04T05:55:42Z", + "name": "Moon DEM", + "owner": "anastasa", + "description": "Earth's moon", + "likes": 0, + "downloads": 71, + "filesize": 27958432, + "upload_date": "2024-03-08T16:01:01Z", + "modify_date": "2024-03-08T16:01:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/anastasa/models/Moon%20DEM/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "heightmap", + "dem", + "moon" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2024-03-08T15:59:23Z", + "updatedAt": "2024-04-03T04:00:13Z", + "name": "NASA_PRESERVERANCE_SENSOR_CONFIG_1", + "owner": "anastasa", + "description": "A very simplistic model of NASA's Preserverance rover. It has no sensors (except a randomly placed IMU), but it has working wheels. Inertias may also be very off.\r\n\r\nAccording to https://nasa3d.arc.nasa.gov/ the assets are without a copyright.", + "likes": 0, + "downloads": 66, + "filesize": 10356217, + "upload_date": "2024-03-08T15:59:18Z", + "modify_date": "2024-03-08T15:59:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/anastasa/models/NASA_PRESERVERANCE_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "ugv", + "nasa", + "rover", + "preserverance", + "space", + "mars" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2024-03-07T21:28:06Z", + "updatedAt": "2024-04-03T06:41:50Z", + "name": "Parrot Bebop 2", + "owner": "ibalog", + "description": "A model of the Parrot Bebop 2 drone.", + "likes": 0, + "downloads": 118, + "filesize": 923390, + "upload_date": "2024-03-07T21:28:03Z", + "modify_date": "2024-03-07T21:28:03Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/ibalog/models/Parrot%20Bebop%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2024-02-29T11:47:01Z", + "updatedAt": "2024-04-03T11:51:35Z", + "name": "MARBLE_HD2_VISUALS_ONLY", + "owner": "nekalvi", + "description": "Visual elements of Team Marble's HD2 robot for the SubT Challenge.", + "likes": 1, + "downloads": 189, + "filesize": 2207823, + "upload_date": "2024-02-29T11:46:58Z", + "modify_date": "2024-02-29T11:46:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nekalvi/models/MARBLE_HD2_VISUALS_ONLY/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ] + }, + { + "createdAt": "2024-02-27T15:03:25Z", + "updatedAt": "2024-04-04T01:55:04Z", + "name": "Sofa", + "owner": "sebbyjp", + "description": "A grey comfortable sofa", + "likes": 1, + "downloads": 425, + "filesize": 1311028, + "upload_date": "2024-02-27T15:03:23Z", + "modify_date": "2024-02-27T15:03:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/sebbyjp/models/Sofa/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "sofa" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2024-02-27T15:02:10Z", + "updatedAt": "2024-03-28T21:47:26Z", + "name": "door_08x2m", + "owner": "sebbyjp", + "description": "A simple fake flat white door 80cm by 2m, 10cm thick", + "likes": 0, + "downloads": 24, + "filesize": 4641, + "upload_date": "2024-02-27T15:02:09Z", + "modify_date": "2024-02-27T15:02:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/sebbyjp/models/door_08x2m/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "door" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2024-02-27T15:01:58Z", + "updatedAt": "2024-03-21T21:52:14Z", + "name": "tv_65in", + "owner": "sebbyjp", + "description": "A simple 65-inch wall-mount TV", + "likes": 0, + "downloads": 25, + "filesize": 2836, + "upload_date": "2024-02-27T15:01:56Z", + "modify_date": "2024-02-27T15:01:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/sebbyjp/models/tv_65in/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "TV" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2024-02-27T15:01:33Z", + "updatedAt": "2024-03-21T22:03:30Z", + "name": "window_curtains 1", + "owner": "sebbyjp", + "description": "A simple bright (emissive) window with see-through half-drawn curtains, 2m by 1.57m, 2cm thick", + "likes": 0, + "downloads": 9, + "filesize": 542844, + "upload_date": "2024-02-27T15:01:31Z", + "modify_date": "2024-02-27T15:01:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/sebbyjp/models/window_curtains%201/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "window", + "curtains" + ], + "categories": [ + "Architecture", + "Furniture and Home" + ] + }, + { + "createdAt": "2024-02-27T14:59:51Z", + "updatedAt": "2024-03-25T12:57:36Z", + "name": "tv_65in_emissive", + "owner": "sebbyjp", + "description": "A bright powered-on (emissive) 65-inch wall-mount TV\r\nImage credit CSITDMS at Pixabay", + "likes": 0, + "downloads": 21, + "filesize": 149671, + "upload_date": "2024-02-27T14:59:49Z", + "modify_date": "2024-02-27T14:59:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/sebbyjp/models/tv_65in_emissive/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "TV", + "television", + "maldives", + "beach" + ], + "categories": [ + "Electronics", + "Appliance" + ] + }, + { + "createdAt": "2024-02-27T14:59:31Z", + "updatedAt": "2024-03-28T13:55:08Z", + "name": "window_curtains", + "owner": "sebbyjp", + "description": "A simple bright (emissive) window with see-through half-drawn curtains, 2m by 1.57m, 2cm thick", + "likes": 0, + "downloads": 10, + "filesize": 542844, + "upload_date": "2024-02-27T14:59:30Z", + "modify_date": "2024-02-27T14:59:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/sebbyjp/models/window_curtains/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "window", + "curtains" + ], + "categories": [ + "Architecture", + "Furniture and Home" + ] + }, + { + "createdAt": "2024-02-27T14:59:01Z", + "updatedAt": "2024-03-24T20:23:00Z", + "name": "rug_ivory_2m", + "owner": "sebbyjp", + "description": "A simple ivory-textured floor rug for a living room, 1.6m by 2m, 5mm thick", + "likes": 0, + "downloads": 24, + "filesize": 968590, + "upload_date": "2024-02-27T14:59:00Z", + "modify_date": "2024-02-27T14:59:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/sebbyjp/models/rug_ivory_2m/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "room", + "rug", + "floor", + "living" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2024-02-27T14:54:34Z", + "updatedAt": "2024-03-29T11:32:33Z", + "name": "room_wall_2x5m", + "owner": "sebbyjp", + "description": "A simple drywall-textured room wall, 2m by 5m, 10cm thick.\r\nImage credit bedneyimages at Freepik", + "likes": 0, + "downloads": 25, + "filesize": 97858, + "upload_date": "2024-02-27T14:54:33Z", + "modify_date": "2024-02-27T14:54:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/sebbyjp/models/room_wall_2x5m/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "room", + "wall", + "drywall" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2024-02-27T06:51:21Z", + "updatedAt": "2024-04-01T04:29:04Z", + "name": "CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_1", + "owner": "91G69", + "description": "Team CTU-CRAS-NORLAB's Husky robot for SubT.", + "likes": 0, + "downloads": 111, + "filesize": 5412238, + "upload_date": "2024-02-27T06:51:16Z", + "modify_date": "2024-02-27T06:51:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/91G69/models/CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2024-02-25T15:32:40Z", + "updatedAt": "2024-04-02T09:48:04Z", + "name": "Boxes", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 52, + "filesize": 1967, + "upload_date": "2024-02-25T15:32:39Z", + "modify_date": "2024-02-25T15:32:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-02-23T14:33:31Z", + "updatedAt": "2024-04-02T11:35:10Z", + "name": "lawnmower", + "owner": "PX4", + "description": "This is a model of a full scale gas-powered zero-turn lawn mower (HUSQVARNA Z254F)", + "likes": 0, + "downloads": 94, + "filesize": 226065, + "upload_date": "2024-02-23T14:33:30Z", + "modify_date": "2024-02-23T14:33:30Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-02-22T16:05:45Z", + "updatedAt": "2024-04-02T11:35:38Z", + "name": "x500_base", + "owner": "PX4", + "description": "Model of the NXP HoverGames Drone development kit (KIT-HGDRONEK66). The PX4 software compatible kit provides mechanical, RC remote and other components needed to evaluate the RDDRONE-FMUK66 reference design. The FMU includes 100Base-T1 Automotive Ethernet, dual CAN transceivers, as well as SE050 secure element, and works with add on boards NavQPlus, MR-T1ETH8, MR-T1ADAPT, and CAN-nodes such as UCANS32K1SIC. Kit may be used with, and contains the components needed for the HoverGames.com coding challenges.", + "likes": 0, + "downloads": 274, + "filesize": 9353433, + "upload_date": "2024-02-22T16:05:39Z", + "modify_date": "2024-02-22T16:05:39Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/PX4/models/x500_base/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2024-02-22T16:05:35Z", + "updatedAt": "2024-04-02T17:41:39Z", + "name": "rc_cessna", + "owner": "PX4", + "description": "This is a model of an RC Cessna 182.", + "likes": 0, + "downloads": 32, + "filesize": 421847, + "upload_date": "2024-02-22T16:05:33Z", + "modify_date": "2024-02-22T16:05:33Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-02-22T16:05:31Z", + "updatedAt": "2024-03-25T11:58:43Z", + "name": "r1_rover", + "owner": "PX4", + "description": "This is a model for the Aion robotics R1 ugv rover. The sdf file is adpated from [aion_io](https://github.com/aionrobotics/aion_io)", + "likes": 0, + "downloads": 48, + "filesize": 365567, + "upload_date": "2024-02-22T16:05:29Z", + "modify_date": "2024-02-22T16:05:29Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-02-22T16:05:26Z", + "updatedAt": "2024-04-02T08:49:33Z", + "name": "Omnicopter", + "owner": "PX4", + "description": "Omnicopter model for over actuated system", + "likes": 0, + "downloads": 56, + "filesize": 695477, + "upload_date": "2024-02-22T16:05:24Z", + "modify_date": "2024-02-22T16:05:24Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/PX4/models/Omnicopter/tip/files/thumbnails/omnicopter.png", + "private": false + }, + { + "createdAt": "2024-02-15T09:48:22Z", + "updatedAt": "2024-04-02T23:31:54Z", + "name": "mt-wilder DEM", + "owner": "khaledgabr", + "description": "Digital Elevation Model (DEM) for mt-wilder.\r\nCheck the map in Gazebo Garden Here: https://youtu.be/wUGmBoh2p8s", + "likes": 0, + "downloads": 67, + "filesize": 7103417, + "upload_date": "2024-02-15T09:48:19Z", + "modify_date": "2024-02-15T11:44:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/khaledgabr/models/mt-wilder%20DEM/tip/files/thumbnails/mt-wilder.png", + "private": false, + "tags": [ + "dem", + "Garden", + "mt-wilder" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2024-02-11T21:46:22Z", + "updatedAt": "2024-04-01T06:06:17Z", + "name": "hatchback_red", + "owner": "Ruth", + "description": "Testing model dependencies, this uses hatchback's wheel texture", + "likes": 1, + "downloads": 148, + "filesize": 670800, + "upload_date": "2024-02-11T21:46:20Z", + "modify_date": "2024-02-11T21:46:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Ruth/models/hatchback_red/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2024-02-09T21:10:04Z", + "updatedAt": "2024-04-01T17:46:22Z", + "name": "ROBOTIKA_KLOUBAK_VISUALS_ONLY", + "owner": "Ruth", + "description": "Visual elements for Robotika's Kloubak - articulated robot, symmetric configuration, two planar lidars, two RGB cameras and two depth cameras.", + "likes": 1, + "downloads": 98, + "filesize": 3237129, + "upload_date": "2024-02-09T21:10:01Z", + "modify_date": "2024-02-09T21:10:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Ruth/models/ROBOTIKA_KLOUBAK_VISUALS_ONLY/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ] + }, + { + "createdAt": "2024-02-09T15:34:28Z", + "updatedAt": "2024-04-02T08:45:50Z", + "name": "mono_cam", + "owner": "PX4", + "description": "Very simple monocular camera model", + "likes": 0, + "downloads": 79, + "filesize": 896, + "upload_date": "2024-02-09T15:34:27Z", + "modify_date": "2024-02-09T15:34:27Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-02-07T20:16:12Z", + "updatedAt": "2024-04-01T17:46:29Z", + "name": "Rubicon_Quad", + "owner": "amaldev", + "description": "", + "likes": 0, + "downloads": 141, + "filesize": 187430027, + "upload_date": "2024-02-07T20:15:38Z", + "modify_date": "2024-02-07T20:15:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/amaldev/models/Rubicon_Quad/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2024-02-05T00:41:04Z", + "updatedAt": "2024-04-02T09:49:14Z", + "name": "Fence_v2", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 63, + "filesize": 66858, + "upload_date": "2024-02-05T00:41:03Z", + "modify_date": "2024-02-05T00:41:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-02-04T20:29:16Z", + "updatedAt": "2024-04-01T22:47:13Z", + "name": "upb 12", + "owner": "beronaeron", + "description": "this is low poly model of one of the buildings of UPB it is in medellin, colombia.\r\nand all the law students use to be here.", + "likes": 0, + "downloads": 58, + "filesize": 10505538, + "upload_date": "2024-02-04T20:29:12Z", + "modify_date": "2024-02-04T20:33:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/beronaeron/models/upb%2012/tip/files/thumbnails/b12.png", + "private": false, + "tags": [ + "buldings", + "lowpoly" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2024-02-01T05:18:43Z", + "updatedAt": "2024-04-03T01:31:20Z", + "name": "robotics_gym", + "owner": "L4rralde", + "description": "Simple gym for mobile robots", + "likes": 0, + "downloads": 132, + "filesize": 153138, + "upload_date": "2024-02-01T05:18:41Z", + "modify_date": "2024-02-01T05:56:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/L4rralde/models/robotics_gym/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2024-01-30T12:02:32Z", + "updatedAt": "2024-04-01T17:47:31Z", + "name": "monckey", + "owner": "beronaeron", + "description": "this is a monckey", + "likes": 0, + "downloads": 60, + "filesize": 54720, + "upload_date": "2024-01-30T12:02:29Z", + "modify_date": "2024-02-02T01:04:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "private": false, + "tags": [ + "monckey" + ], + "categories": [ + "Animals" + ] + }, + { + "createdAt": "2024-01-29T03:34:30Z", + "updatedAt": "2024-04-02T09:04:29Z", + "name": "Weisshai_Great_White_Shark", + "owner": "miki", + "description": "Weisshai Great White Shark\nTest", + "likes": 0, + "downloads": 177, + "filesize": 3552329, + "upload_date": "2024-01-29T03:34:27Z", + "modify_date": "2024-01-29T03:34:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/miki/models/Weisshai_Great_White_Shark/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2024-01-25T14:35:24Z", + "updatedAt": "2024-03-28T14:15:57Z", + "name": "Transformer", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 65, + "filesize": 626825, + "upload_date": "2024-01-25T14:35:22Z", + "modify_date": "2024-01-25T14:35:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:34:48Z", + "updatedAt": "2024-03-26T17:48:52Z", + "name": "Security Booth", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 35, + "filesize": 9702, + "upload_date": "2024-01-25T14:34:47Z", + "modify_date": "2024-01-25T14:34:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:34:27Z", + "updatedAt": "2024-04-02T11:19:25Z", + "name": "Parking Area", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 68, + "filesize": 8433, + "upload_date": "2024-01-25T14:34:26Z", + "modify_date": "2024-01-25T14:34:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:33:59Z", + "updatedAt": "2024-03-26T12:02:31Z", + "name": "Gate", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 39, + "filesize": 42592, + "upload_date": "2024-01-25T14:33:58Z", + "modify_date": "2024-01-25T14:33:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:33:20Z", + "updatedAt": "2024-03-26T12:02:35Z", + "name": "Fence", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 26, + "filesize": 116483, + "upload_date": "2024-01-25T14:33:19Z", + "modify_date": "2024-01-25T14:33:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:32:44Z", + "updatedAt": "2024-04-01T17:45:17Z", + "name": "Electrical Wires 2", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 32, + "filesize": 97730, + "upload_date": "2024-01-25T14:32:42Z", + "modify_date": "2024-01-25T14:32:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:32:28Z", + "updatedAt": "2024-03-26T12:02:42Z", + "name": "Electrical Wires 1", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 17, + "filesize": 404428, + "upload_date": "2024-01-25T14:32:26Z", + "modify_date": "2024-01-25T14:32:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:32:02Z", + "updatedAt": "2024-03-26T17:51:25Z", + "name": "Electrical Shack", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 27, + "filesize": 10005, + "upload_date": "2024-01-25T14:32:01Z", + "modify_date": "2024-01-25T14:32:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:31:43Z", + "updatedAt": "2024-04-03T05:57:43Z", + "name": "Electrical Building 2", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 20, + "filesize": 102592, + "upload_date": "2024-01-25T14:31:42Z", + "modify_date": "2024-01-25T14:31:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:31:24Z", + "updatedAt": "2024-03-29T03:10:05Z", + "name": "Electrical Building 1", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 27, + "filesize": 69852, + "upload_date": "2024-01-25T14:31:22Z", + "modify_date": "2024-01-25T14:31:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:30:58Z", + "updatedAt": "2024-03-28T11:13:39Z", + "name": "Electrical Array 8", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 17, + "filesize": 166759, + "upload_date": "2024-01-25T14:30:57Z", + "modify_date": "2024-01-25T14:30:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:30:41Z", + "updatedAt": "2024-04-01T17:45:23Z", + "name": "Electrical Array 7", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 18, + "filesize": 35525, + "upload_date": "2024-01-25T14:30:40Z", + "modify_date": "2024-01-25T14:30:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:30:19Z", + "updatedAt": "2024-03-21T17:49:48Z", + "name": "Electrical Array 6", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 19, + "filesize": 50758, + "upload_date": "2024-01-25T14:30:18Z", + "modify_date": "2024-01-25T14:30:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:29:39Z", + "updatedAt": "2024-03-18T01:22:43Z", + "name": "Electrical Array 5", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 13, + "filesize": 16956, + "upload_date": "2024-01-25T14:29:38Z", + "modify_date": "2024-01-25T14:29:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:29:01Z", + "updatedAt": "2024-03-26T12:02:56Z", + "name": "Electrical Array 4", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 12, + "filesize": 119549, + "upload_date": "2024-01-25T14:28:59Z", + "modify_date": "2024-01-25T14:28:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:28:41Z", + "updatedAt": "2024-03-26T12:03:03Z", + "name": "Electrical Array 3", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 14, + "filesize": 62770, + "upload_date": "2024-01-25T14:28:39Z", + "modify_date": "2024-01-25T14:28:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:28:19Z", + "updatedAt": "2024-03-12T16:09:31Z", + "name": "Electrical Array 2", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 14, + "filesize": 50758, + "upload_date": "2024-01-25T14:28:18Z", + "modify_date": "2024-01-25T14:28:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:27:52Z", + "updatedAt": "2024-04-01T17:45:27Z", + "name": "Electrical Array 1", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 22, + "filesize": 56287, + "upload_date": "2024-01-25T14:27:51Z", + "modify_date": "2024-01-25T14:27:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-25T14:21:52Z", + "updatedAt": "2024-04-01T17:45:30Z", + "name": "Control Room", + "owner": "kevinhalim9", + "description": "", + "likes": 0, + "downloads": 47, + "filesize": 322347, + "upload_date": "2024-01-25T14:21:50Z", + "modify_date": "2024-01-25T14:21:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-24T09:03:25Z", + "updatedAt": "2024-04-03T07:28:38Z", + "name": "X1 Config 5", + "owner": "saurabh", + "description": "The X1 robot for SubT.", + "likes": 0, + "downloads": 149, + "filesize": 971476, + "upload_date": "2024-01-24T09:03:21Z", + "modify_date": "2024-01-24T09:03:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/saurabh/models/X1%20Config%205/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "vehicle", + "subt", + "ugv", + "ground" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2024-01-23T16:00:37Z", + "updatedAt": "2024-04-01T17:47:58Z", + "name": "LandingPad", + "owner": "dronolab", + "description": "32 inch blue and orange landing pad for drones", + "likes": 2, + "downloads": 186, + "filesize": 148701, + "upload_date": "2024-01-23T16:00:35Z", + "modify_date": "2024-01-23T16:21:12Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/dronolab/models/LandingPad/tip/files/thumbnails/drone_and_blue_side_of_landing_pad.png", + "private": false, + "tags": [ + "drone", + "Orange", + "landing", + "pad", + "blue" + ], + "categories": [ + "Places and Landscapes", + "Robots" + ] + }, + { + "createdAt": "2024-01-20T17:28:14Z", + "updatedAt": "2024-04-01T17:48:03Z", + "name": "hydraulicPiston", + "owner": "onw", + "description": "test1", + "likes": 0, + "downloads": 72, + "filesize": 164812, + "upload_date": "2024-01-20T17:28:12Z", + "modify_date": "2024-01-28T10:37:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-16T01:11:44Z", + "updatedAt": "2024-03-30T19:27:22Z", + "name": "biped robot", + "owner": "lightweightreseach", + "description": "", + "likes": 0, + "downloads": 558, + "filesize": 4307, + "upload_date": "2024-01-16T01:11:43Z", + "modify_date": "2024-01-16T01:15:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2024-01-08T20:56:26Z", + "updatedAt": "2024-04-01T17:48:11Z", + "name": "PR2_SDF17", + "owner": "1111", + "description": "The Willow Garage PR2 model with SDFormat 1.7 frame semantics.", + "likes": 0, + "downloads": 257, + "filesize": 14547731, + "upload_date": "2024-01-08T20:56:15Z", + "modify_date": "2024-01-08T20:56:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/1111/models/PR2_SDF17/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2024-01-08T10:38:44Z", + "updatedAt": "2024-04-02T08:09:02Z", + "name": "test_car", + "owner": "aries2024", + "description": "test_car for robocon", + "likes": 0, + "downloads": 181, + "filesize": 27439, + "upload_date": "2024-01-08T10:38:42Z", + "modify_date": "2024-01-15T11:16:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2024-01-03T09:29:09Z", + "updatedAt": "2024-04-01T16:17:43Z", + "name": "RoboCup 3D Simulation Field", + "owner": "nicolas", + "description": "A RoboCup 3D Simulation League field according to the 2014 rules.", + "likes": 0, + "downloads": 252, + "filesize": 2795099, + "upload_date": "2024-01-03T09:29:07Z", + "modify_date": "2024-01-03T09:29:07Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nicolas/models/RoboCup%203D%20Simulation%20Field/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2024-01-01T05:32:36Z", + "updatedAt": "2024-03-31T13:31:51Z", + "name": "SimpleSpider", + "owner": "yjphhw", + "description": "A six leg spider robot build by raw sdf.", + "likes": 0, + "downloads": 169, + "filesize": 16060, + "upload_date": "2024-01-01T05:32:35Z", + "modify_date": "2024-01-01T05:32:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/yjphhw/models/SimpleSpider/tip/files/thumbnails/spider.png", + "private": false, + "tags": [ + "multi-leg robot", + "spider" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-12-28T14:53:09Z", + "updatedAt": "2024-03-14T00:29:01Z", + "name": "x500", + "owner": "seifeldeen18", + "description": "", + "likes": 2, + "downloads": 219, + "filesize": 7790074, + "upload_date": "2023-12-28T14:53:04Z", + "modify_date": "2023-12-28T14:53:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/seifeldeen18/models/x500/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-12-20T11:07:32Z", + "updatedAt": "2024-04-02T08:58:14Z", + "name": "Cardboardbox", + "owner": "Mark", + "description": "", + "likes": 0, + "downloads": 265, + "filesize": 356451, + "upload_date": "2023-12-20T11:07:31Z", + "modify_date": "2023-12-20T11:07:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-12-20T10:59:16Z", + "updatedAt": "2024-03-19T11:36:23Z", + "name": "pallet_2", + "owner": "Mark", + "description": "", + "likes": 0, + "downloads": 144, + "filesize": 101957, + "upload_date": "2023-12-20T10:59:15Z", + "modify_date": "2023-12-20T10:59:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-12-20T10:57:30Z", + "updatedAt": "2024-04-01T17:48:28Z", + "name": "pallet", + "owner": "Mark", + "description": "", + "likes": 0, + "downloads": 148, + "filesize": 101957, + "upload_date": "2023-12-20T10:57:29Z", + "modify_date": "2023-12-20T10:57:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-12-19T07:39:52Z", + "updatedAt": "2024-04-01T17:48:40Z", + "name": "IBeam", + "owner": "TjalleDijkstra", + "description": "10 meter I-beam with a hole every meter", + "likes": 0, + "downloads": 136, + "filesize": 30741, + "upload_date": "2023-12-19T07:39:51Z", + "modify_date": "2023-12-19T08:25:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/TjalleDijkstra/models/IBeam/tip/files/thumbnails/IBeam.PNG", + "private": false, + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2023-12-18T20:47:36Z", + "updatedAt": "2024-04-01T17:48:48Z", + "name": "ref", + "owner": "astroavery", + "description": "", + "likes": 0, + "downloads": 134, + "filesize": 6906535, + "upload_date": "2023-12-18T20:47:21Z", + "modify_date": "2023-12-18T20:47:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-12-12T17:55:58Z", + "updatedAt": "2024-04-01T17:48:57Z", + "name": "kgeu_sim", + "owner": "zet345", + "description": "", + "likes": 0, + "downloads": 132, + "filesize": 459506, + "upload_date": "2023-12-12T17:55:56Z", + "modify_date": "2023-12-12T17:55:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2023-12-12T05:06:12Z", + "updatedAt": "2024-04-01T17:49:06Z", + "name": "pet_gate", + "owner": "makerspet", + "description": "Pet Gate - 30in tall, 32.5in wide, 6x 1in bars, 5.5in gaps", + "likes": 0, + "downloads": 123, + "filesize": 22210, + "upload_date": "2023-12-12T05:06:11Z", + "modify_date": "2023-12-12T05:06:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/makerspet/models/pet_gate/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "pet", + "gate" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-12-12T04:47:20Z", + "updatedAt": "2024-04-01T17:49:12Z", + "name": "pet_gate_wide", + "owner": "makerspet", + "description": "Pet gate for home - 30in tall, 65in wide, 11x 1in bars, 5.5in gaps", + "likes": 0, + "downloads": 49, + "filesize": 21870, + "upload_date": "2023-12-12T04:47:19Z", + "modify_date": "2023-12-12T04:47:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/makerspet/models/pet_gate_wide/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "pet", + "gate" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-12-07T10:32:10Z", + "updatedAt": "2024-03-28T23:58:56Z", + "name": "x500", + "owner": "frede791", + "description": "", + "likes": 2, + "downloads": 186, + "filesize": 7790074, + "upload_date": "2023-12-07T10:32:05Z", + "modify_date": "2023-12-07T10:32:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/frede791/models/x500/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-12-06T14:25:50Z", + "updatedAt": "2024-04-01T16:16:49Z", + "name": "Rubicon", + "owner": "BurakAtay", + "description": "", + "likes": 0, + "downloads": 284, + "filesize": 187430027, + "upload_date": "2023-12-06T14:25:16Z", + "modify_date": "2023-12-06T14:25:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/BurakAtay/models/Rubicon/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-12-04T17:29:00Z", + "updatedAt": "2024-04-01T02:35:54Z", + "name": "lar_wardrobe", + "owner": "ielson", + "description": "", + "likes": 0, + "downloads": 102, + "filesize": 22192, + "upload_date": "2023-12-04T17:28:58Z", + "modify_date": "2023-12-04T17:28:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-12-04T17:28:16Z", + "updatedAt": "2024-03-20T10:06:56Z", + "name": "lar_walls", + "owner": "ielson", + "description": "", + "likes": 0, + "downloads": 124, + "filesize": 25489, + "upload_date": "2023-12-04T17:28:15Z", + "modify_date": "2023-12-04T18:38:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-12-04T17:27:44Z", + "updatedAt": "2024-03-23T21:47:46Z", + "name": "lar_table_pc", + "owner": "ielson", + "description": "", + "likes": 0, + "downloads": 81, + "filesize": 16685, + "upload_date": "2023-12-04T17:27:43Z", + "modify_date": "2023-12-04T17:27:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-12-04T17:27:15Z", + "updatedAt": "2024-03-12T06:50:43Z", + "name": "lar_table_great", + "owner": "ielson", + "description": "", + "likes": 0, + "downloads": 46, + "filesize": 100837, + "upload_date": "2023-12-04T17:27:13Z", + "modify_date": "2023-12-04T17:27:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-12-04T17:26:35Z", + "updatedAt": "2024-03-21T21:57:23Z", + "name": "lar_table_circular", + "owner": "ielson", + "description": "", + "likes": 0, + "downloads": 50, + "filesize": 23432, + "upload_date": "2023-12-04T17:26:34Z", + "modify_date": "2023-12-04T17:26:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-12-04T17:25:56Z", + "updatedAt": "2024-03-18T01:25:38Z", + "name": "LaRShelf", + "owner": "ielson", + "description": "", + "likes": 0, + "downloads": 42, + "filesize": 6236, + "upload_date": "2023-12-04T17:25:55Z", + "modify_date": "2023-12-04T17:25:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-12-04T17:25:14Z", + "updatedAt": "2024-03-17T00:19:43Z", + "name": "LaRFloor", + "owner": "ielson", + "description": "", + "likes": 0, + "downloads": 40, + "filesize": 589933, + "upload_date": "2023-12-04T17:25:13Z", + "modify_date": "2023-12-04T17:25:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-12-04T17:24:32Z", + "updatedAt": "2024-03-31T12:56:30Z", + "name": "LaR_chair", + "owner": "ielson", + "description": "", + "likes": 0, + "downloads": 97, + "filesize": 246636, + "upload_date": "2023-12-04T17:24:31Z", + "modify_date": "2023-12-04T17:24:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-12-04T17:22:44Z", + "updatedAt": "2024-04-01T17:49:32Z", + "name": "LaR", + "owner": "ielson", + "description": "", + "likes": 0, + "downloads": 40, + "filesize": 995, + "upload_date": "2023-12-04T17:22:43Z", + "modify_date": "2023-12-04T17:22:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-12-04T16:58:28Z", + "updatedAt": "2024-04-01T17:49:40Z", + "name": "box", + "owner": "ielson", + "description": "Box used at LaR Laboratory", + "likes": 0, + "downloads": 69, + "filesize": 747, + "upload_date": "2023-12-04T16:58:27Z", + "modify_date": "2023-12-04T16:58:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-12-04T07:11:49Z", + "updatedAt": "2024-04-02T21:07:21Z", + "name": "aws_robomaker_warehouse_PalletJackB_01", + "owner": "613bcm", + "description": "", + "likes": 0, + "downloads": 144, + "filesize": 929117, + "upload_date": "2023-12-04T07:11:46Z", + "modify_date": "2023-12-04T07:11:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/613bcm/models/aws_robomaker_warehouse_PalletJackB_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2023-11-30T01:42:25Z", + "updatedAt": "2024-03-30T14:48:31Z", + "name": "baylands", + "owner": "kane233", + "description": "Baylands", + "likes": 0, + "downloads": 120, + "filesize": 150731432, + "upload_date": "2023-11-30T01:41:58Z", + "modify_date": "2023-11-30T01:41:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "park" + ] + }, + { + "createdAt": "2023-11-30T01:41:50Z", + "updatedAt": "2024-04-01T11:30:16Z", + "name": "nathan_benderson_park", + "owner": "kane233", + "description": "A model of the Nathan Benderson Park in Florida.", + "likes": 0, + "downloads": 282, + "filesize": 211533405, + "upload_date": "2023-11-30T01:41:30Z", + "modify_date": "2023-11-30T01:41:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/kane233/models/nathan_benderson_park/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "ocean" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2023-11-28T20:43:03Z", + "updatedAt": "2024-04-03T15:38:28Z", + "name": "Panda arm - Fortress merge include demo", + "owner": "mustafapicak", + "description": "Franka Emika Panda robot with Ignition position controller", + "likes": 0, + "downloads": 262, + "filesize": 4278324, + "upload_date": "2023-11-28T20:42:59Z", + "modify_date": "2023-11-28T20:42:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/mustafapicak/models/Panda%20arm%20-%20Fortress%20merge%20include%20demo/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "robot", + "arm" + ], + "categories": [ + "Electronics" + ] + }, + { + "createdAt": "2023-11-27T20:03:39Z", + "updatedAt": "2024-04-02T00:18:04Z", + "name": "ankitha", + "owner": "ankitaraorao9898", + "description": "MRS", + "likes": 0, + "downloads": 119, + "filesize": 611271, + "upload_date": "2023-11-27T20:03:37Z", + "modify_date": "2023-11-27T20:03:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/ankitaraorao9898/models/ankitha/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-11-19T19:14:59Z", + "updatedAt": "2024-03-24T14:27:59Z", + "name": "NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY", + "owner": "achien", + "description": "Visual element for NUS SEDS' omnidirectional ground vehicle.", + "likes": 0, + "downloads": 270, + "filesize": 3156235, + "upload_date": "2023-11-19T19:14:55Z", + "modify_date": "2023-11-19T19:14:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/achien/models/NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2023-11-17T12:07:58Z", + "updatedAt": "2024-03-28T14:58:49Z", + "name": "airship", + "owner": "hkotze", + "description": "", + "likes": 0, + "downloads": 154, + "filesize": 267467, + "upload_date": "2023-11-17T12:07:56Z", + "modify_date": "2023-11-17T12:11:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "blimp", + "airship", + "lighter than air" + ], + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2023-11-17T05:23:33Z", + "updatedAt": "2024-04-01T01:08:10Z", + "name": "Male visitor 1", + "owner": "WANG", + "description": "Male visitor walking", + "likes": 0, + "downloads": 270, + "filesize": 645777, + "upload_date": "2023-11-17T05:23:31Z", + "modify_date": "2023-11-17T05:23:31Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/WANG/models/Male%20visitor%201/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "actor", + "person", + "animated" + ], + "categories": [ + "People" + ] + }, + { + "createdAt": "2023-11-17T05:21:59Z", + "updatedAt": "2024-04-01T01:08:19Z", + "name": "Male visitor", + "owner": "WANG", + "description": "Male visitor walking", + "likes": 0, + "downloads": 152, + "filesize": 645777, + "upload_date": "2023-11-17T05:21:57Z", + "modify_date": "2023-11-17T05:21:57Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/WANG/models/Male%20visitor/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "actor", + "person", + "animated" + ], + "categories": [ + "People" + ] + }, + { + "createdAt": "2023-11-15T16:29:42Z", + "updatedAt": "2024-03-25T18:48:05Z", + "name": "Parrot Bebop 2", + "owner": "lucamarchiori3", + "description": "A model of the Parrot Bebop 2 drone.", + "likes": 0, + "downloads": 140, + "filesize": 923390, + "upload_date": "2023-11-15T16:29:38Z", + "modify_date": "2023-11-15T16:29:38Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/lucamarchiori3/models/Parrot%20Bebop%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-11-15T14:47:16Z", + "updatedAt": "2024-03-28T20:59:34Z", + "name": "MARBLE_HUSKY_SENSOR_CONFIG_1", + "owner": "MovAi", + "description": "CU's husky config with 3 D435i RGBD cameras, a pan-tilt turret, the Ouster OS1 64 channel lidar,\r\nand an RPLidar S1\r\n\r\nCorrected by Mov.Ai", + "likes": 0, + "downloads": 222, + "filesize": 1398845, + "upload_date": "2023-11-15T14:47:13Z", + "modify_date": "2023-11-15T14:47:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/MovAi/models/MARBLE_HUSKY_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-11-06T09:40:54Z", + "updatedAt": "2024-03-29T10:29:57Z", + "name": "RC Cessna", + "owner": "PX4", + "description": "A model of a Cessna.", + "likes": 0, + "downloads": 270, + "filesize": 506313, + "upload_date": "2023-11-06T09:40:52Z", + "modify_date": "2023-11-06T09:40:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/PX4/models/RC%20Cessna/tip/files/thumbnails/rc_cessna.png", + "private": false, + "tags": [ + "UAV", + "PX4", + "Dronecode" + ], + "categories": [ + "Robots", + "Science and Technology" + ] + }, + { + "createdAt": "2023-11-06T09:25:36Z", + "updatedAt": "2024-03-30T14:03:52Z", + "name": "Advanced Plane", + "owner": "PX4", + "description": "A model the Cessna C-172 that makes use of the Advanced lift Drag Plugin.", + "likes": 0, + "downloads": 342, + "filesize": 454072, + "upload_date": "2023-11-06T09:25:34Z", + "modify_date": "2023-11-06T09:25:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/PX4/models/Advanced%20Plane/tip/files/thumbnails/advanced_plane.png", + "private": false, + "tags": [ + "UAV", + "PX4", + "Dronecode" + ], + "categories": [ + "Robots", + "Science and Technology" + ] + }, + { + "createdAt": "2023-11-06T09:19:02Z", + "updatedAt": "2024-04-01T17:46:15Z", + "name": "Standard VTOL", + "owner": "PX4", + "description": "A model of a Standard VTOL vehicle.", + "likes": 0, + "downloads": 193, + "filesize": 847885, + "upload_date": "2023-11-06T09:19:00Z", + "modify_date": "2023-11-06T09:19:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/PX4/models/Standard%20VTOL/tip/files/thumbnails/standard_vtol.png", + "private": false, + "tags": [ + "UAV", + "PX4", + "Dronecode" + ], + "categories": [ + "Robots", + "Science and Technology" + ] + }, + { + "createdAt": "2023-11-02T04:10:51Z", + "updatedAt": "2024-03-22T05:49:24Z", + "name": "CERBERUS_ANYMAL_B_VISUALS_ONLY", + "owner": "nealtang", + "description": "Visual elements of CERBERUS' ANYmal quadruped UGV model with a medium range lidar and IMU.", + "likes": 1, + "downloads": 219, + "filesize": 5468015, + "upload_date": "2023-11-02T04:10:47Z", + "modify_date": "2023-11-02T04:10:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nealtang/models/CERBERUS_ANYMAL_B_VISUALS_ONLY/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ] + }, + { + "createdAt": "2023-11-02T04:09:44Z", + "updatedAt": "2024-03-21T05:55:42Z", + "name": "NASA_PERSEVERANCE_SENSOR_CONFIG_1 1", + "owner": "nealtang", + "description": "A very simplistic model of NASA's Preseverance rover. It has no sensors (except a randomly placed IMU), but it has working wheels. Inertias may also be very off.\r\n\r\nAccording to https://nasa3d.arc.nasa.gov/ the assets are without a copyright.", + "likes": 0, + "downloads": 79, + "filesize": 10356217, + "upload_date": "2023-11-02T04:09:38Z", + "modify_date": "2023-11-02T04:09:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nealtang/models/NASA_PERSEVERANCE_SENSOR_CONFIG_1%201/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "ugv", + "nasa", + "rover", + "preserverance", + "space", + "mars", + "preseverance", + "perseverance" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2023-10-31T12:55:35Z", + "updatedAt": "2024-03-28T21:52:18Z", + "name": "Standard VTOL", + "owner": "frede791", + "description": "A model of a Standard VTOL vehicle.", + "likes": 0, + "downloads": 130, + "filesize": 847885, + "upload_date": "2023-10-31T12:55:32Z", + "modify_date": "2023-10-31T12:55:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/frede791/models/Standard%20VTOL/tip/files/thumbnails/standard_vtol.png", + "private": false, + "categories": [ + "Robots", + "Science and Technology" + ] + }, + { + "createdAt": "2023-10-30T11:39:10Z", + "updatedAt": "2024-04-01T17:49:22Z", + "name": "Advanced Plane", + "owner": "frede791", + "description": "A model the Cessna C-172 that makes use of the Advanced lift Drag Plugin.", + "likes": 0, + "downloads": 92, + "filesize": 421493, + "upload_date": "2023-10-30T11:39:08Z", + "modify_date": "2023-10-30T11:39:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "UAV", + "PX4" + ], + "categories": [ + "Robots", + "Science and Technology" + ] + }, + { + "createdAt": "2023-10-30T10:57:12Z", + "updatedAt": "2024-04-02T19:04:17Z", + "name": "Rubicon", + "owner": "Jesper", + "description": "", + "likes": 0, + "downloads": 222, + "filesize": 187430027, + "upload_date": "2023-10-30T10:56:39Z", + "modify_date": "2023-10-30T10:56:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Jesper/models/Rubicon/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-10-27T13:28:13Z", + "updatedAt": "2024-03-31T03:28:17Z", + "name": "Cardboard box", + "owner": "jliu6718", + "description": "A closed cardboard box.", + "likes": 0, + "downloads": 227, + "filesize": 1022747, + "upload_date": "2023-10-27T13:28:10Z", + "modify_date": "2023-10-27T13:28:10Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/jliu6718/models/Cardboard%20box/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-10-24T12:19:13Z", + "updatedAt": "2024-03-14T08:49:01Z", + "name": "NASA_PERSEVERANCE_SENSOR_CONFIG_1 1", + "owner": "vuthanhcdt", + "description": "A very simplistic model of NASA's Preseverance rover. It has no sensors (except a randomly placed IMU), but it has working wheels. Inertias may also be very off.\r\n\r\nAccording to https://nasa3d.arc.nasa.gov/ the assets are without a copyright.", + "likes": 1, + "downloads": 137, + "filesize": 10356217, + "upload_date": "2023-10-24T12:19:07Z", + "modify_date": "2023-10-24T12:19:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/vuthanhcdt/models/NASA_PERSEVERANCE_SENSOR_CONFIG_1%201/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "ugv", + "nasa", + "rover", + "preserverance", + "space", + "mars", + "preseverance", + "perseverance" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2023-10-24T12:03:01Z", + "updatedAt": "2024-03-17T15:00:31Z", + "name": "NASA_PERSEVERANCE_SENSOR_CONFIG_1", + "owner": "vuthanhcdt", + "description": "A very simplistic model of NASA's Preseverance rover. It has no sensors (except a randomly placed IMU), but it has working wheels. Inertias may also be very off.\r\n\r\nAccording to https://nasa3d.arc.nasa.gov/ the assets are without a copyright.", + "likes": 0, + "downloads": 54, + "filesize": 10356217, + "upload_date": "2023-10-24T12:02:55Z", + "modify_date": "2023-10-24T12:02:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/vuthanhcdt/models/NASA_PERSEVERANCE_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "ugv", + "nasa", + "rover", + "preserverance", + "space", + "mars", + "preseverance", + "perseverance" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2023-10-23T07:42:08Z", + "updatedAt": "2024-03-27T07:16:39Z", + "name": "px4_vision_fixed", + "owner": "frede791", + "description": "A working version of the PX4 Vision", + "likes": 0, + "downloads": 111, + "filesize": 1990704, + "upload_date": "2023-10-23T07:42:05Z", + "modify_date": "2023-11-01T15:06:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/frede791/models/px4_vision_fixed/tip/files/thumbnails/px4_vision_front.png", + "private": false, + "tags": [ + "UAV", + "PX4", + "Dronecode" + ], + "categories": [ + "Robots", + "Science and Technology" + ] + }, + { + "createdAt": "2023-10-20T16:59:06Z", + "updatedAt": "2024-04-01T17:50:13Z", + "name": "garage_door", + "owner": "LeDSantos", + "description": "Door texture from https://commons.wikimedia.org/wiki/File:Clementine_-_Clementine_Dark-Brushed-Metal-metal-texture.jpg", + "likes": 1, + "downloads": 91, + "filesize": 135063, + "upload_date": "2023-10-20T16:59:04Z", + "modify_date": "2023-10-20T16:59:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/LeDSantos/models/garage_door/tip/files/thumbnails/1.jpg", + "private": false, + "categories": [ + "Architecture", + "Furniture and Home" + ] + }, + { + "createdAt": "2023-10-15T11:57:48Z", + "updatedAt": "2024-04-03T18:34:45Z", + "name": "Chair", + "owner": "Peyman1372", + "description": "A generic hospital chair", + "likes": 0, + "downloads": 368, + "filesize": 2741574, + "upload_date": "2023-10-15T11:57:45Z", + "modify_date": "2023-10-15T11:57:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Peyman1372/models/Chair/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-10-13T00:49:12Z", + "updatedAt": "2024-03-23T21:04:25Z", + "name": "toilet_paper", + "owner": "LeDSantos", + "description": "Simple toilet paper.", + "likes": 1, + "downloads": 93, + "filesize": 391191, + "upload_date": "2023-10-13T00:49:11Z", + "modify_date": "2023-10-13T00:49:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/LeDSantos/models/toilet_paper/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Architecture", + "Furniture and Home" + ] + }, + { + "createdAt": "2023-10-04T19:34:23Z", + "updatedAt": "2024-03-25T22:24:39Z", + "name": "green_ball", + "owner": "Wavefire", + "description": "green ball for roboboat sim", + "likes": 0, + "downloads": 210, + "filesize": 52560, + "upload_date": "2023-10-04T19:34:22Z", + "modify_date": "2023-10-04T19:34:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-10-04T17:27:59Z", + "updatedAt": "2024-03-27T15:44:32Z", + "name": "Water Bottle", + "owner": "iche033", + "description": "Water bottle in glb format", + "likes": 0, + "downloads": 177, + "filesize": 16050986, + "upload_date": "2023-10-04T17:27:55Z", + "modify_date": "2023-10-04T18:47:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/iche033/models/Water%20Bottle/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-10-03T19:10:33Z", + "updatedAt": "2024-03-21T02:43:49Z", + "name": "Hello Robot Stretch 2", + "owner": "chintujaguar", + "description": "This is the SDF file for Hello Robot's Stretch 2 robot.", + "likes": 0, + "downloads": 111, + "filesize": 4208843, + "upload_date": "2023-10-03T19:10:29Z", + "modify_date": "2023-10-03T19:18:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "Hello Robot", + "Stretch", + "Mobile Manipulator" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-09-29T22:00:57Z", + "updatedAt": "2024-04-03T21:23:45Z", + "name": "Fidget Spinner", + "owner": "OpenRobotics", + "description": "A fidget spinner model with automatic inertia calculation enabled. A fidget spinner mesh is used with cylinders for weights and the central pivot.\r\nThe mouse drag feature of Gazebo can be used to rotate the fidget spinner.", + "likes": 0, + "downloads": 429, + "filesize": 307226, + "upload_date": "2023-09-29T22:00:56Z", + "modify_date": "2023-09-29T22:00:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fidget%20Spinner/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "inertia", + "fidget", + "spinner", + "toys", + "mesh", + "auto" + ], + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2023-09-29T19:37:49Z", + "updatedAt": "2024-04-03T10:47:17Z", + "name": "Harmonic Mascot", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 277, + "filesize": 1838465, + "upload_date": "2023-09-29T19:37:47Z", + "modify_date": "2023-09-29T19:37:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Harmonic%20Mascot/tip/files/thumbnails/Mascot.png", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2023-09-29T19:37:03Z", + "updatedAt": "2024-04-03T10:47:02Z", + "name": "Pendulum Sculpture", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 232, + "filesize": 2439937, + "upload_date": "2023-09-29T19:37:01Z", + "modify_date": "2023-09-29T19:37:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Pendulum%20Sculpture/tip/files/thumbnails/Pendulum_Sculpture.png", + "private": false + }, + { + "createdAt": "2023-09-29T19:36:28Z", + "updatedAt": "2024-04-03T10:47:05Z", + "name": "Pendulum Demo", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 222, + "filesize": 992252, + "upload_date": "2023-09-29T19:36:27Z", + "modify_date": "2023-09-29T19:36:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Pendulum%20Demo/tip/files/thumbnails/Pendulum.png", + "private": false + }, + { + "createdAt": "2023-09-29T19:14:59Z", + "updatedAt": "2024-04-03T13:23:58Z", + "name": "Harmonic Terrain Objects", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 233, + "filesize": 73417519, + "upload_date": "2023-09-29T19:14:41Z", + "modify_date": "2023-09-29T19:14:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Nature and Plants" + ] + }, + { + "createdAt": "2023-09-29T17:13:39Z", + "updatedAt": "2024-04-03T10:42:04Z", + "name": "Lake House", + "owner": "OpenRobotics", + "description": "", + "likes": 2, + "downloads": 666, + "filesize": 237788357, + "upload_date": "2023-09-29T17:13:04Z", + "modify_date": "2023-09-29T19:12:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Lake%20House/tip/files/thumbnails/LakeHouse.png", + "private": false, + "categories": [ + "Furniture and Home", + "Places and Landscapes" + ] + }, + { + "createdAt": "2023-09-29T17:07:11Z", + "updatedAt": "2024-04-03T13:10:41Z", + "name": "Harmonic Terrain", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 459, + "filesize": 57967365, + "upload_date": "2023-09-29T17:07:03Z", + "modify_date": "2023-09-29T17:07:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Harmonic%20Terrain/tip/files/thumbnails/Terrain.png", + "private": false, + "categories": [ + "Nature and Plants" + ] + }, + { + "createdAt": "2023-09-29T17:05:29Z", + "updatedAt": "2024-04-03T10:47:12Z", + "name": "Sky", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 458, + "filesize": 7183564, + "upload_date": "2023-09-29T17:05:26Z", + "modify_date": "2023-09-29T17:05:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Sky/tip/files/thumbnails/Sky.png", + "private": false, + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2023-09-29T16:55:20Z", + "updatedAt": "2024-04-03T10:46:33Z", + "name": "Vanity", + "owner": "OpenRobotics", + "description": "", + "likes": 1, + "downloads": 240, + "filesize": 63109602, + "upload_date": "2023-09-29T16:55:11Z", + "modify_date": "2023-09-29T16:55:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Vanity/tip/files/thumbnails/Vanity.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-29T16:53:36Z", + "updatedAt": "2024-04-03T10:46:29Z", + "name": "Standard Toilet", + "owner": "OpenRobotics", + "description": "", + "likes": 1, + "downloads": 278, + "filesize": 6484093, + "upload_date": "2023-09-29T16:53:33Z", + "modify_date": "2023-09-29T16:53:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Standard%20Toilet/tip/files/thumbnails/Toilet.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-29T16:52:18Z", + "updatedAt": "2024-04-03T10:47:08Z", + "name": "Piano", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 290, + "filesize": 2061580, + "upload_date": "2023-09-29T16:52:16Z", + "modify_date": "2023-09-29T16:52:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Piano/tip/files/thumbnails/Piano.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-29T16:51:40Z", + "updatedAt": "2024-04-03T10:46:25Z", + "name": "Oven", + "owner": "OpenRobotics", + "description": "", + "likes": 1, + "downloads": 256, + "filesize": 4308836, + "upload_date": "2023-09-29T16:51:37Z", + "modify_date": "2023-09-29T16:51:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Oven/tip/files/thumbnails/Oven.png", + "private": false, + "categories": [ + "Furniture and Home", + "Appliance" + ] + }, + { + "createdAt": "2023-09-29T16:51:03Z", + "updatedAt": "2024-04-03T10:46:57Z", + "name": "Office Chair", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 763, + "filesize": 12002974, + "upload_date": "2023-09-29T16:50:59Z", + "modify_date": "2023-09-29T16:50:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Office%20Chair/tip/files/thumbnails/OfficeChair.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-29T16:50:22Z", + "updatedAt": "2024-04-03T10:46:22Z", + "name": "Refrigerator", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 307, + "filesize": 5421913, + "upload_date": "2023-09-29T16:50:20Z", + "modify_date": "2023-09-29T16:50:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Refrigerator/tip/files/thumbnails/Fridge.png", + "private": false, + "categories": [ + "Furniture and Home", + "Appliance" + ] + }, + { + "createdAt": "2023-09-29T16:49:05Z", + "updatedAt": "2024-04-03T10:46:13Z", + "name": "Dining Table", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 404, + "filesize": 22203909, + "upload_date": "2023-09-29T16:49:00Z", + "modify_date": "2023-09-29T16:49:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Dining%20Table/tip/files/thumbnails/DiningTable.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-29T16:47:52Z", + "updatedAt": "2024-04-03T10:46:18Z", + "name": "Dining Chair", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 269, + "filesize": 5266640, + "upload_date": "2023-09-29T16:47:50Z", + "modify_date": "2023-09-29T16:47:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Dining%20Chair/tip/files/thumbnails/DiningChair.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-29T16:46:56Z", + "updatedAt": "2024-04-03T10:46:42Z", + "name": "Office Desk", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 711, + "filesize": 6730563, + "upload_date": "2023-09-29T16:46:53Z", + "modify_date": "2023-09-29T16:46:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Office%20Desk/tip/files/thumbnails/Desk.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-29T16:45:28Z", + "updatedAt": "2024-04-03T10:46:07Z", + "name": "Bed", + "owner": "OpenRobotics", + "description": "", + "likes": 1, + "downloads": 310, + "filesize": 34662694, + "upload_date": "2023-09-29T16:45:22Z", + "modify_date": "2023-09-29T16:45:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Bed/tip/files/thumbnails/Bed.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-29T16:41:59Z", + "updatedAt": "2024-04-03T10:46:02Z", + "name": "Bathtub", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 245, + "filesize": 19562215, + "upload_date": "2023-09-29T16:41:54Z", + "modify_date": "2023-09-29T16:41:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Bathtub/tip/files/thumbnails/Bathtub.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-29T16:10:45Z", + "updatedAt": "2024-04-03T10:45:57Z", + "name": "Armchair", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 258, + "filesize": 11739031, + "upload_date": "2023-09-29T16:10:42Z", + "modify_date": "2023-09-29T16:39:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Armchair/tip/files/thumbnails/Armchair.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-29T14:40:01Z", + "updatedAt": "2024-04-02T15:10:43Z", + "name": "Stereo Camera", + "owner": "zainab", + "description": "A stereo camera.", + "likes": 0, + "downloads": 128, + "filesize": 8646, + "upload_date": "2023-09-29T14:39:59Z", + "modify_date": "2023-09-29T14:39:59Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/zainab/models/Stereo%20Camera/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-09-26T12:11:55Z", + "updatedAt": "2024-03-22T20:47:20Z", + "name": "Fidget Spinner", + "owner": "jasmeetsingh", + "description": "A fidget spinner model with automatic inertia calculation enabled. A fidget spinner mesh is used with cylinders for weights and the central pivot.\r\nThe mouse drag feature of Gazebo can be used to rotate the fidget spinner.", + "likes": 1, + "downloads": 67, + "filesize": 307226, + "upload_date": "2023-09-26T12:11:53Z", + "modify_date": "2023-09-26T12:11:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/jasmeetsingh/models/Fidget%20Spinner/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "inertia", + "fidget", + "spinner", + "toys", + "mesh", + "auto" + ], + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2023-09-23T09:11:51Z", + "updatedAt": "2024-04-01T13:54:29Z", + "name": "TurtleBot", + "owner": "abagchi", + "description": "A model of the turtlebot", + "likes": 0, + "downloads": 141, + "filesize": 1441635, + "upload_date": "2023-09-23T09:11:47Z", + "modify_date": "2023-09-23T09:11:47Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abagchi/models/TurtleBot/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-09-21T10:46:59Z", + "updatedAt": "2024-03-26T14:42:52Z", + "name": "room_wall_2x5m", + "owner": "makerspet", + "description": "A simple drywall-textured room wall, 2m by 5m, 10cm thick.\r\nImage credit bedneyimages at Freepik", + "likes": 0, + "downloads": 157, + "filesize": 97858, + "upload_date": "2023-09-21T10:46:57Z", + "modify_date": "2023-09-21T10:46:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/makerspet/models/room_wall_2x5m/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "room", + "wall", + "drywall" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-21T00:56:35Z", + "updatedAt": "2024-03-24T22:14:27Z", + "name": "red_ball_10in", + "owner": "makerspet", + "description": "A red toy ball for home robots to play with, 10\" in diameter.\r\nModified from FRC 2016 openrobotics white ball model.", + "likes": 0, + "downloads": 72, + "filesize": 34404, + "upload_date": "2023-09-21T00:56:34Z", + "modify_date": "2023-09-21T00:56:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/makerspet/models/red_ball_10in/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "ball" + ], + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2023-09-21T00:52:00Z", + "updatedAt": "2024-03-25T09:56:13Z", + "name": "tv_65in_emissive", + "owner": "makerspet", + "description": "A bright powered-on (emissive) 65-inch wall-mount TV\r\nImage credit CSITDMS at Pixabay", + "likes": 0, + "downloads": 398, + "filesize": 149671, + "upload_date": "2023-09-21T00:51:59Z", + "modify_date": "2023-09-21T00:52:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/makerspet/models/tv_65in_emissive/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "TV", + "television", + "maldives", + "beach" + ], + "categories": [ + "Electronics", + "Appliance" + ] + }, + { + "createdAt": "2023-09-20T21:38:33Z", + "updatedAt": "2024-03-21T12:43:21Z", + "name": "Double Pendulum Desktop Sculpture", + "owner": "jasmeetsingh", + "description": "This is a model of a double pendulum as a desktop sculpture with automatically calculated inertia values. The design was inspired by Swinging Sticks and the density of aluminum was used for the rods. After adding this to a world and playing the simulation, the model should start rotating indefinitely.", + "likes": 1, + "downloads": 42, + "filesize": 1374490, + "upload_date": "2023-09-20T21:38:31Z", + "modify_date": "2023-09-20T21:38:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/jasmeetsingh/models/Double%20Pendulum%20Desktop%20Sculpture/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "Toy", + "physics", + "inertia", + "pendulum", + "double", + "swinging", + "sticks" + ], + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2023-09-20T17:14:37Z", + "updatedAt": "2024-03-31T12:07:28Z", + "name": "Tunnel Tile 1", + "owner": "nate", + "description": "A 4 way intersection tunnel tile", + "likes": 0, + "downloads": 100, + "filesize": 103825061, + "upload_date": "2023-09-20T17:14:23Z", + "modify_date": "2023-09-22T16:04:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Tunnel%20Tile%201/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel" + ] + }, + { + "createdAt": "2023-09-20T13:14:32Z", + "updatedAt": "2024-04-02T06:05:59Z", + "name": "Six-Eight Door", + "owner": "Watermelon123", + "description": "A simple Door of a house.", + "likes": 0, + "downloads": 1690, + "filesize": 85964, + "upload_date": "2023-09-20T13:14:31Z", + "modify_date": "2023-09-20T13:14:31Z", + "license_id": 5, + "license_name": "Creative Commons Attribution Non Commercial 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Watermelon123/models/Six-Eight%20Door/tip/files/thumbnails/Picture1.png", + "private": false, + "tags": [ + "door", + "House door" + ], + "categories": [ + "Architecture", + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-19T21:36:18Z", + "updatedAt": "2024-03-14T17:43:03Z", + "name": "window_curtains", + "owner": "makerspet", + "description": "A simple bright (emissive) window with see-through half-drawn curtains, 2m by 1.57m, 2cm thick", + "likes": 0, + "downloads": 76, + "filesize": 542844, + "upload_date": "2023-09-19T21:36:16Z", + "modify_date": "2023-09-19T21:36:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/makerspet/models/window_curtains/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "window", + "curtains" + ], + "categories": [ + "Architecture", + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-19T21:29:29Z", + "updatedAt": "2024-03-20T04:28:08Z", + "name": "rug_ivory_2m", + "owner": "makerspet", + "description": "A simple ivory-textured floor rug for a living room, 1.6m by 2m, 5mm thick", + "likes": 0, + "downloads": 84, + "filesize": 968590, + "upload_date": "2023-09-19T21:29:28Z", + "modify_date": "2023-09-19T21:29:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/makerspet/models/rug_ivory_2m/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "room", + "rug", + "floor", + "living" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-19T19:34:19Z", + "updatedAt": "2024-03-30T03:08:09Z", + "name": "Table", + "owner": "malbonico", + "description": "A wooden table.", + "likes": 0, + "downloads": 194, + "filesize": 899222, + "upload_date": "2023-09-19T19:34:16Z", + "modify_date": "2023-09-19T19:34:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/malbonico/models/Table/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-09-18T18:07:20Z", + "updatedAt": "2024-03-20T22:44:20Z", + "name": "door_08x2m", + "owner": "makerspet", + "description": "A simple fake flat white door 80cm by 2m, 10cm thick", + "likes": 0, + "downloads": 90, + "filesize": 4641, + "upload_date": "2023-09-18T18:07:18Z", + "modify_date": "2023-09-18T18:09:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/makerspet/models/door_08x2m/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "door" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-18T14:52:15Z", + "updatedAt": "2024-03-20T21:59:29Z", + "name": "tv_65in", + "owner": "makerspet", + "description": "A simple 65-inch wall-mount TV", + "likes": 0, + "downloads": 77, + "filesize": 2836, + "upload_date": "2023-09-18T14:52:13Z", + "modify_date": "2023-09-18T14:52:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/makerspet/models/tv_65in/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "TV" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-18T14:25:12Z", + "updatedAt": "2024-03-24T22:23:12Z", + "name": "kaiaai_poster", + "owner": "makerspet", + "description": "A wall poster with the [Kaia.ai](https://kaia.ai) logo", + "likes": 0, + "downloads": 71, + "filesize": 56014, + "upload_date": "2023-09-18T14:25:10Z", + "modify_date": "2023-09-18T14:25:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/makerspet/models/kaiaai_poster/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "poster", + "logo", + "kaiaai" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-18T02:34:29Z", + "updatedAt": "2024-03-25T19:55:00Z", + "name": "Electrical Box Test", + "owner": "Cecil", + "description": "Test model for Importing a Mesh to Fuel tutorial", + "likes": 0, + "downloads": 127, + "filesize": 564257, + "upload_date": "2023-09-18T02:34:27Z", + "modify_date": "2023-09-18T02:34:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Cecil/models/Electrical%20Box%20Test/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-09-18T00:28:10Z", + "updatedAt": "2024-03-13T08:35:44Z", + "name": "makerspet_poster", + "owner": "makerspet", + "description": "A wall poster with the [Makerspet](https://makerspet.com) logo", + "likes": 0, + "downloads": 146, + "filesize": 162570, + "upload_date": "2023-09-18T00:28:08Z", + "modify_date": "2023-09-18T00:28:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/makerspet/models/makerspet_poster/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "poster", + "makerspet", + "logo" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2023-09-16T04:50:10Z", + "updatedAt": "2024-03-24T22:25:04Z", + "name": "red_buoy", + "owner": "Wavefire", + "description": "red buoy for roboboat\r\nfor testing purposes", + "likes": 0, + "downloads": 153, + "filesize": 8312, + "upload_date": "2023-09-16T04:50:08Z", + "modify_date": "2023-09-16T18:49:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-09-15T03:09:23Z", + "updatedAt": "2024-03-12T19:41:42Z", + "name": "NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY", + "owner": "ikrar", + "description": "Visual element for NUS SEDS' omnidirectional ground vehicle.", + "likes": 2, + "downloads": 149, + "filesize": 3156235, + "upload_date": "2023-09-15T03:09:19Z", + "modify_date": "2023-09-15T03:09:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/ikrar/models/NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2023-09-11T13:13:29Z", + "updatedAt": "2024-04-04T06:18:52Z", + "name": "X4 UAV Config 1", + "owner": "OpenRoboticsTest", + "description": "X4 UAV with sensor configuration #1: HD camera, IMU, pressure sensor, magnetometer.", + "likes": 0, + "downloads": 1493, + "filesize": 4647033, + "upload_date": "2023-09-11T13:13:24Z", + "modify_date": "2023-09-11T13:13:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRoboticsTest/models/X4%20UAV%20Config%201/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2023-09-08T16:50:19Z", + "updatedAt": "2024-03-12T03:09:37Z", + "name": "Electrical Box Test", + "owner": "depressedcoder", + "description": "Test Model done as a part of tutorial party", + "likes": 0, + "downloads": 91, + "filesize": 564299, + "upload_date": "2023-09-08T16:50:18Z", + "modify_date": "2023-09-08T16:50:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/depressedcoder/models/Electrical%20Box%20Test/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Cars and Vehicles", + "Electronics" + ] + }, + { + "createdAt": "2023-09-05T14:43:36Z", + "updatedAt": "2024-03-21T14:12:53Z", + "name": "Hollow Cylinder", + "owner": "jasmeetsingh", + "description": "This is a collada model of a hollow cylinder with outer radius=0.5m and inner radius=0.375m. The length of the cylinder is 1m. The cylinder has density equal to 1000 kg/m^3 and has automatic inertia calculation enabled with ``", + "likes": 1, + "downloads": 114, + "filesize": 1029086, + "upload_date": "2023-09-05T14:43:34Z", + "modify_date": "2023-09-05T14:43:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/jasmeetsingh/models/Hollow%20Cylinder/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2023-09-04T07:56:18Z", + "updatedAt": "2024-03-30T21:22:29Z", + "name": "bosdyn_spot", + "owner": "theputernerd", + "description": "Base of Boston Dynamics Spot with just the builtin sensors.", + "likes": 0, + "downloads": 187, + "filesize": 11781356, + "upload_date": "2023-09-04T07:56:10Z", + "modify_date": "2023-09-04T07:56:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/theputernerd/models/bosdyn_spot/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-08-29T12:10:48Z", + "updatedAt": "2024-04-03T15:56:11Z", + "name": "Bottle", + "owner": "arichibi", + "description": "", + "likes": 0, + "downloads": 167, + "filesize": 1383, + "upload_date": "2023-08-29T12:10:47Z", + "modify_date": "2023-08-29T12:10:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2023-08-24T12:23:20Z", + "updatedAt": "2024-04-01T13:41:21Z", + "name": "bosdyn_spot", + "owner": "zilork", + "description": "Base of Boston Dynamics Spot with just the builtin sensors.", + "likes": 0, + "downloads": 203, + "filesize": 11781356, + "upload_date": "2023-08-24T12:23:12Z", + "modify_date": "2023-08-24T12:23:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/zilork/models/bosdyn_spot/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-08-20T21:21:23Z", + "updatedAt": "2024-03-25T15:50:07Z", + "name": "x500-Base", + "owner": "silverXnoise", + "description": "Model of x500 for use with updated MulticopterMotorModel.", + "likes": 0, + "downloads": 197, + "filesize": 9352707, + "upload_date": "2023-08-20T21:21:17Z", + "modify_date": "2023-08-20T21:21:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/silverXnoise/models/x500-Base/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drone", + "UAV", + "quadcopter", + "x500", + "ready to fly", + "UAS" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2023-08-17T16:54:28Z", + "updatedAt": "2024-03-24T22:24:28Z", + "name": "ada_lovelace_poster", + "owner": "LeDSantos", + "description": "Poster with an example image. Image from https://commons.wikimedia.org/wiki/File:Ada_Lovelace_portrait.jpg", + "likes": 1, + "downloads": 109, + "filesize": 4573445, + "upload_date": "2023-08-17T16:54:26Z", + "modify_date": "2023-08-22T16:30:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/LeDSantos/models/ada_lovelace_poster/tip/files/thumbnails/1.jpg", + "private": false, + "categories": [ + "Furniture and Home", + "People" + ] + }, + { + "createdAt": "2023-08-17T10:27:43Z", + "updatedAt": "2024-03-15T09:30:38Z", + "name": "Rubicon", + "owner": "basti", + "description": "", + "likes": 0, + "downloads": 287, + "filesize": 187430027, + "upload_date": "2023-08-17T10:27:12Z", + "modify_date": "2023-08-17T10:27:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/basti/models/Rubicon/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-08-13T22:26:43Z", + "updatedAt": "2024-04-03T01:17:09Z", + "name": "Transbot", + "owner": "charlie", + "description": "Transbot robot for education, originally from Yahboom.", + "likes": 0, + "downloads": 196, + "filesize": 29283711, + "upload_date": "2023-08-13T22:26:33Z", + "modify_date": "2023-08-13T22:26:33Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-08-11T13:13:16Z", + "updatedAt": "2024-03-18T17:04:01Z", + "name": "caytu_model", + "owner": "akhad", + "description": "STL of the base model", + "likes": 0, + "downloads": 123, + "filesize": 18163921, + "upload_date": "2023-08-11T13:13:10Z", + "modify_date": "2023-08-11T16:34:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/akhad/models/caytu_model/tip/files/thumbnails/image1.png", + "private": false, + "tags": [ + "Cars" + ], + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2023-06-28T16:09:25Z", + "updatedAt": "2024-04-01T09:32:00Z", + "name": "Solar", + "owner": "ShadoRoca", + "description": "", + "likes": 0, + "downloads": 300, + "filesize": 5816, + "upload_date": "2023-06-28T16:09:23Z", + "modify_date": "2023-06-28T16:09:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-06-23T18:56:53Z", + "updatedAt": "2024-04-03T01:17:03Z", + "name": "Robotic Finger", + "owner": "samir98", + "description": "An experimental robotic finger modelled in blender", + "likes": 0, + "downloads": 251, + "filesize": 918735, + "upload_date": "2023-06-23T18:56:51Z", + "modify_date": "2023-06-23T18:56:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "#kc;l #roboticfinger" + ], + "categories": [ + "Electronics" + ] + }, + { + "createdAt": "2023-06-23T13:04:06Z", + "updatedAt": "2024-03-29T11:43:26Z", + "name": "NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY", + "owner": "Yaren", + "description": "Visual element for NUS SEDS' omnidirectional ground vehicle.", + "likes": 1, + "downloads": 509, + "filesize": 3156235, + "upload_date": "2023-06-23T13:04:03Z", + "modify_date": "2023-06-23T13:04:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Yaren/models/NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2023-06-23T10:07:41Z", + "updatedAt": "2024-04-03T14:08:22Z", + "name": "Moon model", + "owner": "mgonzs13", + "description": "A Moon model with craters", + "likes": 0, + "downloads": 179, + "filesize": 1726314, + "upload_date": "2023-06-23T10:07:40Z", + "modify_date": "2023-06-23T10:07:40Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "moon" + ] + }, + { + "createdAt": "2023-06-21T07:54:13Z", + "updatedAt": "2024-04-01T14:50:28Z", + "name": "Panda with Ignition position controller model", + "owner": "nk121", + "description": "Franka Emika Panda 7 axes robot arm with Ignition position controllers for all joints.\r\n\r\nFrom https://github.com/AndrejOrsula/panda_ign\r\n\r\nThis version uses PBR materials.", + "likes": 2, + "downloads": 435, + "filesize": 54779356, + "upload_date": "2023-06-21T07:54:01Z", + "modify_date": "2023-06-21T07:54:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nk121/models/Panda%20with%20Ignition%20position%20controller%20model/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "robot", + "ignition" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-06-16T23:41:39Z", + "updatedAt": "2024-03-19T07:21:47Z", + "name": "x500-Base", + "owner": "abmohit", + "description": "Model of x500 for use with updated MulticopterMotorModel.", + "likes": 1, + "downloads": 774, + "filesize": 9352707, + "upload_date": "2023-06-16T23:41:35Z", + "modify_date": "2023-06-16T23:41:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/x500-Base/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drone", + "UAV", + "quadcopter", + "x500", + "ready to fly", + "UAS" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2023-06-16T23:39:54Z", + "updatedAt": "2024-03-20T01:21:24Z", + "name": "Vessel E", + "owner": "abmohit", + "description": "Vessel E", + "likes": 1, + "downloads": 111, + "filesize": 2863293, + "upload_date": "2023-06-16T23:39:52Z", + "modify_date": "2023-06-16T23:39:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Vessel%20E/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:39:24Z", + "updatedAt": "2024-04-03T09:15:28Z", + "name": "Vessel G", + "owner": "abmohit", + "description": "Vessel G", + "likes": 0, + "downloads": 149, + "filesize": 6926618, + "upload_date": "2023-06-16T23:39:21Z", + "modify_date": "2023-06-16T23:39:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Vessel%20G/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:38:31Z", + "updatedAt": "2024-03-12T02:24:41Z", + "name": "X4_GPS_LIDAR_RGBD", + "owner": "abmohit", + "description": "hexarotor X4 , with Lidar RGBD GPS and Camera. Based on X4Config1", + "likes": 0, + "downloads": 60, + "filesize": 4648874, + "upload_date": "2023-06-16T23:38:28Z", + "modify_date": "2023-06-16T23:38:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/X4_GPS_LIDAR_RGBD/tip/files/thumbnails/1.jpg", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-06-16T23:37:09Z", + "updatedAt": "2024-03-12T02:24:52Z", + "name": "Coast Waves", + "owner": "abmohit", + "description": "Waves - visual only. Size: 6km x 6km", + "likes": 0, + "downloads": 57, + "filesize": 2052022, + "upload_date": "2023-06-16T23:37:06Z", + "modify_date": "2023-06-16T23:37:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Coast%20Waves/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:35:45Z", + "updatedAt": "2024-03-20T01:22:22Z", + "name": "Waves", + "owner": "abmohit", + "description": "Gerstner Waves - a model with visual plugin", + "likes": 0, + "downloads": 71, + "filesize": 1220648, + "upload_date": "2023-06-16T23:35:43Z", + "modify_date": "2023-06-16T23:35:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Waves/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:34:59Z", + "updatedAt": "2024-03-22T15:48:06Z", + "name": "shadow_hand", + "owner": "abmohit", + "description": "Shadow Hand (right hand, default config).\n\nMore information on [GitHub](https://github.com/AndrejOrsula/shadow_hand_ign).", + "likes": 0, + "downloads": 44, + "filesize": 814427, + "upload_date": "2023-06-16T23:34:56Z", + "modify_date": "2023-06-16T23:34:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/shadow_hand/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-06-16T23:34:16Z", + "updatedAt": "2024-04-01T17:54:17Z", + "name": "simple_robot", + "owner": "abmohit", + "description": "two wheels balancing robot", + "likes": 0, + "downloads": 78, + "filesize": 368117, + "upload_date": "2023-06-16T23:34:14Z", + "modify_date": "2023-06-16T23:34:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/simple_robot/tip/files/thumbnails/Picture1.png", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2023-06-16T23:32:36Z", + "updatedAt": "2024-03-12T02:25:40Z", + "name": "Panda with Ignition position controller model", + "owner": "abmohit", + "description": "Franka Emika Panda 7 axes robot arm with Ignition position controllers for all joints.\r\n\r\nFrom https://github.com/AndrejOrsula/panda_ign\r\n\r\nThis version uses PBR materials.", + "likes": 1, + "downloads": 60, + "filesize": 54779356, + "upload_date": "2023-06-16T23:32:25Z", + "modify_date": "2023-06-16T23:32:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Panda%20with%20Ignition%20position%20controller%20model/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "robot", + "ignition" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-06-16T23:29:01Z", + "updatedAt": "2024-03-12T02:25:51Z", + "name": "CERBERUS_M100_SENSOR_CONFIG_1", + "owner": "abmohit", + "description": "M100 UAV with sensor configuration #8: 3D medium range lidar, IMU, camera, magnetometer.\n Originally submitted as cerberus_m100_sensor_config_1.", + "likes": 0, + "downloads": 34, + "filesize": 18922016, + "upload_date": "2023-06-16T23:28:52Z", + "modify_date": "2023-06-16T23:28:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/CERBERUS_M100_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "UAV" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-06-16T23:27:43Z", + "updatedAt": "2024-03-31T07:54:32Z", + "name": "Intel RealSense D435", + "owner": "abmohit", + "description": "Intel RealSense D435", + "likes": 0, + "downloads": 63, + "filesize": 2582073, + "upload_date": "2023-06-16T23:27:40Z", + "modify_date": "2023-06-16T23:27:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Intel%20RealSense%20D435/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "camera", + "intel", + "rgbd" + ], + "categories": [ + "Electronics", + "Science and Technology" + ] + }, + { + "createdAt": "2023-06-16T23:23:37Z", + "updatedAt": "2024-03-13T19:03:47Z", + "name": "Lidar 3d v1", + "owner": "abmohit", + "description": "A generic 3d lidar.", + "likes": 0, + "downloads": 70, + "filesize": 659099, + "upload_date": "2023-06-16T23:23:36Z", + "modify_date": "2023-06-16T23:23:36Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Lidar%203d%20v1/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:22:57Z", + "updatedAt": "2024-03-12T02:26:28Z", + "name": "RGBD Camera", + "owner": "abmohit", + "description": "A generic RGBD camera.", + "likes": 0, + "downloads": 39, + "filesize": 451354, + "upload_date": "2023-06-16T23:22:56Z", + "modify_date": "2023-06-16T23:22:56Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/RGBD%20Camera/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:22:26Z", + "updatedAt": "2024-03-12T02:26:42Z", + "name": "Lidar 2d v2", + "owner": "abmohit", + "description": "A generic planar lidar.", + "likes": 0, + "downloads": 219, + "filesize": 804227, + "upload_date": "2023-06-16T23:22:24Z", + "modify_date": "2023-06-16T23:22:24Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Lidar%202d%20v2/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:20:46Z", + "updatedAt": "2024-03-31T07:54:37Z", + "name": "TurtleBot", + "owner": "abmohit", + "description": "A model of the turtlebot", + "likes": 0, + "downloads": 86, + "filesize": 1441635, + "upload_date": "2023-06-16T23:20:43Z", + "modify_date": "2023-06-16T23:20:43Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/TurtleBot/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:19:52Z", + "updatedAt": "2024-03-12T02:27:12Z", + "name": "Intel RealSense R200", + "owner": "abmohit", + "description": "The Intel RealSense R200 medium-range depth camera. Range: 0.5-3.5m indoors,\n 0.5-10m outdoors. http://www.intel.com/realsense", + "likes": 0, + "downloads": 24, + "filesize": 51454, + "upload_date": "2023-06-16T23:19:51Z", + "modify_date": "2023-06-16T23:19:51Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Intel%20RealSense%20R200/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:19:19Z", + "updatedAt": "2024-03-12T02:27:29Z", + "name": "Parrot Bebop 2", + "owner": "abmohit", + "description": "A model of the Parrot Bebop 2 drone.", + "likes": 0, + "downloads": 37, + "filesize": 923390, + "upload_date": "2023-06-16T23:19:17Z", + "modify_date": "2023-06-16T23:19:17Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Parrot%20Bebop%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:18:07Z", + "updatedAt": "2024-04-03T06:03:32Z", + "name": "Standing person", + "owner": "abmohit", + "description": "A standing person. Model created with Makehuman (http://www.makehuman.org/)", + "likes": 0, + "downloads": 137, + "filesize": 26080565, + "upload_date": "2023-06-16T23:18:02Z", + "modify_date": "2023-06-16T23:18:02Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Standing%20person/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:16:06Z", + "updatedAt": "2024-03-12T02:27:53Z", + "name": "Simple Arm Gripper", + "owner": "abmohit", + "description": "A simple arm and pinch gripper.", + "likes": 0, + "downloads": 33, + "filesize": 15369, + "upload_date": "2023-06-16T23:16:04Z", + "modify_date": "2023-06-16T23:16:04Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Simple%20Arm%20Gripper/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:14:39Z", + "updatedAt": "2024-03-28T03:00:08Z", + "name": "Walking person", + "owner": "abmohit", + "description": "A walking person. Model created with Makehuman (http://www.makehuman.org/)", + "likes": 1, + "downloads": 131, + "filesize": 26058180, + "upload_date": "2023-06-16T23:14:34Z", + "modify_date": "2023-06-16T23:14:34Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Walking%20person/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:13:47Z", + "updatedAt": "2024-03-23T10:55:33Z", + "name": "Iris with Standoffs", + "owner": "abmohit", + "description": "A copy of the 3DR Iris model taken from\n https://github.com/PX4/sitl_gazebo/tree/master/models\n Local modifications include adding standoffs,\n inertia and collision updates..", + "likes": 0, + "downloads": 24, + "filesize": 6289387, + "upload_date": "2023-06-16T23:13:43Z", + "modify_date": "2023-06-16T23:13:43Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Iris%20with%20Standoffs/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:13:08Z", + "updatedAt": "2024-03-12T02:28:26Z", + "name": "Iris with Standoffs and Camera LiftDrag ArduCopter Plugins", + "owner": "abmohit", + "description": "starting with iris_with_standoffs\n add LiftDragPlugin\n add ArduCopterPlugin\n attach gimbal_small_2d model with GimbalSmall2dPlugin", + "likes": 1, + "downloads": 19, + "filesize": 131194, + "upload_date": "2023-06-16T23:13:07Z", + "modify_date": "2023-06-16T23:13:07Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Iris%20with%20Standoffs%20and%20Camera%20LiftDrag%20ArduCopter%20Plugins/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:11:58Z", + "updatedAt": "2024-03-23T10:55:59Z", + "name": "Calibration Plane", + "owner": "abmohit", + "description": "A plane with a reference texture on it depicting an asymmetrical circle pattern. Used to validate and calibrate camera models. The plane is 2m x 2m, and the circle grid size is 6x8.", + "likes": 0, + "downloads": 27, + "filesize": 47312, + "upload_date": "2023-06-16T23:11:57Z", + "modify_date": "2023-06-16T23:11:57Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Calibration%20Plane/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T23:10:20Z", + "updatedAt": "2024-03-26T10:10:26Z", + "name": "Checkerboard Plane", + "owner": "abmohit", + "description": "A plane with a reference checkerboard texture on it, used to validate and calibrate camera models. The checkerboard is 8x8 squares (like a standard checkerboard), and measures 2m on each side.", + "likes": 0, + "downloads": 52, + "filesize": 30229, + "upload_date": "2023-06-16T23:10:19Z", + "modify_date": "2023-06-16T23:10:19Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/abmohit/models/Checkerboard%20Plane/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-16T07:07:01Z", + "updatedAt": "2024-04-01T17:54:23Z", + "name": "Chessboard4", + "owner": "justartemm", + "description": "", + "likes": 0, + "downloads": 84, + "filesize": 14845, + "upload_date": "2023-06-16T07:07:00Z", + "modify_date": "2023-06-16T07:07:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-06-16T07:00:30Z", + "updatedAt": "2024-03-24T22:20:20Z", + "name": "Chessboard3", + "owner": "justartemm", + "description": "", + "likes": 0, + "downloads": 35, + "filesize": 14838, + "upload_date": "2023-06-16T07:00:29Z", + "modify_date": "2023-06-16T07:00:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-06-16T06:28:51Z", + "updatedAt": "2024-03-22T06:16:23Z", + "name": "Chessboard2", + "owner": "justartemm", + "description": "chessboard2", + "likes": 0, + "downloads": 24, + "filesize": 14838, + "upload_date": "2023-06-16T06:28:50Z", + "modify_date": "2023-06-16T06:28:50Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2023-06-16T06:24:09Z", + "updatedAt": "2024-03-22T06:16:17Z", + "name": "Chessboard", + "owner": "justartemm", + "description": "Chessboard model, that can be used for camera calibration", + "likes": 1, + "downloads": 49, + "filesize": 14840, + "upload_date": "2023-06-16T06:24:08Z", + "modify_date": "2023-06-16T06:24:08Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2023-06-11T21:36:38Z", + "updatedAt": "2024-03-22T06:17:02Z", + "name": "tennis_ball", + "owner": "kashodiya", + "description": "", + "likes": 0, + "downloads": 135, + "filesize": 107412, + "upload_date": "2023-06-11T21:36:37Z", + "modify_date": "2023-06-11T21:36:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/kashodiya/models/tennis_ball/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-08T03:43:01Z", + "updatedAt": "2024-04-03T21:19:52Z", + "name": "RMF_Materials", + "owner": "OpenRobotics", + "description": "Dummy models with shared materials and textures used for buildings in Open-RMF", + "likes": 0, + "downloads": 172, + "filesize": 10667466, + "upload_date": "2023-06-08T03:42:57Z", + "modify_date": "2023-06-08T03:42:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "textures", + "open-rmf", + "floors", + "walls", + "buildings" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2023-06-07T03:01:11Z", + "updatedAt": "2024-04-01T05:28:29Z", + "name": "RMF_Materials", + "owner": "Luca", + "description": "Materials used in buildings for the Open-RMF project", + "likes": 0, + "downloads": 89, + "filesize": 10667466, + "upload_date": "2023-06-07T03:01:06Z", + "modify_date": "2023-06-07T03:01:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "textures", + "open-rmf" + ] + }, + { + "createdAt": "2023-06-06T07:45:06Z", + "updatedAt": "2024-03-13T07:26:49Z", + "name": "Coast Water", + "owner": "adyt", + "description": "", + "likes": 0, + "downloads": 124, + "filesize": 2055896, + "upload_date": "2023-06-06T07:45:03Z", + "modify_date": "2023-06-06T07:45:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/adyt/models/Coast%20Water/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-06-05T17:01:08Z", + "updatedAt": "2024-03-29T08:05:52Z", + "name": "indy7", + "owner": "olive", + "description": "Indy7 robot compatible with Ignition and MoveIt2", + "likes": 0, + "downloads": 284, + "filesize": 7218764, + "upload_date": "2023-06-05T17:01:03Z", + "modify_date": "2023-06-05T17:01:03Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/olive/models/indy7/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-06-03T07:15:49Z", + "updatedAt": "2024-04-03T09:26:06Z", + "name": "Deneme(Copy)", + "owner": "geniusempire", + "description": "", + "likes": 0, + "downloads": 91, + "filesize": 5468015, + "upload_date": "2023-06-03T07:15:45Z", + "modify_date": "2023-06-03T07:15:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/geniusempire/models/Deneme%28Copy%29/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2023-05-31T16:08:15Z", + "updatedAt": "2024-03-22T01:01:35Z", + "name": "Deneme", + "owner": "ibrahim123123", + "description": "", + "likes": 0, + "downloads": 218, + "filesize": 5468015, + "upload_date": "2023-05-31T16:08:12Z", + "modify_date": "2023-05-31T16:08:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/ibrahim123123/models/Deneme/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2023-05-26T18:08:52Z", + "updatedAt": "2024-03-19T10:19:00Z", + "name": "x500 model for test", + "owner": "matllama", + "description": "x500 quadcopter (PX4)", + "likes": 0, + "downloads": 193, + "filesize": 9352661, + "upload_date": "2023-05-26T18:08:47Z", + "modify_date": "2023-05-26T18:08:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/matllama/models/x500%20model%20for%20test/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "UAV", + "PX4", + "Dronecode" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-05-22T13:09:26Z", + "updatedAt": "2024-04-01T17:54:38Z", + "name": "goztas_AUV", + "owner": "goztas", + "description": "A long range autonomous underwater vehicle", + "likes": 1, + "downloads": 373, + "filesize": 4981547, + "upload_date": "2023-05-22T13:09:22Z", + "modify_date": "2023-05-22T13:21:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/goztas/models/goztas_AUV/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "auv" + ], + "categories": [ + "Robots", + "Science and Technology" + ] + }, + { + "createdAt": "2023-05-21T23:32:57Z", + "updatedAt": "2024-03-12T02:21:51Z", + "name": "tennis_ball", + "owner": "redtedtezza", + "description": "", + "likes": 0, + "downloads": 111, + "filesize": 107412, + "upload_date": "2023-05-21T23:32:55Z", + "modify_date": "2023-05-22T00:10:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/redtedtezza/models/tennis_ball/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-05-21T23:26:08Z", + "updatedAt": "2024-03-15T01:24:48Z", + "name": "court", + "owner": "redtedtezza", + "description": "", + "likes": 0, + "downloads": 73, + "filesize": 4677385, + "upload_date": "2023-05-21T23:26:06Z", + "modify_date": "2023-05-22T00:18:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-05-21T09:17:38Z", + "updatedAt": "2024-03-28T09:52:30Z", + "name": "NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY", + "owner": "makhab", + "description": "Visual element for NUS SEDS' omnidirectional ground vehicle.", + "likes": 2, + "downloads": 155, + "filesize": 3156235, + "upload_date": "2023-05-21T09:17:34Z", + "modify_date": "2023-05-21T09:17:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/makhab/models/NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2023-05-21T09:16:40Z", + "updatedAt": "2024-03-12T07:11:19Z", + "name": "MBARI Tethys LRAUV-1", + "owner": "makhab", + "description": "A long range autonomous underwater vehicle developed by MBARI. Consists of two fins and a propeller.", + "likes": 2, + "downloads": 55, + "filesize": 4981488, + "upload_date": "2023-05-21T09:16:35Z", + "modify_date": "2023-05-21T09:16:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/makhab/models/MBARI%20Tethys%20LRAUV-1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "uuv", + "lrauv", + "tethys", + "MBARI" + ], + "categories": [ + "Robots", + "Science and Technology" + ] + }, + { + "createdAt": "2023-05-11T11:26:59Z", + "updatedAt": "2024-03-17T12:03:53Z", + "name": "MBARI Tethys LRAUV-1", + "owner": "alighasemi", + "description": "A long range autonomous underwater vehicle developed by MBARI. Consists of two fins and a propeller.", + "likes": 0, + "downloads": 158, + "filesize": 4981488, + "upload_date": "2023-05-11T11:26:55Z", + "modify_date": "2023-05-11T11:26:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/alighasemi/models/MBARI%20Tethys%20LRAUV-1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "uuv", + "lrauv", + "tethys", + "MBARI" + ], + "categories": [ + "Robots", + "Science and Technology" + ] + }, + { + "createdAt": "2023-05-11T08:11:39Z", + "updatedAt": "2024-04-03T21:21:45Z", + "name": "TinyRobot", + "owner": "OpenRobotics", + "description": "A tiny blue robot", + "likes": 0, + "downloads": 415, + "filesize": 213927, + "upload_date": "2023-05-11T08:11:38Z", + "modify_date": "2023-09-27T12:09:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "robot", + "delivery", + "agv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-05-11T07:44:12Z", + "updatedAt": "2024-04-01T06:29:48Z", + "name": "TinyRobot", + "owner": "Luca", + "description": "", + "likes": 0, + "downloads": 181, + "filesize": 213927, + "upload_date": "2023-05-11T07:44:10Z", + "modify_date": "2023-05-11T07:44:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-05-09T07:37:37Z", + "updatedAt": "2024-03-12T09:26:54Z", + "name": "test", + "owner": "liulei2023", + "description": "International space station", + "likes": 0, + "downloads": 96, + "filesize": 14769241, + "upload_date": "2023-05-09T07:37:22Z", + "modify_date": "2023-05-09T07:37:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "space" + ] + }, + { + "createdAt": "2023-05-04T15:25:36Z", + "updatedAt": "2024-03-12T02:31:18Z", + "name": "newer_flippy", + "owner": "amargett", + "description": "", + "likes": 0, + "downloads": 81, + "filesize": 12770806, + "upload_date": "2023-05-04T15:25:29Z", + "modify_date": "2023-05-04T15:36:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/amargett/models/newer_flippy/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-05-04T15:14:24Z", + "updatedAt": "2024-03-12T02:31:30Z", + "name": "Flippy", + "owner": "amargett", + "description": "", + "likes": 0, + "downloads": 162, + "filesize": 39182, + "upload_date": "2023-05-04T15:14:16Z", + "modify_date": "2023-05-14T19:23:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/amargett/models/Flippy/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-05-04T15:10:26Z", + "updatedAt": "2024-03-12T02:31:41Z", + "name": "new_flippy", + "owner": "amargett", + "description": "", + "likes": 0, + "downloads": 47, + "filesize": 12770749, + "upload_date": "2023-05-04T15:10:18Z", + "modify_date": "2023-05-04T15:10:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/amargett/models/new_flippy/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-05-03T10:43:50Z", + "updatedAt": "2024-03-12T02:21:53Z", + "name": "x500", + "owner": "rrobertson", + "description": "x500 quadcopter (PX4)", + "likes": 0, + "downloads": 176, + "filesize": 9352661, + "upload_date": "2023-05-03T10:43:45Z", + "modify_date": "2023-05-03T10:43:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/rrobertson/models/x500/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "UAV", + "PX4", + "Dronecode" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-05-01T22:50:02Z", + "updatedAt": "2024-04-03T21:23:30Z", + "name": "Camera with Projector", + "owner": "OpenRobotics", + "description": "A device consisting of a pair of IR cameras, an RGB camera, and an IR pattern projector.", + "likes": 0, + "downloads": 204, + "filesize": 1638702, + "upload_date": "2023-05-01T22:50:01Z", + "modify_date": "2023-09-27T12:09:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-04-24T09:54:30Z", + "updatedAt": "2024-03-21T00:01:40Z", + "name": "TestTexture", + "owner": "Ydenker", + "description": "", + "likes": 0, + "downloads": 77, + "filesize": 14565, + "upload_date": "2023-04-24T09:54:29Z", + "modify_date": "2023-04-24T09:54:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-04-24T08:22:07Z", + "updatedAt": "2024-03-12T02:22:47Z", + "name": "Box Test", + "owner": "Ydenker", + "description": "Testing how uploads work", + "likes": 0, + "downloads": 2349, + "filesize": 48953, + "upload_date": "2023-04-24T08:22:06Z", + "modify_date": "2023-04-24T09:21:04Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-04-23T20:41:03Z", + "updatedAt": "2024-03-16T17:27:26Z", + "name": "x500", + "owner": "alireza73", + "description": "x500 quadcopter (PX4)", + "likes": 0, + "downloads": 192, + "filesize": 9352661, + "upload_date": "2023-04-23T20:40:59Z", + "modify_date": "2023-04-23T20:40:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/alireza73/models/x500/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "UAV", + "PX4", + "Dronecode" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-04-20T17:26:34Z", + "updatedAt": "2024-04-03T21:23:33Z", + "name": "yosemite", + "owner": "OpenRobotics", + "description": "Yosemite", + "likes": 0, + "downloads": 239, + "filesize": 71568528, + "upload_date": "2023-04-20T17:26:25Z", + "modify_date": "2023-09-27T12:09:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-04-20T17:25:58Z", + "updatedAt": "2024-03-28T00:47:30Z", + "name": "sand_island", + "owner": "OpenRobotics", + "description": "Sand island", + "likes": 0, + "downloads": 222, + "filesize": 42080504, + "upload_date": "2023-04-20T17:25:52Z", + "modify_date": "2023-09-27T12:10:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-04-20T17:24:48Z", + "updatedAt": "2024-03-20T05:56:52Z", + "name": "mcmillan_airfield", + "owner": "OpenRobotics", + "description": "Mcmillan airfield", + "likes": 0, + "downloads": 163, + "filesize": 63052834, + "upload_date": "2023-04-20T17:24:39Z", + "modify_date": "2023-09-27T12:10:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-04-20T17:23:09Z", + "updatedAt": "2024-04-01T02:09:31Z", + "name": "ksql_airport", + "owner": "OpenRobotics", + "description": "Baylands", + "likes": 0, + "downloads": 154, + "filesize": 26028394, + "upload_date": "2023-04-20T17:23:03Z", + "modify_date": "2023-09-27T12:10:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "airport" + ] + }, + { + "createdAt": "2023-04-20T17:21:56Z", + "updatedAt": "2024-03-17T00:38:07Z", + "name": "ISS", + "owner": "OpenRobotics", + "description": "International Space Station", + "likes": 0, + "downloads": 105, + "filesize": 14769241, + "upload_date": "2023-04-20T17:21:39Z", + "modify_date": "2023-09-27T12:11:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "space" + ] + }, + { + "createdAt": "2023-04-20T17:18:40Z", + "updatedAt": "2024-04-01T14:46:09Z", + "name": "iscas_museum", + "owner": "OpenRobotics", + "description": "ISCAS musem", + "likes": 0, + "downloads": 120, + "filesize": 7361507, + "upload_date": "2023-04-20T17:18:36Z", + "modify_date": "2023-04-20T17:18:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "museum" + ] + }, + { + "createdAt": "2023-04-20T17:12:37Z", + "updatedAt": "2024-03-12T07:59:46Z", + "name": "drc_practice_wheel_valve_large", + "owner": "OpenRobotics", + "description": "This model approximates a valve with a wheel handle for the DRC Trials Task 7 which involves locating and closing a valve.", + "likes": 0, + "downloads": 61, + "filesize": 1015695, + "upload_date": "2023-04-20T17:12:35Z", + "modify_date": "2023-09-26T16:55:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "valve" + ] + }, + { + "createdAt": "2023-04-20T17:11:48Z", + "updatedAt": "2024-04-04T05:47:00Z", + "name": "baylands", + "owner": "OpenRobotics", + "description": "Baylands", + "likes": 0, + "downloads": 939, + "filesize": 150731432, + "upload_date": "2023-04-20T17:11:10Z", + "modify_date": "2023-09-27T12:14:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "park" + ] + }, + { + "createdAt": "2023-04-18T19:27:45Z", + "updatedAt": "2024-03-14T15:36:01Z", + "name": "Coast Water", + "owner": "amargett", + "description": "", + "likes": 0, + "downloads": 75, + "filesize": 2055896, + "upload_date": "2023-04-18T19:27:42Z", + "modify_date": "2023-04-18T19:27:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/amargett/models/Coast%20Water/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-04-18T10:10:49Z", + "updatedAt": "2024-04-03T07:57:57Z", + "name": "Turtlebot3_waffle_pi_openmanipulator", + "owner": "RooGazebo", + "description": "Turtlebot3 waffle_pi with openmanipulator", + "likes": 0, + "downloads": 316, + "filesize": 5121, + "upload_date": "2023-04-18T10:10:48Z", + "modify_date": "2023-04-18T10:10:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Electronics" + ] + }, + { + "createdAt": "2023-04-17T12:54:31Z", + "updatedAt": "2024-04-01T17:54:56Z", + "name": "Ecoforms_Plant_Pot_GP9AAvocado", + "owner": "asli", + "description": "Ecoforms Plant Pot, GP9A-Avocado", + "likes": 0, + "downloads": 222, + "filesize": 9600395, + "upload_date": "2023-04-17T12:54:28Z", + "modify_date": "2023-04-17T12:54:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/asli/models/Ecoforms_Plant_Pot_GP9AAvocado/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2023-04-12T06:08:10Z", + "updatedAt": "2024-03-23T09:13:38Z", + "name": "Intel RealSense D435", + "owner": "ZWL", + "description": "Intel RealSense D435", + "likes": 3, + "downloads": 206, + "filesize": 2582073, + "upload_date": "2023-04-12T06:08:08Z", + "modify_date": "2023-04-12T06:08:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/ZWL/models/Intel%20RealSense%20D435/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "camera", + "intel", + "rgbd" + ], + "categories": [ + "Electronics", + "Science and Technology" + ] + }, + { + "createdAt": "2023-04-09T06:24:01Z", + "updatedAt": "2024-04-02T10:21:57Z", + "name": "barcs_qav500_no_sensors", + "owner": "shijie", + "description": "BARCS qav500 robot for SubT", + "likes": 0, + "downloads": 194, + "filesize": 13664204, + "upload_date": "2023-04-09T06:23:55Z", + "modify_date": "2023-04-09T06:23:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/shijie/models/barcs_qav500_no_sensors/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-04-07T11:52:29Z", + "updatedAt": "2024-04-02T11:35:55Z", + "name": "PX4 Vision", + "owner": "PX4", + "description": "This is a model of the Holybro PX4 Vision.", + "likes": 1, + "downloads": 1659, + "filesize": 122329, + "upload_date": "2023-04-07T11:52:27Z", + "modify_date": "2023-04-07T13:54:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/PX4/models/PX4%20Vision/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "UAV", + "PX4", + "Dronecode" + ], + "categories": [ + "Robots", + "Science and Technology" + ] + }, + { + "createdAt": "2023-04-05T13:50:39Z", + "updatedAt": "2024-03-31T13:31:07Z", + "name": "barcs_qav500_no_sensors", + "owner": "german", + "description": "BARCS qav500 robot", + "likes": 0, + "downloads": 283, + "filesize": 13664203, + "upload_date": "2023-04-05T13:50:33Z", + "modify_date": "2023-04-24T16:41:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/german/models/barcs_qav500_no_sensors/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-03-31T07:20:16Z", + "updatedAt": "2024-04-03T09:15:47Z", + "name": "Vessel E", + "owner": "kaikaiwu", + "description": "Vessel E", + "likes": 0, + "downloads": 312, + "filesize": 2863293, + "upload_date": "2023-03-31T07:20:14Z", + "modify_date": "2023-03-31T07:20:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/kaikaiwu/models/Vessel%20E/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-03-27T04:59:26Z", + "updatedAt": "2024-03-20T17:56:01Z", + "name": "Walking actor", + "owner": "deepakmaurya", + "description": "", + "likes": 1, + "downloads": 310, + "filesize": 759053, + "upload_date": "2023-03-27T04:59:25Z", + "modify_date": "2023-03-27T04:59:25Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/deepakmaurya/models/Walking%20actor/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "actor", + "person", + "human", + "moving", + "animation", + "skeleton" + ], + "categories": [ + "People", + "Action Figures" + ] + }, + { + "createdAt": "2023-03-22T14:57:03Z", + "updatedAt": "2024-04-02T04:22:12Z", + "name": "MR-Buggy3", + "owner": "pangyinglong", + "description": "Model of the NXP Mobile Robotics Buggy3. Used in Hover/Rover Game competitions, more information can be found: https://www.nxp.com/mr-buggy3", + "likes": 0, + "downloads": 353, + "filesize": 18713724, + "upload_date": "2023-03-22T14:56:55Z", + "modify_date": "2023-03-22T14:56:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/pangyinglong/models/MR-Buggy3/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "car", + "rover", + "HoverGames", + "NXP", + "RoverGames", + "RC", + "Buggy", + "Ackermann", + "Buggy3", + "Mobile Robotics" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2023-03-11T12:01:53Z", + "updatedAt": "2024-03-26T16:27:55Z", + "name": "Cessna C-172", + "owner": "Dod", + "description": "A small airplane with realistic dynamic and aerodynamic properties,", + "likes": 2, + "downloads": 529, + "filesize": 333268, + "upload_date": "2023-03-11T12:01:51Z", + "modify_date": "2023-03-11T12:01:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Dod/models/Cessna%20C-172/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "airplane", + "drone", + "auv", + "aerodynamics", + "flyingrobot" + ] + }, + { + "createdAt": "2023-03-03T04:08:55Z", + "updatedAt": "2024-03-12T07:44:12Z", + "name": "OakD-Lite", + "owner": "NGD1004", + "description": "Model of Oak-D Lite with each sensor modeled, and correct inertia and mass. Outputs correct FOV for RGB (1080) and Stereo Depth (640).", + "likes": 0, + "downloads": 143, + "filesize": 1322229, + "upload_date": "2023-03-03T04:08:54Z", + "modify_date": "2023-03-03T04:08:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/NGD1004/models/OakD-Lite/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "sensor", + "camera", + "Oak-D", + "OakD", + "Depth", + "RGB" + ], + "categories": [ + "Robots", + "Camera" + ] + }, + { + "createdAt": "2023-03-02T16:00:37Z", + "updatedAt": "2024-03-28T23:38:40Z", + "name": "Walking actor", + "owner": "EthanG", + "description": "", + "likes": 1, + "downloads": 379, + "filesize": 759053, + "upload_date": "2023-03-02T16:00:35Z", + "modify_date": "2023-03-02T16:00:35Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/EthanG/models/Walking%20actor/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "actor", + "person", + "human", + "moving", + "animation", + "skeleton" + ], + "categories": [ + "People", + "Action Figures" + ] + }, + { + "createdAt": "2023-03-02T11:04:35Z", + "updatedAt": "2024-03-25T06:19:10Z", + "name": "pallet_box_mobile", + "owner": "NGD1004", + "description": "A pallet load with \"200kg\" of boxes. To use in simulations of a Palletbot.", + "likes": 1, + "downloads": 344, + "filesize": 1242925, + "upload_date": "2023-03-02T11:04:33Z", + "modify_date": "2023-03-02T11:04:33Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/NGD1004/models/pallet_box_mobile/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse", + "pallet" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2023-03-02T11:03:51Z", + "updatedAt": "2024-03-25T06:19:21Z", + "name": "aws_robomaker_warehouse_ShelfD_01", + "owner": "NGD1004", + "description": "", + "likes": 0, + "downloads": 111, + "filesize": 1051844, + "upload_date": "2023-03-02T11:03:50Z", + "modify_date": "2023-03-02T11:03:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/NGD1004/models/aws_robomaker_warehouse_ShelfD_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2023-03-02T06:07:23Z", + "updatedAt": "2024-04-04T06:00:52Z", + "name": "Warehouse", + "owner": "NGD1004", + "description": "A simple structure to use in warehouse simulations.", + "likes": 0, + "downloads": 199, + "filesize": 8847835, + "upload_date": "2023-03-02T06:07:21Z", + "modify_date": "2023-03-02T06:07:21Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/NGD1004/models/Warehouse/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse", + "tugbot", + "movai" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2023-03-02T04:22:02Z", + "updatedAt": "2024-03-12T07:45:01Z", + "name": "WIP-robotmodel1danilo", + "owner": "NGD1004", + "description": "testing importing mesh to fuel", + "likes": 0, + "downloads": 31, + "filesize": 13859154, + "upload_date": "2023-03-02T04:21:58Z", + "modify_date": "2023-03-02T04:21:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/NGD1004/models/WIP-robotmodel1danilo/tip/files/thumbnails/2023-01-12_13-58.png", + "private": false, + "tags": [ + "robot", + "diffdrive" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-03-02T04:20:28Z", + "updatedAt": "2024-03-28T06:24:06Z", + "name": "Cardboard box", + "owner": "NGD1004", + "description": "A closed cardboard box.", + "likes": 0, + "downloads": 206, + "filesize": 1022747, + "upload_date": "2023-03-02T04:20:27Z", + "modify_date": "2023-03-02T04:20:27Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/NGD1004/models/Cardboard%20box/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-03-02T04:19:10Z", + "updatedAt": "2024-03-21T01:36:15Z", + "name": "NIST maze wall 120", + "owner": "NGD1004", + "description": "1.2m high NIST standard test arena maze wall", + "likes": 0, + "downloads": 45, + "filesize": 520625, + "upload_date": "2023-03-02T04:19:09Z", + "modify_date": "2023-03-02T04:19:09Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/NGD1004/models/NIST%20maze%20wall%20120/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-03-01T11:20:00Z", + "updatedAt": "2024-03-12T07:45:44Z", + "name": "Walking actor", + "owner": "NGD1004", + "description": "", + "likes": 1, + "downloads": 115, + "filesize": 759053, + "upload_date": "2023-03-01T11:19:58Z", + "modify_date": "2023-03-01T11:19:58Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/NGD1004/models/Walking%20actor/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "actor", + "person", + "human", + "moving", + "animation", + "skeleton" + ], + "categories": [ + "People", + "Action Figures" + ] + }, + { + "createdAt": "2023-02-28T17:11:51Z", + "updatedAt": "2024-03-30T12:59:05Z", + "name": "Lidar 2d v1", + "owner": "khulqu15", + "description": "A generic planar lidar.", + "likes": 1, + "downloads": 181, + "filesize": 127556, + "upload_date": "2023-02-28T17:11:48Z", + "modify_date": "2023-02-28T17:11:48Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/khulqu15/models/Lidar%202d%20v1/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2023-02-28T07:28:11Z", + "updatedAt": "2024-03-12T07:45:58Z", + "name": "centauri_conveyor", + "owner": "NGD1004", + "description": "", + "likes": 0, + "downloads": 54, + "filesize": 4010804, + "upload_date": "2023-02-28T07:28:08Z", + "modify_date": "2023-02-28T07:28:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-02-28T06:33:56Z", + "updatedAt": "2024-03-25T06:20:00Z", + "name": "shelf", + "owner": "NGD1004", + "description": "simple shelf to use in warehouse worlds", + "likes": 0, + "downloads": 209, + "filesize": 1239350, + "upload_date": "2023-02-28T06:33:54Z", + "modify_date": "2023-02-28T06:33:54Z", + "license_id": 5, + "license_name": "Creative Commons Attribution Non Commercial 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/NGD1004/models/shelf/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse", + "shelf" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2023-02-28T06:33:14Z", + "updatedAt": "2024-03-25T06:20:14Z", + "name": "pallet", + "owner": "NGD1004", + "description": "A simple pallet with collision to use in warehouse simulations.", + "likes": 1, + "downloads": 135, + "filesize": 392803, + "upload_date": "2023-02-28T06:33:11Z", + "modify_date": "2023-02-28T06:33:11Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/NGD1004/models/pallet/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse", + "pallet" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2023-02-16T06:03:25Z", + "updatedAt": "2024-03-12T06:59:44Z", + "name": "Rubicon", + "owner": "Kavya", + "description": "", + "likes": 0, + "downloads": 397, + "filesize": 187430027, + "upload_date": "2023-02-16T06:02:59Z", + "modify_date": "2023-02-16T06:02:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Kavya/models/Rubicon/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-02-16T02:13:55Z", + "updatedAt": "2024-03-21T15:23:28Z", + "name": "shelf 1", + "owner": "Kavya", + "description": "simple shelf to use in warehouse worlds", + "likes": 1, + "downloads": 136, + "filesize": 2102876, + "upload_date": "2023-02-16T02:13:54Z", + "modify_date": "2023-02-16T02:13:54Z", + "license_id": 5, + "license_name": "Creative Commons Attribution Non Commercial 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc/4.0/88x31.png", + "permission": 1, + "url_name": "", + "private": false, + "tags": [ + "warehouse", + "shelf" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2023-02-15T18:41:41Z", + "updatedAt": "2024-03-12T07:00:15Z", + "name": "shelf", + "owner": "Kavya", + "description": "simple shelf to use in warehouse worlds", + "likes": 1, + "downloads": 123, + "filesize": 2102876, + "upload_date": "2023-02-15T18:41:40Z", + "modify_date": "2023-02-16T02:11:48Z", + "license_id": 5, + "license_name": "Creative Commons Attribution Non Commercial 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc/4.0/88x31.png", + "permission": 1, + "url_name": "", + "private": false, + "tags": [ + "warehouse", + "shelf" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2023-02-15T18:03:02Z", + "updatedAt": "2024-03-21T03:38:33Z", + "name": "warehouse", + "owner": "Kavya", + "description": "warehouse floor design for amr", + "likes": 0, + "downloads": 149, + "filesize": 4411529, + "upload_date": "2023-02-15T18:03:01Z", + "modify_date": "2023-02-15T18:16:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "AMR", + "machines", + "path" + ], + "categories": [ + "Architecture", + "Robots" + ] + }, + { + "createdAt": "2023-02-09T22:38:25Z", + "updatedAt": "2024-04-03T09:52:02Z", + "name": "nathan_benderson_park", + "owner": "OpenRobotics", + "description": "A model of the Nathan Benderson Park in Florida.", + "likes": 5, + "downloads": 1202, + "filesize": 211533405, + "upload_date": "2023-02-09T22:37:56Z", + "modify_date": "2023-02-27T23:28:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/nathan_benderson_park/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "ocean" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2023-02-08T09:03:11Z", + "updatedAt": "2024-03-21T23:31:49Z", + "name": "MR-Buggy3", + "owner": "xorwise", + "description": "Model of the NXP Mobile Robotics Buggy3. Used in Hover/Rover Game competitions, more information can be found: https://www.nxp.com/mr-buggy3", + "likes": 0, + "downloads": 317, + "filesize": 18713724, + "upload_date": "2023-02-08T09:03:02Z", + "modify_date": "2023-02-08T09:03:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/xorwise/models/MR-Buggy3/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "car", + "rover", + "HoverGames", + "NXP", + "RoverGames", + "RC", + "Buggy", + "Ackermann", + "Buggy3", + "Mobile Robotics" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2023-01-24T19:13:37Z", + "updatedAt": "2024-03-26T02:12:27Z", + "name": "test_dae", + "owner": "iche033", + "description": "", + "likes": 0, + "downloads": 119, + "filesize": 1592469, + "upload_date": "2023-01-24T19:13:35Z", + "modify_date": "2023-09-21T01:07:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2023-01-18T10:31:54Z", + "updatedAt": "2024-04-01T17:55:43Z", + "name": "DRC Practice: Orange Jersey Barrier", + "owner": "SegQx", + "description": "An orange jersey barrier used in DRC Practice.", + "likes": 1, + "downloads": 172, + "filesize": 49133, + "upload_date": "2023-01-18T10:31:53Z", + "modify_date": "2023-01-18T10:31:53Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/SegQx/models/DRC%20Practice:%20Orange%20Jersey%20Barrier/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-01-12T13:02:30Z", + "updatedAt": "2024-03-24T16:58:27Z", + "name": "WIP-robotmodel1danilo", + "owner": "danilopejovic", + "description": "testing importing mesh to fuel", + "likes": 0, + "downloads": 182, + "filesize": 13859154, + "upload_date": "2023-01-12T13:02:25Z", + "modify_date": "2023-01-12T13:04:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/danilopejovic/models/WIP-robotmodel1danilo/tip/files/thumbnails/2023-01-12_13-58.png", + "private": false, + "tags": [ + "robot", + "diffdrive" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2023-01-07T00:45:27Z", + "updatedAt": "2024-03-25T01:59:30Z", + "name": "deformable_sphere_no_shadows", + "owner": "iche033", + "description": "A sphere with visual plugin", + "likes": 0, + "downloads": 78, + "filesize": 93993, + "upload_date": "2023-01-07T00:45:26Z", + "modify_date": "2023-09-21T01:07:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/iche033/models/deformable_sphere_no_shadows/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-01-06T22:27:50Z", + "updatedAt": "2024-04-04T06:04:40Z", + "name": "Null Island", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 921, + "filesize": 206440032, + "upload_date": "2023-01-06T22:27:28Z", + "modify_date": "2023-09-27T12:17:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Null%20Island/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2023-01-06T22:16:45Z", + "updatedAt": "2024-04-04T06:05:08Z", + "name": "Coast Water", + "owner": "OpenRobotics", + "description": "waves - visual only", + "likes": 2, + "downloads": 1115, + "filesize": 2055896, + "upload_date": "2023-01-06T22:16:43Z", + "modify_date": "2023-09-27T12:18:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Coast%20Water/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-01-05T22:30:51Z", + "updatedAt": "2024-03-12T07:04:50Z", + "name": "MR-Buggy3", + "owner": "Krlmeigen", + "description": "Model of the NXP Mobile Robotics Buggy3. Used in Hover/Rover Game competitions, more information can be found: https://www.nxp.com/mr-buggy3", + "likes": 0, + "downloads": 207, + "filesize": 18713724, + "upload_date": "2023-01-05T22:30:44Z", + "modify_date": "2023-01-05T22:30:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Krlmeigen/models/MR-Buggy3/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "car", + "rover", + "HoverGames", + "NXP", + "RoverGames", + "RC", + "Buggy", + "Ackermann", + "Buggy3", + "Mobile Robotics" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2023-01-05T22:16:06Z", + "updatedAt": "2024-04-03T10:42:38Z", + "name": "Coast Waves 2", + "owner": "OpenRobotics", + "description": "waves - visual only", + "likes": 1, + "downloads": 322, + "filesize": 2055897, + "upload_date": "2023-01-05T22:16:03Z", + "modify_date": "2023-09-27T12:18:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Coast%20Waves%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2023-01-03T18:59:46Z", + "updatedAt": "2024-03-23T14:26:41Z", + "name": "Cast Iron Radiator", + "owner": "AlexSSoM", + "description": "", + "likes": 0, + "downloads": 169, + "filesize": 3124792, + "upload_date": "2023-01-03T18:59:44Z", + "modify_date": "2023-01-03T18:59:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AlexSSoM/models/Cast%20Iron%20Radiator/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Architecture", + "Appliance" + ] + }, + { + "createdAt": "2022-12-28T12:25:25Z", + "updatedAt": "2024-03-23T12:49:06Z", + "name": "recepter", + "owner": "egeplnm", + "description": "re", + "likes": 0, + "downloads": 1150, + "filesize": 81587, + "upload_date": "2022-12-28T12:25:24Z", + "modify_date": "2022-12-28T12:47:08Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-12-21T02:01:13Z", + "updatedAt": "2024-04-03T14:57:01Z", + "name": "ELM4-Chassis", + "owner": "RudisLaboratories", + "description": "Model of NXP Mobile Robotics \"El Mandadero\" ELM4, a multi-purpose ground vehicle chassis with modular payload uppers. https://nxp.gitbook.io/elmandadero/", + "likes": 1, + "downloads": 295, + "filesize": 2907999, + "upload_date": "2022-12-21T02:01:09Z", + "modify_date": "2022-12-21T02:01:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/RudisLaboratories/models/ELM4-Chassis/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "car", + "platform", + "rover", + "NXP", + "Mobile Robotics", + "last mile", + "delivery", + "grocery", + "chassis" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2022-12-20T14:33:17Z", + "updatedAt": "2024-04-02T18:00:40Z", + "name": "MR-Buggy3", + "owner": "RudisLaboratories", + "description": "Model of the NXP Mobile Robotics Buggy3. Used in Hover/Rover Game competitions, more information can be found: https://www.nxp.com/mr-buggy3", + "likes": 4, + "downloads": 336, + "filesize": 18713724, + "upload_date": "2022-12-20T14:33:03Z", + "modify_date": "2022-12-20T14:33:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/RudisLaboratories/models/MR-Buggy3/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "car", + "rover", + "HoverGames", + "NXP", + "RoverGames", + "RC", + "Buggy", + "Ackermann", + "Buggy3", + "Mobile Robotics" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2022-12-20T00:10:26Z", + "updatedAt": "2024-04-03T07:30:08Z", + "name": "Cave", + "owner": "OpenRobotics", + "description": "Cave", + "likes": 0, + "downloads": 548, + "filesize": 63199614, + "upload_date": "2022-12-20T00:10:16Z", + "modify_date": "2023-09-27T12:18:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2022-12-19T23:32:10Z", + "updatedAt": "2024-04-03T11:58:03Z", + "name": "Rubicon Snowy", + "owner": "OpenRobotics", + "description": "Rubicon Challenge", + "likes": 0, + "downloads": 315, + "filesize": 159703789, + "upload_date": "2022-12-19T23:31:34Z", + "modify_date": "2023-09-27T12:26:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rubicon%20Snowy/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-12-19T23:31:38Z", + "updatedAt": "2024-04-02T02:34:02Z", + "name": "Rubicon", + "owner": "OpenRobotics", + "description": "", + "likes": 4, + "downloads": 1064, + "filesize": 187430027, + "upload_date": "2022-12-19T23:31:04Z", + "modify_date": "2022-12-19T23:36:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rubicon/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-12-04T14:38:16Z", + "updatedAt": "2024-04-01T17:55:58Z", + "name": "naked tomato plant", + "owner": "omermaayany", + "description": "test for tomato plant", + "likes": 0, + "downloads": 314, + "filesize": 3142428, + "upload_date": "2022-12-04T14:38:14Z", + "modify_date": "2022-12-04T15:06:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/omermaayany/models/naked%20tomato%20plant/tip/files/thumbnails/tomato.png", + "private": false, + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2022-12-01T09:20:31Z", + "updatedAt": "2024-04-02T07:06:50Z", + "name": "MegaCavern", + "owner": "ctrazziwp", + "description": "MegaCaverns world", + "likes": 0, + "downloads": 162, + "filesize": 288506464, + "upload_date": "2022-12-01T09:18:58Z", + "modify_date": "2022-12-01T09:18:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/ctrazziwp/models/MegaCavern/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-12-01T09:18:57Z", + "updatedAt": "2024-03-12T03:07:48Z", + "name": "Intel RealSense D435", + "owner": "ctrazziwp", + "description": "Intel RealSense D435", + "likes": 1, + "downloads": 94, + "filesize": 2582073, + "upload_date": "2022-12-01T09:18:54Z", + "modify_date": "2022-12-01T09:18:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/ctrazziwp/models/Intel%20RealSense%20D435/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "camera", + "intel", + "rgbd" + ], + "categories": [ + "Electronics", + "Science and Technology" + ] + }, + { + "createdAt": "2022-12-01T09:18:50Z", + "updatedAt": "2024-04-02T07:06:21Z", + "name": "pallet", + "owner": "ctrazziwp", + "description": "A simple pallet with collision to use in warehouse simulations.", + "likes": 1, + "downloads": 95, + "filesize": 392803, + "upload_date": "2022-12-01T09:18:41Z", + "modify_date": "2022-12-01T09:18:41Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/ctrazziwp/models/pallet/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse", + "pallet" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2022-12-01T09:18:44Z", + "updatedAt": "2024-03-27T15:27:03Z", + "name": "shelf", + "owner": "ctrazziwp", + "description": "simple shelf to use in warehouse worlds", + "likes": 0, + "downloads": 214, + "filesize": 1239350, + "upload_date": "2022-12-01T09:18:41Z", + "modify_date": "2022-12-01T09:18:41Z", + "license_id": 5, + "license_name": "Creative Commons Attribution Non Commercial 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/ctrazziwp/models/shelf/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse", + "shelf" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2022-12-01T09:18:41Z", + "updatedAt": "2024-04-02T07:06:30Z", + "name": "shelf_big", + "owner": "ctrazziwp", + "description": "A simple shelf to use in warehouse simulations. This is a big version of the shelf model.", + "likes": 0, + "downloads": 65, + "filesize": 1135852, + "upload_date": "2022-12-01T09:18:36Z", + "modify_date": "2022-12-01T09:18:36Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/ctrazziwp/models/shelf_big/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "big", + "warehouse", + "shelf" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2022-12-01T09:18:25Z", + "updatedAt": "2024-03-27T15:28:32Z", + "name": "pallet_box_mobile", + "owner": "ctrazziwp", + "description": "A pallet load with \"200kg\" of boxes. To use in simulations of a Palletbot.", + "likes": 0, + "downloads": 108, + "filesize": 1242925, + "upload_date": "2022-12-01T09:18:23Z", + "modify_date": "2022-12-01T09:18:23Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/ctrazziwp/models/pallet_box_mobile/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse", + "pallet" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2022-12-01T09:18:19Z", + "updatedAt": "2024-04-02T07:06:38Z", + "name": "aws_robomaker_warehouse_PalletJackB_01", + "owner": "ctrazziwp", + "description": "", + "likes": 0, + "downloads": 89, + "filesize": 929117, + "upload_date": "2022-12-01T09:18:16Z", + "modify_date": "2022-12-01T09:18:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/ctrazziwp/models/aws_robomaker_warehouse_PalletJackB_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2022-11-29T20:00:04Z", + "updatedAt": "2024-04-01T16:00:37Z", + "name": "ur5_rg2", + "owner": "sproy", + "description": "Universal Robot 5 (UR5) robot with OnRobot RG2 gripper.\n\nMore information on [GitHub](https://github.com/AndrejOrsula/ur5_rg2_ign).", + "likes": 0, + "downloads": 371, + "filesize": 2548812, + "upload_date": "2022-11-29T19:59:57Z", + "modify_date": "2022-11-29T19:59:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/sproy/models/ur5_rg2/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-11-22T19:19:37Z", + "updatedAt": "2024-04-04T06:19:14Z", + "name": "hatchback_1", + "owner": "OpenRoboticsTest", + "description": "A hatchback that has hatchback_red_1 depending on it.", + "likes": 0, + "downloads": 4805, + "filesize": 957, + "upload_date": "2022-11-22T19:19:35Z", + "modify_date": "2022-11-22T19:21:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2022-11-22T19:16:44Z", + "updatedAt": "2024-04-04T06:19:13Z", + "name": "hatchback_red_1", + "owner": "OpenRoboticsTest", + "description": "A red hatchback with a dependency on `hatchback_1` specified in its `metadata.pbtxt`", + "likes": 0, + "downloads": 6586, + "filesize": 1131, + "upload_date": "2022-11-22T19:16:42Z", + "modify_date": "2022-11-22T20:21:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2022-11-22T19:05:16Z", + "updatedAt": "2024-04-04T06:19:12Z", + "name": "Rescue Randy", + "owner": "OpenRoboticsTest", + "description": "A static rescue randy model", + "likes": 0, + "downloads": 4806, + "filesize": 872, + "upload_date": "2022-11-22T19:05:13Z", + "modify_date": "2022-11-22T19:13:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-11-22T17:26:51Z", + "updatedAt": "2024-03-12T02:21:12Z", + "name": "Test box 1", + "owner": "OpenRoboticsTest", + "description": "Just a unit box, intended to be used by automated testing of Gazebo Fuel.", + "likes": 0, + "downloads": 102, + "filesize": 992, + "upload_date": "2022-11-22T17:26:50Z", + "modify_date": "2022-11-22T18:29:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "box", + "test", + "primitive" + ] + }, + { + "createdAt": "2022-11-19T13:36:09Z", + "updatedAt": "2024-03-22T21:33:04Z", + "name": "Panda arm - Fortress merge include demo", + "owner": "emil01", + "description": "Part of Fortress demo", + "likes": 0, + "downloads": 272, + "filesize": 4278324, + "upload_date": "2022-11-19T13:36:05Z", + "modify_date": "2022-11-19T13:36:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/emil01/models/Panda%20arm%20-%20Fortress%20merge%20include%20demo/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "robot", + "arm" + ], + "categories": [ + "Electronics" + ] + }, + { + "createdAt": "2022-11-18T09:28:48Z", + "updatedAt": "2024-04-03T12:08:06Z", + "name": "SUV", + "owner": "runnerm", + "description": "An SUV.", + "likes": 2, + "downloads": 404, + "filesize": 1894857, + "upload_date": "2022-11-18T09:28:46Z", + "modify_date": "2022-11-18T09:28:46Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/runnerm/models/SUV/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2022-11-16T07:15:56Z", + "updatedAt": "2024-03-31T14:54:23Z", + "name": "x500-Base", + "owner": "Yuvraj", + "description": "Model of x500 for use with updated MulticopterMotorModel.", + "likes": 1, + "downloads": 384, + "filesize": 9352707, + "upload_date": "2022-11-16T07:15:51Z", + "modify_date": "2022-11-16T07:15:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Yuvraj/models/x500-Base/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drone", + "UAV", + "quadcopter", + "x500", + "ready to fly", + "UAS" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2022-11-10T10:52:27Z", + "updatedAt": "2024-03-29T11:26:24Z", + "name": "Small Blue Box", + "owner": "IslamElsayed95", + "description": "Small Blue Box", + "likes": 1, + "downloads": 246, + "filesize": 4136250, + "upload_date": "2022-11-10T10:52:25Z", + "modify_date": "2022-11-10T10:52:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/IslamElsayed95/models/Small%20Blue%20Box/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-11-08T16:40:15Z", + "updatedAt": "2024-03-30T20:37:11Z", + "name": "bosdyn_spot", + "owner": "Elene", + "description": "Base of Boston Dynamics Spot with just the builtin sensors.", + "likes": 2, + "downloads": 451, + "filesize": 11781356, + "upload_date": "2022-11-08T16:39:54Z", + "modify_date": "2022-11-08T16:39:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Elene/models/bosdyn_spot/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-11-03T17:06:16Z", + "updatedAt": "2024-04-04T03:02:22Z", + "name": "Moon base water", + "owner": "OpenRobotics", + "description": "Moon base water", + "likes": 0, + "downloads": 506, + "filesize": 1114316, + "upload_date": "2022-11-03T17:06:14Z", + "modify_date": "2023-09-27T12:29:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "water", + "moon", + "Garden" + ] + }, + { + "createdAt": "2022-11-03T17:03:29Z", + "updatedAt": "2024-04-04T03:04:22Z", + "name": "Moon base fan blade", + "owner": "OpenRobotics", + "description": "Moon base fan blade", + "likes": 0, + "downloads": 381, + "filesize": 6044719, + "upload_date": "2022-11-03T17:03:27Z", + "modify_date": "2023-09-27T12:29:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Moon%20base%20fan%20blade/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "Garden", + "Fan" + ] + }, + { + "createdAt": "2022-11-03T16:55:45Z", + "updatedAt": "2024-04-04T02:59:40Z", + "name": "Moon base dome", + "owner": "OpenRobotics", + "description": "Moon base dome", + "likes": 0, + "downloads": 665, + "filesize": 256771456, + "upload_date": "2022-11-03T16:54:56Z", + "modify_date": "2023-09-27T12:29:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "moon", + "Garden", + "dome" + ] + }, + { + "createdAt": "2022-11-03T16:50:25Z", + "updatedAt": "2024-04-04T03:04:50Z", + "name": "Humanoid from MJCF", + "owner": "OpenRobotics", + "description": "Humanoid model from MJCF converted to SDFormat\n\n MJCF Model: https://github.com/deepmind/mujoco/blob/36b47e56d08e04cee90adc207105c2c58271f998/model/humanoid/humanoid.xml", + "likes": 0, + "downloads": 368, + "filesize": 4704, + "upload_date": "2022-11-03T16:50:24Z", + "modify_date": "2023-09-26T17:01:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "humanoid", + "Garden" + ] + }, + { + "createdAt": "2022-11-03T16:47:03Z", + "updatedAt": "2024-04-04T03:04:38Z", + "name": "Gazebo flag", + "owner": "OpenRobotics", + "description": "Gazebo Flag", + "likes": 0, + "downloads": 424, + "filesize": 58631, + "upload_date": "2022-11-03T16:47:02Z", + "modify_date": "2023-09-26T17:02:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Gazebo%20flag/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "gazebo", + "Garden", + "flag" + ] + }, + { + "createdAt": "2022-11-03T16:44:06Z", + "updatedAt": "2024-04-04T03:02:32Z", + "name": "Garden moon", + "owner": "OpenRobotics", + "description": "Moon environment for the Garden demo", + "likes": 0, + "downloads": 463, + "filesize": 82024190, + "upload_date": "2022-11-03T16:43:55Z", + "modify_date": "2023-09-26T17:02:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Garden%20moon/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "moon", + "Garden" + ] + }, + { + "createdAt": "2022-10-19T17:11:57Z", + "updatedAt": "2024-04-04T06:20:05Z", + "name": "TEAMBASE", + "owner": "OpenRoboticsTest", + "description": "The base station receives the artifact reports from the robots.", + "likes": 0, + "downloads": 12758, + "filesize": 682, + "upload_date": "2022-10-19T17:11:55Z", + "modify_date": "2022-10-19T17:12:27Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-10-19T17:09:38Z", + "updatedAt": "2024-04-04T06:20:05Z", + "name": "Backpack", + "owner": "OpenRoboticsTest", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 24539, + "filesize": 613, + "upload_date": "2022-10-19T17:09:36Z", + "modify_date": "2022-12-08T00:23:45Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-10-12T03:18:19Z", + "updatedAt": "2024-04-01T13:18:51Z", + "name": "cylinder_2p7m_radius_20m_length", + "owner": "ohradz", + "description": "", + "likes": 0, + "downloads": 201, + "filesize": 5239, + "upload_date": "2022-10-12T03:18:19Z", + "modify_date": "2022-10-12T03:18:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-10-11T20:45:01Z", + "updatedAt": "2024-04-04T06:19:20Z", + "name": "Test box", + "owner": "OpenRoboticsTest", + "description": "Just a unit box, intended to be used by automated testing of Ignition Fuel.", + "likes": 0, + "downloads": 10085, + "filesize": 15422, + "upload_date": "2022-10-11T20:45:00Z", + "modify_date": "2022-10-11T20:45:00Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRoboticsTest/models/Test%20box/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "box", + "test", + "primitive" + ] + }, + { + "createdAt": "2022-10-11T20:44:14Z", + "updatedAt": "2024-03-25T06:21:14Z", + "name": "Hatchback copy", + "owner": "OpenRoboticsTest", + "description": "A hatchback", + "likes": 1, + "downloads": 114, + "filesize": 1011216, + "upload_date": "2022-10-11T20:44:12Z", + "modify_date": "2022-10-11T20:44:12Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRoboticsTest/models/Hatchback%20copy/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2022-10-07T16:55:59Z", + "updatedAt": "2024-03-28T12:34:47Z", + "name": "platypus", + "owner": "OpenRobotics", + "description": "A platypus buoy for the RobotX 2022 competition.", + "likes": 0, + "downloads": 611, + "filesize": 9035012, + "upload_date": "2022-10-07T16:55:57Z", + "modify_date": "2023-09-26T17:02:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/platypus/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Animals" + ] + }, + { + "createdAt": "2022-10-07T16:42:39Z", + "updatedAt": "2024-04-02T11:42:23Z", + "name": "turtle", + "owner": "OpenRobotics", + "description": "A turtle buoy for the VRX 2022 competition.", + "likes": 0, + "downloads": 921, + "filesize": 6551180, + "upload_date": "2022-10-07T16:42:37Z", + "modify_date": "2023-09-27T12:34:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/turtle/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Animals" + ] + }, + { + "createdAt": "2022-10-07T16:20:51Z", + "updatedAt": "2024-03-27T11:19:09Z", + "name": "crocodile", + "owner": "OpenRobotics", + "description": "A crocodile buoy for the VRX 2022 competition.", + "likes": 0, + "downloads": 732, + "filesize": 9234824, + "upload_date": "2022-10-07T16:20:49Z", + "modify_date": "2023-09-27T12:35:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/crocodile/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Animals" + ] + }, + { + "createdAt": "2022-10-05T21:32:22Z", + "updatedAt": "2024-03-28T22:09:59Z", + "name": "Hatchback copy", + "owner": "OpenRobotics", + "description": "A hatchback", + "likes": 0, + "downloads": 478, + "filesize": 1011216, + "upload_date": "2022-10-05T21:32:20Z", + "modify_date": "2023-09-27T12:35:13Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Hatchback%20copy/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2022-10-05T21:28:21Z", + "updatedAt": "2024-03-28T22:09:25Z", + "name": "Hatchback red copy", + "owner": "OpenRobotics", + "description": "An red hatchback", + "likes": 1, + "downloads": 201, + "filesize": 671026, + "upload_date": "2022-10-05T21:28:19Z", + "modify_date": "2023-09-27T12:35:19Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Hatchback%20red%20copy/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2022-10-02T20:03:33Z", + "updatedAt": "2024-03-12T03:02:34Z", + "name": "skyboxgrey", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 167, + "filesize": 426368, + "upload_date": "2022-10-02T20:03:32Z", + "modify_date": "2022-10-02T20:03:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-10-01T20:04:32Z", + "updatedAt": "2024-03-21T16:56:23Z", + "name": "NAO with Ignition position controller", + "owner": "Teste01", + "description": "NAO robot from https://github.com/osrf/robocup3ds with Ignition position controllers for all joints. Fingers commented out.", + "likes": 2, + "downloads": 263, + "filesize": 3478624, + "upload_date": "2022-10-01T20:04:27Z", + "modify_date": "2022-10-01T20:04:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Teste01/models/NAO%20with%20Ignition%20position%20controller/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "robot", + "ignition", + "humanoid" + ], + "categories": [ + "Electronics", + "Robots" + ] + }, + { + "createdAt": "2022-09-29T23:10:47Z", + "updatedAt": "2024-03-12T03:03:04Z", + "name": "skyboxred", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 76, + "filesize": 234805, + "upload_date": "2022-09-29T23:10:46Z", + "modify_date": "2022-09-29T23:22:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-09-26T14:40:56Z", + "updatedAt": "2024-04-01T17:56:42Z", + "name": "lunar_surface9", + "owner": "AndrejOrsula", + "description": "Procedural lunar_surface generated in Blender (seed 9)", + "likes": 0, + "downloads": 163, + "filesize": 10234384, + "upload_date": "2022-09-26T14:40:53Z", + "modify_date": "2022-09-26T14:40:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_surface9/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:40:22Z", + "updatedAt": "2024-03-12T02:33:45Z", + "name": "lunar_surface8", + "owner": "AndrejOrsula", + "description": "Procedural lunar_surface generated in Blender (seed 8)", + "likes": 0, + "downloads": 61, + "filesize": 10037256, + "upload_date": "2022-09-26T14:40:18Z", + "modify_date": "2022-09-26T14:40:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_surface8/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:39:54Z", + "updatedAt": "2024-03-12T02:33:59Z", + "name": "lunar_surface7", + "owner": "AndrejOrsula", + "description": "Procedural lunar_surface generated in Blender (seed 7)", + "likes": 0, + "downloads": 49, + "filesize": 10544633, + "upload_date": "2022-09-26T14:39:51Z", + "modify_date": "2022-09-26T14:39:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_surface7/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:39:36Z", + "updatedAt": "2024-03-12T02:34:15Z", + "name": "lunar_surface6", + "owner": "AndrejOrsula", + "description": "Procedural lunar_surface generated in Blender (seed 6)", + "likes": 0, + "downloads": 29, + "filesize": 5823095, + "upload_date": "2022-09-26T14:39:33Z", + "modify_date": "2022-09-26T14:39:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_surface6/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:39:21Z", + "updatedAt": "2024-03-12T02:34:28Z", + "name": "lunar_surface5", + "owner": "AndrejOrsula", + "description": "Procedural lunar_surface generated in Blender (seed 5)", + "likes": 0, + "downloads": 27, + "filesize": 10821725, + "upload_date": "2022-09-26T14:39:17Z", + "modify_date": "2022-09-26T14:39:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_surface5/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:39:03Z", + "updatedAt": "2024-03-14T12:21:48Z", + "name": "lunar_surface4", + "owner": "AndrejOrsula", + "description": "Procedural lunar_surface generated in Blender (seed 4)", + "likes": 0, + "downloads": 114, + "filesize": 9955062, + "upload_date": "2022-09-26T14:38:58Z", + "modify_date": "2022-09-26T14:38:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_surface4/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:38:44Z", + "updatedAt": "2024-03-12T02:34:54Z", + "name": "lunar_surface3", + "owner": "AndrejOrsula", + "description": "Procedural lunar_surface generated in Blender (seed 3)", + "likes": 0, + "downloads": 32, + "filesize": 9919868, + "upload_date": "2022-09-26T14:38:41Z", + "modify_date": "2022-09-26T14:38:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_surface3/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:38:20Z", + "updatedAt": "2024-03-12T02:35:08Z", + "name": "lunar_surface2", + "owner": "AndrejOrsula", + "description": "Procedural lunar_surface generated in Blender (seed 2)", + "likes": 0, + "downloads": 44, + "filesize": 5930446, + "upload_date": "2022-09-26T14:38:17Z", + "modify_date": "2022-09-26T14:38:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_surface2/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:38:02Z", + "updatedAt": "2024-03-12T02:35:23Z", + "name": "lunar_surface1", + "owner": "AndrejOrsula", + "description": "Procedural lunar_surface generated in Blender (seed 1)", + "likes": 0, + "downloads": 40, + "filesize": 9871275, + "upload_date": "2022-09-26T14:37:59Z", + "modify_date": "2022-09-26T14:37:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_surface1/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:37:34Z", + "updatedAt": "2024-03-15T18:28:33Z", + "name": "lunar_surface0", + "owner": "AndrejOrsula", + "description": "Procedural lunar_surface generated in Blender (seed 0)", + "likes": 0, + "downloads": 71, + "filesize": 10400188, + "upload_date": "2022-09-26T14:37:30Z", + "modify_date": "2022-09-26T14:37:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_surface0/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:36:50Z", + "updatedAt": "2024-03-12T02:35:50Z", + "name": "lunar_rock9", + "owner": "AndrejOrsula", + "description": "Procedural lunar_rock generated in Blender (seed 9)", + "likes": 0, + "downloads": 45, + "filesize": 8924874, + "upload_date": "2022-09-26T14:36:47Z", + "modify_date": "2022-09-26T14:36:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_rock9/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:36:31Z", + "updatedAt": "2024-03-14T12:22:12Z", + "name": "lunar_rock8", + "owner": "AndrejOrsula", + "description": "Procedural lunar_rock generated in Blender (seed 8)", + "likes": 0, + "downloads": 112, + "filesize": 9225227, + "upload_date": "2022-09-26T14:36:28Z", + "modify_date": "2022-09-26T14:36:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_rock8/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:36:14Z", + "updatedAt": "2024-03-14T12:22:09Z", + "name": "lunar_rock7", + "owner": "AndrejOrsula", + "description": "Procedural lunar_rock generated in Blender (seed 7)", + "likes": 0, + "downloads": 95, + "filesize": 8724468, + "upload_date": "2022-09-26T14:36:11Z", + "modify_date": "2022-09-26T14:36:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_rock7/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:35:57Z", + "updatedAt": "2024-03-14T12:22:07Z", + "name": "lunar_rock6", + "owner": "AndrejOrsula", + "description": "Procedural lunar_rock generated in Blender (seed 6)", + "likes": 0, + "downloads": 99, + "filesize": 8395070, + "upload_date": "2022-09-26T14:35:54Z", + "modify_date": "2022-09-26T14:35:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_rock6/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:35:38Z", + "updatedAt": "2024-03-14T12:22:04Z", + "name": "lunar_rock5", + "owner": "AndrejOrsula", + "description": "Procedural lunar_rock generated in Blender (seed 5)", + "likes": 0, + "downloads": 91, + "filesize": 4486049, + "upload_date": "2022-09-26T14:35:36Z", + "modify_date": "2022-09-26T14:35:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_rock5/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:35:10Z", + "updatedAt": "2024-03-14T12:22:02Z", + "name": "lunar_rock4", + "owner": "AndrejOrsula", + "description": "Procedural lunar_rock generated in Blender (seed 4)", + "likes": 0, + "downloads": 106, + "filesize": 9168711, + "upload_date": "2022-09-26T14:35:07Z", + "modify_date": "2022-09-26T14:35:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_rock4/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:34:55Z", + "updatedAt": "2024-04-01T04:29:55Z", + "name": "lunar_rock3", + "owner": "AndrejOrsula", + "description": "Procedural lunar_rock generated in Blender (seed 3)", + "likes": 0, + "downloads": 121, + "filesize": 9191040, + "upload_date": "2022-09-26T14:34:52Z", + "modify_date": "2022-09-26T14:34:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_rock3/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:34:34Z", + "updatedAt": "2024-03-14T12:21:57Z", + "name": "lunar_rock2", + "owner": "AndrejOrsula", + "description": "Procedural lunar_rock generated in Blender (seed 2)", + "likes": 0, + "downloads": 124, + "filesize": 9003217, + "upload_date": "2022-09-26T14:34:31Z", + "modify_date": "2022-09-26T14:34:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_rock2/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:34:11Z", + "updatedAt": "2024-03-14T12:21:54Z", + "name": "lunar_rock1", + "owner": "AndrejOrsula", + "description": "Procedural lunar_rock generated in Blender (seed 1)", + "likes": 0, + "downloads": 127, + "filesize": 8681547, + "upload_date": "2022-09-26T14:34:09Z", + "modify_date": "2022-09-26T14:34:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_rock1/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T14:33:08Z", + "updatedAt": "2024-03-14T12:21:51Z", + "name": "lunar_rock0", + "owner": "AndrejOrsula", + "description": "Procedural lunar_rock generated in Blender (seed 0)", + "likes": 0, + "downloads": 154, + "filesize": 8982460, + "upload_date": "2022-09-26T14:33:05Z", + "modify_date": "2022-09-26T14:33:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/lunar_rock0/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2022-09-26T04:09:24Z", + "updatedAt": "2024-04-01T17:50:57Z", + "name": "DigitalSinage", + "owner": "OpenRobotics", + "description": "Only compatible starting from gz-common5.", + "likes": 0, + "downloads": 88, + "filesize": 635331, + "upload_date": "2022-09-26T04:09:23Z", + "modify_date": "2023-09-27T12:35:26Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DigitalSinage/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-09-26T04:09:19Z", + "updatedAt": "2024-03-12T08:07:48Z", + "name": "ElevatorLights", + "owner": "OpenRobotics", + "description": "Only compatible starting from gz-common5.", + "likes": 0, + "downloads": 104, + "filesize": 2104237, + "upload_date": "2022-09-26T04:09:17Z", + "modify_date": "2023-09-27T12:35:35Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ElevatorLights/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-09-26T04:09:09Z", + "updatedAt": "2024-03-26T13:05:04Z", + "name": "BedsideTableCart", + "owner": "OpenRobotics", + "description": "Only compatible starting from gz-common5.", + "likes": 0, + "downloads": 143, + "filesize": 15972041, + "upload_date": "2022-09-26T04:09:06Z", + "modify_date": "2023-09-27T12:35:43Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/BedsideTableCart/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-09-26T04:08:50Z", + "updatedAt": "2024-03-20T15:58:28Z", + "name": "Bollard", + "owner": "OpenRobotics", + "description": "Only compatible starting from gz-common5.", + "likes": 0, + "downloads": 150, + "filesize": 5425549, + "upload_date": "2022-09-26T04:08:48Z", + "modify_date": "2023-09-27T12:35:57Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Bollard/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-09-26T04:08:38Z", + "updatedAt": "2024-04-01T17:50:43Z", + "name": "ChairPotatoChip", + "owner": "OpenRobotics", + "description": "Only compatible starting from gz-common5.", + "likes": 0, + "downloads": 195, + "filesize": 3988758, + "upload_date": "2022-09-26T04:08:37Z", + "modify_date": "2023-09-27T12:36:06Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ChairPotatoChip/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-09-26T04:08:30Z", + "updatedAt": "2024-03-12T08:09:22Z", + "name": "OutsideBench", + "owner": "OpenRobotics", + "description": "Only compatible starting from gz-common5.", + "likes": 0, + "downloads": 219, + "filesize": 7944386, + "upload_date": "2022-09-26T04:08:28Z", + "modify_date": "2023-09-27T12:36:14Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/OutsideBench/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-09-26T04:08:18Z", + "updatedAt": "2024-03-12T08:09:46Z", + "name": "FireExtinguisher", + "owner": "OpenRobotics", + "description": "Only compatible starting from gz-common5.", + "likes": 0, + "downloads": 146, + "filesize": 1744421, + "upload_date": "2022-09-26T04:08:17Z", + "modify_date": "2023-09-27T12:36:24Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FireExtinguisher/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-09-26T04:08:09Z", + "updatedAt": "2024-03-27T05:38:15Z", + "name": "OverBedTable", + "owner": "OpenRobotics", + "description": "Only compatible starting from gz-common5.", + "likes": 0, + "downloads": 140, + "filesize": 15844906, + "upload_date": "2022-09-26T04:08:06Z", + "modify_date": "2023-09-27T12:36:35Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/OverBedTable/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-09-26T04:07:49Z", + "updatedAt": "2024-03-17T14:00:22Z", + "name": "ClassCBed", + "owner": "OpenRobotics", + "description": "Only compatible starting from gz-common5.", + "likes": 1, + "downloads": 128, + "filesize": 16343810, + "upload_date": "2022-09-26T04:07:46Z", + "modify_date": "2023-09-27T12:36:56Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ClassCBed/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-09-26T04:07:34Z", + "updatedAt": "2024-03-22T14:18:04Z", + "name": "GrabBar", + "owner": "OpenRobotics", + "description": "Only compatible starting from gz-common5.", + "likes": 0, + "downloads": 115, + "filesize": 2393488, + "upload_date": "2022-09-26T04:07:32Z", + "modify_date": "2023-09-27T12:37:08Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/GrabBar/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-09-26T04:07:23Z", + "updatedAt": "2024-04-01T17:50:48Z", + "name": "ClassCWindow", + "owner": "OpenRobotics", + "description": "Only compatible starting from gz-common5.", + "likes": 0, + "downloads": 130, + "filesize": 6636729, + "upload_date": "2022-09-26T04:07:20Z", + "modify_date": "2023-09-27T12:37:17Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ClassCWindow/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-09-26T04:07:09Z", + "updatedAt": "2024-03-24T23:10:41Z", + "name": "HandSanitizerStation", + "owner": "OpenRobotics", + "description": "Only compatible starting from gz-common5.", + "likes": 0, + "downloads": 78, + "filesize": 455187, + "upload_date": "2022-09-26T04:07:08Z", + "modify_date": "2023-09-27T12:37:29Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/HandSanitizerStation/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-09-26T04:07:03Z", + "updatedAt": "2024-03-31T23:27:23Z", + "name": "FirePullStation", + "owner": "OpenRobotics", + "description": "Only compatible starting from gz-common5.", + "likes": 0, + "downloads": 104, + "filesize": 3454864, + "upload_date": "2022-09-26T04:07:01Z", + "modify_date": "2023-09-27T12:37:40Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FirePullStation/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-09-15T22:36:17Z", + "updatedAt": "2024-04-04T03:04:42Z", + "name": "Garden Mascot", + "owner": "OpenRobotics", + "description": "Mascot for Gazebo Garden", + "likes": 0, + "downloads": 392, + "filesize": 869854, + "upload_date": "2022-09-15T22:36:16Z", + "modify_date": "2023-09-27T12:37:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Garden%20Mascot/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-09-14T04:18:58Z", + "updatedAt": "2024-04-01T17:56:57Z", + "name": "Tree", + "owner": "facugu123", + "description": "", + "likes": 0, + "downloads": 331, + "filesize": 3132097, + "upload_date": "2022-09-14T04:18:56Z", + "modify_date": "2022-09-20T00:30:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-09-13T22:48:37Z", + "updatedAt": "2024-03-25T06:09:05Z", + "name": "short_navigation_course_0", + "owner": "Michael", + "description": "A short navigation course.", + "likes": 0, + "downloads": 309, + "filesize": 736, + "upload_date": "2022-09-13T22:48:36Z", + "modify_date": "2022-09-13T22:48:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-09-13T18:34:52Z", + "updatedAt": "2024-03-20T06:07:42Z", + "name": "Test box", + "owner": "OpenRobotics", + "description": "Just a unit box, intended to be used by automated testing of Ignition Fuel.", + "likes": 0, + "downloads": 271, + "filesize": 15422, + "upload_date": "2022-09-13T18:34:51Z", + "modify_date": "2023-09-27T12:37:53Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Test%20box/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "box", + "test", + "primitive" + ] + }, + { + "createdAt": "2022-09-10T09:21:29Z", + "updatedAt": "2024-04-01T17:57:11Z", + "name": "ConstructionCone", + "owner": "cggos", + "description": "", + "likes": 0, + "downloads": 276, + "filesize": 473391, + "upload_date": "2022-09-10T09:21:28Z", + "modify_date": "2022-09-10T09:21:28Z", + "license_id": 6, + "license_name": "Creative Commons Attribution Non Commercial Share Alike 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-sa/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-09-06T18:06:12Z", + "updatedAt": "2024-03-12T06:40:55Z", + "name": "Port_Hull", + "owner": "gragleas", + "description": "Port hull", + "likes": 0, + "downloads": 198, + "filesize": 71479, + "upload_date": "2022-09-06T18:06:11Z", + "modify_date": "2022-09-06T18:06:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-09-04T20:51:26Z", + "updatedAt": "2024-04-01T22:41:41Z", + "name": "x500-Base", + "owner": "RudisLaboratories", + "description": "Model of NXP x500 HoverGames Drone from NXP Mobile Robotics. Used in HoverGame competitions with updated MulticopterMotorModel. More information can be found: https://www.nxp.com/kit-hgdronek66", + "likes": 4, + "downloads": 513, + "filesize": 9352707, + "upload_date": "2022-09-04T20:51:21Z", + "modify_date": "2022-12-05T19:54:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/RudisLaboratories/models/x500-Base/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drone", + "UAV", + "quadcopter", + "x500", + "ready to fly", + "UAS", + "HoverGames", + "NXP" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2022-09-04T18:57:32Z", + "updatedAt": "2024-04-03T21:03:57Z", + "name": "OakD-Lite", + "owner": "RudisLaboratories", + "description": "Model of Oak-D Lite with each sensor modeled, and correct inertia and mass. Outputs correct FOV for RGB (1080) and Stereo Depth (640).", + "likes": 2, + "downloads": 1141, + "filesize": 1322229, + "upload_date": "2022-09-04T18:57:30Z", + "modify_date": "2022-09-04T18:57:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/RudisLaboratories/models/OakD-Lite/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "sensor", + "camera", + "Oak-D", + "OakD", + "Depth", + "RGB" + ], + "categories": [ + "Robots", + "Camera" + ] + }, + { + "createdAt": "2022-09-01T02:24:00Z", + "updatedAt": "2024-03-12T02:53:23Z", + "name": "MARBLE_HD2_SENSOR_CONFIG_1", + "owner": "bfschnell", + "description": "Team Marble's hd2 robot for SubT.", + "likes": 1, + "downloads": 218, + "filesize": 2227778, + "upload_date": "2022-09-01T02:23:55Z", + "modify_date": "2022-09-01T02:23:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/bfschnell/models/MARBLE_HD2_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-08-26T10:35:42Z", + "updatedAt": "2024-03-21T04:14:51Z", + "name": "courgette_02", + "owner": "karojud", + "description": "courgette plant", + "likes": 0, + "downloads": 118, + "filesize": 4139904, + "upload_date": "2022-08-26T10:35:40Z", + "modify_date": "2022-08-26T10:35:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-08-24T00:27:44Z", + "updatedAt": "2024-04-02T11:23:22Z", + "name": "x500", + "owner": "PX4", + "description": "x500 quadcopter (PX4)", + "likes": 1, + "downloads": 1654, + "filesize": 9352682, + "upload_date": "2022-08-24T00:27:39Z", + "modify_date": "2023-12-08T08:42:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/PX4/models/x500/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "UAV", + "PX4", + "Dronecode" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-08-23T16:02:21Z", + "updatedAt": "2024-04-01T17:57:21Z", + "name": "courgette_1", + "owner": "karojud", + "description": "", + "likes": 0, + "downloads": 80, + "filesize": 5256516, + "upload_date": "2022-08-23T16:02:17Z", + "modify_date": "2022-08-23T16:02:17Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-08-22T21:34:06Z", + "updatedAt": "2024-04-04T06:00:02Z", + "name": "mb_round_buoy_black", + "owner": "OpenRobotics", + "description": "A round buoy for the RobotX 2022 competition.\n Reference: https://marinebuoysaustralia.com/products/", + "likes": 0, + "downloads": 2180, + "filesize": 513311, + "upload_date": "2022-08-22T21:34:05Z", + "modify_date": "2023-09-27T12:37:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/mb_round_buoy_black/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-08-22T21:32:14Z", + "updatedAt": "2024-04-04T05:59:59Z", + "name": "mb_round_buoy_orange", + "owner": "OpenRobotics", + "description": "A round buoy for the RobotX 2022 competition.\n Reference: https://marinebuoysaustralia.com/products/", + "likes": 0, + "downloads": 2258, + "filesize": 2577458, + "upload_date": "2022-08-22T21:32:13Z", + "modify_date": "2023-09-27T12:38:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/mb_round_buoy_orange/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-08-22T21:06:36Z", + "updatedAt": "2024-04-04T05:59:56Z", + "name": "mb_marker_buoy_white", + "owner": "OpenRobotics", + "description": "A marker buoy for the RobotX 2022 competition.\n Reference: https://marinebuoysaustralia.com/products/", + "likes": 0, + "downloads": 2110, + "filesize": 217922, + "upload_date": "2022-08-22T21:06:35Z", + "modify_date": "2023-09-27T12:38:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/mb_marker_buoy_white/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-08-22T21:05:34Z", + "updatedAt": "2024-04-04T05:59:53Z", + "name": "mb_marker_buoy_green", + "owner": "OpenRobotics", + "description": "A marker buoy for the RobotX 2022 competition.\n Reference: https://marinebuoysaustralia.com/products/", + "likes": 0, + "downloads": 2317, + "filesize": 217937, + "upload_date": "2022-08-22T21:05:33Z", + "modify_date": "2023-09-27T12:38:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/mb_marker_buoy_green/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-08-22T20:46:30Z", + "updatedAt": "2024-04-04T05:59:51Z", + "name": "mb_marker_buoy_black", + "owner": "OpenRobotics", + "description": "A marker buoy for the RobotX 2022 competition.\n Reference: https://marinebuoysaustralia.com/products/", + "likes": 0, + "downloads": 2060, + "filesize": 217919, + "upload_date": "2022-08-22T20:46:29Z", + "modify_date": "2023-09-27T12:38:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/mb_marker_buoy_black/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-08-22T20:11:14Z", + "updatedAt": "2024-04-04T05:59:43Z", + "name": "mb_marker_buoy_red", + "owner": "OpenRobotics", + "description": "A marker buoy for the RobotX 2022 competition.\n Reference: https://marinebuoysaustralia.com/products/", + "likes": 0, + "downloads": 2310, + "filesize": 1907804, + "upload_date": "2022-08-22T20:11:12Z", + "modify_date": "2023-09-27T12:38:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/mb_marker_buoy_red/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-08-16T18:30:03Z", + "updatedAt": "2024-03-25T06:21:24Z", + "name": "hatchback_1", + "owner": "nate", + "description": "A hatchback", + "likes": 0, + "downloads": 431, + "filesize": 1011110, + "upload_date": "2022-08-16T18:30:01Z", + "modify_date": "2023-09-22T16:05:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/hatchback_1/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2022-08-16T18:29:30Z", + "updatedAt": "2024-03-25T06:21:28Z", + "name": "hatchback_red_1", + "owner": "nate", + "description": "A red hatchback", + "likes": 0, + "downloads": 299, + "filesize": 671067, + "upload_date": "2022-08-16T18:29:28Z", + "modify_date": "2023-09-22T16:05:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/hatchback_red_1/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2022-08-04T02:05:00Z", + "updatedAt": "2024-03-18T06:04:00Z", + "name": "CTU", + "owner": "MechaKim", + "description": "see", + "likes": 0, + "downloads": 427, + "filesize": 5412238, + "upload_date": "2022-08-04T02:04:56Z", + "modify_date": "2022-08-04T02:04:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/MechaKim/models/CTU/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "sd" + ], + "categories": [ + "Animals" + ] + }, + { + "createdAt": "2022-07-29T17:24:39Z", + "updatedAt": "2024-04-03T02:11:48Z", + "name": "Moon DEM", + "owner": "OpenRobotics", + "description": "Earth's moon", + "likes": 2, + "downloads": 669, + "filesize": 27958432, + "upload_date": "2022-07-29T17:24:35Z", + "modify_date": "2023-09-27T12:38:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Moon%20DEM/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "heightmap", + "dem", + "moon" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2022-07-25T21:17:54Z", + "updatedAt": "2024-03-28T22:15:24Z", + "name": "wam-v", + "owner": "OpenRobotics", + "description": "WAM-V base configuration.", + "likes": 1, + "downloads": 525, + "filesize": 2246418, + "upload_date": "2022-07-25T21:17:52Z", + "modify_date": "2023-09-27T12:38:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/wam-v/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2022-07-23T00:13:03Z", + "updatedAt": "2024-04-04T06:03:57Z", + "name": "Warehouse", + "owner": "OpenRobotics", + "description": "A simple warehouse walls to use in warehouse simulations", + "likes": 1, + "downloads": 12202, + "filesize": 8847844, + "upload_date": "2022-07-23T00:13:00Z", + "modify_date": "2023-09-27T12:38:53Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Warehouse/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse", + "indoor", + "tugbot", + "movai" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2022-07-20T15:57:00Z", + "updatedAt": "2024-03-25T15:35:12Z", + "name": "X4_GPS_RGBD", + "owner": "hexarotor", + "description": "modified X4 UAV Config 1 with : IMU, pressure sensor, magnetometer + GPS , RGBD. Nice to simulate a drone with a realsense", + "likes": 0, + "downloads": 295, + "filesize": 4648559, + "upload_date": "2022-07-20T15:56:55Z", + "modify_date": "2022-07-20T15:56:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/hexarotor/models/X4_GPS_RGBD/tip/files/thumbnails/1.jpg", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-07-19T12:28:53Z", + "updatedAt": "2024-03-12T02:29:54Z", + "name": "shoe", + "owner": "aknyunus0", + "description": "Women's Angelfish Boat Shoe in Linen Oat\nWomen's Angelfish Boat Shoe", + "likes": 1, + "downloads": 178, + "filesize": 8279112, + "upload_date": "2022-07-19T12:28:49Z", + "modify_date": "2022-07-19T12:28:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/aknyunus0/models/shoe/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2022-07-19T12:17:40Z", + "updatedAt": "2024-03-28T11:07:19Z", + "name": "Mens_ASV_Billfish_Boat_Shoe_in_Tan_Leather_wmUJ5PbwANc", + "owner": "aknyunus0", + "description": "Men's ASV Billfish Boat Shoe in Tan Leather\nMen's ASV Billfish Boat Shoe", + "likes": 1, + "downloads": 80, + "filesize": 7251776, + "upload_date": "2022-07-19T12:17:37Z", + "modify_date": "2022-07-19T12:17:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/aknyunus0/models/Mens_ASV_Billfish_Boat_Shoe_in_Tan_Leather_wmUJ5PbwANc/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2022-07-15T19:16:24Z", + "updatedAt": "2024-04-04T05:59:31Z", + "name": "sydney_regatta", + "owner": "OpenRobotics", + "description": "The Sydney Regatta Centre world.", + "likes": 0, + "downloads": 3845, + "filesize": 128980600, + "upload_date": "2022-07-15T19:16:09Z", + "modify_date": "2023-09-27T12:39:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/sydney_regatta/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2022-07-15T18:46:28Z", + "updatedAt": "2024-04-04T06:00:19Z", + "name": "tent", + "owner": "OpenRobotics", + "description": "Ground station tent on the beach", + "likes": 0, + "downloads": 5891, + "filesize": 590185, + "upload_date": "2022-07-15T18:46:27Z", + "modify_date": "2023-09-27T12:39:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/tent/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-07-15T18:42:01Z", + "updatedAt": "2024-04-04T06:00:07Z", + "name": "post", + "owner": "OpenRobotics", + "description": "The post to tie the WAM-V to the shore.", + "likes": 0, + "downloads": 2409, + "filesize": 5124944, + "upload_date": "2022-07-15T18:41:59Z", + "modify_date": "2023-09-27T12:40:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/post/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-07-15T18:37:42Z", + "updatedAt": "2024-04-04T06:00:15Z", + "name": "ground_station", + "owner": "OpenRobotics", + "description": "Ground station tent with chairs and tables", + "likes": 0, + "downloads": 2546, + "filesize": 382776, + "upload_date": "2022-07-15T18:37:42Z", + "modify_date": "2023-09-27T12:40:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ground_station/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2022-07-15T18:30:30Z", + "updatedAt": "2024-04-04T06:00:24Z", + "name": "foldable_table", + "owner": "OpenRobotics", + "description": "A foldable table", + "likes": 0, + "downloads": 5775, + "filesize": 617581, + "upload_date": "2022-07-15T18:30:29Z", + "modify_date": "2023-09-27T12:40:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/foldable_table/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2022-07-15T18:26:04Z", + "updatedAt": "2024-04-04T06:00:37Z", + "name": "foldable_chair", + "owner": "OpenRobotics", + "description": "A foldable chair", + "likes": 0, + "downloads": 9691, + "filesize": 5115766, + "upload_date": "2022-07-15T18:26:02Z", + "modify_date": "2023-09-27T12:40:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/foldable_chair/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2022-07-15T18:11:41Z", + "updatedAt": "2024-04-04T06:00:12Z", + "name": "antenna", + "owner": "OpenRobotics", + "description": "Groundstation antenna", + "likes": 0, + "downloads": 2281, + "filesize": 707233, + "upload_date": "2022-07-15T18:11:40Z", + "modify_date": "2023-09-27T12:40:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/antenna/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Electronics" + ] + }, + { + "createdAt": "2022-07-12T12:49:45Z", + "updatedAt": "2024-04-01T17:57:39Z", + "name": "Common_rail", + "owner": "haris395", + "description": "", + "likes": 0, + "downloads": 132, + "filesize": 1722625, + "upload_date": "2022-07-12T12:49:43Z", + "modify_date": "2022-07-12T12:49:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "metal parts" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-07-12T12:31:55Z", + "updatedAt": "2024-03-12T06:41:57Z", + "name": "Common-rail", + "owner": "haris395", + "description": "", + "likes": 0, + "downloads": 39, + "filesize": 1722529, + "upload_date": "2022-07-12T12:31:53Z", + "modify_date": "2022-07-12T12:31:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "diesel engine", + "metal" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-07-12T10:57:41Z", + "updatedAt": "2024-03-30T03:08:30Z", + "name": "turtlebot 3 Burger", + "owner": "hexarotor", + "description": "Turtlebot 3 -- edited/forked from https://github.com/ROBOTIS-GIT/turtlebot3_simulations/\r\nContains a GPU-LIDAR. My choice of colors !", + "likes": 0, + "downloads": 287, + "filesize": 1559593, + "upload_date": "2022-07-12T10:57:39Z", + "modify_date": "2022-07-12T10:57:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/hexarotor/models/turtlebot%203%20Burger/tip/files/thumbnails/turtlebot3_burger.jpg", + "private": false, + "tags": [ + "turttlebot lidar" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-07-11T05:55:08Z", + "updatedAt": "2024-03-25T13:25:18Z", + "name": "SUV", + "owner": "tenxlenx00", + "description": "An SUV.", + "likes": 0, + "downloads": 177, + "filesize": 1894857, + "upload_date": "2022-07-11T05:55:06Z", + "modify_date": "2022-07-11T05:55:06Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/tenxlenx00/models/SUV/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2022-06-25T06:32:55Z", + "updatedAt": "2024-03-26T12:54:51Z", + "name": "Mine Cart Engine", + "owner": "kennywang", + "description": "A mine cart engine", + "likes": 0, + "downloads": 254, + "filesize": 7501328, + "upload_date": "2022-06-25T06:32:53Z", + "modify_date": "2022-06-25T06:32:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/kennywang/models/Mine%20Cart%20Engine/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-06-15T14:01:03Z", + "updatedAt": "2024-04-01T11:12:40Z", + "name": "MARBLE_HUSKY_SENSOR_CONFIG_1", + "owner": "SimonMR", + "description": "CU's husky config with 3 D435i RGBD cameras, a pan-tilt turret, the Ouster OS1 64 channel lidar,\n and an RPLidar S1", + "likes": 1, + "downloads": 371, + "filesize": 1398850, + "upload_date": "2022-06-15T14:00:59Z", + "modify_date": "2022-06-15T14:00:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/SimonMR/models/MARBLE_HUSKY_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-06-13T20:12:37Z", + "updatedAt": "2024-03-25T06:22:27Z", + "name": "hatchback_2", + "owner": "OpenRobotics", + "description": "A hatchback", + "likes": 1, + "downloads": 1477, + "filesize": 1011308, + "upload_date": "2022-06-13T20:12:35Z", + "modify_date": "2023-09-27T12:40:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/hatchback_2/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2022-06-06T13:13:28Z", + "updatedAt": "2024-04-04T06:05:07Z", + "name": "Campus", + "owner": "hujp", + "description": "Campus world for multi-robot simulations.", + "likes": 4, + "downloads": 531, + "filesize": 71816347, + "upload_date": "2022-06-06T13:13:16Z", + "modify_date": "2022-06-06T13:13:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/hujp/models/Campus/tip/files/thumbnails/campus_sim.png", + "private": false + }, + { + "createdAt": "2022-06-06T13:10:15Z", + "updatedAt": "2024-04-01T11:59:00Z", + "name": "charuco_default", + "owner": "AndrejOrsula", + "description": "Default charuco pattern of MoveIt Calibration", + "likes": 0, + "downloads": 152, + "filesize": 5481, + "upload_date": "2022-06-06T13:10:14Z", + "modify_date": "2022-06-06T13:10:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/charuco_default/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "calibration" + ] + }, + { + "createdAt": "2022-06-06T13:08:49Z", + "updatedAt": "2024-04-03T11:11:39Z", + "name": "aruco_default", + "owner": "AndrejOrsula", + "description": "Default aruco pattern of MoveIt Calibration", + "likes": 1, + "downloads": 241, + "filesize": 5394, + "upload_date": "2022-06-06T13:08:48Z", + "modify_date": "2022-06-06T13:08:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/aruco_default/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "calibration" + ] + }, + { + "createdAt": "2022-06-05T08:44:44Z", + "updatedAt": "2024-04-02T09:27:35Z", + "name": "MARBLE_HUSKY_SENSOR_CONFIG_1", + "owner": "qewer", + "description": "CU's husky config with 3 D435i RGBD cameras, a pan-tilt turret, the Ouster OS1 64 channel lidar,\n and an RPLidar S1", + "likes": 1, + "downloads": 169, + "filesize": 1398850, + "upload_date": "2022-06-05T08:44:40Z", + "modify_date": "2022-06-05T08:44:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/qewer/models/MARBLE_HUSKY_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-06-02T16:57:30Z", + "updatedAt": "2024-03-19T14:29:27Z", + "name": "test1", + "owner": "Ben", + "description": "", + "likes": 0, + "downloads": 354, + "filesize": 503, + "upload_date": "2022-06-02T16:57:29Z", + "modify_date": "2022-06-02T17:04:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-06-01T23:45:01Z", + "updatedAt": "2024-03-29T17:46:30Z", + "name": "Large Crate Handles", + "owner": "OpenRobotics", + "description": "Large Crate with Handles", + "likes": 0, + "downloads": 530, + "filesize": 3331306, + "upload_date": "2022-06-01T23:45:00Z", + "modify_date": "2023-09-27T12:40:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Large%20Crate%20Handles/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-06-01T22:40:01Z", + "updatedAt": "2024-03-29T17:44:27Z", + "name": "Large Grey Box Handles", + "owner": "OpenRobotics", + "description": "Large Grey Box with Handles", + "likes": 1, + "downloads": 499, + "filesize": 5729375, + "upload_date": "2022-06-01T22:39:59Z", + "modify_date": "2023-09-27T12:40:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Large%20Grey%20Box%20Handles/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-06-01T22:39:21Z", + "updatedAt": "2024-03-29T17:45:41Z", + "name": "Large Ammo Can Handles", + "owner": "OpenRobotics", + "description": "Large Ammo Can with Handles", + "likes": 0, + "downloads": 466, + "filesize": 9742438, + "upload_date": "2022-06-01T22:39:18Z", + "modify_date": "2023-09-27T12:40:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Large%20Ammo%20Can%20Handles/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-06-01T22:38:47Z", + "updatedAt": "2024-03-29T17:24:07Z", + "name": "Large Dry Box Handles", + "owner": "OpenRobotics", + "description": "Large Dry Box with Handles", + "likes": 1, + "downloads": 618, + "filesize": 7909946, + "upload_date": "2022-06-01T22:38:45Z", + "modify_date": "2023-09-27T12:41:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Large%20Dry%20Box%20Handles/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-05-31T20:26:14Z", + "updatedAt": "2024-04-03T18:21:07Z", + "name": "FallingSnow", + "owner": "OpenRobotics", + "description": "Falling snow", + "likes": 0, + "downloads": 129, + "filesize": 70764, + "upload_date": "2022-05-31T20:26:13Z", + "modify_date": "2023-09-27T12:41:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "particle", + "snow", + "particle emitter" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2022-05-28T16:14:18Z", + "updatedAt": "2024-04-03T15:55:05Z", + "name": "test", + "owner": "jazz", + "description": "", + "likes": 0, + "downloads": 538, + "filesize": 4648874, + "upload_date": "2022-05-28T16:14:13Z", + "modify_date": "2022-05-28T16:14:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/jazz/models/test/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2022-05-26T20:55:48Z", + "updatedAt": "2024-03-27T09:05:30Z", + "name": "skybox", + "owner": "OpenRobotics", + "description": "Textures for a skybox", + "likes": 0, + "downloads": 194, + "filesize": 4614496, + "upload_date": "2022-05-26T20:55:46Z", + "modify_date": "2023-09-27T12:41:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "sky" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2022-05-24T00:01:30Z", + "updatedAt": "2024-03-12T07:31:47Z", + "name": "MARBLE_HUSKY_SENSOR_CONFIG_1", + "owner": "moxo", + "description": "CU's husky config with 3 D435i RGBD cameras, a pan-tilt turret, the Ouster OS1 64 channel lidar,\n and an RPLidar S1", + "likes": 2, + "downloads": 282, + "filesize": 1398850, + "upload_date": "2022-05-24T00:01:26Z", + "modify_date": "2022-05-24T00:01:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/moxo/models/MARBLE_HUSKY_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-05-19T12:41:09Z", + "updatedAt": "2024-03-28T11:07:58Z", + "name": "Fortress island", + "owner": "Pine", + "description": "Main model used in the Ignition Fortress demo.\r\n\r\nAdapted from [Cityscene: (based) Saint-Guillhem-le-D\u00e9sert](https://sketchfab.com/3d-models/cityscene-based-saint-guillhem-le-desert-9fedb55b76d140f7abc55484c2c87475). Many thanks to the original author, Tristan Gybels, for making the model and sharing it publicly!", + "likes": 1, + "downloads": 703, + "filesize": 71727795, + "upload_date": "2022-05-19T12:40:57Z", + "modify_date": "2022-05-19T12:40:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Pine/models/Fortress%20island/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "world", + "water", + "environment", + "stairs" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2022-05-19T12:00:10Z", + "updatedAt": "2024-03-12T03:10:45Z", + "name": "cube", + "owner": "EdvardsZ", + "description": "6cm cube", + "likes": 0, + "downloads": 162, + "filesize": 1109, + "upload_date": "2022-05-19T12:00:10Z", + "modify_date": "2022-05-19T12:00:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-05-10T08:14:52Z", + "updatedAt": "2024-03-30T13:22:39Z", + "name": "Vessel E", + "owner": "Aniskm", + "description": "Vessel E", + "likes": 0, + "downloads": 282, + "filesize": 2863293, + "upload_date": "2022-05-10T08:14:50Z", + "modify_date": "2022-05-10T08:14:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Aniskm/models/Vessel%20E/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-05-10T07:53:37Z", + "updatedAt": "2024-03-29T07:07:36Z", + "name": "x4_stereocam", + "owner": "hexarotor", + "description": "X4 drone with two rgb camera side by side. 6cm separation. a gps was added too.\r\nSuccessfully used with ROS2 NVIDIA GEMS Visual SLAM", + "likes": 0, + "downloads": 203, + "filesize": 4648380, + "upload_date": "2022-05-10T07:53:33Z", + "modify_date": "2022-07-01T10:12:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/hexarotor/models/x4_stereocam/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "drone", + "UAV", + "camera", + "hexarotor", + "stereo", + "nvidia" + ] + }, + { + "createdAt": "2022-05-09T10:58:12Z", + "updatedAt": "2024-03-12T03:09:53Z", + "name": "robot", + "owner": "devaty", + "description": "", + "likes": 0, + "downloads": 252, + "filesize": 459798, + "upload_date": "2022-05-09T10:58:11Z", + "modify_date": "2022-05-09T10:58:11Z", + "license_id": 6, + "license_name": "Creative Commons Attribution Non Commercial Share Alike 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-sa/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Robots", + "Toys" + ] + }, + { + "createdAt": "2022-05-09T10:34:02Z", + "updatedAt": "2024-04-03T05:22:02Z", + "name": "grasspatch", + "owner": "hexarotor", + "description": "a 15x15 meter flat square , with grass texture.", + "likes": 2, + "downloads": 792, + "filesize": 1018711, + "upload_date": "2022-05-09T10:34:01Z", + "modify_date": "2022-05-09T10:34:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/hexarotor/models/grasspatch/tip/files/thumbnails/grasspatch.jpg", + "private": false, + "tags": [ + "ground", + "grass", + "nature", + "outdoors" + ], + "categories": [ + "Nature and Plants" + ] + }, + { + "createdAt": "2022-05-09T10:28:37Z", + "updatedAt": "2024-04-03T05:12:27Z", + "name": "X4_GPS_LIDAR_RGBD", + "owner": "hexarotor", + "description": "hexarotor X4 , with Lidar RGBD GPS and Camera. Based on X4Config1", + "likes": 0, + "downloads": 275, + "filesize": 4648874, + "upload_date": "2022-05-09T10:28:34Z", + "modify_date": "2022-05-09T11:33:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/hexarotor/models/X4_GPS_LIDAR_RGBD/tip/files/thumbnails/1.jpg", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-05-05T15:29:24Z", + "updatedAt": "2024-03-21T04:14:32Z", + "name": "square Grass patch", + "owner": "hexarotor", + "description": "used in the UAV Forest world", + "likes": 0, + "downloads": 147, + "filesize": 720047, + "upload_date": "2022-05-05T15:29:23Z", + "modify_date": "2022-05-05T15:29:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/hexarotor/models/square%20Grass%20patch/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-05-03T20:59:38Z", + "updatedAt": "2024-03-27T16:33:36Z", + "name": "Ocean Floor Texture", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 284, + "filesize": 184907414, + "upload_date": "2022-05-03T20:59:20Z", + "modify_date": "2023-09-27T12:41:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Ocean%20Floor%20Texture/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-05-03T20:43:31Z", + "updatedAt": "2024-03-29T14:31:01Z", + "name": "RC Boat", + "owner": "OpenRobotics", + "description": "", + "likes": 1, + "downloads": 530, + "filesize": 3731706, + "upload_date": "2022-05-03T20:43:30Z", + "modify_date": "2023-09-27T12:42:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/RC%20Boat/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-05-03T20:31:11Z", + "updatedAt": "2024-04-01T17:51:07Z", + "name": "ROV", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 421, + "filesize": 39989430, + "upload_date": "2022-05-03T20:31:05Z", + "modify_date": "2023-09-27T12:42:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ROV/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-05-02T16:19:32Z", + "updatedAt": "2024-04-01T17:58:34Z", + "name": "Salad_on_a_Plate", + "owner": "ldowns", + "description": "Salad on a plate.", + "likes": 0, + "downloads": 209, + "filesize": 8757112, + "upload_date": "2022-05-02T16:19:29Z", + "modify_date": "2022-05-02T16:19:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/ldowns/models/Salad_on_a_Plate/tip/files/thumbnails/0.jpg", + "private": false, + "tags": [ + "food", + "salad", + "plate" + ], + "categories": [ + "Food and Drink" + ] + }, + { + "createdAt": "2022-05-02T13:08:47Z", + "updatedAt": "2024-04-01T17:58:28Z", + "name": "RedPoint", + "owner": "EdvardsZ", + "description": "Sphere without collision", + "likes": 0, + "downloads": 93, + "filesize": 755, + "upload_date": "2022-05-02T13:08:46Z", + "modify_date": "2022-05-02T14:10:19Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 1, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-04-30T08:00:53Z", + "updatedAt": "2024-04-03T22:44:48Z", + "name": "Casual female", + "owner": "plateau", + "description": "Model from ServiceSim\r\n\r\nhttps://github.com/osrf/servicesim/tree/master/servicesim_competition/models/casual_female", + "likes": 2, + "downloads": 3778, + "filesize": 27264357, + "upload_date": "2022-04-30T08:00:49Z", + "modify_date": "2022-04-30T08:00:49Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/plateau/models/Casual%20female/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "static", + "person", + "human" + ], + "categories": [ + "People" + ] + }, + { + "createdAt": "2022-04-22T20:50:25Z", + "updatedAt": "2024-04-01T17:58:43Z", + "name": "X4_GPS_LIDAR_RGBD", + "owner": "luispinto", + "description": "A hexarotor . based on X4Config1, with the following extra sensors: GPS, lidar, RGBD,", + "likes": 0, + "downloads": 182, + "filesize": 4647387, + "upload_date": "2022-04-22T20:50:21Z", + "modify_date": "2022-04-22T21:03:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/luispinto/models/X4_GPS_LIDAR_RGBD/tip/files/thumbnails/1.jpg", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-04-14T20:57:02Z", + "updatedAt": "2024-03-15T08:55:00Z", + "name": "mp_400", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 197, + "filesize": 1477227, + "upload_date": "2022-04-14T20:56:59Z", + "modify_date": "2023-09-27T12:43:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "AMR" + ] + }, + { + "createdAt": "2022-04-13T20:38:45Z", + "updatedAt": "2024-03-29T17:47:24Z", + "name": "Small Dry Bag Handle", + "owner": "OpenRobotics", + "description": "Small Dry Bag with Handle", + "likes": 0, + "downloads": 751, + "filesize": 2443354, + "upload_date": "2022-04-13T20:38:43Z", + "modify_date": "2023-09-27T12:43:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Small%20Dry%20Bag%20Handle/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-04-09T10:01:21Z", + "updatedAt": "2024-03-12T02:22:14Z", + "name": "indy7", + "owner": "SiddharthSavant", + "description": "Indy7 robot compatible with Ignition and MoveIt2", + "likes": 0, + "downloads": 211, + "filesize": 7218764, + "upload_date": "2022-04-09T10:01:18Z", + "modify_date": "2022-04-09T10:01:18Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/SiddharthSavant/models/indy7/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-04-07T22:52:33Z", + "updatedAt": "2024-03-24T22:25:19Z", + "name": "CubeSoft", + "owner": "isabelleeysseric", + "description": "Deformable cube", + "likes": 0, + "downloads": 93, + "filesize": 4082904, + "upload_date": "2022-04-07T22:52:32Z", + "modify_date": "2022-04-30T03:50:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/isabelleeysseric/models/CubeSoft/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "soft body", + "dynamic", + "Norlab", + "deformable", + "physic" + ], + "categories": [ + "Nature and Plants", + "Science and Technology" + ] + }, + { + "createdAt": "2022-04-07T21:13:26Z", + "updatedAt": "2024-03-12T06:52:27Z", + "name": "SoftCube", + "owner": "isabelleeysseric", + "description": "Deformable cubes", + "likes": 0, + "downloads": 68, + "filesize": 1990272, + "upload_date": "2022-04-07T21:13:25Z", + "modify_date": "2022-04-30T03:50:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/isabelleeysseric/models/SoftCube/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "soft body", + "dynamic", + "Norlab", + "deformable", + "physic" + ], + "categories": [ + "Cars and Vehicles", + "Science and Technology" + ] + }, + { + "createdAt": "2022-04-07T18:47:43Z", + "updatedAt": "2024-03-29T17:46:53Z", + "name": "Small Case", + "owner": "OpenRobotics", + "description": "Small Case", + "likes": 1, + "downloads": 893, + "filesize": 3009595, + "upload_date": "2022-04-07T18:47:42Z", + "modify_date": "2023-09-27T12:43:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Small%20Case/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-04-07T18:32:39Z", + "updatedAt": "2024-03-29T08:28:41Z", + "name": "Large Crate", + "owner": "OpenRobotics", + "description": "Large Crate", + "likes": 0, + "downloads": 659, + "filesize": 3304825, + "upload_date": "2022-04-07T18:32:37Z", + "modify_date": "2023-09-27T12:43:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Large%20Crate/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-04-07T15:43:20Z", + "updatedAt": "2024-03-24T22:24:30Z", + "name": "fluid_dynamics", + "owner": "isabelleeysseric", + "description": "Test fluid dynamics", + "likes": 0, + "downloads": 49, + "filesize": 37946, + "upload_date": "2022-04-07T15:43:19Z", + "modify_date": "2022-04-30T03:49:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/isabelleeysseric/models/fluid_dynamics/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "test", + "water", + "fluid", + "dynamic", + "hydrodynamic", + "physic", + "aquarium" + ], + "categories": [ + "Nature and Plants", + "Science and Technology" + ] + }, + { + "createdAt": "2022-04-07T02:10:11Z", + "updatedAt": "2024-03-12T06:52:52Z", + "name": "particle_dynamics", + "owner": "isabelleeysseric", + "description": "Particle dynamics with snow", + "likes": 0, + "downloads": 40, + "filesize": 1438039, + "upload_date": "2022-04-07T02:10:09Z", + "modify_date": "2022-04-30T03:43:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/isabelleeysseric/models/particle_dynamics/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "test", + "particle", + "snow", + "dynamic", + "Norlab", + "physic" + ], + "categories": [ + "Cars and Vehicles", + "Science and Technology" + ] + }, + { + "createdAt": "2022-04-06T12:48:37Z", + "updatedAt": "2024-04-03T11:08:48Z", + "name": "aws_robomaker_warehouse_Bucket_01", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 2218, + "filesize": 1031439, + "upload_date": "2022-04-06T12:48:35Z", + "modify_date": "2023-09-27T12:43:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/aws_robomaker_warehouse_Bucket_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2022-04-06T12:37:49Z", + "updatedAt": "2024-04-03T11:42:04Z", + "name": "aws_robomaker_warehouse_WallB_01", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 1193, + "filesize": 703882, + "upload_date": "2022-04-06T12:37:48Z", + "modify_date": "2023-09-27T12:44:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/aws_robomaker_warehouse_WallB_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2022-04-06T12:36:24Z", + "updatedAt": "2024-04-03T11:09:48Z", + "name": "aws_robomaker_warehouse_TrashCanC_01", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 570, + "filesize": 637719, + "upload_date": "2022-04-06T12:36:23Z", + "modify_date": "2023-09-27T12:44:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/aws_robomaker_warehouse_TrashCanC_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2022-04-06T12:35:01Z", + "updatedAt": "2024-04-03T11:57:01Z", + "name": "aws_robomaker_warehouse_ShelfF_01", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 573, + "filesize": 656260, + "upload_date": "2022-04-06T12:35:00Z", + "modify_date": "2023-09-27T12:44:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/aws_robomaker_warehouse_ShelfF_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2022-04-06T12:33:15Z", + "updatedAt": "2024-04-03T11:43:32Z", + "name": "aws_robomaker_warehouse_ShelfE_01", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 589, + "filesize": 1041788, + "upload_date": "2022-04-06T12:33:14Z", + "modify_date": "2023-09-27T12:44:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/aws_robomaker_warehouse_ShelfE_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2022-04-06T12:31:41Z", + "updatedAt": "2024-04-03T11:08:38Z", + "name": "aws_robomaker_warehouse_ShelfD_01", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 2488, + "filesize": 1051844, + "upload_date": "2022-04-06T12:31:40Z", + "modify_date": "2023-09-27T12:44:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/aws_robomaker_warehouse_ShelfD_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2022-04-06T12:29:40Z", + "updatedAt": "2024-04-03T11:09:50Z", + "name": "aws_robomaker_warehouse_PalletJackB_01", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 1010, + "filesize": 929117, + "upload_date": "2022-04-06T12:29:39Z", + "modify_date": "2023-09-27T12:44:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/aws_robomaker_warehouse_PalletJackB_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2022-04-06T12:28:20Z", + "updatedAt": "2024-04-03T11:08:45Z", + "name": "aws_robomaker_warehouse_Lamp_01", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 388, + "filesize": 146474, + "upload_date": "2022-04-06T12:28:19Z", + "modify_date": "2023-09-27T12:44:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/aws_robomaker_warehouse_Lamp_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2022-04-06T12:26:30Z", + "updatedAt": "2024-04-03T11:08:41Z", + "name": "aws_robomaker_warehouse_GroundB_01", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 1038, + "filesize": 1989923, + "upload_date": "2022-04-06T12:26:29Z", + "modify_date": "2023-09-27T12:44:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/aws_robomaker_warehouse_GroundB_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2022-04-06T12:24:26Z", + "updatedAt": "2024-04-03T11:09:44Z", + "name": "aws_robomaker_warehouse_ClutteringD_01", + "owner": "OpenRobotics", + "description": "", + "likes": 1, + "downloads": 501, + "filesize": 1729186, + "upload_date": "2022-04-06T12:24:24Z", + "modify_date": "2023-09-27T12:44:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/aws_robomaker_warehouse_ClutteringD_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2022-04-06T12:20:23Z", + "updatedAt": "2024-04-03T11:09:40Z", + "name": "aws_robomaker_warehouse_ClutteringC_01", + "owner": "OpenRobotics", + "description": "", + "likes": 1, + "downloads": 2589, + "filesize": 1670624, + "upload_date": "2022-04-06T12:20:22Z", + "modify_date": "2023-09-27T12:45:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/aws_robomaker_warehouse_ClutteringC_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2022-04-06T12:18:34Z", + "updatedAt": "2024-04-03T11:09:38Z", + "name": "aws_robomaker_warehouse_ClutteringA_01", + "owner": "OpenRobotics", + "description": "", + "likes": 1, + "downloads": 555, + "filesize": 1443648, + "upload_date": "2022-04-06T12:18:33Z", + "modify_date": "2023-09-27T12:45:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/aws_robomaker_warehouse_ClutteringA_01/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse" + ] + }, + { + "createdAt": "2022-04-06T04:34:49Z", + "updatedAt": "2024-04-02T09:27:06Z", + "name": "plane", + "owner": "isabelleeysseric", + "description": "Plane", + "likes": 1, + "downloads": 100, + "filesize": 265279, + "upload_date": "2022-04-06T04:34:48Z", + "modify_date": "2022-04-06T05:03:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/isabelleeysseric/models/plane/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "ground", + "plane" + ] + }, + { + "createdAt": "2022-04-06T04:22:39Z", + "updatedAt": "2024-03-24T22:24:59Z", + "name": "soft_cube", + "owner": "isabelleeysseric", + "description": "Cube with soft body", + "likes": 0, + "downloads": 48, + "filesize": 254437, + "upload_date": "2022-04-06T04:22:38Z", + "modify_date": "2022-04-06T05:05:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/isabelleeysseric/models/soft_cube/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "Cube", + "soft body" + ] + }, + { + "createdAt": "2022-04-06T02:17:48Z", + "updatedAt": "2024-03-12T06:53:28Z", + "name": "soft_body_cube", + "owner": "isabelleeysseric", + "description": "Test soft bodies with cubes.", + "likes": 0, + "downloads": 37, + "filesize": 1990794, + "upload_date": "2022-04-06T02:17:48Z", + "modify_date": "2022-04-30T03:51:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/isabelleeysseric/models/soft_body_cube/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "Cube", + "soft body", + "dynamic", + "deformable", + "physic" + ] + }, + { + "createdAt": "2022-04-06T01:52:31Z", + "updatedAt": "2024-03-21T08:46:15Z", + "name": "PR2_SDF17", + "owner": "jofish", + "description": "The Willow Garage PR2 without sensors using SDFormat 1.7 frame semantics", + "likes": 0, + "downloads": 437, + "filesize": 14547731, + "upload_date": "2022-04-06T01:52:22Z", + "modify_date": "2022-04-06T01:52:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/jofish/models/PR2_SDF17/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-31T14:58:27Z", + "updatedAt": "2024-04-01T09:02:08Z", + "name": "PR2_SDF17", + "owner": "cyitian", + "description": "The Willow Garage PR2 without sensors using SDFormat 1.7 frame semantics", + "likes": 1, + "downloads": 298, + "filesize": 14547731, + "upload_date": "2022-03-31T14:58:18Z", + "modify_date": "2022-03-31T14:58:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/cyitian/models/PR2_SDF17/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-30T22:51:12Z", + "updatedAt": "2024-04-03T19:58:52Z", + "name": "Portuguese Ledge", + "owner": "OpenRobotics", + "description": "Heightmap created with data provided by Dr. Dave Caress\n and MBARI's Seafloor Mapping Lab.\n\n https://www.mbari.org/caress-dave/\n https://www.mbari.org/technology/seafloor-mapping/", + "likes": 0, + "downloads": 785, + "filesize": 44243598, + "upload_date": "2022-03-30T22:51:07Z", + "modify_date": "2023-09-27T12:45:24Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Portuguese%20Ledge/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "underwater", + "heightmap", + "dem" + ], + "categories": [ + "Nature and Plants", + "Places and Landscapes" + ] + }, + { + "createdAt": "2022-03-29T18:39:45Z", + "updatedAt": "2024-03-12T02:40:30Z", + "name": "PR2_SDF17", + "owner": "antoniojfsousa", + "description": "The Willow Garage PR2 without sensors using SDFormat 1.7 frame semantics", + "likes": 0, + "downloads": 161, + "filesize": 14547731, + "upload_date": "2022-03-29T18:39:37Z", + "modify_date": "2022-03-29T18:39:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/antoniojfsousa/models/PR2_SDF17/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-28T23:15:41Z", + "updatedAt": "2024-03-29T17:23:44Z", + "name": "Small Blue Box", + "owner": "OpenRobotics", + "description": "Small Blue Box", + "likes": 1, + "downloads": 1297, + "filesize": 4136250, + "upload_date": "2022-03-28T23:15:39Z", + "modify_date": "2023-09-27T12:45:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Small%20Blue%20Box/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-28T23:15:04Z", + "updatedAt": "2024-03-29T08:28:32Z", + "name": "Large Grey Box", + "owner": "OpenRobotics", + "description": "Large Grey Box", + "likes": 1, + "downloads": 600, + "filesize": 5657726, + "upload_date": "2022-03-28T23:15:02Z", + "modify_date": "2023-09-27T12:45:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Large%20Grey%20Box/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-25T16:08:00Z", + "updatedAt": "2024-03-12T02:33:19Z", + "name": "Stecca Centrale", + "owner": "Andreamcr", + "description": "", + "likes": 0, + "downloads": 114, + "filesize": 33726, + "upload_date": "2022-03-25T16:07:59Z", + "modify_date": "2022-03-28T07:23:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/Andreamcr/models/Stecca%20Centrale/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-24T19:48:54Z", + "updatedAt": "2024-03-29T17:34:43Z", + "name": "Dock", + "owner": "OpenRobotics", + "description": "Start gate and dock for the MBZIRC coast environment", + "likes": 0, + "downloads": 1017, + "filesize": 11052383, + "upload_date": "2022-03-24T19:48:50Z", + "modify_date": "2023-09-27T12:46:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Dock/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-22T19:44:42Z", + "updatedAt": "2024-03-12T02:21:40Z", + "name": "Unexploded Ordnance C", + "owner": "quarkytale", + "description": "", + "likes": 0, + "downloads": 157, + "filesize": 3377561, + "upload_date": "2022-03-22T19:44:40Z", + "modify_date": "2022-03-22T19:45:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/quarkytale/models/Unexploded%20Ordnance%20C/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-22T19:43:37Z", + "updatedAt": "2024-03-19T14:55:51Z", + "name": "Unexploded Ordnance B", + "owner": "quarkytale", + "description": "", + "likes": 0, + "downloads": 124, + "filesize": 2996891, + "upload_date": "2022-03-22T19:43:35Z", + "modify_date": "2022-03-22T19:44:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/quarkytale/models/Unexploded%20Ordnance%20B/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-22T19:42:28Z", + "updatedAt": "2024-03-14T15:35:44Z", + "name": "Unexploded Ordnance A", + "owner": "quarkytale", + "description": "", + "likes": 0, + "downloads": 111, + "filesize": 3094317, + "upload_date": "2022-03-22T19:42:27Z", + "modify_date": "2022-03-22T19:43:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/quarkytale/models/Unexploded%20Ordnance%20A/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-22T19:39:05Z", + "updatedAt": "2024-04-01T15:07:22Z", + "name": "Torpedo MK48", + "owner": "quarkytale", + "description": "", + "likes": 0, + "downloads": 142, + "filesize": 3135754, + "upload_date": "2022-03-22T19:39:04Z", + "modify_date": "2022-03-22T19:39:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/quarkytale/models/Torpedo%20MK48/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-22T19:36:01Z", + "updatedAt": "2024-04-01T15:06:39Z", + "name": "Torpedo MK46", + "owner": "quarkytale", + "description": "", + "likes": 0, + "downloads": 139, + "filesize": 840121, + "upload_date": "2022-03-22T19:35:59Z", + "modify_date": "2022-03-22T19:36:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/quarkytale/models/Torpedo%20MK46/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-22T19:34:28Z", + "updatedAt": "2024-04-01T15:07:52Z", + "name": "Sonobuoy", + "owner": "quarkytale", + "description": "", + "likes": 0, + "downloads": 121, + "filesize": 338312, + "upload_date": "2022-03-22T19:34:27Z", + "modify_date": "2022-03-22T19:35:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/quarkytale/models/Sonobuoy/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-22T19:30:41Z", + "updatedAt": "2024-03-31T12:59:29Z", + "name": "Mud Anchor", + "owner": "quarkytale", + "description": "", + "likes": 0, + "downloads": 152, + "filesize": 7475, + "upload_date": "2022-03-22T19:30:40Z", + "modify_date": "2022-03-22T20:08:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/quarkytale/models/Mud%20Anchor/tip/files/thumbnails/mud_anchor.png", + "private": false + }, + { + "createdAt": "2022-03-22T18:05:38Z", + "updatedAt": "2024-03-14T15:27:15Z", + "name": "Hardhat Superribbed", + "owner": "quarkytale", + "description": "", + "likes": 0, + "downloads": 94, + "filesize": 2146656, + "upload_date": "2022-03-22T18:05:36Z", + "modify_date": "2022-03-22T18:05:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/quarkytale/models/Hardhat%20Superribbed/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-22T18:01:35Z", + "updatedAt": "2024-03-12T02:21:46Z", + "name": "Hardhat Standard", + "owner": "quarkytale", + "description": "", + "likes": 0, + "downloads": 105, + "filesize": 1222217, + "upload_date": "2022-03-22T18:01:33Z", + "modify_date": "2022-03-22T18:02:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/quarkytale/models/Hardhat%20Standard/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-22T18:00:04Z", + "updatedAt": "2024-03-14T15:26:28Z", + "name": "Hardhat Ribbed", + "owner": "quarkytale", + "description": "", + "likes": 0, + "downloads": 97, + "filesize": 1708610, + "upload_date": "2022-03-22T18:00:03Z", + "modify_date": "2022-03-22T18:00:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/quarkytale/models/Hardhat%20Ribbed/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-22T17:26:57Z", + "updatedAt": "2024-03-14T15:28:37Z", + "name": "Hardhat Octagonal", + "owner": "quarkytale", + "description": "", + "likes": 0, + "downloads": 98, + "filesize": 1994703, + "upload_date": "2022-03-22T17:26:55Z", + "modify_date": "2022-03-22T17:30:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/quarkytale/models/Hardhat%20Octagonal/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-22T17:17:09Z", + "updatedAt": "2024-03-25T17:20:35Z", + "name": "Flight Data Recorder", + "owner": "quarkytale", + "description": "", + "likes": 0, + "downloads": 169, + "filesize": 2184947, + "upload_date": "2022-03-22T17:17:07Z", + "modify_date": "2022-03-22T17:17:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/quarkytale/models/Flight%20Data%20Recorder/tip/files/thumbnails/flight_data_recorder.png", + "private": false + }, + { + "createdAt": "2022-03-22T05:58:51Z", + "updatedAt": "2024-03-21T14:16:09Z", + "name": "Birthday cake", + "owner": "chapulina", + "description": "Cake for Open Robotics' 10 year anniversary.\r\n\r\nChocolate cake mesh by 3DMish on Sketchfab: https://skfb.ly/697Cu", + "likes": 0, + "downloads": 177, + "filesize": 1229750, + "upload_date": "2022-03-22T05:58:49Z", + "modify_date": "2022-03-22T05:58:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Birthday%20cake/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "cake", + "food" + ], + "categories": [ + "Food and Drink" + ] + }, + { + "createdAt": "2022-03-22T00:23:34Z", + "updatedAt": "2024-03-25T17:19:19Z", + "name": "MBARI MARS", + "owner": "quarkytale", + "description": "MBARI MARS (Monterey Accelerated Research System) Ocean Observing Node", + "likes": 0, + "downloads": 184, + "filesize": 2958371, + "upload_date": "2022-03-22T00:23:32Z", + "modify_date": "2022-03-22T17:33:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/quarkytale/models/MBARI%20MARS/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-17T20:38:40Z", + "updatedAt": "2024-03-29T08:28:20Z", + "name": "Large Dry Box", + "owner": "OpenRobotics", + "description": "Large Dry Box", + "likes": 1, + "downloads": 771, + "filesize": 7843487, + "upload_date": "2022-03-17T20:38:38Z", + "modify_date": "2023-09-27T12:46:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Large%20Dry%20Box/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-17T20:37:53Z", + "updatedAt": "2024-03-29T08:28:14Z", + "name": "Large Ammo Can", + "owner": "OpenRobotics", + "description": "Large Ammo Can", + "likes": 0, + "downloads": 502, + "filesize": 9715832, + "upload_date": "2022-03-17T20:37:51Z", + "modify_date": "2023-09-27T12:46:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Large%20Ammo%20Can/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-17T20:36:24Z", + "updatedAt": "2024-03-29T17:44:57Z", + "name": "Small Dry Bag", + "owner": "OpenRobotics", + "description": "Small Dry Bag", + "likes": 0, + "downloads": 743, + "filesize": 8173905, + "upload_date": "2022-03-17T20:36:21Z", + "modify_date": "2023-09-27T12:46:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Small%20Dry%20Bag/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-17T15:23:51Z", + "updatedAt": "2024-04-03T10:30:16Z", + "name": "Vessel F", + "owner": "coolcoolcol", + "description": "Vessel F", + "likes": 0, + "downloads": 378, + "filesize": 7729786, + "upload_date": "2022-03-17T15:23:49Z", + "modify_date": "2022-03-17T15:23:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/coolcoolcol/models/Vessel%20F/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-03-15T20:55:49Z", + "updatedAt": "2024-04-01T17:59:03Z", + "name": "Portuguese Ledge", + "owner": "chapulina", + "description": "Heightmap created with data provided by Dr. Dave Caress\n and MBARI's Seafloor Mapping Lab.\n\n https://www.mbari.org/caress-dave/\n https://www.mbari.org/technology/seafloor-mapping/", + "likes": 0, + "downloads": 65, + "filesize": 41213240, + "upload_date": "2022-03-15T20:55:40Z", + "modify_date": "2022-03-30T21:09:01Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "underwater", + "heightmap", + "dem" + ], + "categories": [ + "Nature and Plants", + "Places and Landscapes" + ] + }, + { + "createdAt": "2022-03-09T20:58:48Z", + "updatedAt": "2024-03-31T20:29:48Z", + "name": "SUV", + "owner": "isabelleysseric", + "description": "An SUV.", + "likes": 0, + "downloads": 213, + "filesize": 1894857, + "upload_date": "2022-03-09T20:58:46Z", + "modify_date": "2022-03-09T20:58:46Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/isabelleysseric/models/SUV/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2022-03-03T09:29:54Z", + "updatedAt": "2024-04-03T09:28:11Z", + "name": "Warehouse", + "owner": "MovAi", + "description": "A simple structure to use in warehouse simulations.", + "likes": 1, + "downloads": 875, + "filesize": 8847835, + "upload_date": "2022-03-03T09:29:51Z", + "modify_date": "2022-03-03T17:47:16Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/MovAi/models/Warehouse/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse", + "tugbot", + "movai" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2022-03-02T17:21:04Z", + "updatedAt": "2024-04-04T01:31:21Z", + "name": "cart_model_2", + "owner": "MovAi", + "description": "A simple warehouse cart model to use in Mov.Ai simulations of pick and drop tasks with the Tugbot robot.", + "likes": 1, + "downloads": 5133, + "filesize": 353452, + "upload_date": "2022-03-02T17:21:03Z", + "modify_date": "2022-03-03T17:46:49Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/MovAi/models/cart_model_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "cart", + "warehouse", + "tugbot", + "movai" + ], + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2022-03-02T17:12:19Z", + "updatedAt": "2024-04-04T05:36:19Z", + "name": "Tugbot-charging-station", + "owner": "MovAi", + "description": "Tugbot charging station model.", + "likes": 0, + "downloads": 5001, + "filesize": 86647, + "upload_date": "2022-03-02T17:12:18Z", + "modify_date": "2022-03-03T17:47:08Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/MovAi/models/Tugbot-charging-station/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "tugbot", + "movai", + "charging", + "station" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2022-03-02T17:07:05Z", + "updatedAt": "2024-04-04T05:55:36Z", + "name": "Tugbot", + "owner": "MovAi", + "description": "Tugbot is a warehouse robot created by RoboSavvy and powered by Mov.Ai.\r\nSensors:\r\n2 planar Lidar\r\n1 Velodyne\r\n2 RGB+Depth Camera", + "likes": 0, + "downloads": 5639, + "filesize": 353708, + "upload_date": "2022-03-02T17:07:03Z", + "modify_date": "2022-03-03T17:47:00Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/MovAi/models/Tugbot/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "robot", + "warehouse", + "tugbot", + "movai" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2022-02-23T21:54:29Z", + "updatedAt": "2024-04-03T09:15:41Z", + "name": "Vessel F", + "owner": "OpenRobotics", + "description": "Vessel F", + "likes": 1, + "downloads": 1179, + "filesize": 7729786, + "upload_date": "2022-02-23T21:54:27Z", + "modify_date": "2023-09-27T12:46:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Vessel%20F/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-02-22T21:57:19Z", + "updatedAt": "2024-04-03T15:15:31Z", + "name": "Vessel G", + "owner": "OpenRobotics", + "description": "Vessel G", + "likes": 0, + "downloads": 922, + "filesize": 6926618, + "upload_date": "2022-02-22T21:57:16Z", + "modify_date": "2023-09-27T12:46:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Vessel%20G/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-02-18T02:13:01Z", + "updatedAt": "2024-03-29T17:38:43Z", + "name": "Vessel E", + "owner": "OpenRobotics", + "description": "Vessel E", + "likes": 0, + "downloads": 965, + "filesize": 2863293, + "upload_date": "2022-02-18T02:12:59Z", + "modify_date": "2023-09-27T12:47:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Vessel%20E/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-02-18T02:12:31Z", + "updatedAt": "2024-04-03T09:15:21Z", + "name": "Vessel D", + "owner": "OpenRobotics", + "description": "Vessel D", + "likes": 0, + "downloads": 950, + "filesize": 9047055, + "upload_date": "2022-02-18T02:12:29Z", + "modify_date": "2023-09-27T12:47:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Vessel%20D/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-02-18T02:11:41Z", + "updatedAt": "2024-04-03T15:22:28Z", + "name": "Vessel C", + "owner": "OpenRobotics", + "description": "Vessel C", + "likes": 0, + "downloads": 833, + "filesize": 12665002, + "upload_date": "2022-02-18T02:11:38Z", + "modify_date": "2023-09-27T12:47:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Vessel%20C/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-02-18T02:10:47Z", + "updatedAt": "2024-03-29T17:36:35Z", + "name": "Vessel B", + "owner": "OpenRobotics", + "description": "Vessel B", + "likes": 0, + "downloads": 856, + "filesize": 9375226, + "upload_date": "2022-02-18T02:10:45Z", + "modify_date": "2023-09-27T12:47:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Vessel%20B/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-02-09T01:53:19Z", + "updatedAt": "2024-04-03T13:33:09Z", + "name": "Beach", + "owner": "OpenRobotics", + "description": "Beach environment of approximately 5.9km by 1.67km in size", + "likes": 0, + "downloads": 1144, + "filesize": 82392283, + "upload_date": "2022-02-09T01:53:02Z", + "modify_date": "2023-09-27T12:47:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Beach/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-02-09T01:51:52Z", + "updatedAt": "2024-03-29T08:26:50Z", + "name": "Coast Waves", + "owner": "OpenRobotics", + "description": "Waves - visual only. Size: 6km x 6km", + "likes": 0, + "downloads": 311, + "filesize": 2052022, + "upload_date": "2022-02-09T01:51:48Z", + "modify_date": "2023-09-27T12:49:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Coast%20Waves/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-02-04T16:22:15Z", + "updatedAt": "2024-04-03T06:39:02Z", + "name": "Elevator", + "owner": "OpenRobotics", + "description": "An elevator with configurable number of floors.", + "likes": 0, + "downloads": 239, + "filesize": 279531, + "upload_date": "2022-02-04T16:22:13Z", + "modify_date": "2023-09-27T12:49:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Elevator/tip/files/thumbnails/cabin.jpg", + "private": false, + "tags": [ + "elevator" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2022-02-02T13:45:35Z", + "updatedAt": "2024-04-04T01:32:12Z", + "name": "shelf_big", + "owner": "MovAi", + "description": "A simple shelf to use in warehouse simulations. This is a big version of the shelf model.", + "likes": 0, + "downloads": 9948, + "filesize": 1135852, + "upload_date": "2022-02-02T13:45:34Z", + "modify_date": "2022-03-03T17:46:22Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/MovAi/models/shelf_big/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "big", + "warehouse", + "shelf" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2022-02-02T09:51:50Z", + "updatedAt": "2024-04-04T01:33:09Z", + "name": "pallet_box_mobile", + "owner": "MovAi", + "description": "A pallet load with \"200kg\" of boxes. To use in simulations of a Palletbot.", + "likes": 1, + "downloads": 8425, + "filesize": 1242925, + "upload_date": "2022-02-02T09:51:49Z", + "modify_date": "2022-03-03T17:46:40Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/MovAi/models/pallet_box_mobile/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse", + "pallet" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2022-02-02T09:44:16Z", + "updatedAt": "2024-04-03T14:21:21Z", + "name": "pallet", + "owner": "MovAi", + "description": "A simple pallet with collision to use in warehouse simulations.", + "likes": 2, + "downloads": 10801, + "filesize": 392803, + "upload_date": "2022-02-02T09:44:14Z", + "modify_date": "2022-03-03T17:46:31Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/MovAi/models/pallet/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse", + "pallet" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2022-01-27T20:46:31Z", + "updatedAt": "2024-03-25T17:47:37Z", + "name": "Sunken Vase 02", + "owner": "Cole", + "description": "", + "likes": 1, + "downloads": 266, + "filesize": 14326166, + "upload_date": "2022-01-27T20:46:28Z", + "modify_date": "2022-02-23T22:37:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Cole/models/Sunken%20Vase%2002/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-01-26T17:40:13Z", + "updatedAt": "2024-04-01T15:08:35Z", + "name": "Sunken Vase", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 733, + "filesize": 15541721, + "upload_date": "2022-01-26T17:40:10Z", + "modify_date": "2022-02-23T22:29:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Cole/models/Sunken%20Vase/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-01-26T04:12:26Z", + "updatedAt": "2024-04-04T04:07:33Z", + "name": "Campus", + "owner": "NCS_robotmanager", + "description": "Campus world for multi-robot simulations.", + "likes": 1, + "downloads": 13225, + "filesize": 71816347, + "upload_date": "2022-01-26T04:12:10Z", + "modify_date": "2022-02-09T09:38:37Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/NCS_robotmanager/models/Campus/tip/files/thumbnails/campus_sim.png", + "private": false + }, + { + "createdAt": "2022-01-26T03:24:53Z", + "updatedAt": "2024-03-28T14:58:41Z", + "name": "Casual female", + "owner": "OpenRobotics", + "description": "A standing person-Casual Female. Model created with Makehuman (http://www.makehuman.org/)", + "likes": 0, + "downloads": 994, + "filesize": 27264357, + "upload_date": "2022-01-26T03:24:48Z", + "modify_date": "2023-09-27T12:49:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Casual%20female/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "static", + "person", + "human" + ], + "categories": [ + "People" + ] + }, + { + "createdAt": "2022-01-25T17:59:19Z", + "updatedAt": "2024-04-03T07:35:04Z", + "name": "Sunken Ship", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 608, + "filesize": 9482702, + "upload_date": "2022-01-25T17:59:17Z", + "modify_date": "2022-02-23T22:30:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-01-25T17:45:39Z", + "updatedAt": "2024-03-22T20:52:11Z", + "name": "Kelp 04", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 156, + "filesize": 13462755, + "upload_date": "2022-01-25T17:45:36Z", + "modify_date": "2022-01-25T17:45:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-01-25T17:44:58Z", + "updatedAt": "2024-03-12T03:04:05Z", + "name": "Kelp 03", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 121, + "filesize": 13458997, + "upload_date": "2022-01-25T17:44:55Z", + "modify_date": "2022-01-25T17:44:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-01-25T17:38:36Z", + "updatedAt": "2024-03-25T17:33:29Z", + "name": "Kelp 02", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 135, + "filesize": 13455913, + "upload_date": "2022-01-25T17:38:34Z", + "modify_date": "2022-01-25T17:44:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-01-25T17:37:48Z", + "updatedAt": "2024-03-25T17:28:05Z", + "name": "Kelp 01", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 157, + "filesize": 13454057, + "upload_date": "2022-01-25T17:37:45Z", + "modify_date": "2022-01-25T17:37:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-01-25T00:08:11Z", + "updatedAt": "2024-03-28T11:06:03Z", + "name": "Ocean Rock 07", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 172, + "filesize": 18409455, + "upload_date": "2022-01-25T00:08:08Z", + "modify_date": "2022-01-25T00:08:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-01-25T00:06:03Z", + "updatedAt": "2024-03-22T19:37:07Z", + "name": "Ocean Rock 06", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 77, + "filesize": 18414089, + "upload_date": "2022-01-25T00:06:00Z", + "modify_date": "2022-01-25T00:06:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-01-25T00:04:03Z", + "updatedAt": "2024-03-22T19:36:42Z", + "name": "Ocean Rock 05", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 66, + "filesize": 18425307, + "upload_date": "2022-01-25T00:04:00Z", + "modify_date": "2022-01-25T00:04:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-01-25T00:02:56Z", + "updatedAt": "2024-03-22T19:35:59Z", + "name": "Ocean Rock 04", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 60, + "filesize": 18424553, + "upload_date": "2022-01-25T00:02:52Z", + "modify_date": "2022-01-25T00:02:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-01-25T00:01:57Z", + "updatedAt": "2024-03-22T19:35:42Z", + "name": "Ocean Rock 03", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 99, + "filesize": 18418856, + "upload_date": "2022-01-25T00:01:54Z", + "modify_date": "2022-01-25T00:01:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-01-24T23:56:50Z", + "updatedAt": "2024-03-22T19:34:27Z", + "name": "Ocean Rock 02", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 61, + "filesize": 18599001, + "upload_date": "2022-01-24T23:56:47Z", + "modify_date": "2022-01-24T23:56:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-01-24T23:55:12Z", + "updatedAt": "2024-03-23T20:59:38Z", + "name": "Ocean Rock 01", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 85, + "filesize": 18426176, + "upload_date": "2022-01-24T23:55:09Z", + "modify_date": "2022-01-24T23:55:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-01-24T23:00:54Z", + "updatedAt": "2024-03-12T03:06:12Z", + "name": "Coral02", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 140, + "filesize": 31004999, + "upload_date": "2022-01-24T23:00:49Z", + "modify_date": "2022-01-24T23:31:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Cole/models/Coral02/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-01-24T22:51:39Z", + "updatedAt": "2024-03-25T17:25:00Z", + "name": "Coral01", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 205, + "filesize": 12446606, + "upload_date": "2022-01-24T22:51:37Z", + "modify_date": "2022-01-24T22:53:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Cole/models/Coral01/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-01-24T21:42:03Z", + "updatedAt": "2024-03-25T17:53:36Z", + "name": "Lionfish", + "owner": "Cole", + "description": "", + "likes": 1, + "downloads": 270, + "filesize": 10933686, + "upload_date": "2022-01-24T21:42:01Z", + "modify_date": "2022-02-17T17:14:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Cole/models/Lionfish/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-01-24T20:07:47Z", + "updatedAt": "2024-04-01T14:51:29Z", + "name": "Niskin", + "owner": "Cole", + "description": "", + "likes": 0, + "downloads": 276, + "filesize": 12919359, + "upload_date": "2022-01-24T20:07:44Z", + "modify_date": "2022-02-16T19:32:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Cole/models/Niskin/tip/files/thumbnails/1.PNG", + "private": false + }, + { + "createdAt": "2022-01-22T05:03:48Z", + "updatedAt": "2024-04-04T03:31:22Z", + "name": "Waves", + "owner": "OpenRobotics", + "description": "waves - visual only", + "likes": 0, + "downloads": 3308, + "filesize": 1220648, + "upload_date": "2022-01-22T05:03:46Z", + "modify_date": "2023-09-27T12:49:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Waves/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-01-18T07:25:38Z", + "updatedAt": "2024-03-12T02:42:04Z", + "name": "sample_bot_1", + "owner": "atulchaudhari", + "description": "", + "likes": 0, + "downloads": 110, + "filesize": 2404356, + "upload_date": "2022-01-18T07:25:36Z", + "modify_date": "2022-01-18T07:25:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/atulchaudhari/models/sample_bot_1/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-01-18T07:17:42Z", + "updatedAt": "2024-03-12T02:42:54Z", + "name": "sample_bot", + "owner": "atulchaudhari", + "description": "", + "likes": 0, + "downloads": 68, + "filesize": 2404356, + "upload_date": "2022-01-18T07:17:40Z", + "modify_date": "2022-01-18T07:17:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/atulchaudhari/models/sample_bot/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2022-01-18T06:56:46Z", + "updatedAt": "2024-03-12T02:43:39Z", + "name": "bot_sample", + "owner": "atulchaudhari", + "description": "", + "likes": 0, + "downloads": 54, + "filesize": 1864799, + "upload_date": "2022-01-18T06:56:45Z", + "modify_date": "2022-01-18T06:56:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2022-01-18T05:46:31Z", + "updatedAt": "2024-03-12T02:44:34Z", + "name": "mesh_sample", + "owner": "atulchaudhari", + "description": "", + "likes": 0, + "downloads": 46, + "filesize": 564257, + "upload_date": "2022-01-18T05:46:30Z", + "modify_date": "2022-01-18T05:46:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/atulchaudhari/models/mesh_sample/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Electronics" + ] + }, + { + "createdAt": "2022-01-14T14:05:47Z", + "updatedAt": "2024-03-29T18:32:48Z", + "name": "VisitorKidWalk", + "owner": "Luca", + "description": "A walking kid", + "likes": 0, + "downloads": 1501, + "filesize": 644553, + "upload_date": "2022-01-14T14:05:46Z", + "modify_date": "2022-01-14T14:05:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "actor", + "animated", + "walking", + "kid" + ], + "categories": [ + "People" + ] + }, + { + "createdAt": "2022-01-14T14:04:52Z", + "updatedAt": "2024-03-21T18:36:31Z", + "name": "PatientWalkingCane", + "owner": "Luca", + "description": "A patient walking with a cane", + "likes": 0, + "downloads": 265, + "filesize": 608315, + "upload_date": "2022-01-14T14:04:51Z", + "modify_date": "2022-01-14T14:04:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "actor", + "human", + "hospital", + "animated", + "walking", + "patient", + "cane" + ], + "categories": [ + "People" + ] + }, + { + "createdAt": "2022-01-14T14:02:57Z", + "updatedAt": "2024-03-17T17:25:42Z", + "name": "PatientRollingWalker", + "owner": "Luca", + "description": "An animated patient walking with a roller", + "likes": 0, + "downloads": 194, + "filesize": 636804, + "upload_date": "2022-01-14T14:02:56Z", + "modify_date": "2022-01-14T14:02:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "actor", + "human", + "hospital", + "walking", + "patient", + "roller" + ], + "categories": [ + "People" + ] + }, + { + "createdAt": "2022-01-14T14:01:48Z", + "updatedAt": "2024-03-12T07:07:21Z", + "name": "OpScrubsWalk", + "owner": "Luca", + "description": "A person in scrubs walking", + "likes": 0, + "downloads": 237, + "filesize": 2263395, + "upload_date": "2022-01-14T14:01:46Z", + "modify_date": "2022-01-14T14:01:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "actor", + "human", + "hospital", + "animated", + "scrubs", + "walking" + ], + "categories": [ + "People" + ] + }, + { + "createdAt": "2022-01-14T13:55:51Z", + "updatedAt": "2024-03-18T06:52:46Z", + "name": "NurseFemaleWalk", + "owner": "Luca", + "description": "A walking female nurse", + "likes": 0, + "downloads": 413, + "filesize": 517291, + "upload_date": "2022-01-14T13:55:50Z", + "modify_date": "2022-01-14T13:55:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "actor", + "human", + "hospital", + "animated", + "nurse", + "walking" + ], + "categories": [ + "People" + ] + }, + { + "createdAt": "2022-01-14T13:54:04Z", + "updatedAt": "2024-03-12T07:07:44Z", + "name": "FemaleVisitorWalk", + "owner": "Luca", + "description": "A female visitor walking", + "likes": 0, + "downloads": 565, + "filesize": 646113, + "upload_date": "2022-01-14T13:54:03Z", + "modify_date": "2022-01-14T13:54:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "actor", + "human", + "animated", + "walking" + ], + "categories": [ + "People" + ] + }, + { + "createdAt": "2022-01-14T13:22:37Z", + "updatedAt": "2024-03-17T17:25:37Z", + "name": "DoctorFemaleWalk", + "owner": "Luca", + "description": "A female doctor walking", + "likes": 0, + "downloads": 377, + "filesize": 2233639, + "upload_date": "2022-01-14T13:22:35Z", + "modify_date": "2022-01-14T13:22:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "actor", + "human", + "hospital", + "animated", + "doctor", + "walking" + ], + "categories": [ + "People" + ] + }, + { + "createdAt": "2022-01-12T12:42:25Z", + "updatedAt": "2024-03-12T02:22:00Z", + "name": "sandwich_bot_2_0_description", + "owner": "rushikeshhalle", + "description": "the sandwich_bot_2_0_description", + "likes": 0, + "downloads": 176, + "filesize": 2058030, + "upload_date": "2022-01-12T12:42:23Z", + "modify_date": "2022-01-17T01:55:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "private": false + }, + { + "createdAt": "2022-01-11T20:07:13Z", + "updatedAt": "2024-04-03T15:06:02Z", + "name": "Vessel A", + "owner": "OpenRobotics", + "description": "Vessel A", + "likes": 0, + "downloads": 1892, + "filesize": 23739816, + "upload_date": "2022-01-11T20:07:08Z", + "modify_date": "2023-09-27T12:49:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Vessel%20A/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-01-11T08:24:07Z", + "updatedAt": "2024-04-04T06:08:17Z", + "name": "Intel RealSense D435", + "owner": "bmchale", + "description": "Intel RealSense D435", + "likes": 0, + "downloads": 214, + "filesize": 2582073, + "upload_date": "2022-01-11T08:24:05Z", + "modify_date": "2022-01-11T08:24:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/bmchale/models/Intel%20RealSense%20D435/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "camera", + "intel", + "rgbd" + ], + "categories": [ + "Electronics", + "Science and Technology" + ] + }, + { + "createdAt": "2022-01-07T22:35:03Z", + "updatedAt": "2024-04-04T03:31:21Z", + "name": "deformable_sphere", + "owner": "OpenRobotics", + "description": "A sphere with visual plugin", + "likes": 0, + "downloads": 3199, + "filesize": 41846, + "upload_date": "2022-01-07T22:35:02Z", + "modify_date": "2023-09-27T12:49:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/deformable_sphere/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2022-01-06T16:44:30Z", + "updatedAt": "2024-04-04T01:32:34Z", + "name": "shelf", + "owner": "MovAi", + "description": "simple shelf to use in warehouse worlds", + "likes": 0, + "downloads": 10327, + "filesize": 1239350, + "upload_date": "2022-01-06T16:44:29Z", + "modify_date": "2022-03-03T17:46:11Z", + "license_id": 5, + "license_name": "Creative Commons Attribution Non Commercial 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/MovAi/models/shelf/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "warehouse", + "shelf" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2022-01-04T20:46:03Z", + "updatedAt": "2024-03-26T17:59:28Z", + "name": "Juniper Tree", + "owner": "shrijitsingh99", + "description": "Scaled Pine Tree", + "likes": 0, + "downloads": 296, + "filesize": 553412, + "upload_date": "2022-01-04T20:46:02Z", + "modify_date": "2022-01-04T22:46:54Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Nature and Plants" + ] + }, + { + "createdAt": "2021-12-29T11:53:04Z", + "updatedAt": "2024-03-20T04:28:34Z", + "name": "building_L1", + "owner": "shrijitsingh99", + "description": "Level 1 Floor of a version of the clinic world from rmf_demos", + "likes": 0, + "downloads": 131, + "filesize": 310343, + "upload_date": "2021-12-29T11:53:03Z", + "modify_date": "2021-12-29T12:02:43Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 1, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-12-21T20:09:47Z", + "updatedAt": "2024-04-03T18:18:03Z", + "name": "Monterey Bay", + "owner": "jennuine", + "description": "Digital Elevation Model (DEM) heightmap of Monterey Bay bathymetry downloaded from GEBCO (General Bathymetric Chart of the Oceans) 2021 https://www.gebco.net/", + "likes": 0, + "downloads": 276, + "filesize": 609575, + "upload_date": "2021-12-21T20:09:46Z", + "modify_date": "2022-02-12T01:36:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/jennuine/models/Monterey%20Bay/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "heightmap", + "dem" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-12-21T19:21:34Z", + "updatedAt": "2024-04-02T15:44:52Z", + "name": "Volcano", + "owner": "jennuine", + "description": "Digital Elevation Model (DEM) heightmap of Mount St. Helens volcano. This uses the same model that is installed with Gazebo classic.", + "likes": 0, + "downloads": 336, + "filesize": 9780217, + "upload_date": "2021-12-21T19:21:31Z", + "modify_date": "2021-12-21T19:21:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/jennuine/models/Volcano/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "heightmap", + "dem", + "volcano" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-12-15T22:06:08Z", + "updatedAt": "2024-04-01T12:36:05Z", + "name": "Rubicon", + "owner": "Hyundai", + "description": "", + "likes": 0, + "downloads": 1166, + "filesize": 567662533, + "upload_date": "2021-12-15T22:04:13Z", + "modify_date": "2021-12-15T22:04:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-12-15T22:02:24Z", + "updatedAt": "2024-03-30T11:53:30Z", + "name": "Moon", + "owner": "Hyundai", + "description": "", + "likes": 0, + "downloads": 569, + "filesize": 390215606, + "upload_date": "2021-12-15T22:01:58Z", + "modify_date": "2022-10-04T17:20:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-12-10T15:03:46Z", + "updatedAt": "2024-03-31T03:24:32Z", + "name": "indy7", + "owner": "pmh5050", + "description": "Indy7 robot compatible with Ignition and MoveIt2", + "likes": 0, + "downloads": 246, + "filesize": 7218764, + "upload_date": "2021-12-10T15:03:44Z", + "modify_date": "2021-12-15T03:15:06Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/pmh5050/models/indy7/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-12-09T16:46:17Z", + "updatedAt": "2024-03-29T06:07:47Z", + "name": "Box 5cm", + "owner": "09ubberboy90", + "description": "Just a 5cm box", + "likes": 0, + "downloads": 216, + "filesize": 768, + "upload_date": "2021-12-09T16:46:16Z", + "modify_date": "2022-01-20T18:43:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-11-24T20:55:52Z", + "updatedAt": "2024-03-12T07:48:37Z", + "name": "ignlego_stl", + "owner": "okan", + "description": "", + "likes": 0, + "downloads": 319, + "filesize": 12469, + "upload_date": "2021-11-24T20:55:51Z", + "modify_date": "2021-11-24T20:56:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/okan/models/ignlego_stl/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-11-23T22:40:12Z", + "updatedAt": "2024-03-12T07:48:54Z", + "name": "ignlego", + "owner": "okan", + "description": "", + "likes": 0, + "downloads": 274, + "filesize": 9423, + "upload_date": "2021-11-23T22:40:11Z", + "modify_date": "2021-11-23T22:45:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/okan/models/ignlego/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-11-19T17:13:14Z", + "updatedAt": "2024-03-12T08:33:32Z", + "name": "cerberus_kolibri_sensor_config_1", + "owner": "OpenRobotics", + "description": "Multi-directional tri-copter with sensor configuration: OS0, 6 cameras, CO2 sensor and IMU.", + "likes": 0, + "downloads": 198, + "filesize": 3928272, + "upload_date": "2021-11-19T17:13:12Z", + "modify_date": "2023-09-27T12:50:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/cerberus_kolibri_sensor_config_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-11-19T17:06:43Z", + "updatedAt": "2024-04-01T01:08:54Z", + "name": "explorer_spot_sensor_config_1", + "owner": "OpenRobotics", + "description": "Boston Dynamics Spot of the Explorer team.", + "likes": 1, + "downloads": 674, + "filesize": 11781358, + "upload_date": "2021-11-19T17:06:37Z", + "modify_date": "2023-09-27T12:50:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/explorer_spot_sensor_config_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-11-19T17:01:36Z", + "updatedAt": "2024-04-03T17:26:55Z", + "name": "coro_mark_sensor_config_1", + "owner": "OpenRobotics", + "description": "Coordinated Robotics Mark UAV", + "likes": 0, + "downloads": 313, + "filesize": 53564, + "upload_date": "2021-11-19T17:01:35Z", + "modify_date": "2023-09-27T12:50:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/coro_mark_sensor_config_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-11-19T16:57:09Z", + "updatedAt": "2024-04-03T17:26:51Z", + "name": "coro_hd2_sensor_config_2", + "owner": "OpenRobotics", + "description": "Coordinated Robotics hd2 robot for SubT.\n Based on Marble's HD2 model.", + "likes": 0, + "downloads": 426, + "filesize": 5543456, + "upload_date": "2021-11-19T16:57:07Z", + "modify_date": "2023-09-27T12:50:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/coro_hd2_sensor_config_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-11-19T16:55:05Z", + "updatedAt": "2024-04-01T01:08:57Z", + "name": "coro_hd2_sensor_config_1", + "owner": "OpenRobotics", + "description": "Coordinated Robotics hd2 robot for SubT.\n Based on Marble's HD2 model.", + "likes": 0, + "downloads": 354, + "filesize": 5543456, + "upload_date": "2021-11-19T16:55:03Z", + "modify_date": "2023-09-27T12:51:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/coro_hd2_sensor_config_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-11-19T16:49:52Z", + "updatedAt": "2024-04-03T17:26:54Z", + "name": "dynamo_x4_sensor_config_2", + "owner": "OpenRobotics", + "description": "X4 UAV with sensor configuration #8: 3D medium range lidar, IMU, pressure sensor, magnetometer, front VGA facing camera, up and down TOF camera.", + "likes": 1, + "downloads": 350, + "filesize": 5892996, + "upload_date": "2021-11-19T16:49:48Z", + "modify_date": "2023-09-27T12:51:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/dynamo_x4_sensor_config_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-11-19T16:46:28Z", + "updatedAt": "2024-04-03T17:26:52Z", + "name": "dynamo_x4_sensor_config_1", + "owner": "OpenRobotics", + "description": "X4 UAV with sensor configuration: 3D medium range lidar, IMU, pressure sensor, magnetometer, front VGA facing camera, up facing QVGA depth camera and down VGA depth camera.", + "likes": 0, + "downloads": 339, + "filesize": 5893089, + "upload_date": "2021-11-19T16:46:24Z", + "modify_date": "2023-09-27T12:51:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/dynamo_x4_sensor_config_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-11-19T16:32:27Z", + "updatedAt": "2024-04-01T01:08:56Z", + "name": "explorer_canary1_sensor_config_1", + "owner": "OpenRobotics", + "description": "CMU Explorer canary1: 2 3D medium range lidar (one velodyne and one vertically oriented ouster), IMU, 4 Cameras (the real robot has 2 fisheye cameras that together have a total of 360 degrees field of view, but 4 cameras are used in sim to get a 360 field of view since fisheyes aren't modeled in sim), Gas sensor, Pressure sensor, Magnetometer.", + "likes": 0, + "downloads": 339, + "filesize": 4514623, + "upload_date": "2021-11-19T16:32:24Z", + "modify_date": "2023-09-27T12:51:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/explorer_canary1_sensor_config_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-11-19T16:08:04Z", + "updatedAt": "2024-04-03T17:26:57Z", + "name": "csiro_data61_spot_sensor_config_1", + "owner": "OpenRobotics", + "description": "CSIRO-DATA61's Boston Dynamics Spot configuration", + "likes": 0, + "downloads": 439, + "filesize": 4829982, + "upload_date": "2021-11-19T16:07:59Z", + "modify_date": "2023-09-27T12:52:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/csiro_data61_spot_sensor_config_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-11-06T00:07:08Z", + "updatedAt": "2024-04-03T17:26:57Z", + "name": "ctu_cras_norlab_x500_sensor_config_2", + "owner": "OpenRobotics", + "description": "CTU-CRAS-NORLAB X500 UAV \n Sensor configuration:\n - 3D medium range lidar Ouster OS0-64\n - frontward Basler dart daA1600-60um with DSL165A lens (RGB camera)\n - standard SubT IMU", + "likes": 0, + "downloads": 400, + "filesize": 1474595, + "upload_date": "2021-11-06T00:07:05Z", + "modify_date": "2023-09-27T12:52:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ctu_cras_norlab_x500_sensor_config_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-11-06T00:03:08Z", + "updatedAt": "2024-04-03T17:26:52Z", + "name": "barcs_qav500_sensor_config_2", + "owner": "OpenRobotics", + "description": "QAV500 UAV with sensor configuration #1: 3D medium range lidar, IMU, pressure sensor, magnetometer, HD front camera, 2x pico flexx tof cameras.", + "likes": 0, + "downloads": 362, + "filesize": 13665218, + "upload_date": "2021-11-06T00:03:01Z", + "modify_date": "2023-09-27T12:52:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/barcs_qav500_sensor_config_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-11-05T21:00:10Z", + "updatedAt": "2024-04-03T17:22:54Z", + "name": "barcs_qav500_sensor_config_1", + "owner": "OpenRobotics", + "description": "QAV500 UAV with sensor configuration #1: 3D medium range lidar, IMU, pressure sensor, magnetometer, HD front camera, 2x pico flexx tof cameras.", + "likes": 0, + "downloads": 293, + "filesize": 13665335, + "upload_date": "2021-11-05T21:00:03Z", + "modify_date": "2023-09-27T12:53:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/barcs_qav500_sensor_config_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-11-05T20:49:51Z", + "updatedAt": "2024-04-03T17:26:55Z", + "name": "coro_bandicoot_sensor_config_1", + "owner": "OpenRobotics", + "description": "Coordinated Robotics Bandicoot UAV with sensor configuration #1: Two wide angle cameras, D435, 3d LIDAR, IMU, pressure sensor, magnetometer.", + "likes": 0, + "downloads": 296, + "filesize": 209837, + "upload_date": "2021-11-05T20:49:50Z", + "modify_date": "2023-09-27T12:53:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/coro_bandicoot_sensor_config_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-11-01T17:33:37Z", + "updatedAt": "2024-03-12T07:15:39Z", + "name": "part_a0dafada0d685b39b3e095f05c8497c3", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 81, + "filesize": 13366393, + "upload_date": "2021-11-01T17:33:34Z", + "modify_date": "2021-11-01T17:33:34Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-11-01T17:33:18Z", + "updatedAt": "2024-03-12T07:15:53Z", + "name": "part_13120ea337f5205cd907dd4fb1a14123", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 42, + "filesize": 13399256, + "upload_date": "2021-11-01T17:33:16Z", + "modify_date": "2021-11-01T17:33:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-11-01T17:33:05Z", + "updatedAt": "2024-03-12T07:16:06Z", + "name": "assembly_091594270d346d8389b0e6cee05f44ba", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 44, + "filesize": 14813636, + "upload_date": "2021-11-01T17:33:01Z", + "modify_date": "2021-11-01T17:33:01Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:28:41Z", + "updatedAt": "2024-03-18T06:08:06Z", + "name": "part_ee2cfbbd02263f57da9c400a0a879946", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 16, + "filesize": 13419151, + "upload_date": "2021-10-29T07:28:38Z", + "modify_date": "2021-10-29T07:28:38Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:28:26Z", + "updatedAt": "2024-03-12T07:16:40Z", + "name": "part_399dfe944147716624e9cf99541e1c44", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 17, + "filesize": 13419532, + "upload_date": "2021-10-29T07:28:22Z", + "modify_date": "2021-10-29T07:28:22Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:28:12Z", + "updatedAt": "2024-03-12T07:16:54Z", + "name": "part_281f33b5f470473a8877ad671fb24b8c", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 14, + "filesize": 13395510, + "upload_date": "2021-10-29T07:28:09Z", + "modify_date": "2021-10-29T07:28:09Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:27:59Z", + "updatedAt": "2024-03-12T07:17:09Z", + "name": "part_c3c4c1cb511660166f7af2f399ed7be4", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 12, + "filesize": 13573586, + "upload_date": "2021-10-29T07:27:56Z", + "modify_date": "2021-10-29T07:27:56Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:27:45Z", + "updatedAt": "2024-03-12T07:17:22Z", + "name": "part_8c3a0c4094f4357b7f54c3eeb5baf080", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 13, + "filesize": 13426483, + "upload_date": "2021-10-29T07:27:42Z", + "modify_date": "2021-10-29T07:27:42Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:27:20Z", + "updatedAt": "2024-03-12T07:17:35Z", + "name": "part_efd90921e306f2402e17734cffc5ce80", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 15, + "filesize": 14456676, + "upload_date": "2021-10-29T07:27:16Z", + "modify_date": "2021-10-29T07:27:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:27:03Z", + "updatedAt": "2024-03-12T07:17:52Z", + "name": "part_e6e076b1fc46986168a8c115490cec54", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 5, + "filesize": 13403686, + "upload_date": "2021-10-29T07:27:00Z", + "modify_date": "2021-10-29T07:27:00Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:26:48Z", + "updatedAt": "2024-03-12T07:18:22Z", + "name": "part_c57807519d9419bba77a3d648170ddca", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 12, + "filesize": 14231432, + "upload_date": "2021-10-29T07:26:45Z", + "modify_date": "2021-10-29T07:26:45Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:26:24Z", + "updatedAt": "2024-03-12T07:19:00Z", + "name": "part_9bb1115a75847cf38415a778ea80f89d", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 9, + "filesize": 13510811, + "upload_date": "2021-10-29T07:26:21Z", + "modify_date": "2021-10-29T07:26:21Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:26:11Z", + "updatedAt": "2024-03-12T07:19:16Z", + "name": "part_27bd9fb51ff24afea6471b3cba3eb5e2", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 10, + "filesize": 13900981, + "upload_date": "2021-10-29T07:26:07Z", + "modify_date": "2021-10-29T07:26:07Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:25:56Z", + "updatedAt": "2024-03-12T07:19:34Z", + "name": "part_0336c402946fcc22024853a97a2c7941", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 5, + "filesize": 14142692, + "upload_date": "2021-10-29T07:25:53Z", + "modify_date": "2021-10-29T07:25:53Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:25:20Z", + "updatedAt": "2024-03-12T07:19:53Z", + "name": "part_5e45ef9442eef64efdf8a0c916144847", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 10, + "filesize": 13366287, + "upload_date": "2021-10-29T07:25:17Z", + "modify_date": "2021-10-29T07:25:17Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:25:07Z", + "updatedAt": "2024-03-12T07:20:09Z", + "name": "part_01c539e2c7ce9f504a491eb14015d9ab", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 9, + "filesize": 13526068, + "upload_date": "2021-10-29T07:25:04Z", + "modify_date": "2021-10-29T07:25:04Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:24:53Z", + "updatedAt": "2024-03-12T07:20:28Z", + "name": "part_984d92044894963f07a7c999e6148e00", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 6, + "filesize": 14289625, + "upload_date": "2021-10-29T07:24:50Z", + "modify_date": "2021-10-29T07:24:50Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-29T07:24:38Z", + "updatedAt": "2024-03-12T07:20:50Z", + "name": "assembly_249cb526b3ba9d3bbca7dfa6c4b98072", + "owner": "miniaevnikita", + "description": "", + "likes": 0, + "downloads": 22, + "filesize": 29975195, + "upload_date": "2021-10-29T07:24:30Z", + "modify_date": "2021-10-29T07:24:30Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-10-28T04:03:45Z", + "updatedAt": "2024-03-12T07:29:00Z", + "name": "simple_cylinder_2m_radius", + "owner": "mohrad", + "description": "Simple cylinder radius with 2m radius and length 10m", + "likes": 0, + "downloads": 157, + "filesize": 5084, + "upload_date": "2021-10-28T04:03:44Z", + "modify_date": "2021-10-28T04:03:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2021-10-28T03:18:02Z", + "updatedAt": "2024-03-12T07:29:14Z", + "name": "simple_cylinder_1p5m_radius", + "owner": "mohrad", + "description": "Simple cylinder with radius 1.5m and length 10m", + "likes": 0, + "downloads": 40, + "filesize": 4795, + "upload_date": "2021-10-28T03:18:01Z", + "modify_date": "2021-10-28T03:29:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2021-10-27T20:40:52Z", + "updatedAt": "2024-03-12T07:29:31Z", + "name": "simple_cylinder_1m_radius", + "owner": "mohrad", + "description": "Simple cylinder of 1m radius, 10m length", + "likes": 0, + "downloads": 49, + "filesize": 6760, + "upload_date": "2021-10-27T20:40:51Z", + "modify_date": "2021-10-27T21:08:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2021-10-21T15:45:28Z", + "updatedAt": "2024-04-03T17:23:09Z", + "name": "SystemsMegacavern", + "owner": "OpenRobotics", + "description": "The systems track version of the Megacavern model, which includes a dirt ramp up to a dirt platform in the large cavern", + "likes": 0, + "downloads": 7159, + "filesize": 288506464, + "upload_date": "2021-10-21T15:43:35Z", + "modify_date": "2021-10-21T15:43:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SystemsMegacavern/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-10-15T15:32:59Z", + "updatedAt": "2024-04-01T00:59:24Z", + "name": "panda", + "owner": "mjcarroll", + "description": "Panda", + "likes": 0, + "downloads": 327, + "filesize": 54242565, + "upload_date": "2021-10-15T15:32:55Z", + "modify_date": "2021-10-19T20:01:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/mjcarroll/models/panda/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-10-12T21:06:05Z", + "updatedAt": "2024-04-03T17:23:02Z", + "name": "Wide hinged door", + "owner": "OpenRobotics", + "description": "A hinged door with two handles", + "likes": 0, + "downloads": 436, + "filesize": 806079, + "upload_date": "2021-10-12T21:06:03Z", + "modify_date": "2023-09-27T13:21:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Wide%20hinged%20door/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-10-05T15:43:22Z", + "updatedAt": "2024-03-26T21:26:38Z", + "name": "Smoke", + "owner": "chapulina", + "description": "Particle effects", + "likes": 0, + "downloads": 207, + "filesize": 183823, + "upload_date": "2021-10-05T15:43:21Z", + "modify_date": "2021-10-05T15:43:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Smoke/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "smoke", + "particles" + ] + }, + { + "createdAt": "2021-10-01T18:19:12Z", + "updatedAt": "2024-03-30T22:16:14Z", + "name": "Panda hand - Fortress merge include demo", + "owner": "OpenRobotics", + "description": "Franka Emika Panda robot with Ignition position controller", + "likes": 0, + "downloads": 753, + "filesize": 4277107, + "upload_date": "2021-10-01T18:19:08Z", + "modify_date": "2023-09-27T13:22:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Panda%20hand%20-%20Fortress%20merge%20include%20demo/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "robot", + "arm", + "industrial" + ], + "categories": [ + "Electronics" + ] + }, + { + "createdAt": "2021-10-01T18:16:22Z", + "updatedAt": "2024-03-30T22:16:03Z", + "name": "Panda arm - Fortress merge include demo", + "owner": "OpenRobotics", + "description": "Franka Emika Panda robot with Ignition position controller", + "likes": 0, + "downloads": 796, + "filesize": 4278324, + "upload_date": "2021-10-01T18:16:18Z", + "modify_date": "2023-09-27T13:22:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Panda%20arm%20-%20Fortress%20merge%20include%20demo/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "robot", + "arm" + ], + "categories": [ + "Electronics" + ] + }, + { + "createdAt": "2021-10-01T18:11:06Z", + "updatedAt": "2024-03-30T22:15:28Z", + "name": "Fortress island", + "owner": "OpenRobotics", + "description": "Adapted from https://sketchfab.com/3d-models/cityscene-based-saint-guillhem-le-desert-9fedb55b76d140f7abc55484c2c87475", + "likes": 1, + "downloads": 976, + "filesize": 71727795, + "upload_date": "2021-10-01T18:10:51Z", + "modify_date": "2023-09-27T13:22:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fortress%20island/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "world", + "water", + "environment", + "stairs" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2021-10-01T17:55:02Z", + "updatedAt": "2024-03-30T22:16:47Z", + "name": "X1 UGV - Fortress param demo", + "owner": "OpenRobotics", + "description": "The X1 robot for Fortress demos.", + "likes": 0, + "downloads": 663, + "filesize": 3034587, + "upload_date": "2021-10-01T17:54:59Z", + "modify_date": "2023-09-27T13:24:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X1%20UGV%20-%20Fortress%20param%20demo/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "vehicle", + "ugv", + "robot" + ], + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2021-10-01T17:16:02Z", + "updatedAt": "2024-04-04T06:09:37Z", + "name": "Fortress heightmap", + "owner": "OpenRobotics", + "description": "Heightmap for the Fortress demo", + "likes": 0, + "downloads": 2305, + "filesize": 11665504, + "upload_date": "2021-10-01T17:15:59Z", + "modify_date": "2023-09-27T13:24:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fortress%20heightmap/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "heightmap", + "environment" + ] + }, + { + "createdAt": "2021-09-27T20:55:56Z", + "updatedAt": "2024-03-25T05:58:28Z", + "name": "Fortress Statue", + "owner": "Cole", + "description": "This is a 3d model of the Fortress logo for Ignition. Based on the original 2d art by Josh Ellingson. (https://www.joshuaellingson.com/)", + "likes": 1, + "downloads": 719, + "filesize": 22635877, + "upload_date": "2021-09-27T20:55:45Z", + "modify_date": "2021-09-28T00:11:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Cole/models/Fortress%20Statue/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-09-03T18:01:44Z", + "updatedAt": "2024-03-23T09:14:40Z", + "name": "CORO_MIKE_SENSOR_CONFIG_2", + "owner": "eslam5", + "description": "Mike large wheeled UGV submitted by Team CoRo with the following payload:\n* 3D medium range LIDAR \n* 4 HD cameras \n* VGA RGBD camera \n* Thermal camera \n* Pressure sensor \n* Magnetometer\n* 12 communication breadcrumbs\n* IMU \n* Gas detector \n* (Optional) a child robot for [marsupial deployment](https://github.com/osrf/subt/wiki/Marsupial-tutorial) -- see valid pairs in the [Robots Wiki](https://github.com/osrf/subt/wiki/Robots)", + "likes": 0, + "downloads": 223, + "filesize": 890253, + "upload_date": "2021-09-03T18:01:39Z", + "modify_date": "2021-09-03T18:01:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/eslam5/models/CORO_MIKE_SENSOR_CONFIG_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-08-26T21:43:58Z", + "updatedAt": "2024-04-02T15:00:23Z", + "name": "MegaCavern", + "owner": "OpenRobotics", + "description": "Megacaverns world", + "likes": 0, + "downloads": 725, + "filesize": 288506464, + "upload_date": "2021-08-26T21:41:37Z", + "modify_date": "2023-09-27T13:25:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MegaCavern/tip/files/thumbnails/0.png", + "private": false + }, + { + "createdAt": "2021-08-24T17:39:56Z", + "updatedAt": "2024-03-17T08:31:55Z", + "name": "PlanarLidar360", + "owner": "iche033", + "description": "360 degree planar lidar", + "likes": 0, + "downloads": 99, + "filesize": 843, + "upload_date": "2021-08-24T17:39:56Z", + "modify_date": "2023-09-21T01:07:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-08-21T22:06:22Z", + "updatedAt": "2024-03-12T19:43:27Z", + "name": "House 3", + "owner": "AmrElsersy", + "description": "A model of a residential house.", + "likes": 0, + "downloads": 838, + "filesize": 1092756, + "upload_date": "2021-08-21T22:06:20Z", + "modify_date": "2021-08-21T22:06:20Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AmrElsersy/models/House%203/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-08-19T21:34:54Z", + "updatedAt": "2024-04-01T01:10:12Z", + "name": "Satsop", + "owner": "OpenRobotics", + "description": "Full Satsop course", + "likes": 0, + "downloads": 404, + "filesize": 132784363, + "upload_date": "2021-08-19T21:34:39Z", + "modify_date": "2021-09-23T18:24:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Satsop/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-08-19T21:34:22Z", + "updatedAt": "2024-04-01T01:10:17Z", + "name": "Gas Small", + "owner": "OpenRobotics", + "description": "Gas leak in a small room using the gas emitter plugin", + "likes": 0, + "downloads": 469, + "filesize": 821, + "upload_date": "2021-08-19T21:34:21Z", + "modify_date": "2023-09-26T18:03:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-08-19T21:33:52Z", + "updatedAt": "2024-04-01T01:11:02Z", + "name": "Fog Emitter2 Small", + "owner": "OpenRobotics", + "description": "A small smoke generator.", + "likes": 0, + "downloads": 349, + "filesize": 183901, + "upload_date": "2021-08-19T21:33:51Z", + "modify_date": "2023-09-26T18:03:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fog%20Emitter2%20Small/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-08-19T21:33:03Z", + "updatedAt": "2024-04-01T01:11:05Z", + "name": "Gas Small 2", + "owner": "OpenRobotics", + "description": "Gas leak in a small room using the gas emitter plugin", + "likes": 0, + "downloads": 363, + "filesize": 823, + "upload_date": "2021-08-19T21:33:03Z", + "modify_date": "2023-09-26T18:03:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-08-13T04:32:44Z", + "updatedAt": "2024-03-12T07:08:07Z", + "name": "linvel_model", + "owner": "Luca", + "description": "Test for linear velocity cmd components", + "likes": 0, + "downloads": 191, + "filesize": 788, + "upload_date": "2021-08-13T04:32:43Z", + "modify_date": "2021-08-13T05:13:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-08-09T18:36:18Z", + "updatedAt": "2024-04-01T01:11:16Z", + "name": "Urban Cave Transition Lights", + "owner": "OpenRobotics", + "description": "A transition tile between urban and cave domains with lights.", + "likes": 0, + "downloads": 438, + "filesize": 183341, + "upload_date": "2021-08-09T18:36:12Z", + "modify_date": "2023-09-27T13:30:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Cave%20Transition%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "cave", + "urban", + "tile" + ] + }, + { + "createdAt": "2021-07-21T08:55:26Z", + "updatedAt": "2024-04-02T12:41:56Z", + "name": "Typhoon H480", + "owner": "Gambit", + "description": "Typhoon H480 is a hexacopter drone equipped with a 3-Axis Gimbal.\r\nSpecifications (As mentioned on the manufacturer's website)\r\nDepth: 20.3 in\r\nWidth: 21.4 in\r\nHeight: 12 in\r\nWeight: 1401g\r\nMax flight altitude: 400ft\r\nMax roll angle: 35\u00b0\r\nMax rate of climb: 16ft/s\r\nMax speed angle mode : 30mph", + "likes": 0, + "downloads": 306, + "filesize": 6749001, + "upload_date": "2021-07-21T08:55:23Z", + "modify_date": "2021-07-22T03:13:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Gambit/models/Typhoon%20H480/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drone", + "hexacopter" + ], + "categories": [ + "Electronics", + "Science and Technology" + ] + }, + { + "createdAt": "2021-07-21T07:31:27Z", + "updatedAt": "2024-03-12T02:32:38Z", + "name": "CORO_MIKE_SENSOR_CONFIG_2", + "owner": "AmrElsersy", + "description": "Mike large wheeled UGV submitted by Team CoRo with the following payload:\n* 3D medium range LIDAR \n* 4 HD cameras \n* VGA RGBD camera \n* Thermal camera \n* Pressure sensor \n* Magnetometer\n* 12 communication breadcrumbs\n* IMU \n* Gas detector \n* (Optional) a child robot for [marsupial deployment](https://github.com/osrf/subt/wiki/Marsupial-tutorial) -- see valid pairs in the [Robots Wiki](https://github.com/osrf/subt/wiki/Robots)", + "likes": 1, + "downloads": 174, + "filesize": 890253, + "upload_date": "2021-07-21T07:31:23Z", + "modify_date": "2021-07-21T07:31:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AmrElsersy/models/CORO_MIKE_SENSOR_CONFIG_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-07-17T00:59:43Z", + "updatedAt": "2024-03-20T07:23:48Z", + "name": "simple_robot", + "owner": "ranat11", + "description": "two wheels balancing robot", + "likes": 0, + "downloads": 306, + "filesize": 368117, + "upload_date": "2021-07-17T00:59:41Z", + "modify_date": "2021-07-17T00:59:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/ranat11/models/simple_robot/tip/files/thumbnails/Picture1.png", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2021-07-16T16:33:15Z", + "updatedAt": "2024-04-01T01:11:17Z", + "name": "Frankencave 05", + "owner": "OpenRobotics", + "description": "Frakencave 05", + "likes": 0, + "downloads": 400, + "filesize": 15239035, + "upload_date": "2021-07-16T16:33:09Z", + "modify_date": "2023-09-27T13:30:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Frankencave%2005/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-07-16T16:32:15Z", + "updatedAt": "2024-04-01T01:11:14Z", + "name": "Frankencave 04", + "owner": "OpenRobotics", + "description": "Frakencave 04", + "likes": 0, + "downloads": 342, + "filesize": 13639063, + "upload_date": "2021-07-16T16:32:09Z", + "modify_date": "2023-09-27T13:30:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Frankencave%2004/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-07-16T16:31:21Z", + "updatedAt": "2024-04-01T01:11:16Z", + "name": "Frankencave 03", + "owner": "OpenRobotics", + "description": "Frakencave 03", + "likes": 0, + "downloads": 341, + "filesize": 31595014, + "upload_date": "2021-07-16T16:31:09Z", + "modify_date": "2023-09-27T13:31:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Frankencave%2003/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-07-16T16:30:20Z", + "updatedAt": "2024-04-01T01:11:14Z", + "name": "Frankencave 02", + "owner": "OpenRobotics", + "description": "Frakencave 02", + "likes": 0, + "downloads": 326, + "filesize": 33640540, + "upload_date": "2021-07-16T16:30:09Z", + "modify_date": "2023-09-27T13:32:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Frankencave%2002/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-07-16T16:25:10Z", + "updatedAt": "2024-04-01T01:11:18Z", + "name": "Frankencave 01", + "owner": "OpenRobotics", + "description": "Frakencave 01", + "likes": 0, + "downloads": 353, + "filesize": 52512004, + "upload_date": "2021-07-16T16:24:49Z", + "modify_date": "2023-09-27T13:33:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Frankencave%2001/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-06-17T15:09:44Z", + "updatedAt": "2024-03-23T11:01:38Z", + "name": "fidget_spinner", + "owner": "AndrejOrsula", + "description": "Fidget spinner with a revolute joint.", + "likes": 2, + "downloads": 372, + "filesize": 121915, + "upload_date": "2021-06-17T15:09:43Z", + "modify_date": "2021-06-17T15:09:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/fidget_spinner/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2021-06-16T22:44:17Z", + "updatedAt": "2024-04-03T02:33:25Z", + "name": "shadow_hand", + "owner": "AndrejOrsula", + "description": "Shadow Hand (right hand, default config).\n\nMore information on [GitHub](https://github.com/AndrejOrsula/shadow_hand_ign).", + "likes": 0, + "downloads": 256, + "filesize": 814427, + "upload_date": "2021-06-16T22:44:14Z", + "modify_date": "2021-06-17T11:44:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/shadow_hand/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-06-12T14:17:13Z", + "updatedAt": "2024-03-12T06:55:18Z", + "name": "TM12", + "owner": "JensVanhooydonck", + "description": "Techman 12", + "likes": 0, + "downloads": 265, + "filesize": 9071671, + "upload_date": "2021-06-12T14:17:12Z", + "modify_date": "2021-06-17T15:27:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-06-11T03:06:57Z", + "updatedAt": "2024-04-01T09:00:42Z", + "name": "louisville mega cave pt1", + "owner": "nibe6600", + "description": "", + "likes": 0, + "downloads": 161, + "filesize": 6108356, + "upload_date": "2021-06-11T03:06:54Z", + "modify_date": "2021-06-15T20:30:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nibe6600/models/louisville%20mega%20cave%20pt1/tip/files/thumbnails/playground1_thm1.png", + "private": false, + "tags": [ + "subt", + "DARPA", + "MARBLE" + ], + "categories": [ + "Architecture", + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-06-08T20:48:18Z", + "updatedAt": "2024-03-28T04:56:31Z", + "name": "Construction Cone Label Test", + "owner": "adlarkin", + "description": "An orange construction cone", + "likes": 1, + "downloads": 796, + "filesize": 622427, + "upload_date": "2021-06-08T20:48:16Z", + "modify_date": "2021-06-08T20:48:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/adlarkin/models/Construction%20Cone%20Label%20Test/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-06-05T20:31:06Z", + "updatedAt": "2024-04-01T17:59:43Z", + "name": "Pitcher Base", + "owner": "Gambit", + "description": "This is a bottle from the famous YCB dataset. The mesh files are modified.", + "likes": 0, + "downloads": 967, + "filesize": 7071645, + "upload_date": "2021-06-05T20:31:03Z", + "modify_date": "2021-07-21T10:05:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Gambit/models/Pitcher%20Base/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "Bottle" + ], + "categories": [ + "Bottles and Cans", + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2021-06-05T20:20:32Z", + "updatedAt": "2024-04-01T18:00:00Z", + "name": "Lemon", + "owner": "Gambit", + "description": "The mesh files are generated and modified using a script found with the famous YCB dataset.", + "likes": 1, + "downloads": 1785, + "filesize": 5345323, + "upload_date": "2021-06-05T20:20:29Z", + "modify_date": "2021-07-21T10:03:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Gambit/models/Lemon/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "Lemon", + "Vegetable" + ] + }, + { + "createdAt": "2021-06-05T20:18:48Z", + "updatedAt": "2024-03-25T02:06:42Z", + "name": "Strawberry", + "owner": "Gambit", + "description": "The mesh files are generated and modified using a script found with the famous YCB dataset.", + "likes": 0, + "downloads": 299, + "filesize": 7049907, + "upload_date": "2021-06-05T20:18:45Z", + "modify_date": "2021-07-21T10:00:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Gambit/models/Strawberry/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "Fruit", + "Strawberry" + ] + }, + { + "createdAt": "2021-06-05T04:20:38Z", + "updatedAt": "2024-03-25T02:06:17Z", + "name": "Rubiks Cube", + "owner": "Gambit", + "description": "The mesh files are generated and modified using a script found with the famous YCB dataset.", + "likes": 1, + "downloads": 140, + "filesize": 6069858, + "upload_date": "2021-06-05T04:20:35Z", + "modify_date": "2021-06-05T04:20:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Gambit/models/Rubiks%20Cube/tip/files/thumbnails/thumbnail1.png", + "private": false, + "tags": [ + "Rubik's", + "Cube", + "Toy" + ], + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2021-06-04T17:51:54Z", + "updatedAt": "2024-04-01T18:00:08Z", + "name": "Wooden Block", + "owner": "Gambit", + "description": "The mesh file for the model is obtained from the famous YCB dataset and modified.", + "likes": 0, + "downloads": 163, + "filesize": 11663481, + "upload_date": "2021-06-04T17:51:51Z", + "modify_date": "2021-07-21T09:48:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Gambit/models/Wooden%20Block/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "Wood", + "block" + ] + }, + { + "createdAt": "2021-06-04T17:35:58Z", + "updatedAt": "2024-03-27T18:33:15Z", + "name": "Mustard Bottle", + "owner": "Gambit", + "description": "The mesh file for the model is obtained from the famous YCB dataset and modified.", + "likes": 0, + "downloads": 163, + "filesize": 10534435, + "upload_date": "2021-06-04T17:35:54Z", + "modify_date": "2021-07-21T09:41:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Gambit/models/Mustard%20Bottle/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "Bottle", + "Yellow" + ], + "categories": [ + "Bottles and Cans", + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2021-06-04T11:17:09Z", + "updatedAt": "2024-03-30T06:51:23Z", + "name": "Plum", + "owner": "Gambit", + "description": "The mesh files are generated and modified using a script found with the famous YCB dataset.", + "likes": 0, + "downloads": 90, + "filesize": 4679033, + "upload_date": "2021-06-04T11:17:07Z", + "modify_date": "2021-07-21T09:43:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Gambit/models/Plum/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "Fruit", + "Plum" + ], + "categories": [ + "Food and Drink" + ] + }, + { + "createdAt": "2021-06-04T11:13:26Z", + "updatedAt": "2024-03-30T06:51:33Z", + "name": "Peach", + "owner": "Gambit", + "description": "The mesh files are generated and modified using a script found with the famous YCB dataset.", + "likes": 0, + "downloads": 178, + "filesize": 5272407, + "upload_date": "2021-06-04T11:13:24Z", + "modify_date": "2021-07-21T09:46:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Gambit/models/Peach/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "Fruit", + "Peach" + ], + "categories": [ + "Food and Drink" + ] + }, + { + "createdAt": "2021-06-04T09:20:17Z", + "updatedAt": "2024-03-25T02:07:42Z", + "name": "Potted Meat Can", + "owner": "Gambit", + "description": "The mesh file for the model is obtained from the famous YCB dataset and modified. For nutritional facts, please see the thumbnails : )", + "likes": 1, + "downloads": 112, + "filesize": 10326957, + "upload_date": "2021-06-04T09:20:13Z", + "modify_date": "2021-07-21T09:32:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Gambit/models/Potted%20Meat%20Can/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "Can" + ], + "categories": [ + "Bottles and Cans and Cups", + "Consumer Goods" + ] + }, + { + "createdAt": "2021-06-04T07:29:56Z", + "updatedAt": "2024-04-03T07:15:18Z", + "name": "Orange", + "owner": "Gambit", + "description": "A fresh, round Orange. The mesh files are generated and modified using a script found with the famous YCB dataset.", + "likes": 0, + "downloads": 260, + "filesize": 5121455, + "upload_date": "2021-06-04T07:29:53Z", + "modify_date": "2021-07-21T10:07:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Gambit/models/Orange/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "Orange", + "Fruit" + ], + "categories": [ + "Food and Drink" + ] + }, + { + "createdAt": "2021-06-03T01:34:46Z", + "updatedAt": "2024-03-12T07:47:01Z", + "name": "louisville mega cave", + "owner": "nibe6600", + "description": "This is a map of the louisville mega cavern for the darpa subt final challenge. the original data was provided by CMU (thank you for that) and was mapped by CU Boulder.", + "likes": 0, + "downloads": 96, + "filesize": 171252582, + "upload_date": "2021-06-03T01:33:20Z", + "modify_date": "2021-06-03T01:45:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "subt", + "DARPA", + "FINAL" + ], + "categories": [ + "Architecture", + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-05-28T05:02:55Z", + "updatedAt": "2024-04-01T12:02:57Z", + "name": "Turquoise turbidity generator", + "owner": "mabelzhang", + "description": "Emits particles horizontally to visually simulate turbid turquoise (turbulent, not really) water (in turbo mode, not really), with turtles to be imagined. Now your turn.", + "likes": 0, + "downloads": 616, + "filesize": 124093, + "upload_date": "2021-05-28T05:02:54Z", + "modify_date": "2021-05-28T22:53:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/mabelzhang/models/Turquoise%20turbidity%20generator/tip/files/thumbnails/turbidity_generator.png", + "private": false, + "tags": [ + "underwater", + "smoke", + "water", + "particles" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-05-28T04:39:45Z", + "updatedAt": "2024-03-29T14:31:18Z", + "name": "ABCSign_5m", + "owner": "mabelzhang", + "description": "Three flat square planes, 5 meters apart, in cyan, blue, cyan, with capital letters A, B, and C cut out, respectively.", + "likes": 0, + "downloads": 1138, + "filesize": 10971, + "upload_date": "2021-05-28T04:39:44Z", + "modify_date": "2021-05-28T04:39:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/mabelzhang/models/ABCSign_5m/tip/files/thumbnails/ABCSign_5m.png", + "private": false, + "tags": [ + "sign", + "abc", + "race", + "pool" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2021-05-24T18:55:54Z", + "updatedAt": "2024-04-01T01:11:17Z", + "name": "Dust Emitter Dense", + "owner": "OpenRobotics", + "description": "A dense dust generator.", + "likes": 0, + "downloads": 1296, + "filesize": 185133, + "upload_date": "2021-05-24T18:55:52Z", + "modify_date": "2023-09-27T13:34:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Dust%20Emitter%20Dense/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-05-24T17:06:47Z", + "updatedAt": "2024-04-02T19:06:52Z", + "name": "Tunnel Wall Debris", + "owner": "OpenRobotics", + "description": "Wall debris for tunnel environment", + "likes": 0, + "downloads": 628, + "filesize": 13114907, + "upload_date": "2021-05-24T17:06:44Z", + "modify_date": "2023-09-27T13:34:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Wall%20Debris/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt", + "obstacle" + ] + }, + { + "createdAt": "2021-05-24T17:06:14Z", + "updatedAt": "2024-04-01T19:23:25Z", + "name": "Urban Wall Debris", + "owner": "OpenRobotics", + "description": "Wall debris for urban environment", + "likes": 0, + "downloads": 656, + "filesize": 20241754, + "upload_date": "2021-05-24T17:06:09Z", + "modify_date": "2023-09-27T13:35:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Wall%20Debris/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt", + "obstacle" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2021-05-21T21:20:58Z", + "updatedAt": "2024-04-01T01:12:06Z", + "name": "MARBLE_HUSKY_SENSOR_CONFIG_5", + "owner": "OpenRobotics", + "description": "CU's husky config with 4 FLIR Backfly Cameras, two Ouster OS1 64 channel lidars, two picoflex TOF cameras, and an RPLidar S1", + "likes": 1, + "downloads": 652, + "filesize": 186765, + "upload_date": "2021-05-21T21:20:55Z", + "modify_date": "2023-09-27T13:35:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MARBLE_HUSKY_SENSOR_CONFIG_5/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-20T18:49:46Z", + "updatedAt": "2024-04-01T01:12:07Z", + "name": "CORO_JEANINE_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "Jeanine is a skid steer robot with 3d lidar, cameras and other sensors.", + "likes": 0, + "downloads": 459, + "filesize": 580724, + "upload_date": "2021-05-20T18:49:45Z", + "modify_date": "2023-09-27T13:35:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CORO_JEANINE_SENSOR_CONFIG_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-20T18:49:20Z", + "updatedAt": "2024-04-01T01:12:07Z", + "name": "CORO_JEANINE_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "Jeanine is a skid steer robot with 3d lidar, cameras and other sensors.", + "likes": 0, + "downloads": 447, + "filesize": 580722, + "upload_date": "2021-05-20T18:49:19Z", + "modify_date": "2023-09-27T13:35:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CORO_JEANINE_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-19T23:55:23Z", + "updatedAt": "2024-04-01T01:12:09Z", + "name": "Robotika_Kloubak_Sensor_Config_3", + "owner": "OpenRobotics", + "description": "robot Kloubak - articulated robot, symmetric configuration, two planar lidars, two RGB cameras and four depth cameras.", + "likes": 1, + "downloads": 591, + "filesize": 10032051, + "upload_date": "2021-05-19T23:55:19Z", + "modify_date": "2023-09-27T13:35:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Robotika_Kloubak_Sensor_Config_3/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-18T22:12:13Z", + "updatedAt": "2024-04-01T01:12:12Z", + "name": "Fog Emitter Dense", + "owner": "OpenRobotics", + "description": "A dense fog generator.", + "likes": 0, + "downloads": 437, + "filesize": 185127, + "upload_date": "2021-05-18T22:12:12Z", + "modify_date": "2023-09-27T13:36:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fog%20Emitter%20Dense/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-05-18T17:59:11Z", + "updatedAt": "2024-04-01T01:12:15Z", + "name": "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_3", + "owner": "OpenRobotics", + "description": "Absolem robot of CTU-CRAS-Norlab for SubT (Sensor Config 3).", + "likes": 1, + "downloads": 473, + "filesize": 185590, + "upload_date": "2021-05-18T17:59:09Z", + "modify_date": "2023-09-27T13:36:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_3/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-18T17:55:43Z", + "updatedAt": "2024-04-01T01:12:56Z", + "name": "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_4", + "owner": "OpenRobotics", + "description": "Absolem robot of CTU-CRAS-Norlab for SubT (Sensor Config 4).", + "likes": 0, + "downloads": 433, + "filesize": 184777, + "upload_date": "2021-05-18T17:55:41Z", + "modify_date": "2023-09-27T13:36:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_4/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-18T16:27:48Z", + "updatedAt": "2024-04-01T01:13:15Z", + "name": "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_5", + "owner": "OpenRobotics", + "description": "Absolem robot of CTU-CRAS-Norlab for SubT (Sensor Config 5).", + "likes": 0, + "downloads": 418, + "filesize": 185478, + "upload_date": "2021-05-18T16:27:47Z", + "modify_date": "2023-09-27T13:36:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_5/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-18T16:16:20Z", + "updatedAt": "2024-04-01T01:13:20Z", + "name": "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_8", + "owner": "OpenRobotics", + "description": "Absolem robot of CTU-CRAS-Norlab for SubT (Sensor Config 8).", + "likes": 0, + "downloads": 426, + "filesize": 178624, + "upload_date": "2021-05-18T16:16:18Z", + "modify_date": "2023-09-27T13:36:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_8/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-18T15:56:39Z", + "updatedAt": "2024-04-01T01:13:16Z", + "name": "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_7", + "owner": "OpenRobotics", + "description": "Absolem robot of CTU-CRAS-Norlab for SubT (Sensor Config 7).", + "likes": 0, + "downloads": 417, + "filesize": 177731, + "upload_date": "2021-05-18T15:56:38Z", + "modify_date": "2023-09-27T13:36:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_7/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-18T15:39:16Z", + "updatedAt": "2024-04-01T01:13:23Z", + "name": "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_6", + "owner": "OpenRobotics", + "description": "Absolem robot of CTU-CRAS-Norlab for SubT (Sensor Config 6).", + "likes": 0, + "downloads": 415, + "filesize": 177552, + "upload_date": "2021-05-18T15:39:15Z", + "modify_date": "2023-09-27T13:36:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_6/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-14T14:00:58Z", + "updatedAt": "2024-03-30T06:52:08Z", + "name": "Cracker Box", + "owner": "Gambit", + "description": "This model belongs to the famous YCB Benchmarks dataset. The mesh file is borrowed from the dataset.", + "likes": 0, + "downloads": 155, + "filesize": 11119306, + "upload_date": "2021-05-14T14:00:55Z", + "modify_date": "2021-05-14T14:00:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Gambit/models/Cracker%20Box/tip/files/thumbnails/thumbnail1.png", + "private": false, + "tags": [ + "box", + "Cracker Box" + ], + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2021-05-13T20:25:50Z", + "updatedAt": "2024-03-28T16:16:43Z", + "name": "ur5_rg2", + "owner": "AndrejOrsula", + "description": "Universal Robot 5 (UR5) robot with OnRobot RG2 gripper.\n\nMore information on [GitHub](https://github.com/AndrejOrsula/ur5_rg2_ign).", + "likes": 2, + "downloads": 660, + "filesize": 2548812, + "upload_date": "2021-05-13T20:25:47Z", + "modify_date": "2021-05-13T22:21:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/ur5_rg2/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-07T22:52:13Z", + "updatedAt": "2024-04-01T12:18:36Z", + "name": "Cube PBR OBJ", + "owner": "iche033", + "description": "Cube obj with PBR textures", + "likes": 0, + "downloads": 164, + "filesize": 9343847, + "upload_date": "2021-05-07T22:52:11Z", + "modify_date": "2023-09-21T01:07:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-05-07T15:50:45Z", + "updatedAt": "2024-03-12T16:26:35Z", + "name": "box_test", + "owner": "Lobotuerk", + "description": "testing update behaviour", + "likes": 0, + "downloads": 242, + "filesize": 742, + "upload_date": "2021-05-07T15:50:44Z", + "modify_date": "2021-05-10T15:40:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "box" + ] + }, + { + "createdAt": "2021-05-05T16:12:59Z", + "updatedAt": "2024-04-01T01:13:29Z", + "name": "CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "Team CTU-CRAS-NORLAB's Husky robot for SubT.", + "likes": 1, + "downloads": 526, + "filesize": 355437, + "upload_date": "2021-05-05T16:12:58Z", + "modify_date": "2023-09-27T13:37:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-05T16:08:42Z", + "updatedAt": "2024-04-01T01:13:39Z", + "name": "CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "Team CTU-CRAS-NORLAB's Husky robot for SubT.", + "likes": 0, + "downloads": 871, + "filesize": 5412238, + "upload_date": "2021-05-05T16:08:38Z", + "modify_date": "2023-09-27T13:38:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_HUSKY_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-05T15:51:20Z", + "updatedAt": "2024-04-01T01:13:34Z", + "name": "CTU_CRAS_NORLAB_MARMOTTE_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "Team CTU-CRAS-NORLAB's HD2 \"Marmotte\" robot for SubT.", + "likes": 1, + "downloads": 466, + "filesize": 419574, + "upload_date": "2021-05-05T15:51:16Z", + "modify_date": "2023-09-27T13:38:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_MARMOTTE_SENSOR_CONFIG_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-05T15:40:45Z", + "updatedAt": "2024-04-01T01:14:32Z", + "name": "CTU_CRAS_NORLAB_MARMOTTE_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "Team CTU-CRAS-NORLAB's HD2 \"Marmotte\" robot for SubT.", + "likes": 0, + "downloads": 723, + "filesize": 8560448, + "upload_date": "2021-05-05T15:40:41Z", + "modify_date": "2023-09-27T13:38:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_MARMOTTE_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-04T21:35:22Z", + "updatedAt": "2024-04-01T01:14:51Z", + "name": "MARBLE_SPOT_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "Boston Dynamics Spot of the Marble team.", + "likes": 0, + "downloads": 465, + "filesize": 250437, + "upload_date": "2021-05-04T21:35:21Z", + "modify_date": "2023-09-27T13:39:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MARBLE_SPOT_SENSOR_CONFIG_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-04T21:00:07Z", + "updatedAt": "2024-04-01T01:14:56Z", + "name": "MARBLE_SPOT_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "Boston Dynamics Spot of the Marble team.", + "likes": 0, + "downloads": 671, + "filesize": 27936182, + "upload_date": "2021-05-04T20:59:58Z", + "modify_date": "2023-09-27T13:41:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MARBLE_SPOT_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-05-03T09:39:31Z", + "updatedAt": "2024-03-12T16:27:11Z", + "name": "Master Chef Can", + "owner": "mallofrench", + "description": "coffee can", + "likes": 0, + "downloads": 234, + "filesize": 20986578, + "upload_date": "2021-05-03T09:39:25Z", + "modify_date": "2021-05-03T09:39:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/mallofrench/models/Master%20Chef%20Can/tip/files/thumbnails/thumbnail.jpg", + "private": false, + "tags": [ + "YCB" + ], + "categories": [ + "Food and Drink", + "Bottles and Cans" + ] + }, + { + "createdAt": "2021-04-29T16:02:41Z", + "updatedAt": "2024-04-03T22:37:20Z", + "name": "urban cave transition straight large", + "owner": "OpenRobotics", + "description": "A straight transition tile between urban and cave domains with a large adaptor.", + "likes": 0, + "downloads": 512, + "filesize": 523256, + "upload_date": "2021-04-29T16:02:39Z", + "modify_date": "2023-09-27T13:42:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/urban%20cave%20transition%20straight%20large/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-04-28T21:38:13Z", + "updatedAt": "2024-04-01T01:14:58Z", + "name": "Urban Bend Mixed", + "owner": "OpenRobotics", + "description": "Right bend subway tile with rocks", + "likes": 0, + "downloads": 460, + "filesize": 14097942, + "upload_date": "2021-04-28T21:38:10Z", + "modify_date": "2023-09-27T13:42:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Bend%20Mixed/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-04-28T15:50:56Z", + "updatedAt": "2024-04-02T18:54:17Z", + "name": "Urban Straight Door Left Extension", + "owner": "OpenRobotics", + "description": "A straight urban tunnel with door opening on the left and a hallway extension.", + "likes": 0, + "downloads": 512, + "filesize": 936819, + "upload_date": "2021-04-28T15:50:52Z", + "modify_date": "2023-09-27T13:43:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Straight%20Door%20Left%20Extension/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2021-04-28T00:58:43Z", + "updatedAt": "2024-03-25T13:26:15Z", + "name": "Double pendulum with base", + "owner": "chapu_org", + "description": "A double pendulum with cylindrical shapes and rotation on the x axis.\n The pendulum is attached to a heavy base that rests on the ground.", + "likes": 0, + "downloads": 196, + "filesize": 34092, + "upload_date": "2021-04-28T00:58:42Z", + "modify_date": "2021-04-28T00:58:42Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapu_org/models/Double%20pendulum%20with%20base/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-26T19:52:59Z", + "updatedAt": "2024-04-01T01:15:09Z", + "name": "urban cave transition straight lights", + "owner": "OpenRobotics", + "description": "A straight transition tile between urban and cave domains with lights.", + "likes": 0, + "downloads": 489, + "filesize": 514586, + "upload_date": "2021-04-26T19:52:57Z", + "modify_date": "2023-09-27T13:43:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/urban%20cave%20transition%20straight%20lights/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-04-22T16:49:22Z", + "updatedAt": "2024-04-01T01:15:13Z", + "name": "CORO_ROCKY_SENSOR_CONFIG_3", + "owner": "OpenRobotics", + "description": "The Rocky robot for SubT.", + "likes": 0, + "downloads": 524, + "filesize": 531514, + "upload_date": "2021-04-22T16:49:21Z", + "modify_date": "2023-09-27T13:43:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CORO_ROCKY_SENSOR_CONFIG_3/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-22T16:44:02Z", + "updatedAt": "2024-04-01T01:16:15Z", + "name": "CORO_ROCKY_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "The Rocky robot for SubT.", + "likes": 0, + "downloads": 471, + "filesize": 528325, + "upload_date": "2021-04-22T16:44:00Z", + "modify_date": "2023-09-27T13:43:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CORO_ROCKY_SENSOR_CONFIG_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-22T16:43:05Z", + "updatedAt": "2024-04-01T01:16:57Z", + "name": "CORO_ROCKY_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "The Rocky robot for SubT.", + "likes": 0, + "downloads": 472, + "filesize": 528325, + "upload_date": "2021-04-22T16:43:04Z", + "modify_date": "2023-09-27T13:43:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CORO_ROCKY_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-22T16:39:12Z", + "updatedAt": "2024-04-01T01:17:01Z", + "name": "CORO_MIKE_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "Mike is a bicycle skid steer robot with 3d lidar, cameras and other sensors.", + "likes": 0, + "downloads": 484, + "filesize": 890269, + "upload_date": "2021-04-22T16:39:09Z", + "modify_date": "2023-09-27T13:43:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CORO_MIKE_SENSOR_CONFIG_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-22T16:03:55Z", + "updatedAt": "2024-04-01T01:17:08Z", + "name": "CORO_MIKE_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "Mike is a bicycle skid steer robot with 3d lidar, cameras and other sensors.", + "likes": 0, + "downloads": 482, + "filesize": 890268, + "upload_date": "2021-04-22T16:03:53Z", + "modify_date": "2023-09-27T13:44:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CORO_MIKE_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-22T15:57:17Z", + "updatedAt": "2024-04-01T01:17:07Z", + "name": "CORO_CRYSTAL_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "Coordinated Robotics Crystal UAV with sensor configuration #1: D435i, camera, IMU, pressure sensor, floor point sensor.", + "likes": 0, + "downloads": 486, + "filesize": 105145, + "upload_date": "2021-04-22T15:57:16Z", + "modify_date": "2023-09-27T13:44:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CORO_CRYSTAL_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-22T03:25:48Z", + "updatedAt": "2024-04-04T02:55:16Z", + "name": "Indoor lightmap", + "owner": "veer", + "description": "An indoor environment with prebaked lighting using a lightmap", + "likes": 0, + "downloads": 477, + "filesize": 101712388, + "upload_date": "2021-04-22T03:25:38Z", + "modify_date": "2021-04-22T03:25:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/veer/models/Indoor%20lightmap/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "PBR", + "room" + ] + }, + { + "createdAt": "2021-04-21T17:08:13Z", + "updatedAt": "2024-03-12T09:04:44Z", + "name": "Rough Tunnel Tile Ramp Lights", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 66, + "filesize": 68923, + "upload_date": "2021-04-21T17:08:12Z", + "modify_date": "2023-09-27T13:44:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rough%20Tunnel%20Tile%20Ramp%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-04-21T17:00:04Z", + "updatedAt": "2024-04-01T01:17:01Z", + "name": "Rough Tunnel Tile 90-degree Turn Lights", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 511, + "filesize": 101736, + "upload_date": "2021-04-21T17:00:03Z", + "modify_date": "2023-09-27T13:44:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rough%20Tunnel%20Tile%2090-degree%20Turn%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-04-21T16:56:13Z", + "updatedAt": "2024-04-01T01:17:15Z", + "name": "Rough Tunnel Tile 4-way Intersection Lights", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 522, + "filesize": 85204, + "upload_date": "2021-04-21T16:56:12Z", + "modify_date": "2023-09-27T13:44:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rough%20Tunnel%20Tile%204-way%20Intersection%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-04-21T16:49:16Z", + "updatedAt": "2024-04-01T01:17:19Z", + "name": "Rough Tunnel Tile Straight Lights", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 503, + "filesize": 60816, + "upload_date": "2021-04-21T16:49:15Z", + "modify_date": "2023-09-27T13:44:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rough%20Tunnel%20Tile%20Straight%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-04-19T16:47:41Z", + "updatedAt": "2024-04-01T01:18:37Z", + "name": "CTU_CRAS_NORLAB_LILY_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "The ctu_cras_norlab_lily package describes six-legged platform equipped with:\n - 5 Basler Ace 2 Pro a2A1920-51gcPRO RGB cameras with 86\u00b0 FOV lenses (Basler C125-0418-5M-P f4mm)\n - Ouster OS0-128 lidar\n - IMU\n - Gas sensor", + "likes": 0, + "downloads": 461, + "filesize": 8154494, + "upload_date": "2021-04-19T16:47:37Z", + "modify_date": "2023-09-27T13:44:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_LILY_SENSOR_CONFIG_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-19T16:27:01Z", + "updatedAt": "2024-04-01T15:02:18Z", + "name": "CTU_CRAS_NORLAB_LILY_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "The ctu_cras_norlab_lily package describes six-legged platform equipped with:\n - 5 Basler Ace 2 Pro a2A1920-51gcPRO RGB cameras with 86\u00b0 FOV lenses (Basler C125-0418-5M-P f4mm)\n - Ouster OS0-128 lidar\n - IMU\n - Gas sensor", + "likes": 0, + "downloads": 461, + "filesize": 8154495, + "upload_date": "2021-04-19T16:26:57Z", + "modify_date": "2023-09-27T13:45:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_LILY_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-16T15:57:26Z", + "updatedAt": "2024-04-01T01:19:05Z", + "name": "Fog Emitter2", + "owner": "OpenRobotics", + "description": "A smoke generator.", + "likes": 0, + "downloads": 740, + "filesize": 183828, + "upload_date": "2021-04-16T15:57:25Z", + "modify_date": "2023-09-27T13:45:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fog%20Emitter2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-04-16T14:18:27Z", + "updatedAt": "2024-04-01T01:18:55Z", + "name": "CTU_CRAS_NORLAB_SPOT_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "Boston Dynamics Spot of CTU-CRAS-Norlab team with 12 breadcrumbs.", + "likes": 0, + "downloads": 489, + "filesize": 264447, + "upload_date": "2021-04-16T14:18:25Z", + "modify_date": "2023-09-27T13:45:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_SPOT_SENSOR_CONFIG_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-16T14:11:19Z", + "updatedAt": "2024-04-01T01:19:08Z", + "name": "CTU_CRAS_NORLAB_SPOT_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "Boston Dynamics Spot of CTU-CRAS-Norlab team.", + "likes": 0, + "downloads": 790, + "filesize": 5909178, + "upload_date": "2021-04-16T14:11:13Z", + "modify_date": "2023-09-27T13:46:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_SPOT_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-15T23:12:16Z", + "updatedAt": "2024-04-01T01:18:57Z", + "name": "NIOSH Staging Connector Finals", + "owner": "OpenRobotics", + "description": "Connector tile for the NIOSH world and Finals staging area.", + "likes": 0, + "downloads": 299, + "filesize": 11215206, + "upload_date": "2021-04-15T23:12:13Z", + "modify_date": "2023-09-27T13:47:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20Staging%20Connector%20Finals/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2021-04-15T20:51:04Z", + "updatedAt": "2024-04-01T01:19:22Z", + "name": "NIOSH Shell Finals", + "owner": "OpenRobotics", + "description": "Shell for the NIOSH Finals tunnel.", + "likes": 0, + "downloads": 300, + "filesize": 335923, + "upload_date": "2021-04-15T20:51:03Z", + "modify_date": "2023-09-27T13:47:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20Shell%20Finals/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2021-04-15T16:11:24Z", + "updatedAt": "2024-04-01T13:53:11Z", + "name": "bosdyn_spot", + "owner": "OpenRobotics", + "description": "Boston Dynamics Spot of the Explorer team.", + "likes": 1, + "downloads": 3375, + "filesize": 11781356, + "upload_date": "2021-04-15T16:11:18Z", + "modify_date": "2023-09-27T13:47:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/bosdyn_spot/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-15T12:30:06Z", + "updatedAt": "2024-03-26T19:04:23Z", + "name": "MARBLE_QAV500_SENSOR_CONFIG_1", + "owner": "wjfstudent", + "description": "QAV500 small UAV submitted by Team MARBLE with the following payload:\n* 3D medium range LIDAR \n* VGA RGBD camera \n* 2 ToF Cameras (front-up/front-down tilted) \n* Pressure sensor * Magnetometer \n* IMU \n* Gas detector ", + "likes": 0, + "downloads": 219, + "filesize": 12341581, + "upload_date": "2021-04-15T12:29:58Z", + "modify_date": "2021-04-15T12:29:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/wjfstudent/models/MARBLE_QAV500_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-14T22:40:21Z", + "updatedAt": "2024-04-01T01:20:25Z", + "name": "NIOSH EX Course Section 05 Finals", + "owner": "OpenRobotics", + "description": "Segment 02 Section 05 of NIOSH tunnel for finals.", + "likes": 0, + "downloads": 300, + "filesize": 3000292, + "upload_date": "2021-04-14T22:40:18Z", + "modify_date": "2023-09-27T13:48:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20EX%20Course%20Section%2005%20Finals/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2021-04-14T22:37:05Z", + "updatedAt": "2024-04-01T01:20:51Z", + "name": "NIOSH EX Course Section 03 Finals", + "owner": "OpenRobotics", + "description": "Segment 02 Section 03 of NIOSH tunnel for finals.", + "likes": 0, + "downloads": 299, + "filesize": 8374204, + "upload_date": "2021-04-14T22:36:59Z", + "modify_date": "2023-09-27T13:48:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20EX%20Course%20Section%2003%20Finals/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2021-04-14T22:33:29Z", + "updatedAt": "2024-04-01T01:21:01Z", + "name": "NIOSH EX Course Section 01 Finals", + "owner": "OpenRobotics", + "description": "Segment 02 Section 01 of NIOSH tunnel for finals.", + "likes": 0, + "downloads": 300, + "filesize": 5514886, + "upload_date": "2021-04-14T22:33:24Z", + "modify_date": "2023-09-27T13:48:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20EX%20Course%20Section%2001%20Finals/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2021-04-14T22:27:29Z", + "updatedAt": "2024-04-01T01:20:40Z", + "name": "NIOSH SR Course Section 10 Finals", + "owner": "OpenRobotics", + "description": "Segment 01 Section 10 of NIOSH tunnel for finals.", + "likes": 0, + "downloads": 289, + "filesize": 5903582, + "upload_date": "2021-04-14T22:27:25Z", + "modify_date": "2023-09-27T13:49:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Section%2010%20Finals/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2021-04-14T22:23:21Z", + "updatedAt": "2024-04-01T01:20:49Z", + "name": "NIOSH SR Course Section 06 Finals", + "owner": "OpenRobotics", + "description": "Segment 01 Section 06 of NIOSH tunnel for finals.", + "likes": 0, + "downloads": 294, + "filesize": 4815170, + "upload_date": "2021-04-14T22:23:17Z", + "modify_date": "2023-09-27T13:49:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Section%2006%20Finals/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2021-04-14T22:16:21Z", + "updatedAt": "2024-04-01T01:21:04Z", + "name": "NIOSH SR Course Section 02 Finals", + "owner": "OpenRobotics", + "description": "Segment 01 Section 02 of NIOSH tunnel for finals.", + "likes": 0, + "downloads": 296, + "filesize": 3408142, + "upload_date": "2021-04-14T22:16:18Z", + "modify_date": "2023-09-27T13:49:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Section%2002%20Finals/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2021-04-14T19:27:18Z", + "updatedAt": "2024-04-01T01:21:16Z", + "name": "ctu_cras_norlab_marv_sensor_config_4", + "owner": "OpenRobotics", + "description": "CTU-CRAS-Norlab MARV Sensor config 1 tracked vehicle package has:\n - 5 Basler Ace 2 Pro a2A1920-51gcPRO RGB cameras with 86\u00b0 FOV lenses (Basler C125-0418-5M-P f4mm)\n - 2 Basler Ace acA2040-35gc RGB cameras with 138\u00b0 FOV fisheye lenses (Evetar M118B029520IR)\n - Ouster OS0-128 lidar\n - 4 TFMini plus point lidars\n - IMU Xsens MTI-30\n - Gas sensor\n - Weight: about 61 kg", + "likes": 0, + "downloads": 496, + "filesize": 164106, + "upload_date": "2021-04-14T19:27:16Z", + "modify_date": "2023-09-27T13:49:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ctu_cras_norlab_marv_sensor_config_4/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-14T19:26:13Z", + "updatedAt": "2024-04-01T01:21:09Z", + "name": "ctu_cras_norlab_marv_sensor_config_3", + "owner": "OpenRobotics", + "description": "CTU-CRAS-Norlab MARV Sensor config 1 tracked vehicle package has:\n - 5 Basler Ace 2 Pro a2A1920-51gcPRO RGB cameras with 86\u00b0 FOV lenses (Basler C125-0418-5M-P f4mm)\n - 2 Basler Ace acA2040-35gc RGB cameras with 138\u00b0 FOV fisheye lenses (Evetar M118B029520IR)\n - Ouster OS0-128 lidar\n - 4 TFMini plus point lidars\n - IMU Xsens MTI-30\n - Gas sensor\n - Weight: about 61 kg", + "likes": 0, + "downloads": 469, + "filesize": 161058, + "upload_date": "2021-04-14T19:26:11Z", + "modify_date": "2023-09-27T13:50:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ctu_cras_norlab_marv_sensor_config_3/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-14T19:24:34Z", + "updatedAt": "2024-04-01T01:22:05Z", + "name": "ctu_cras_norlab_marv_sensor_config_2", + "owner": "OpenRobotics", + "description": "CTU-CRAS-Norlab MARV Sensor config 1 tracked vehicle package has:\n - 5 Basler Ace 2 Pro a2A1920-51gcPRO RGB cameras with 86\u00b0 FOV lenses (Basler C125-0418-5M-P f4mm)\n - 2 Basler Ace acA2040-35gc RGB cameras with 138\u00b0 FOV fisheye lenses (Evetar M118B029520IR)\n - Ouster OS0-128 lidar\n - 4 TFMini plus point lidars\n - IMU Xsens MTI-30\n - Gas sensor\n - Weight: about 61 kg", + "likes": 0, + "downloads": 473, + "filesize": 162892, + "upload_date": "2021-04-14T19:24:32Z", + "modify_date": "2023-09-27T13:50:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ctu_cras_norlab_marv_sensor_config_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-14T19:10:02Z", + "updatedAt": "2024-04-01T01:22:39Z", + "name": "ctu_cras_norlab_marv_sensor_config_1", + "owner": "OpenRobotics", + "description": "CTU-CRAS-Norlab MARV Sensor config 1 tracked vehicle package has:\n - 5 Basler Ace 2 Pro a2A1920-51gcPRO RGB cameras with 86\u00b0 FOV lenses (Basler C125-0418-5M-P f4mm)\n - 2 Basler Ace acA2040-35gc RGB cameras with 138\u00b0 FOV fisheye lenses (Evetar M118B029520IR)\n - Ouster OS0-128 lidar\n - 4 TFMini plus point lidars\n - IMU Xsens MTI-30\n - Gas sensor\n - Weight: about 61 kg", + "likes": 0, + "downloads": 1510, + "filesize": 2145843, + "upload_date": "2021-04-14T19:09:59Z", + "modify_date": "2023-09-27T13:50:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ctu_cras_norlab_marv_sensor_config_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-13T05:20:08Z", + "updatedAt": "2024-03-12T09:26:07Z", + "name": "HospitalBot", + "owner": "OpenRobotics", + "description": "A \"kawaii\" robot in CGH", + "likes": 0, + "downloads": 243, + "filesize": 374452, + "upload_date": "2021-04-13T05:20:06Z", + "modify_date": "2023-09-27T13:50:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/HospitalBot/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-13T05:14:23Z", + "updatedAt": "2024-03-12T09:27:00Z", + "name": "TinyBot", + "owner": "OpenRobotics", + "description": "A tiny blue robot", + "likes": 0, + "downloads": 294, + "filesize": 314353, + "upload_date": "2021-04-13T05:14:21Z", + "modify_date": "2023-09-27T13:50:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/TinyBot/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-13T05:13:53Z", + "updatedAt": "2024-03-21T07:28:52Z", + "name": "DeliveryBot", + "owner": "OpenRobotics", + "description": "Shiny DeliveryBot", + "likes": 0, + "downloads": 306, + "filesize": 861457, + "upload_date": "2021-04-13T05:13:51Z", + "modify_date": "2023-09-27T13:50:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DeliveryBot/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-13T05:13:00Z", + "updatedAt": "2024-03-31T23:26:08Z", + "name": "CleanerBot2", + "owner": "OpenRobotics", + "description": "Big autonomous floor cleaning robot.", + "likes": 0, + "downloads": 178, + "filesize": 1178522, + "upload_date": "2021-04-13T05:12:58Z", + "modify_date": "2023-09-27T13:51:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CleanerBot2/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-13T05:12:25Z", + "updatedAt": "2024-03-30T22:16:25Z", + "name": "CleanerBot1", + "owner": "OpenRobotics", + "description": "Big floor sweeper.", + "likes": 1, + "downloads": 653, + "filesize": 1280758, + "upload_date": "2021-04-13T05:12:23Z", + "modify_date": "2023-09-27T13:51:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CleanerBot1/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-09T19:32:21Z", + "updatedAt": "2024-04-04T06:11:30Z", + "name": "Depot", + "owner": "mustafaxfe", + "description": "A warehouse using PBR materials.", + "likes": 0, + "downloads": 574, + "filesize": 81963314, + "upload_date": "2021-04-09T19:32:08Z", + "modify_date": "2021-04-09T19:32:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/mustafaxfe/models/Depot/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "building", + "world", + "PBR", + "warehouse", + "indoor" + ], + "categories": [ + "Architecture", + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-04-09T15:13:45Z", + "updatedAt": "2024-04-01T01:22:53Z", + "name": "EMESENT_HOVERMAP_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "The standard Emesent Hovermap in DARPA SubT systems track configuration.", + "likes": 0, + "downloads": 517, + "filesize": 2422888, + "upload_date": "2021-04-09T15:13:41Z", + "modify_date": "2023-09-27T13:51:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/EMESENT_HOVERMAP_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-06T16:53:13Z", + "updatedAt": "2024-04-01T01:22:45Z", + "name": "coro_allie_sensor_config_2", + "owner": "OpenRobotics", + "description": "Allie is a medium sized skid steer robot with 3d lidar, cameras and other sensors.", + "likes": 0, + "downloads": 512, + "filesize": 655003, + "upload_date": "2021-04-06T16:53:11Z", + "modify_date": "2023-09-27T13:51:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/coro_allie_sensor_config_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-06T16:52:48Z", + "updatedAt": "2024-04-01T01:22:52Z", + "name": "coro_allie_sensor_config_1", + "owner": "OpenRobotics", + "description": "Allie is a medium sized skid steer robot with 3d lidar, cameras and other sensors.", + "likes": 0, + "downloads": 504, + "filesize": 655046, + "upload_date": "2021-04-06T16:52:46Z", + "modify_date": "2023-09-27T13:51:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/coro_allie_sensor_config_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-05T16:05:59Z", + "updatedAt": "2024-03-12T21:12:22Z", + "name": "smoke_generator2", + "owner": "nate", + "description": "A smoke generator.", + "likes": 0, + "downloads": 153, + "filesize": 39537, + "upload_date": "2021-04-05T16:05:57Z", + "modify_date": "2023-09-22T16:05:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-04-01T20:13:27Z", + "updatedAt": "2024-04-01T01:23:01Z", + "name": "coro_karen_sensor_config_2", + "owner": "OpenRobotics", + "description": "The Karen robot for SubT.", + "likes": 0, + "downloads": 541, + "filesize": 594143, + "upload_date": "2021-04-01T20:13:23Z", + "modify_date": "2023-09-27T13:52:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/coro_karen_sensor_config_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-01T18:14:02Z", + "updatedAt": "2024-04-01T01:23:03Z", + "name": "coro_karen_sensor_config_1", + "owner": "OpenRobotics", + "description": "The Karen robot for SubT.", + "likes": 0, + "downloads": 535, + "filesize": 594143, + "upload_date": "2021-04-01T18:13:59Z", + "modify_date": "2023-09-27T13:52:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/coro_karen_sensor_config_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-04-01T17:26:43Z", + "updatedAt": "2024-04-04T05:08:19Z", + "name": "Big Banana for Scale", + "owner": "mjcarroll", + "description": "A bigger banana for scale", + "likes": 0, + "downloads": 2667, + "filesize": 2043481, + "upload_date": "2021-04-01T17:26:41Z", + "modify_date": "2021-04-01T17:26:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/mjcarroll/models/Big%20Banana%20for%20Scale/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T15:25:37Z", + "updatedAt": "2024-04-04T03:06:40Z", + "name": "Banana for Scale", + "owner": "mjcarroll", + "description": "This is a banana for scale", + "likes": 0, + "downloads": 3136, + "filesize": 2043475, + "upload_date": "2021-04-01T15:25:35Z", + "modify_date": "2021-04-01T17:07:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/mjcarroll/models/Banana%20for%20Scale/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:27:21Z", + "updatedAt": "2024-04-04T04:09:30Z", + "name": "AirportSign1", + "owner": "OpenRobotics", + "description": "Airport overhead signboard. Front: Skytrain Back: Train to City", + "likes": 0, + "downloads": 394, + "filesize": 965803, + "upload_date": "2021-04-01T08:27:19Z", + "modify_date": "2023-09-27T13:52:20Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/AirportSign1/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:27:14Z", + "updatedAt": "2024-04-04T04:11:50Z", + "name": "WoodenChair", + "owner": "OpenRobotics", + "description": "Slightly fancy wooden chair.", + "likes": 0, + "downloads": 19605, + "filesize": 356232, + "upload_date": "2021-04-01T08:27:12Z", + "modify_date": "2021-04-01T08:27:12Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/WoodenChair/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:27:08Z", + "updatedAt": "2024-03-26T17:29:31Z", + "name": "InformationCounter", + "owner": "OpenRobotics", + "description": "Customer Service and information counter.", + "likes": 0, + "downloads": 413, + "filesize": 909941, + "upload_date": "2021-04-01T08:27:06Z", + "modify_date": "2023-09-27T14:37:41Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/InformationCounter/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:27:01Z", + "updatedAt": "2024-03-12T10:06:40Z", + "name": "PhonesDisplay", + "owner": "OpenRobotics", + "description": "Phones on counter top for customers to try out.", + "likes": 0, + "downloads": 165, + "filesize": 1672273, + "upload_date": "2021-04-01T08:26:59Z", + "modify_date": "2023-09-27T14:37:49Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/PhonesDisplay/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:26:53Z", + "updatedAt": "2024-04-04T04:10:43Z", + "name": "EscalatorStart", + "owner": "OpenRobotics", + "description": "Modular part of an escalator going upwards. Slope's height is 1m tall, 1.73205m(?3) in length", + "likes": 0, + "downloads": 13815, + "filesize": 7607462, + "upload_date": "2021-04-01T08:26:50Z", + "modify_date": "2023-09-27T14:37:58Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/EscalatorStart/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:26:44Z", + "updatedAt": "2024-04-04T04:09:52Z", + "name": "RetailKiosk1", + "owner": "OpenRobotics", + "description": "Nuts Bar. Sells delicious seeds and nuts.", + "likes": 0, + "downloads": 290, + "filesize": 1906155, + "upload_date": "2021-04-01T08:26:42Z", + "modify_date": "2023-09-27T14:38:08Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/RetailKiosk1/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:26:36Z", + "updatedAt": "2024-03-12T10:11:38Z", + "name": "AirportSign5", + "owner": "OpenRobotics", + "description": "Airport overhead signboard. Front: Money Changer Back: Information", + "likes": 0, + "downloads": 158, + "filesize": 689520, + "upload_date": "2021-04-01T08:26:34Z", + "modify_date": "2023-09-27T14:38:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/AirportSign5/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:26:30Z", + "updatedAt": "2024-03-12T10:23:30Z", + "name": "AirportSign2", + "owner": "OpenRobotics", + "description": "Airport overhead signboard. Front: Train to City Back: Cash Machine ATM", + "likes": 0, + "downloads": 120, + "filesize": 977436, + "upload_date": "2021-04-01T08:26:28Z", + "modify_date": "2023-09-27T14:38:28Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/AirportSign2/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:26:23Z", + "updatedAt": "2024-03-12T10:33:04Z", + "name": "AirportSign3", + "owner": "OpenRobotics", + "description": "Airport overhead signboard. Front: 24hr Food Back: Toilet", + "likes": 0, + "downloads": 99, + "filesize": 982132, + "upload_date": "2021-04-01T08:26:21Z", + "modify_date": "2023-09-27T14:38:33Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/AirportSign3/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:26:16Z", + "updatedAt": "2024-03-21T14:52:33Z", + "name": "Suitcase2H", + "owner": "OpenRobotics", + "description": "Small pink suitcase with handle up.", + "likes": 0, + "downloads": 206, + "filesize": 1702635, + "upload_date": "2021-04-01T08:26:14Z", + "modify_date": "2023-09-27T14:38:40Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Suitcase2H/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:26:09Z", + "updatedAt": "2024-03-28T22:42:05Z", + "name": "Suitcase1H", + "owner": "OpenRobotics", + "description": "Big blue suitcase with handle up.", + "likes": 0, + "downloads": 481, + "filesize": 1672211, + "upload_date": "2021-04-01T08:26:07Z", + "modify_date": "2023-09-27T14:38:49Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Suitcase1H/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:26:02Z", + "updatedAt": "2024-03-31T23:27:05Z", + "name": "HeadphonesRack2", + "owner": "OpenRobotics", + "description": "Retail display rack with headphones.", + "likes": 0, + "downloads": 95, + "filesize": 1454806, + "upload_date": "2021-04-01T08:26:00Z", + "modify_date": "2023-09-27T14:38:57Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/HeadphonesRack2/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:25:46Z", + "updatedAt": "2024-04-04T04:10:13Z", + "name": "Suitcase1", + "owner": "OpenRobotics", + "description": "Big blue suitcase with handle down.", + "likes": 0, + "downloads": 14142, + "filesize": 1802850, + "upload_date": "2021-04-01T08:25:44Z", + "modify_date": "2023-09-27T14:39:05Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Suitcase1/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:25:39Z", + "updatedAt": "2024-04-04T04:09:28Z", + "name": "DigitalKiosk", + "owner": "OpenRobotics", + "description": "Airport digital kiosk, and information directory", + "likes": 0, + "downloads": 13982, + "filesize": 303018, + "upload_date": "2021-04-01T08:25:37Z", + "modify_date": "2023-09-27T14:39:13Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DigitalKiosk/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:25:33Z", + "updatedAt": "2024-04-04T04:11:29Z", + "name": "Suitcase2", + "owner": "OpenRobotics", + "description": "Small pink suitcase with handle down.", + "likes": 1, + "downloads": 13993, + "filesize": 1841100, + "upload_date": "2021-04-01T08:25:31Z", + "modify_date": "2023-09-27T14:39:19Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Suitcase2/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:25:25Z", + "updatedAt": "2024-03-29T13:19:24Z", + "name": "AirportBench", + "owner": "OpenRobotics", + "description": "Modern wood bench.", + "likes": 0, + "downloads": 3195, + "filesize": 1882550, + "upload_date": "2021-04-01T08:25:23Z", + "modify_date": "2023-09-27T14:39:28Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/AirportBench/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:25:18Z", + "updatedAt": "2024-04-04T04:09:16Z", + "name": "HeadphonesRack1", + "owner": "OpenRobotics", + "description": "Retail display rack with headphones.", + "likes": 0, + "downloads": 14341, + "filesize": 1461096, + "upload_date": "2021-04-01T08:25:16Z", + "modify_date": "2023-09-27T14:39:35Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/HeadphonesRack1/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:25:11Z", + "updatedAt": "2024-03-21T15:04:32Z", + "name": "AirportSign4", + "owner": "OpenRobotics", + "description": "Airport overhead signboard. Front: Arrival Back: Departure", + "likes": 0, + "downloads": 60, + "filesize": 703883, + "upload_date": "2021-04-01T08:25:09Z", + "modify_date": "2023-09-27T14:39:42Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/AirportSign4/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:25:04Z", + "updatedAt": "2024-03-31T23:26:12Z", + "name": "FoodCourtBenchLong", + "owner": "OpenRobotics", + "description": "Curvy 4-seater bench.", + "likes": 0, + "downloads": 2103, + "filesize": 536858, + "upload_date": "2021-04-01T08:25:03Z", + "modify_date": "2023-09-27T14:39:48Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FoodCourtBenchLong/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:24:58Z", + "updatedAt": "2024-04-04T04:11:17Z", + "name": "FoodCourtTable1", + "owner": "OpenRobotics", + "description": "Simple clean table.", + "likes": 0, + "downloads": 20799, + "filesize": 486445, + "upload_date": "2021-04-01T08:24:56Z", + "modify_date": "2023-09-27T14:39:55Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FoodCourtTable1/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:24:44Z", + "updatedAt": "2024-03-12T11:35:54Z", + "name": "EscalatorEnd", + "owner": "OpenRobotics", + "description": "Entry part of an escalator going downwards. Slope is 1m tall, 1.73205m in length.", + "likes": 0, + "downloads": 118, + "filesize": 7639180, + "upload_date": "2021-04-01T08:24:41Z", + "modify_date": "2023-09-27T14:40:03Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/EscalatorEnd/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:24:35Z", + "updatedAt": "2024-04-04T04:11:56Z", + "name": "FoodCourtBenchShort", + "owner": "OpenRobotics", + "description": "Uncomfortable 2-seater bench.", + "likes": 0, + "downloads": 26474, + "filesize": 483137, + "upload_date": "2021-04-01T08:24:32Z", + "modify_date": "2023-09-27T14:40:12Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FoodCourtBenchShort/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:24:28Z", + "updatedAt": "2024-03-31T23:26:51Z", + "name": "FoodCourtBarricade", + "owner": "OpenRobotics", + "description": "Fancy barricade at the food court.", + "likes": 0, + "downloads": 4203, + "filesize": 260999, + "upload_date": "2021-04-01T08:24:26Z", + "modify_date": "2023-09-27T14:40:19Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FoodCourtBarricade/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-04-01T08:24:22Z", + "updatedAt": "2024-03-12T11:52:43Z", + "name": "RetailKiosk2", + "owner": "OpenRobotics", + "description": "Coin-operated kiddie rides!", + "likes": 0, + "downloads": 139, + "filesize": 4696790, + "upload_date": "2021-04-01T08:24:19Z", + "modify_date": "2023-09-27T14:40:26Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/RetailKiosk2/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-03-31T22:10:43Z", + "updatedAt": "2024-04-01T01:23:16Z", + "name": "CTU_CRAS_NORLAB_X500_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "CTU-CRAS-NORLAB X500 UAV \n Sensor configuration:\n - 3D medium range lidar Ouster OS0-64\n - upward Intel Realsense D435 (RGBD camera)\n - downward Intel Realsense D435 (RGBD camera)\n - frontward Basler dart daA1600-60um with DSL165A lens (RGB camera)\n - standard SubT IMU", + "likes": 0, + "downloads": 606, + "filesize": 1653233, + "upload_date": "2021-03-31T22:10:40Z", + "modify_date": "2023-09-27T14:40:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_X500_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-03-31T22:07:15Z", + "updatedAt": "2024-04-01T01:24:17Z", + "name": "CORO_PAM_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "Coordinated Robotics Pam UAV with sensor configuration #1: D435i, IMU, pressure sensor, magnetometer, ceiling point sensor, floor point sensor.", + "likes": 0, + "downloads": 514, + "filesize": 261276, + "upload_date": "2021-03-31T22:07:13Z", + "modify_date": "2023-09-27T14:40:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CORO_PAM_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-03-25T05:58:46Z", + "updatedAt": "2024-04-04T01:40:31Z", + "name": "MBARI Tethys LRAUV", + "owner": "accurrent", + "description": "A long range autonomous underwater vehicle developed by MBARI. Consists of two fins and a propeller.", + "likes": 2, + "downloads": 4622, + "filesize": 4981488, + "upload_date": "2021-03-25T05:58:42Z", + "modify_date": "2021-04-06T10:22:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/accurrent/models/MBARI%20Tethys%20LRAUV/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "uuv", + "lrauv", + "tethys", + "MBARI" + ], + "categories": [ + "Robots", + "Science and Technology" + ] + }, + { + "createdAt": "2021-03-24T18:55:46Z", + "updatedAt": "2024-03-25T07:53:52Z", + "name": "Fog Generator", + "owner": "OpenRobotics", + "description": "A fog generator.", + "likes": 1, + "downloads": 416, + "filesize": 38413, + "upload_date": "2021-03-24T18:55:45Z", + "modify_date": "2023-09-27T14:40:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "smoke", + "fog" + ] + }, + { + "createdAt": "2021-03-24T15:54:55Z", + "updatedAt": "2024-04-01T11:27:36Z", + "name": "8-Bit Thermal Camera", + "owner": "OpenRobotics", + "description": "A simple 8-bit resolution thermal camera with a box for visualization.", + "likes": 0, + "downloads": 656, + "filesize": 7613, + "upload_date": "2021-03-24T15:54:54Z", + "modify_date": "2023-09-27T14:40:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/8-Bit%20Thermal%20Camera/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-03-24T15:51:23Z", + "updatedAt": "2024-04-01T11:27:34Z", + "name": "16-Bit Thermal Camera", + "owner": "OpenRobotics", + "description": "A simple 16-bit resolution thermal camera with a box for visualization.", + "likes": 0, + "downloads": 666, + "filesize": 7615, + "upload_date": "2021-03-24T15:51:22Z", + "modify_date": "2023-09-27T14:41:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/16-Bit%20Thermal%20Camera/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-03-23T09:13:38Z", + "updatedAt": "2024-03-18T15:04:39Z", + "name": "SUV", + "owner": "luffyzik", + "description": "An SUV.", + "likes": 0, + "downloads": 384, + "filesize": 1894857, + "upload_date": "2021-03-23T09:13:36Z", + "modify_date": "2021-03-23T09:13:36Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/luffyzik/models/SUV/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2021-03-23T02:30:05Z", + "updatedAt": "2024-04-03T14:47:32Z", + "name": "Mecanum lift", + "owner": "OpenRobotics", + "description": "Scissor lift using mecanum wheels.\n The scissor part does not move.", + "likes": 0, + "downloads": 1173, + "filesize": 7524697, + "upload_date": "2021-03-23T02:30:01Z", + "modify_date": "2023-09-27T14:41:09Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Mecanum%20lift/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "vehicle", + "ground", + "robot", + "PBR", + "mecanum" + ], + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2021-03-23T01:33:02Z", + "updatedAt": "2024-04-04T06:13:28Z", + "name": "Depot", + "owner": "OpenRobotics", + "description": "A warehouse using PBR materials.", + "likes": 4, + "downloads": 8144, + "filesize": 81963314, + "upload_date": "2021-03-23T01:32:45Z", + "modify_date": "2023-09-27T14:41:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Depot/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "building", + "world", + "PBR", + "warehouse", + "indoor" + ], + "categories": [ + "Architecture", + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-03-22T22:25:41Z", + "updatedAt": "2024-04-03T10:51:57Z", + "name": "Reflective table", + "owner": "OpenRobotics", + "description": "A large table using PBR materials.", + "likes": 0, + "downloads": 6071, + "filesize": 55192705, + "upload_date": "2021-03-22T22:25:28Z", + "modify_date": "2023-09-27T14:43:08Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Reflective%20table/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "furniture", + "PBR" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2021-03-10T02:19:56Z", + "updatedAt": "2024-04-01T01:24:48Z", + "name": "SubT Challenge Cube", + "owner": "OpenRobotics", + "description": "SubT Challenge Cube", + "likes": 0, + "downloads": 824, + "filesize": 3652499, + "upload_date": "2021-03-10T02:19:54Z", + "modify_date": "2023-09-27T14:44:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SubT%20Challenge%20Cube/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt", + "artifact" + ] + }, + { + "createdAt": "2021-03-08T22:25:15Z", + "updatedAt": "2024-04-01T01:25:01Z", + "name": "Tunnel Tile 6 Rails", + "owner": "OpenRobotics", + "description": "An elevation section of a tunnel with rails.", + "likes": 0, + "downloads": 756, + "filesize": 64655, + "upload_date": "2021-03-08T22:25:14Z", + "modify_date": "2023-09-27T14:44:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%206%20Rails/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-03-08T22:24:22Z", + "updatedAt": "2024-04-01T01:25:05Z", + "name": "Tunnel Tile 5 Rails", + "owner": "OpenRobotics", + "description": "A straight section of a tunnel with rails.", + "likes": 0, + "downloads": 635, + "filesize": 52458, + "upload_date": "2021-03-08T22:24:21Z", + "modify_date": "2023-09-27T14:44:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%205%20Rails/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-03-08T22:23:15Z", + "updatedAt": "2024-04-01T01:25:09Z", + "name": "Tunnel Tile 4 Rails", + "owner": "OpenRobotics", + "description": "A straight overlap section of a tunnel with rails.", + "likes": 0, + "downloads": 564, + "filesize": 84352, + "upload_date": "2021-03-08T22:23:14Z", + "modify_date": "2023-09-27T14:44:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%204%20Rails/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-03-08T22:15:00Z", + "updatedAt": "2024-04-01T01:24:48Z", + "name": "Tunnel Tile 2 Rails", + "owner": "OpenRobotics", + "description": "A 90 degree bend tunnel with rails.", + "likes": 0, + "downloads": 616, + "filesize": 92893, + "upload_date": "2021-03-08T22:14:58Z", + "modify_date": "2023-09-27T14:44:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%202%20Rails/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-03-08T17:22:43Z", + "updatedAt": "2024-03-12T02:39:05Z", + "name": "Tunnel Tile 4 Rails", + "owner": "angelamaio", + "description": "A straight overlap section of a tunnel with rails", + "likes": 0, + "downloads": 145, + "filesize": 84356, + "upload_date": "2021-03-08T17:22:42Z", + "modify_date": "2021-03-08T17:22:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/angelamaio/models/Tunnel%20Tile%204%20Rails/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-03-08T17:18:56Z", + "updatedAt": "2024-03-12T02:39:17Z", + "name": "Tunnel Tile 2 Rails", + "owner": "angelamaio", + "description": "A 90 degree bend tunnel with rails.", + "likes": 0, + "downloads": 51, + "filesize": 92897, + "upload_date": "2021-03-08T17:18:55Z", + "modify_date": "2021-03-08T17:18:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/angelamaio/models/Tunnel%20Tile%202%20Rails/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-03-08T17:07:32Z", + "updatedAt": "2024-03-12T02:39:29Z", + "name": "Tunnel Tile 6 Rails", + "owner": "angelamaio", + "description": "An elevation section of a tunnel with rails.", + "likes": 0, + "downloads": 25, + "filesize": 64664, + "upload_date": "2021-03-08T17:07:31Z", + "modify_date": "2021-03-08T17:07:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/angelamaio/models/Tunnel%20Tile%206%20Rails/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-03-08T17:02:11Z", + "updatedAt": "2024-03-12T02:39:41Z", + "name": "Tunnel Tile 5 Rails", + "owner": "angelamaio", + "description": "A straight section of a tunnel with rails.", + "likes": 0, + "downloads": 22, + "filesize": 52466, + "upload_date": "2021-03-08T17:02:10Z", + "modify_date": "2021-03-08T17:02:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/angelamaio/models/Tunnel%20Tile%205%20Rails/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2021-02-24T19:49:46Z", + "updatedAt": "2024-04-01T01:25:06Z", + "name": "Tunnel Tile 4 Lights", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 633, + "filesize": 84498, + "upload_date": "2021-02-24T19:49:45Z", + "modify_date": "2023-09-27T14:44:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%204%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-24T19:40:44Z", + "updatedAt": "2024-04-01T01:25:17Z", + "name": "Tunnel Tile 1 Lights", + "owner": "OpenRobotics", + "description": "A 4 way intersection tunnel tile with lights.", + "likes": 0, + "downloads": 748, + "filesize": 73868, + "upload_date": "2021-02-24T19:40:43Z", + "modify_date": "2023-09-27T14:44:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%201%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-24T19:30:36Z", + "updatedAt": "2024-04-01T01:26:27Z", + "name": "Tunnel Tile 2 Lights", + "owner": "OpenRobotics", + "description": "A 90 degree bend tunnel tile", + "likes": 0, + "downloads": 763, + "filesize": 93068, + "upload_date": "2021-02-24T19:30:35Z", + "modify_date": "2023-09-27T14:44:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%202%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-24T19:25:46Z", + "updatedAt": "2024-04-01T01:26:51Z", + "name": "Tunnel Tile 3 Lights", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 696, + "filesize": 77331, + "upload_date": "2021-02-24T19:25:44Z", + "modify_date": "2023-09-27T14:44:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%203%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-24T19:19:23Z", + "updatedAt": "2024-04-01T01:27:14Z", + "name": "Tunnel Tile 5 Lights", + "owner": "OpenRobotics", + "description": "A straight tunnel tile with lights", + "likes": 0, + "downloads": 731, + "filesize": 52655, + "upload_date": "2021-02-24T19:19:22Z", + "modify_date": "2023-09-27T14:45:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%205%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-24T19:14:36Z", + "updatedAt": "2024-04-01T01:26:52Z", + "name": "Tunnel Tile 6 Lights", + "owner": "OpenRobotics", + "description": "A straight tunnel tile with elevation change with lights.", + "likes": 0, + "downloads": 739, + "filesize": 64875, + "upload_date": "2021-02-24T19:14:35Z", + "modify_date": "2023-09-27T14:45:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%206%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-24T19:09:08Z", + "updatedAt": "2024-04-01T01:27:09Z", + "name": "Tunnel Tile 7 Lights", + "owner": "OpenRobotics", + "description": "A vertical shaft tunnel tile segment with lights.", + "likes": 0, + "downloads": 697, + "filesize": 67785, + "upload_date": "2021-02-24T19:09:07Z", + "modify_date": "2023-09-27T14:45:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%207%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-24T18:33:53Z", + "updatedAt": "2024-04-01T01:27:14Z", + "name": "4-Way Finals Transition 2 Lights", + "owner": "OpenRobotics", + "description": "A transition tile between tunnel, urban, and cave domains with lights.", + "likes": 0, + "downloads": 801, + "filesize": 330881, + "upload_date": "2021-02-24T18:33:51Z", + "modify_date": "2023-09-27T14:45:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/4-Way%20Finals%20Transition%202%20Lights/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-24T18:14:38Z", + "updatedAt": "2024-04-01T01:27:23Z", + "name": "Cave Tunnel Transition Lights", + "owner": "OpenRobotics", + "description": "A transition tile between cave and tunnel domains lights.", + "likes": 0, + "downloads": 716, + "filesize": 145285, + "upload_date": "2021-02-24T18:14:37Z", + "modify_date": "2023-09-27T14:45:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tunnel%20Transition%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-24T16:57:52Z", + "updatedAt": "2024-04-01T01:27:34Z", + "name": "Cave Corner 03 Type A Lights", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment with lights.", + "likes": 0, + "downloads": 705, + "filesize": 111778, + "upload_date": "2021-02-24T16:57:51Z", + "modify_date": "2023-09-27T14:45:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2003%20Type%20A%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-19T16:21:45Z", + "updatedAt": "2024-04-01T01:28:44Z", + "name": "Universal Shift 2.5x2.5", + "owner": "OpenRobotics", + "description": "SubT universal connector tile.", + "likes": 0, + "downloads": 607, + "filesize": 332930, + "upload_date": "2021-02-19T16:21:44Z", + "modify_date": "2023-09-27T14:45:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Universal%20Shift%202.5x2.5/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt", + "tile" + ] + }, + { + "createdAt": "2021-02-19T16:19:33Z", + "updatedAt": "2024-04-01T01:29:13Z", + "name": "Universal Shift 5x5", + "owner": "OpenRobotics", + "description": "SubT universal connector tile.", + "likes": 0, + "downloads": 741, + "filesize": 367845, + "upload_date": "2021-02-19T16:19:32Z", + "modify_date": "2023-09-27T14:45:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Universal%20Shift%205x5/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt", + "tile" + ] + }, + { + "createdAt": "2021-02-19T16:17:41Z", + "updatedAt": "2024-04-01T01:29:13Z", + "name": "Universal Straight 10", + "owner": "OpenRobotics", + "description": "SubT universal connector tile.", + "likes": 0, + "downloads": 752, + "filesize": 548463, + "upload_date": "2021-02-19T16:17:40Z", + "modify_date": "2023-09-27T14:45:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Universal%20Straight%2010/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt", + "tile" + ] + }, + { + "createdAt": "2021-02-19T16:15:44Z", + "updatedAt": "2024-04-01T01:29:10Z", + "name": "Universal Straight 2.5", + "owner": "OpenRobotics", + "description": "SubT universal connector tile.", + "likes": 0, + "downloads": 718, + "filesize": 426751, + "upload_date": "2021-02-19T16:15:43Z", + "modify_date": "2023-09-27T14:45:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Universal%20Straight%202.5/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt", + "tile" + ] + }, + { + "createdAt": "2021-02-19T16:12:35Z", + "updatedAt": "2024-04-01T01:29:21Z", + "name": "Universal Straight 5", + "owner": "OpenRobotics", + "description": "SubT universal connector tile.", + "likes": 0, + "downloads": 1720, + "filesize": 20304047, + "upload_date": "2021-02-19T16:12:30Z", + "modify_date": "2023-09-27T14:46:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Universal%20Straight%205/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt", + "tile" + ] + }, + { + "createdAt": "2021-02-19T00:48:53Z", + "updatedAt": "2024-03-26T03:36:52Z", + "name": "NASA_PERSEVERANCE_SENSOR_CONFIG_1", + "owner": "peci1", + "description": "A very simplistic model of NASA's Preseverance rover. It has no sensors (except a randomly placed IMU), but it has working wheels. Inertias may also be very off.\r\n\r\nAccording to https://nasa3d.arc.nasa.gov/ the assets are without a copyright.", + "likes": 3, + "downloads": 441, + "filesize": 10356217, + "upload_date": "2021-02-19T00:48:47Z", + "modify_date": "2021-02-19T00:48:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/peci1/models/NASA_PERSEVERANCE_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "ugv", + "nasa", + "rover", + "preserverance", + "space", + "mars", + "preseverance", + "perseverance" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2021-02-19T00:45:17Z", + "updatedAt": "2024-04-03T12:54:36Z", + "name": "NASA_PRESERVERANCE_SENSOR_CONFIG_1", + "owner": "peci1", + "description": "A very simplistic model of NASA's Preserverance rover. It has no sensors (except a randomly placed IMU), but it has working wheels. Inertias may also be very off.\r\n\r\nAccording to https://nasa3d.arc.nasa.gov/ the assets are without a copyright.", + "likes": 0, + "downloads": 191, + "filesize": 10356217, + "upload_date": "2021-02-19T00:45:11Z", + "modify_date": "2021-02-19T00:45:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/peci1/models/NASA_PRESERVERANCE_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "ugv", + "nasa", + "rover", + "preserverance", + "space", + "mars" + ], + "categories": [ + "Cars and Vehicles", + "Robots" + ] + }, + { + "createdAt": "2021-02-18T14:48:09Z", + "updatedAt": "2024-04-02T18:19:12Z", + "name": "Fog Emitter", + "owner": "OpenRobotics", + "description": "A smoke generator.", + "likes": 0, + "downloads": 1413, + "filesize": 38218, + "upload_date": "2021-02-18T14:48:07Z", + "modify_date": "2023-09-27T14:46:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "obstacle" + ] + }, + { + "createdAt": "2021-02-12T21:43:47Z", + "updatedAt": "2024-04-04T02:43:14Z", + "name": "Panda with Ignition position controller model", + "owner": "OpenRobotics", + "description": "Franka Emika Panda robot with Ignition position controller and PBR materials.\n\n Initially copied from https://app.ignitionrobotics.org/AndrejOrsula/fuel/models/panda", + "likes": 2, + "downloads": 9928, + "filesize": 54779356, + "upload_date": "2021-02-12T21:43:42Z", + "modify_date": "2023-09-27T14:46:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Panda%20with%20Ignition%20position%20controller%20model/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "robot", + "ignition" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-02-11T19:47:34Z", + "updatedAt": "2024-04-01T01:29:37Z", + "name": "explorer_r3_sensor_config_2", + "owner": "OpenRobotics", + "description": "Explorer R3 Sensor Config 2", + "likes": 0, + "downloads": 643, + "filesize": 6531599, + "upload_date": "2021-02-11T19:47:30Z", + "modify_date": "2023-09-27T14:47:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/explorer_r3_sensor_config_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-02-11T19:47:04Z", + "updatedAt": "2024-04-01T01:29:45Z", + "name": "explorer_r3_sensor_config_1", + "owner": "OpenRobotics", + "description": "Explorer R3 Sensor Config 1", + "likes": 0, + "downloads": 607, + "filesize": 6531598, + "upload_date": "2021-02-11T19:47:01Z", + "modify_date": "2023-09-27T14:48:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/explorer_r3_sensor_config_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-02-11T17:57:35Z", + "updatedAt": "2024-04-01T01:31:38Z", + "name": "csiro_data61_dtr_sensor_config_2", + "owner": "OpenRobotics", + "description": "CSIRO-Data61's Dynamic Tracked Robot (DTR), with a rotating lidar, imu, cameras and lights.", + "likes": 0, + "downloads": 657, + "filesize": 8150832, + "upload_date": "2021-02-11T17:57:31Z", + "modify_date": "2023-09-27T14:48:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/csiro_data61_dtr_sensor_config_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-02-11T17:56:38Z", + "updatedAt": "2024-04-01T09:42:58Z", + "name": "csiro_data61_dtr_sensor_config_1", + "owner": "OpenRobotics", + "description": "CSIRO-Data61's Dynamic Tracked Robot (DTR), with a rotating lidar, imu, cameras and lights.", + "likes": 0, + "downloads": 639, + "filesize": 8150829, + "upload_date": "2021-02-11T17:56:34Z", + "modify_date": "2023-09-27T14:48:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/csiro_data61_dtr_sensor_config_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-02-10T21:30:00Z", + "updatedAt": "2024-04-02T16:09:52Z", + "name": "Finals Staging Area", + "owner": "OpenRobotics", + "description": "Starting area for the SubT Finals", + "likes": 0, + "downloads": 1079, + "filesize": 52614700, + "upload_date": "2021-02-10T21:29:52Z", + "modify_date": "2023-09-27T14:48:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Finals%20Staging%20Area/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-04T01:59:03Z", + "updatedAt": "2024-04-01T01:31:47Z", + "name": "urban tunnel transition straight", + "owner": "OpenRobotics", + "description": "A straight transition tile between urban and cave domains.", + "likes": 0, + "downloads": 664, + "filesize": 520488, + "upload_date": "2021-02-04T01:59:02Z", + "modify_date": "2023-09-27T14:49:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/urban%20tunnel%20transition%20straight/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-04T01:53:13Z", + "updatedAt": "2024-04-01T01:31:47Z", + "name": "urban cave transition straight", + "owner": "OpenRobotics", + "description": "A straight transition tile between urban and cave domains.", + "likes": 0, + "downloads": 858, + "filesize": 521395, + "upload_date": "2021-02-04T01:53:12Z", + "modify_date": "2023-09-27T14:49:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/urban%20cave%20transition%20straight/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-04T01:44:50Z", + "updatedAt": "2024-04-01T01:31:41Z", + "name": "4-way finals transition 2", + "owner": "OpenRobotics", + "description": "A transition tile between tunnel, urban, and cave domains.", + "likes": 0, + "downloads": 769, + "filesize": 731542, + "upload_date": "2021-02-04T01:44:48Z", + "modify_date": "2023-09-27T14:49:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/4-way%20finals%20transition%202/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-04T01:17:15Z", + "updatedAt": "2024-04-01T01:32:13Z", + "name": "4-way finals transition", + "owner": "OpenRobotics", + "description": "A transition tile between tunnel, urban, and cave domains.", + "likes": 0, + "downloads": 596, + "filesize": 786214, + "upload_date": "2021-02-04T01:17:14Z", + "modify_date": "2023-09-27T14:50:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/4-way%20finals%20transition/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-04T00:16:38Z", + "updatedAt": "2024-04-01T01:32:15Z", + "name": "Urban Tunnel Transition 2", + "owner": "OpenRobotics", + "description": "A transition tile between urban and tunnel domains.", + "likes": 0, + "downloads": 638, + "filesize": 14897783, + "upload_date": "2021-02-04T00:16:34Z", + "modify_date": "2023-09-27T14:50:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Tunnel%20Transition%202/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2021-02-03T21:35:54Z", + "updatedAt": "2024-04-01T01:33:43Z", + "name": "MARBLE_HD2_SENSOR_CONFIG_4", + "owner": "OpenRobotics", + "description": "Team Marble's hd2 robot for SubT.", + "likes": 0, + "downloads": 621, + "filesize": 2228351, + "upload_date": "2021-02-03T21:35:51Z", + "modify_date": "2023-09-27T14:50:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MARBLE_HD2_SENSOR_CONFIG_4/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-02-03T21:34:51Z", + "updatedAt": "2024-04-01T01:34:12Z", + "name": "MARBLE_HD2_SENSOR_CONFIG_3", + "owner": "OpenRobotics", + "description": "Team Marble's hd2 robot for SubT.", + "likes": 0, + "downloads": 625, + "filesize": 2228351, + "upload_date": "2021-02-03T21:34:49Z", + "modify_date": "2023-09-27T14:50:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MARBLE_HD2_SENSOR_CONFIG_3/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-02-03T21:12:08Z", + "updatedAt": "2024-04-01T01:33:52Z", + "name": "CERBERUS_M100_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "M100 UAV with sensor configuration #2: 3D medium range lidar, IMU, camera, magnetometer, thermal camera.", + "likes": 0, + "downloads": 725, + "filesize": 18922331, + "upload_date": "2021-02-03T21:11:57Z", + "modify_date": "2023-09-27T14:50:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CERBERUS_M100_SENSOR_CONFIG_2/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "UAV" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-02-03T20:49:19Z", + "updatedAt": "2024-04-01T01:34:06Z", + "name": "MARBLE_HUSKY_SENSOR_CONFIG_4", + "owner": "OpenRobotics", + "description": "CU's husky config with 3 D435i RGBD cameras, a pan-tilt turret, the Ouster OS1 64 channel lidar,\n an RPLidar S1 and a Vividia HTI-301 LWIR thermal Camera", + "likes": 0, + "downloads": 972, + "filesize": 1399490, + "upload_date": "2021-02-03T20:49:16Z", + "modify_date": "2023-09-27T14:51:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MARBLE_HUSKY_SENSOR_CONFIG_4/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-02-03T20:40:16Z", + "updatedAt": "2024-04-01T01:34:06Z", + "name": "MARBLE_HUSKY_SENSOR_CONFIG_3", + "owner": "OpenRobotics", + "description": "CU's husky config with 3 D435i RGBD cameras, a pan-tilt turret, the Ouster OS1 64 channel lidar,\n an RPLidar S1, and a Vividia HTI-301 LWIR thermal Camera", + "likes": 0, + "downloads": 670, + "filesize": 1399494, + "upload_date": "2021-02-03T20:40:14Z", + "modify_date": "2023-09-27T14:51:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MARBLE_HUSKY_SENSOR_CONFIG_3/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-01-29T23:15:09Z", + "updatedAt": "2024-04-01T01:34:02Z", + "name": "Urban Cave Transition 2", + "owner": "OpenRobotics", + "description": "A transition tile between urban and cave domains.", + "likes": 0, + "downloads": 641, + "filesize": 5319208, + "upload_date": "2021-01-29T23:15:05Z", + "modify_date": "2023-09-27T14:52:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Cave%20Transition%202/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt." + ] + }, + { + "createdAt": "2021-01-28T20:53:54Z", + "updatedAt": "2024-04-02T16:47:46Z", + "name": "smoke_generator", + "owner": "caguero", + "description": "A smoke generator", + "likes": 0, + "downloads": 435, + "filesize": 39247, + "upload_date": "2021-01-28T20:53:53Z", + "modify_date": "2021-01-28T22:33:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2021-01-27T04:01:37Z", + "updatedAt": "2024-03-12T12:40:55Z", + "name": "Darwin OP", + "owner": "OpenRobotics", + "description": "Describes DarwinOP robot model with camera and IMU.", + "likes": 0, + "downloads": 95, + "filesize": 10841865, + "upload_date": "2021-01-27T04:01:31Z", + "modify_date": "2023-09-27T14:52:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-01-20T21:18:20Z", + "updatedAt": "2024-04-01T01:34:23Z", + "name": "CERBERUS_ANYMAL_C_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "CERBERUS' ANYmal quadruped UGV model with a medium range lidar, two half-sphere lidars, seven cameras and two IMUs.", + "likes": 0, + "downloads": 785, + "filesize": 5312681, + "upload_date": "2021-01-20T21:18:15Z", + "modify_date": "2023-09-27T14:52:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CERBERUS_ANYMAL_C_SENSOR_CONFIG_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-01-20T21:13:10Z", + "updatedAt": "2024-04-01T01:33:54Z", + "name": "CERBERUS_ANYMAL_C_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "CERBERUS' ANYmal quadruped UGV model with a medium range lidar, two half-sphere lidars, seven cameras and two IMUs.", + "likes": 0, + "downloads": 685, + "filesize": 5312693, + "upload_date": "2021-01-20T21:13:06Z", + "modify_date": "2023-09-27T14:53:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CERBERUS_ANYMAL_C_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-01-20T20:59:13Z", + "updatedAt": "2024-04-01T01:35:28Z", + "name": "COSTAR_SHAFTER_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "This is a model of the shafter quadrotor.", + "likes": 0, + "downloads": 676, + "filesize": 3004699, + "upload_date": "2021-01-20T20:59:11Z", + "modify_date": "2023-09-27T14:53:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/COSTAR_SHAFTER_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-01-20T20:53:16Z", + "updatedAt": "2024-04-01T01:36:14Z", + "name": "CERBERUS_RMF_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "Autonomous Robots Lab Resilient Micro Flyer (RMF) UAV with sensor configuration #8: ToF sensor, IMU, tracking camera, magnetometer.\n Originally submitted as cerberus_rmf_sensor_config_1.", + "likes": 0, + "downloads": 619, + "filesize": 2735652, + "upload_date": "2021-01-20T20:53:13Z", + "modify_date": "2023-09-27T14:53:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CERBERUS_RMF_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2021-01-12T20:08:22Z", + "updatedAt": "2024-03-22T14:45:22Z", + "name": "Backpack", + "owner": "amelhassan", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 259, + "filesize": 1778217, + "upload_date": "2021-01-12T20:08:20Z", + "modify_date": "2021-01-12T20:08:20Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/amelhassan/models/Backpack/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-01-12T19:34:16Z", + "updatedAt": "2024-03-29T19:41:08Z", + "name": "Backpack", + "owner": "nate", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 1, + "downloads": 181, + "filesize": 1778217, + "upload_date": "2021-01-12T19:34:14Z", + "modify_date": "2023-09-22T16:05:51Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Backpack/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2021-01-08T02:08:21Z", + "updatedAt": "2024-04-04T06:03:11Z", + "name": "NAO with Ignition position controller", + "owner": "OpenRobotics", + "description": "A model of the Nao.\n Taken from https://github.com/osrf/robocup3ds", + "likes": 1, + "downloads": 11564, + "filesize": 3478624, + "upload_date": "2021-01-08T02:08:16Z", + "modify_date": "2023-09-27T14:53:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NAO%20with%20Ignition%20position%20controller/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "robot", + "ignition", + "humanoid" + ], + "categories": [ + "Electronics", + "Robots" + ] + }, + { + "createdAt": "2021-01-06T16:53:59Z", + "updatedAt": "2024-04-01T01:36:28Z", + "name": "Urban Tunnel Transition", + "owner": "OpenRobotics", + "description": "A transition tile between urban and tunnel domains.", + "likes": 0, + "downloads": 644, + "filesize": 5042095, + "upload_date": "2021-01-06T16:53:56Z", + "modify_date": "2023-09-27T14:54:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Tunnel%20Transition/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel", + "urban", + "tile" + ] + }, + { + "createdAt": "2021-01-06T16:40:51Z", + "updatedAt": "2024-04-01T01:36:18Z", + "name": "Urban Cave Transition", + "owner": "OpenRobotics", + "description": "A transition tile between urban and cave domains.", + "likes": 0, + "downloads": 830, + "filesize": 31501862, + "upload_date": "2021-01-06T16:40:43Z", + "modify_date": "2023-09-27T14:54:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Cave%20Transition/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "cave", + "urban", + "tile" + ] + }, + { + "createdAt": "2020-12-24T00:50:13Z", + "updatedAt": "2024-04-01T01:36:14Z", + "name": "Cave Tunnel Transition", + "owner": "OpenRobotics", + "description": "A transition tile between cave and tunnel domains.", + "likes": 0, + "downloads": 791, + "filesize": 32704575, + "upload_date": "2020-12-24T00:50:07Z", + "modify_date": "2023-09-27T14:55:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tunnel%20Transition/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-12-21T18:08:29Z", + "updatedAt": "2024-03-12T12:50:26Z", + "name": "R160 Subway Car", + "owner": "OpenRobotics", + "description": "An R160 subway car.", + "likes": 0, + "downloads": 194, + "filesize": 83049923, + "upload_date": "2020-12-21T18:08:16Z", + "modify_date": "2023-09-27T14:55:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/R160%20Subway%20Car/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-12-21T17:01:29Z", + "updatedAt": "2024-03-15T19:44:50Z", + "name": "R32 Subway Car", + "owner": "OpenRobotics", + "description": "An R32 subway car.", + "likes": 0, + "downloads": 169, + "filesize": 47074728, + "upload_date": "2020-12-21T17:01:21Z", + "modify_date": "2023-09-27T14:56:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/R32%20Subway%20Car/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-12-21T15:22:04Z", + "updatedAt": "2024-03-28T03:41:49Z", + "name": "Mine Cart Engine", + "owner": "OpenRobotics", + "description": "A mine cart engine.", + "likes": 0, + "downloads": 632, + "filesize": 7501328, + "upload_date": "2020-12-21T15:22:02Z", + "modify_date": "2023-09-27T14:57:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Mine%20Cart%20Engine/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-12-21T15:19:35Z", + "updatedAt": "2024-04-01T01:36:28Z", + "name": "Mine Cart", + "owner": "OpenRobotics", + "description": "A mine cart.", + "likes": 0, + "downloads": 1490, + "filesize": 9165973, + "upload_date": "2020-12-21T15:19:32Z", + "modify_date": "2023-09-27T14:57:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Mine%20Cart/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-12-15T18:16:25Z", + "updatedAt": "2024-04-02T20:23:28Z", + "name": "Urban Platform", + "owner": "OpenRobotics", + "description": "Subway platform.", + "likes": 0, + "downloads": 14077, + "filesize": 205175159, + "upload_date": "2020-12-15T18:15:46Z", + "modify_date": "2023-09-27T14:58:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Platform/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "urban", + "tile" + ] + }, + { + "createdAt": "2020-12-14T18:19:13Z", + "updatedAt": "2024-04-03T17:27:37Z", + "name": "Tunnel Tile 1", + "owner": "OpenRobotics", + "description": "tunnel tile, 4 way intersection", + "likes": 0, + "downloads": 105857, + "filesize": 103825062, + "upload_date": "2020-12-14T18:18:55Z", + "modify_date": "2021-03-08T23:02:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%201/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel" + ] + }, + { + "createdAt": "2020-12-03T22:56:58Z", + "updatedAt": "2024-04-04T03:07:08Z", + "name": "Indoor lightmap", + "owner": "OpenRobotics", + "description": "An indoor environment with prebaked lighting using a lightmap", + "likes": 2, + "downloads": 823, + "filesize": 101712303, + "upload_date": "2020-12-03T22:56:37Z", + "modify_date": "2023-09-02T00:09:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Indoor%20lightmap/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "PBR", + "room" + ] + }, + { + "createdAt": "2020-12-02T23:26:37Z", + "updatedAt": "2024-03-12T07:33:53Z", + "name": "Jenolan Section 01", + "owner": "nate", + "description": "Part 01 of the Jenolan SubT world.", + "likes": 0, + "downloads": 68, + "filesize": 46777200, + "upload_date": "2020-12-02T23:26:23Z", + "modify_date": "2023-09-22T16:06:12Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Jenolan%20Section%2001/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-12-01T05:04:34Z", + "updatedAt": "2024-04-02T12:22:36Z", + "name": "Heightmap Bowl", + "owner": "chapulina", + "description": "Heightmap using resources that are usually installed with Gazebo classic.", + "likes": 0, + "downloads": 453, + "filesize": 9182086, + "upload_date": "2020-12-01T05:04:31Z", + "modify_date": "2020-12-01T05:04:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Heightmap%20Bowl/tip/files/thumbnails/ign-heightmap.png", + "private": false, + "tags": [ + "heightmap", + "terrain" + ], + "categories": [ + "Nature and Plants", + "Places and Landscapes" + ] + }, + { + "createdAt": "2020-11-30T17:52:56Z", + "updatedAt": "2024-03-20T11:37:55Z", + "name": "panda", + "owner": "AndrejOrsula", + "description": "Franka Emika Panda 7 axes robot arm.\n\nMore information on [GitHub](https://github.com/AndrejOrsula/panda_ign).", + "likes": 2, + "downloads": 1519, + "filesize": 4278593, + "upload_date": "2020-11-30T17:52:52Z", + "modify_date": "2021-01-19T18:48:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/AndrejOrsula/models/panda/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-11-13T22:32:03Z", + "updatedAt": "2024-03-25T02:11:02Z", + "name": "Cordless drill with spaces", + "owner": "chapulina", + "description": "Copy of https://app.ignitionrobotics.org/OpenRobotics/fuel/models/Cordless%20Drill with spaces for:\r\n\r\n* STL file\r\n* DAE file\r\n* Texture referenced by DAE file", + "likes": 0, + "downloads": 85, + "filesize": 2019034, + "upload_date": "2020-11-13T22:32:01Z", + "modify_date": "2020-11-13T22:32:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Cordless%20drill%20with%20spaces/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-11-13T21:58:48Z", + "updatedAt": "2024-03-21T04:41:19Z", + "name": "Stop sign with spaces", + "owner": "chapulina", + "description": "Copy of https://app.ignitionrobotics.org/OpenRobotics/fuel/models/Stop%20Sign that contains spaces in:\r\n\r\n* The DAE file\r\n* The textures\r\n* The material file", + "likes": 1, + "downloads": 138, + "filesize": 694926, + "upload_date": "2020-11-13T21:58:46Z", + "modify_date": "2020-11-18T18:06:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Stop%20sign%20with%20spaces/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "test" + ] + }, + { + "createdAt": "2020-11-01T19:47:39Z", + "updatedAt": "2024-04-04T05:44:05Z", + "name": "Elevator", + "owner": "nlamprian", + "description": "Elevator model that closely approximates a real elevator. It receives and queues commands to reach different floor levels (with intermediate stops if a particular command is for a floor level that's on the way), and keeps the door open as long as something blocks the doorway.\n\nThe model is configurable in terms of the:\n* Number and height of floors\n* Dimensions of cabin and doors\n* Presence of walls and floor space in front of the doors\n* Presence and position of the range sensor on the doors\n\nCheck out `elevator.sdf.erb` for the parameters that can be modified and instructions on how to instantiate an elevator model.\n\nAn example elevator with 4 floors is available in `elevator.sdf`.", + "likes": 0, + "downloads": 652, + "filesize": 279248, + "upload_date": "2020-11-01T19:47:38Z", + "modify_date": "2021-01-08T01:37:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nlamprian/models/Elevator/tip/files/thumbnails/cabin.jpg", + "private": false, + "tags": [ + "elevator" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2020-10-27T15:19:48Z", + "updatedAt": "2024-03-29T17:55:26Z", + "name": "Shark", + "owner": "wutitaxue", + "description": "Weisshai Great White Shark\nTesting for fuel project", + "likes": 0, + "downloads": 348, + "filesize": 3552329, + "upload_date": "2020-10-27T15:19:45Z", + "modify_date": "2020-10-27T15:19:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/wutitaxue/models/Shark/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-10-21T07:16:28Z", + "updatedAt": "2024-04-04T04:11:26Z", + "name": "MaleVisitorPhone", + "owner": "OpenRobotics", + "description": "Actor model of a male visitor with a mobile phone", + "likes": 0, + "downloads": 18368, + "filesize": 1141627, + "upload_date": "2020-10-21T07:16:26Z", + "modify_date": "2020-10-21T07:16:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MaleVisitorPhone/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "Male", + "Visitor", + "Phone" + ], + "categories": [ + "People" + ] + }, + { + "createdAt": "2020-10-19T22:16:51Z", + "updatedAt": "2024-04-03T12:46:25Z", + "name": "Extinguisher PBR", + "owner": "chapulina", + "description": "A fire extinguisher", + "likes": 0, + "downloads": 852, + "filesize": 7507865, + "upload_date": "2020-10-19T22:16:48Z", + "modify_date": "2020-10-19T22:16:48Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Extinguisher%20PBR/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-10-17T01:05:19Z", + "updatedAt": "2024-03-12T02:57:01Z", + "name": "Textured mesh", + "owner": "chapulina", + "description": "Reproducing this issue: https://github.com/osrf/gazebo/issues/2369", + "likes": 0, + "downloads": 70, + "filesize": 107548, + "upload_date": "2020-10-17T01:05:17Z", + "modify_date": "2020-10-17T01:05:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Textured%20mesh/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "test" + ] + }, + { + "createdAt": "2020-10-14T00:33:07Z", + "updatedAt": "2024-04-03T13:06:10Z", + "name": "Master Chef Can", + "owner": "petermitrano", + "description": "coffee can", + "likes": 0, + "downloads": 375, + "filesize": 20986578, + "upload_date": "2020-10-14T00:33:00Z", + "modify_date": "2020-10-14T00:36:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/petermitrano/models/Master%20Chef%20Can/tip/files/thumbnails/thumbnail.jpg", + "private": false, + "tags": [ + "YCB" + ], + "categories": [ + "Food and Drink", + "Bottles and Cans" + ] + }, + { + "createdAt": "2020-10-13T18:53:07Z", + "updatedAt": "2024-03-12T06:56:53Z", + "name": "hatchback_red_2", + "owner": "JShep1", + "description": "A red hatchback with a `hatchback_2` dependency specified in its `model.config`", + "likes": 0, + "downloads": 3010, + "filesize": 670814, + "upload_date": "2020-10-13T18:53:05Z", + "modify_date": "2020-10-13T18:53:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/JShep1/models/hatchback_red_2/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2020-10-13T18:51:43Z", + "updatedAt": "2024-03-23T21:36:33Z", + "name": "hatchback_red_1", + "owner": "JShep1", + "description": "A red hatchback with a dependency on `hatchback_1` specified in its `metadata.pbtxt`", + "likes": 0, + "downloads": 5236, + "filesize": 671188, + "upload_date": "2020-10-13T18:51:41Z", + "modify_date": "2020-10-13T18:51:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/JShep1/models/hatchback_red_1/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2020-10-13T18:48:26Z", + "updatedAt": "2024-03-13T13:28:38Z", + "name": "hatchback_2", + "owner": "JShep1", + "description": "A hatchback that has hatchback_red_2 depending on it", + "likes": 0, + "downloads": 2889, + "filesize": 1011211, + "upload_date": "2020-10-13T18:48:24Z", + "modify_date": "2020-10-13T18:48:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/JShep1/models/hatchback_2/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2020-10-13T18:47:22Z", + "updatedAt": "2024-03-23T21:36:47Z", + "name": "hatchback_1", + "owner": "JShep1", + "description": "A hatchback that has hatchback_red_1 depending on it.", + "likes": 0, + "downloads": 3437, + "filesize": 1011211, + "upload_date": "2020-10-13T18:47:20Z", + "modify_date": "2020-10-13T18:47:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/JShep1/models/hatchback_1/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2020-10-02T02:52:26Z", + "updatedAt": "2024-03-24T13:01:11Z", + "name": "Weisshai_Great_White_Shark", + "owner": "boaringsquare", + "description": "Weisshai Great White Shark\nTesting for fuel project", + "likes": 0, + "downloads": 289, + "filesize": 3552329, + "upload_date": "2020-10-02T02:52:23Z", + "modify_date": "2020-10-07T06:03:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/boaringsquare/models/Weisshai_Great_White_Shark/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-30T23:39:05Z", + "updatedAt": "2024-04-01T01:37:50Z", + "name": "Jenolan Section 05 Lights", + "owner": "OpenRobotics", + "description": "Part 05 of the Jenolan SubT world with lights.", + "likes": 0, + "downloads": 856, + "filesize": 94802, + "upload_date": "2020-09-30T23:39:03Z", + "modify_date": "2023-09-27T15:01:38Z", + "license_id": 3, + "license_name": "Creative Commons Attribution Share Alike 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "license_image": "https://i.creativecommons.org/l/by-sa/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Jenolan%20Section%2005%20Lights/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-09-29T19:20:29Z", + "updatedAt": "2024-04-01T01:38:29Z", + "name": "Jenolan Section 11", + "owner": "OpenRobotics", + "description": "Part 11 of the Jenolan SubT world.", + "likes": 0, + "downloads": 879, + "filesize": 24311328, + "upload_date": "2020-09-29T19:20:15Z", + "modify_date": "2023-09-27T15:01:46Z", + "license_id": 3, + "license_name": "Creative Commons Attribution Share Alike 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "license_image": "https://i.creativecommons.org/l/by-sa/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Jenolan%20Section%2011/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-09-29T19:18:45Z", + "updatedAt": "2024-04-01T17:51:30Z", + "name": "Jenolan Section 10", + "owner": "OpenRobotics", + "description": "Part 10 of the Jenolan SubT world.", + "likes": 0, + "downloads": 859, + "filesize": 55118645, + "upload_date": "2020-09-29T19:18:19Z", + "modify_date": "2023-09-27T15:02:45Z", + "license_id": 3, + "license_name": "Creative Commons Attribution Share Alike 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "license_image": "https://i.creativecommons.org/l/by-sa/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Jenolan%20Section%2010/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-09-29T19:16:13Z", + "updatedAt": "2024-04-01T01:38:19Z", + "name": "Jenolan Section 09", + "owner": "OpenRobotics", + "description": "Part 09 of the Jenolan SubT world.", + "likes": 0, + "downloads": 851, + "filesize": 52075645, + "upload_date": "2020-09-29T19:15:48Z", + "modify_date": "2023-09-27T15:04:40Z", + "license_id": 3, + "license_name": "Creative Commons Attribution Share Alike 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "license_image": "https://i.creativecommons.org/l/by-sa/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Jenolan%20Section%2009/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-09-29T19:13:22Z", + "updatedAt": "2024-04-01T01:38:22Z", + "name": "Jenolan Section 08", + "owner": "OpenRobotics", + "description": "Part 08 of the Jenolan SubT world.", + "likes": 0, + "downloads": 835, + "filesize": 23808357, + "upload_date": "2020-09-29T19:13:08Z", + "modify_date": "2023-09-27T15:06:13Z", + "license_id": 3, + "license_name": "Creative Commons Attribution Share Alike 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "license_image": "https://i.creativecommons.org/l/by-sa/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Jenolan%20Section%2008/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-09-29T19:11:38Z", + "updatedAt": "2024-04-01T01:38:15Z", + "name": "Jenolan Section 07", + "owner": "OpenRobotics", + "description": "Part 07 of the Jenolan SubT world.", + "likes": 0, + "downloads": 842, + "filesize": 55560392, + "upload_date": "2020-09-29T19:11:12Z", + "modify_date": "2023-09-27T15:06:58Z", + "license_id": 3, + "license_name": "Creative Commons Attribution Share Alike 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "license_image": "https://i.creativecommons.org/l/by-sa/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Jenolan%20Section%2007/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-09-29T19:08:48Z", + "updatedAt": "2024-04-01T01:38:29Z", + "name": "Jenolan Section 06", + "owner": "OpenRobotics", + "description": "Part 06 of the Jenolan SubT world.", + "likes": 0, + "downloads": 852, + "filesize": 54220084, + "upload_date": "2020-09-29T19:08:22Z", + "modify_date": "2023-09-27T15:08:26Z", + "license_id": 3, + "license_name": "Creative Commons Attribution Share Alike 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "license_image": "https://i.creativecommons.org/l/by-sa/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Jenolan%20Section%2006/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-09-29T19:06:21Z", + "updatedAt": "2024-04-01T01:38:10Z", + "name": "Jenolan Section 05", + "owner": "OpenRobotics", + "description": "Part 05 of the Jenolan SubT world.", + "likes": 0, + "downloads": 880, + "filesize": 40764214, + "upload_date": "2020-09-29T19:06:00Z", + "modify_date": "2023-09-27T15:09:42Z", + "license_id": 3, + "license_name": "Creative Commons Attribution Share Alike 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "license_image": "https://i.creativecommons.org/l/by-sa/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Jenolan%20Section%2005/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-09-29T18:56:48Z", + "updatedAt": "2024-04-01T01:40:01Z", + "name": "Jenolan Section 04", + "owner": "OpenRobotics", + "description": "Part 04 of the Jenolan SubT world.", + "likes": 0, + "downloads": 830, + "filesize": 49602670, + "upload_date": "2020-09-29T18:56:24Z", + "modify_date": "2023-09-27T15:10:48Z", + "license_id": 3, + "license_name": "Creative Commons Attribution Share Alike 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "license_image": "https://i.creativecommons.org/l/by-sa/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Jenolan%20Section%2004/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-09-29T18:53:52Z", + "updatedAt": "2024-04-01T01:40:23Z", + "name": "Jenolan Section 03", + "owner": "OpenRobotics", + "description": "Part 03 of the Jenolan SubT world.", + "likes": 0, + "downloads": 853, + "filesize": 28907981, + "upload_date": "2020-09-29T18:53:37Z", + "modify_date": "2023-09-27T15:12:00Z", + "license_id": 3, + "license_name": "Creative Commons Attribution Share Alike 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "license_image": "https://i.creativecommons.org/l/by-sa/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Jenolan%20Section%2003/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-09-29T18:51:22Z", + "updatedAt": "2024-04-01T01:40:18Z", + "name": "Jenolan Section 02", + "owner": "OpenRobotics", + "description": "Part 02 of the Jenolan SubT world.", + "likes": 0, + "downloads": 839, + "filesize": 19763704, + "upload_date": "2020-09-29T18:51:08Z", + "modify_date": "2023-09-27T15:12:46Z", + "license_id": 3, + "license_name": "Creative Commons Attribution Share Alike 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "license_image": "https://i.creativecommons.org/l/by-sa/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Jenolan%20Section%2002/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-09-29T16:55:21Z", + "updatedAt": "2024-04-01T17:52:15Z", + "name": "Jenolan Section 01", + "owner": "OpenRobotics", + "description": "Part 01 of the Jenolan SubT world.", + "likes": 0, + "downloads": 3600, + "filesize": 34315121, + "upload_date": "2020-09-29T16:55:06Z", + "modify_date": "2023-09-27T15:13:24Z", + "license_id": 3, + "license_name": "Creative Commons Attribution Share Alike 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-sa/4.0/", + "license_image": "https://i.creativecommons.org/l/by-sa/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Jenolan%20Section%2001/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-09-22T06:44:11Z", + "updatedAt": "2024-03-28T06:09:37Z", + "name": "Threshold_Bistro_Ceramic_Dinner_Plate_Ruby_Ring", + "owner": "zengchong2003", + "description": "Threshold Bistro Ceramic Dinner Plate, Ruby Ring", + "likes": 0, + "downloads": 222, + "filesize": 4528775, + "upload_date": "2020-09-22T06:44:09Z", + "modify_date": "2020-09-22T06:44:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/zengchong2003/models/Threshold_Bistro_Ceramic_Dinner_Plate_Ruby_Ring/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-21T00:03:45Z", + "updatedAt": "2024-04-03T06:06:01Z", + "name": "Edgar Mine Virtual STIX", + "owner": "kmltrgyclk", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 0, + "downloads": 169, + "filesize": 84672607, + "upload_date": "2020-09-21T00:03:28Z", + "modify_date": "2020-09-21T00:03:28Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/kmltrgyclk/models/Edgar%20Mine%20Virtual%20STIX/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-18T18:08:29Z", + "updatedAt": "2024-04-03T09:28:19Z", + "name": "Weisshai_Great_White_Shark", + "owner": "GoogleResearch", + "description": "Weisshai Great White Shark\nTest", + "likes": 0, + "downloads": 2208, + "filesize": 3552329, + "upload_date": "2020-09-18T18:08:27Z", + "modify_date": "2020-09-18T20:05:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Weisshai_Great_White_Shark/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:08:24Z", + "updatedAt": "2024-04-03T10:21:55Z", + "name": "Vtech_Stack_Sing_Rings_636_Months", + "owner": "GoogleResearch", + "description": "Vtech Stack & Sing Rings, 6-36 Months", + "likes": 0, + "downloads": 1394, + "filesize": 6712609, + "upload_date": "2020-09-18T18:08:21Z", + "modify_date": "2020-09-18T20:05:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Vtech_Stack_Sing_Rings_636_Months/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T18:08:19Z", + "updatedAt": "2024-04-03T08:55:18Z", + "name": "Vtech_Roll_Learn_Turtle", + "owner": "GoogleResearch", + "description": "Vtech Roll & Learn Turtle", + "likes": 0, + "downloads": 1435, + "filesize": 6466471, + "upload_date": "2020-09-18T18:08:15Z", + "modify_date": "2020-09-18T20:05:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Vtech_Roll_Learn_Turtle/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:08:13Z", + "updatedAt": "2024-04-04T05:32:54Z", + "name": "Vtech_Cruise_Learn_Car_25_Years", + "owner": "GoogleResearch", + "description": "Vtech Cruise & Learn Car, 2-5 Years", + "likes": 0, + "downloads": 1183, + "filesize": 7835922, + "upload_date": "2020-09-18T18:08:10Z", + "modify_date": "2020-09-18T20:05:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Vtech_Cruise_Learn_Car_25_Years/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T18:08:07Z", + "updatedAt": "2024-04-03T10:09:14Z", + "name": "Victor_Reversible_Bookend", + "owner": "GoogleResearch", + "description": "Victor Reversible Bookend", + "likes": 0, + "downloads": 1112, + "filesize": 4428316, + "upload_date": "2020-09-18T18:08:04Z", + "modify_date": "2020-09-18T20:05:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Victor_Reversible_Bookend/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T18:08:02Z", + "updatedAt": "2024-04-03T09:28:12Z", + "name": "VEGETABLE_GARDEN", + "owner": "GoogleResearch", + "description": "VEGETABLE GARDEN\nThe set includes a wheelbarrow, watering can, spade, 4 vegetable beds and removable carrots, radishes, turnips, and cauliflowers.", + "likes": 0, + "downloads": 1221, + "filesize": 10323782, + "upload_date": "2020-09-18T18:07:58Z", + "modify_date": "2020-09-18T20:05:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/VEGETABLE_GARDEN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T18:07:56Z", + "updatedAt": "2024-04-03T08:55:14Z", + "name": "Utana_5_Porcelain_Ramekin_Large", + "owner": "GoogleResearch", + "description": "Utana 5\" Porcelain Ramekin, Large", + "likes": 0, + "downloads": 1183, + "filesize": 3833479, + "upload_date": "2020-09-18T18:07:53Z", + "modify_date": "2020-09-18T20:05:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Utana_5_Porcelain_Ramekin_Large/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:07:51Z", + "updatedAt": "2024-04-03T10:25:24Z", + "name": "Ubisoft_RockSmith_Real_Tone_Cable_Xbox_360", + "owner": "GoogleResearch", + "description": "Ubisoft RockSmith Real Tone Cable, Xbox 360", + "likes": 0, + "downloads": 1020, + "filesize": 4574563, + "upload_date": "2020-09-18T18:07:48Z", + "modify_date": "2020-09-18T20:05:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ubisoft_RockSmith_Real_Tone_Cable_Xbox_360/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T18:07:46Z", + "updatedAt": "2024-04-03T10:21:48Z", + "name": "TriStar_Products_PPC_Power_Pressure_Cooker_XL_in_Black", + "owner": "GoogleResearch", + "description": "Tri-Star Products PPC Power Pressure Cooker XL in Black", + "likes": 0, + "downloads": 1169, + "filesize": 7315920, + "upload_date": "2020-09-18T18:07:42Z", + "modify_date": "2020-09-18T20:05:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TriStar_Products_PPC_Power_Pressure_Cooker_XL_in_Black/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:07:40Z", + "updatedAt": "2024-04-03T18:57:11Z", + "name": "Toysmith_Windem_Up_Flippin_Animals_Dog", + "owner": "GoogleResearch", + "description": "Toysmith Wind'em Up Flippin' Animals, Dog", + "likes": 0, + "downloads": 1139, + "filesize": 4019760, + "upload_date": "2020-09-18T18:07:37Z", + "modify_date": "2020-09-18T20:05:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Toysmith_Windem_Up_Flippin_Animals_Dog/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T18:07:35Z", + "updatedAt": "2024-04-03T10:21:44Z", + "name": "Toys_R_Us_Treat_Dispenser_Smart_Puzzle_Foobler", + "owner": "GoogleResearch", + "description": "Toys R Us Treat Dispenser, Smart Puzzle, Foobler", + "likes": 0, + "downloads": 1050, + "filesize": 3898509, + "upload_date": "2020-09-18T18:07:32Z", + "modify_date": "2020-09-18T20:05:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Toys_R_Us_Treat_Dispenser_Smart_Puzzle_Foobler/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:07:30Z", + "updatedAt": "2024-04-03T08:25:57Z", + "name": "Top_Paw_Dog_Bowl_Blue_Paw_Bone_Ceramic_25_fl_oz_total", + "owner": "GoogleResearch", + "description": "Top Paw Dog Bowl, Blue Paw Bone, Ceramic - 25 fl oz total", + "likes": 0, + "downloads": 1173, + "filesize": 3578329, + "upload_date": "2020-09-18T18:07:27Z", + "modify_date": "2020-09-18T20:05:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Top_Paw_Dog_Bowl_Blue_Paw_Bone_Ceramic_25_fl_oz_total/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:07:25Z", + "updatedAt": "2024-04-03T08:55:07Z", + "name": "Top_Paw_Dog_Bow_Bone_Ceramic_13_fl_oz_total", + "owner": "GoogleResearch", + "description": "Top Paw Dog Bow, Bone, Ceramic - 13 fl oz total", + "likes": 0, + "downloads": 1168, + "filesize": 5642586, + "upload_date": "2020-09-18T18:07:22Z", + "modify_date": "2020-09-18T20:05:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Top_Paw_Dog_Bow_Bone_Ceramic_13_fl_oz_total/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:07:19Z", + "updatedAt": "2024-04-03T10:09:08Z", + "name": "Threshold_Tray_Rectangle_Porcelain", + "owner": "GoogleResearch", + "description": "Threshold Tray, Rectangle, Porcelain", + "likes": 1, + "downloads": 1038, + "filesize": 5508211, + "upload_date": "2020-09-18T18:07:16Z", + "modify_date": "2020-09-18T20:05:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Tray_Rectangle_Porcelain/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:07:06Z", + "updatedAt": "2024-04-03T10:09:01Z", + "name": "Threshold_Textured_Damask_Bath_Towel_Pink", + "owner": "GoogleResearch", + "description": "Threshold Textured Damask Bath Towel - Pink", + "likes": 0, + "downloads": 1028, + "filesize": 9338947, + "upload_date": "2020-09-18T18:07:03Z", + "modify_date": "2020-09-18T20:05:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Textured_Damask_Bath_Towel_Pink/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:07:00Z", + "updatedAt": "2024-04-03T10:25:11Z", + "name": "Threshold_Salad_Plate_Square_Rim_Porcelain", + "owner": "GoogleResearch", + "description": "Threshold Salad Plate, Square Rim, Porcelain", + "likes": 0, + "downloads": 987, + "filesize": 3761495, + "upload_date": "2020-09-18T18:06:57Z", + "modify_date": "2020-09-18T20:05:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Salad_Plate_Square_Rim_Porcelain/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:06:55Z", + "updatedAt": "2024-04-03T07:46:43Z", + "name": "Threshold_Ramekin_White_Porcelain", + "owner": "GoogleResearch", + "description": "Threshold Ramekin, White, Porcelain", + "likes": 0, + "downloads": 974, + "filesize": 2982249, + "upload_date": "2020-09-18T18:06:52Z", + "modify_date": "2020-09-18T20:05:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Ramekin_White_Porcelain/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:06:50Z", + "updatedAt": "2024-04-03T09:28:04Z", + "name": "Threshold_Porcelain_Teapot_White", + "owner": "GoogleResearch", + "description": "Threshold Porcelain Teapot, White", + "likes": 0, + "downloads": 1218, + "filesize": 3063446, + "upload_date": "2020-09-18T18:06:47Z", + "modify_date": "2020-09-18T20:05:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Porcelain_Teapot_White/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:06:27Z", + "updatedAt": "2024-04-03T08:25:51Z", + "name": "Threshold_Porcelain_Spoon_Rest_White", + "owner": "GoogleResearch", + "description": "Threshold Porcelain Spoon Rest, White", + "likes": 0, + "downloads": 1252, + "filesize": 3293790, + "upload_date": "2020-09-18T18:06:24Z", + "modify_date": "2020-09-18T20:05:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Porcelain_Spoon_Rest_White/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-18T18:06:21Z", + "updatedAt": "2024-04-03T08:25:47Z", + "name": "Threshold_Porcelain_Serving_Bowl_Coupe_White", + "owner": "GoogleResearch", + "description": "Threshold Porcelain Serving Bowl, Coupe, White", + "likes": 0, + "downloads": 1177, + "filesize": 3324041, + "upload_date": "2020-09-18T18:06:19Z", + "modify_date": "2020-09-18T20:05:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Porcelain_Serving_Bowl_Coupe_White/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:05:56Z", + "updatedAt": "2024-04-03T10:08:57Z", + "name": "Threshold_Porcelain_Pitcher_White", + "owner": "GoogleResearch", + "description": "Threshold Porcelain Pitcher, White", + "likes": 0, + "downloads": 1072, + "filesize": 2595281, + "upload_date": "2020-09-18T18:05:53Z", + "modify_date": "2020-09-18T20:05:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Porcelain_Pitcher_White/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:05:51Z", + "updatedAt": "2024-04-03T09:27:56Z", + "name": "Threshold_Porcelain_Coffee_Mug_All_Over_Bead_White", + "owner": "GoogleResearch", + "description": "Threshold Porcelain Coffee Mug, All Over Bead, White", + "likes": 0, + "downloads": 1233, + "filesize": 3048630, + "upload_date": "2020-09-18T18:05:48Z", + "modify_date": "2020-09-18T20:05:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Porcelain_Coffee_Mug_All_Over_Bead_White/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:05:46Z", + "updatedAt": "2024-04-03T08:25:36Z", + "name": "Threshold_Performance_Bath_Sheet_Sandoval_Blue_33_x_63", + "owner": "GoogleResearch", + "description": "Threshold Performance Bath Sheet, Sandoval Blue, 33\" x 63\"", + "likes": 0, + "downloads": 1238, + "filesize": 18443717, + "upload_date": "2020-09-18T18:05:41Z", + "modify_date": "2020-09-18T20:05:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Performance_Bath_Sheet_Sandoval_Blue_33_x_63/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:05:37Z", + "updatedAt": "2024-04-03T09:27:48Z", + "name": "Threshold_Hand_Towel_Blue_Medallion_16_x_27", + "owner": "GoogleResearch", + "description": "Threshold Hand Towel, Blue Medallion, 16\" x 27\"", + "likes": 0, + "downloads": 1135, + "filesize": 7786840, + "upload_date": "2020-09-18T18:05:34Z", + "modify_date": "2020-09-18T20:05:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Hand_Towel_Blue_Medallion_16_x_27/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:05:01Z", + "updatedAt": "2024-04-03T09:27:42Z", + "name": "Threshold_Dinner_Plate_Square_Rim_White_Porcelain", + "owner": "GoogleResearch", + "description": "Threshold Dinner Plate, Square Rim, White, Porcelain", + "likes": 0, + "downloads": 1107, + "filesize": 3476449, + "upload_date": "2020-09-18T18:04:59Z", + "modify_date": "2020-09-18T20:05:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Dinner_Plate_Square_Rim_White_Porcelain/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:04:55Z", + "updatedAt": "2024-04-03T09:27:36Z", + "name": "Threshold_Bistro_Ceramic_Dinner_Plate_Ruby_Ring", + "owner": "GoogleResearch", + "description": "Threshold Bistro Ceramic Dinner Plate, Ruby Ring", + "likes": 0, + "downloads": 1140, + "filesize": 4528775, + "upload_date": "2020-09-18T18:04:53Z", + "modify_date": "2020-09-18T20:05:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Bistro_Ceramic_Dinner_Plate_Ruby_Ring/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:04:51Z", + "updatedAt": "2024-04-03T09:27:31Z", + "name": "Threshold_Bead_Cereal_Bowl_White", + "owner": "GoogleResearch", + "description": "Threshold Bead Cereal Bowl, White", + "likes": 0, + "downloads": 1192, + "filesize": 4207853, + "upload_date": "2020-09-18T18:04:48Z", + "modify_date": "2020-09-18T20:05:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Bead_Cereal_Bowl_White/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T18:04:46Z", + "updatedAt": "2024-04-03T07:46:39Z", + "name": "Threshold_Basket_Natural_Finish_Fabric_Liner_Small", + "owner": "GoogleResearch", + "description": "Threshold Basket, Natural Finish, Fabric Liner, Small", + "likes": 0, + "downloads": 1094, + "filesize": 9002495, + "upload_date": "2020-09-18T18:04:42Z", + "modify_date": "2020-09-18T20:05:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Basket_Natural_Finish_Fabric_Liner_Small/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:04:39Z", + "updatedAt": "2024-04-03T07:46:34Z", + "name": "Threshold_Bamboo_Ceramic_Soap_Dish", + "owner": "GoogleResearch", + "description": "Threshold Bamboo Ceramic Soap Dish", + "likes": 0, + "downloads": 964, + "filesize": 5617617, + "upload_date": "2020-09-18T18:04:36Z", + "modify_date": "2020-09-18T20:05:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Threshold_Bamboo_Ceramic_Soap_Dish/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:04:33Z", + "updatedAt": "2024-04-03T10:21:32Z", + "name": "Target_Basket_Medium", + "owner": "GoogleResearch", + "description": "Target Basket, Medium", + "likes": 1, + "downloads": 1114, + "filesize": 10758831, + "upload_date": "2020-09-18T18:04:29Z", + "modify_date": "2020-09-18T20:05:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Target_Basket_Medium/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T18:04:26Z", + "updatedAt": "2024-04-03T09:27:21Z", + "name": "Tag_Dishtowel_Waffle_Gray_Checks_18_x_26", + "owner": "GoogleResearch", + "description": "Tag Dishtowel, Waffle Gray Checks, 18\" x 26\"", + "likes": 0, + "downloads": 1298, + "filesize": 13886358, + "upload_date": "2020-09-18T18:04:22Z", + "modify_date": "2020-09-18T20:05:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tag_Dishtowel_Waffle_Gray_Checks_18_x_26/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:03:38Z", + "updatedAt": "2024-04-03T09:27:12Z", + "name": "Tag_Dishtowel_Green", + "owner": "GoogleResearch", + "description": "Tag Dishtowel, Green", + "likes": 0, + "downloads": 1353, + "filesize": 13572173, + "upload_date": "2020-09-18T18:03:34Z", + "modify_date": "2020-09-18T20:05:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tag_Dishtowel_Green/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:03:31Z", + "updatedAt": "2024-04-03T10:25:00Z", + "name": "Tag_Dishtowel_Dobby_Stripe_Blue_18_x_26", + "owner": "GoogleResearch", + "description": "Tag Dishtowel, Dobby Stripe Blue, 18' x 26\"", + "likes": 0, + "downloads": 1009, + "filesize": 15316914, + "upload_date": "2020-09-18T18:03:26Z", + "modify_date": "2020-09-18T20:05:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tag_Dishtowel_Dobby_Stripe_Blue_18_x_26/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:03:23Z", + "updatedAt": "2024-04-03T10:08:46Z", + "name": "Tag_Dishtowel_Basket_Weave_Red_18_x_26", + "owner": "GoogleResearch", + "description": "Tag Dishtowel, Basket Weave Red, 18\" x 26\"", + "likes": 0, + "downloads": 959, + "filesize": 10395019, + "upload_date": "2020-09-18T18:03:18Z", + "modify_date": "2020-09-18T20:05:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tag_Dishtowel_Basket_Weave_Red_18_x_26/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:03:16Z", + "updatedAt": "2024-04-03T10:24:52Z", + "name": "Tag_Dishtowel_18_x_26", + "owner": "GoogleResearch", + "description": "Tag Dishtowel, 18\" x 26\"", + "likes": 0, + "downloads": 1006, + "filesize": 14710185, + "upload_date": "2020-09-18T18:03:11Z", + "modify_date": "2020-09-18T20:05:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tag_Dishtowel_18_x_26/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:03:09Z", + "updatedAt": "2024-04-03T10:21:25Z", + "name": "TWIST_SHAPE", + "owner": "GoogleResearch", + "description": "TWIST & SHAPE\nFeature as two-sided curved base which easy to flip over! Set included 4 different blocks which can be twisted to new shapes and match the shapes on the base.", + "likes": 1, + "downloads": 958, + "filesize": 9750504, + "upload_date": "2020-09-18T18:03:05Z", + "modify_date": "2020-09-18T20:05:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TWIST_SHAPE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T18:02:37Z", + "updatedAt": "2024-04-03T07:46:19Z", + "name": "TWISTED_PUZZLE_twb4AyFtu8Q", + "owner": "GoogleResearch", + "description": "TWISTED PUZZLE\nTwisted and turn the blocks to complete the patterns on the guide. Go wild and create your own designs.", + "likes": 0, + "downloads": 916, + "filesize": 8222426, + "upload_date": "2020-09-18T18:02:32Z", + "modify_date": "2020-09-18T20:05:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TWISTED_PUZZLE_twb4AyFtu8Q/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T18:02:28Z", + "updatedAt": "2024-04-03T10:08:37Z", + "name": "TWISTED_PUZZLE", + "owner": "GoogleResearch", + "description": "TWISTED PUZZLE\nTwisted and turn the blocks to complete the patterns on the guide. Go wild and create your own designs.", + "likes": 0, + "downloads": 1094, + "filesize": 12381766, + "upload_date": "2020-09-18T18:02:23Z", + "modify_date": "2020-09-18T20:05:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TWISTED_PUZZLE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T18:01:55Z", + "updatedAt": "2024-04-03T08:54:59Z", + "name": "TEA_SET", + "owner": "GoogleResearch", + "description": "TEA SET\nHave tea-time with friends. Includes two place settings - teapot, sugar bowl, milk pitcher, 2 tea cups, 2 saucers, 2 tea spoons, ?2 tea bags, and 2 cubes of sugar.", + "likes": 0, + "downloads": 1207, + "filesize": 8963953, + "upload_date": "2020-09-18T18:01:50Z", + "modify_date": "2020-09-18T20:05:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TEA_SET/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T18:01:48Z", + "updatedAt": "2024-04-03T10:08:28Z", + "name": "TABLEWARE_SET_5ww1UFLuCJG", + "owner": "GoogleResearch", + "description": "TABLEWARE SET\nThe set includes 2 plates, 2 bowls, 2 knives, 2 spoons, and 2 forks.", + "likes": 0, + "downloads": 991, + "filesize": 7377317, + "upload_date": "2020-09-18T18:01:44Z", + "modify_date": "2020-09-18T20:05:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TABLEWARE_SET_5ww1UFLuCJG/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T18:01:42Z", + "updatedAt": "2024-04-03T09:26:59Z", + "name": "TABLEWARE_SET_5CHkPjjxVpp", + "owner": "GoogleResearch", + "description": "TABLEWARE SET\nSet the table with this colorful kid-sized tableware. Includes two place settings - 2 plates, 2 bowls, 2 cups, 2 forks, 2 knives, and 2 spoons.", + "likes": 0, + "downloads": 1149, + "filesize": 9763542, + "upload_date": "2020-09-18T18:01:38Z", + "modify_date": "2020-09-18T20:05:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TABLEWARE_SET_5CHkPjjxVpp/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T18:01:36Z", + "updatedAt": "2024-04-03T10:08:22Z", + "name": "TABLEWARE_SET", + "owner": "GoogleResearch", + "description": "TABLEWARE SET\nThe set includes 2 plates, 2 bowls, 2 knives, 2 spoons, and 2 forks.", + "likes": 0, + "downloads": 985, + "filesize": 6427335, + "upload_date": "2020-09-18T18:01:32Z", + "modify_date": "2020-09-18T20:05:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TABLEWARE_SET/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T18:01:30Z", + "updatedAt": "2024-04-03T10:08:16Z", + "name": "Sushi_Mat", + "owner": "GoogleResearch", + "description": "Sushi Mat", + "likes": 0, + "downloads": 970, + "filesize": 6092981, + "upload_date": "2020-09-18T18:01:27Z", + "modify_date": "2020-09-18T20:05:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sushi_Mat/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:01:24Z", + "updatedAt": "2024-04-03T08:54:55Z", + "name": "Sterilite_Caddy_Blue_Sky_17_58_x_12_58_x_9_14", + "owner": "GoogleResearch", + "description": "Sterilite Caddy, Blue Sky, 17 5/8\" x 12 5/8\" x 9 1/4\"", + "likes": 0, + "downloads": 1106, + "filesize": 3507598, + "upload_date": "2020-09-18T18:01:21Z", + "modify_date": "2020-09-18T20:05:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sterilite_Caddy_Blue_Sky_17_58_x_12_58_x_9_14/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:00:58Z", + "updatedAt": "2024-04-03T18:57:49Z", + "name": "Squirrel", + "owner": "GoogleResearch", + "description": "Squirrel\nSquirrel", + "likes": 1, + "downloads": 1238, + "filesize": 8119859, + "upload_date": "2020-09-18T18:00:54Z", + "modify_date": "2020-09-18T20:05:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Squirrel/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:00:51Z", + "updatedAt": "2024-04-03T08:54:50Z", + "name": "Spritz_Easter_Basket_Plastic_Teal", + "owner": "GoogleResearch", + "description": "Spritz Easter Basket, Plastic, Teal", + "likes": 0, + "downloads": 1026, + "filesize": 3227912, + "upload_date": "2020-09-18T18:00:47Z", + "modify_date": "2020-09-18T20:05:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Spritz_Easter_Basket_Plastic_Teal/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:00:45Z", + "updatedAt": "2024-04-03T19:02:51Z", + "name": "Sootheze_Toasty_Orca", + "owner": "GoogleResearch", + "description": "Sootheze Toasty Orca", + "likes": 0, + "downloads": 1049, + "filesize": 7088898, + "upload_date": "2020-09-18T18:00:42Z", + "modify_date": "2020-09-18T20:05:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sootheze_Toasty_Orca/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Stuffed Toys" + ] + }, + { + "createdAt": "2020-09-18T18:00:39Z", + "updatedAt": "2024-04-04T05:37:06Z", + "name": "Sootheze_Cold_Therapy_Elephant", + "owner": "GoogleResearch", + "description": "Sootheze Cold Therapy, Elephant", + "likes": 0, + "downloads": 1113, + "filesize": 11930235, + "upload_date": "2020-09-18T18:00:30Z", + "modify_date": "2020-09-18T20:05:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sootheze_Cold_Therapy_Elephant/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Stuffed Toys" + ] + }, + { + "createdAt": "2020-09-18T18:00:27Z", + "updatedAt": "2024-04-03T19:02:56Z", + "name": "Sonny_School_Bus", + "owner": "GoogleResearch", + "description": "Sonny School Bus", + "likes": 1, + "downloads": 1076, + "filesize": 6955020, + "upload_date": "2020-09-18T18:00:24Z", + "modify_date": "2020-09-18T20:05:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sonny_School_Bus/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T18:00:20Z", + "updatedAt": "2024-04-03T10:08:00Z", + "name": "Smith_Hawken_Woven_BasketTray_Organizer_with_3_Compartments_95_x_9_x_13", + "owner": "GoogleResearch", + "description": "Smith & Hawken Woven Basket,Tray Organizer with 3 Compartments, 9.5\" x 9' x 13\"", + "likes": 0, + "downloads": 1073, + "filesize": 11172770, + "upload_date": "2020-09-18T18:00:13Z", + "modify_date": "2020-09-18T20:05:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Smith_Hawken_Woven_BasketTray_Organizer_with_3_Compartments_95_x_9_x_13/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:59:56Z", + "updatedAt": "2024-04-03T10:07:55Z", + "name": "Shurtape_Tape_Purple_CP28", + "owner": "GoogleResearch", + "description": "Shurtape Tape, Purple, CP28", + "likes": 0, + "downloads": 966, + "filesize": 4317857, + "upload_date": "2020-09-18T17:59:53Z", + "modify_date": "2020-09-18T20:05:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Shurtape_Tape_Purple_CP28/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:59:50Z", + "updatedAt": "2024-04-03T06:48:49Z", + "name": "Shurtape_Gaffers_Tape_Silver_2_x_60_yd", + "owner": "GoogleResearch", + "description": "Shurtape Gaffers Tape, Silver, 2\" x 60 yd", + "likes": 0, + "downloads": 1049, + "filesize": 4421834, + "upload_date": "2020-09-18T17:59:47Z", + "modify_date": "2020-09-18T20:05:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Shurtape_Gaffers_Tape_Silver_2_x_60_yd/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:59:45Z", + "updatedAt": "2024-04-03T10:07:50Z", + "name": "Shurtape_30_Day_Removal_UV_Delct_15", + "owner": "GoogleResearch", + "description": "Shurtape 30 Day Removal UV Delct, 1.5\"", + "likes": 0, + "downloads": 933, + "filesize": 6612471, + "upload_date": "2020-09-18T17:59:42Z", + "modify_date": "2020-09-18T20:05:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Shurtape_30_Day_Removal_UV_Delct_15/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:59:15Z", + "updatedAt": "2024-04-03T10:21:18Z", + "name": "Shaxon_100_Molded_Category_6_RJ45RJ45_Shielded_Patch_Cord_White", + "owner": "GoogleResearch", + "description": "Shaxon 100' Molded Category 6 RJ45/RJ45 Shielded Patch Cord, White", + "likes": 0, + "downloads": 963, + "filesize": 5457871, + "upload_date": "2020-09-18T17:59:12Z", + "modify_date": "2020-09-18T20:05:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Shaxon_100_Molded_Category_6_RJ45RJ45_Shielded_Patch_Cord_White/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:59:09Z", + "updatedAt": "2024-04-03T10:21:12Z", + "name": "Shark", + "owner": "GoogleResearch", + "description": "Shark\nShark", + "likes": 0, + "downloads": 1111, + "filesize": 5442936, + "upload_date": "2020-09-18T17:59:07Z", + "modify_date": "2020-09-18T20:05:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Shark/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:59:04Z", + "updatedAt": "2024-04-03T08:25:28Z", + "name": "Sea_to_Summit_Xl_Bowl", + "owner": "GoogleResearch", + "description": "Sea to Summit Xl Bowl", + "likes": 0, + "downloads": 1044, + "filesize": 4449952, + "upload_date": "2020-09-18T17:59:01Z", + "modify_date": "2020-09-18T20:05:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sea_to_Summit_Xl_Bowl/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:58:59Z", + "updatedAt": "2024-04-03T07:46:05Z", + "name": "Schleich_Therizinosaurus_ln9cruulPqc", + "owner": "GoogleResearch", + "description": "Schleich Therizinosaurus", + "likes": 0, + "downloads": 1073, + "filesize": 10860645, + "upload_date": "2020-09-18T17:58:55Z", + "modify_date": "2020-09-18T20:05:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Schleich_Therizinosaurus_ln9cruulPqc/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:58:39Z", + "updatedAt": "2024-04-03T10:21:02Z", + "name": "Schleich_Spinosaurus_Action_Figure", + "owner": "GoogleResearch", + "description": "Schleich Spinosaurus Action Figure", + "likes": 0, + "downloads": 1130, + "filesize": 10941607, + "upload_date": "2020-09-18T17:58:35Z", + "modify_date": "2020-09-18T20:05:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Schleich_Spinosaurus_Action_Figure/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-18T17:58:32Z", + "updatedAt": "2024-04-03T09:43:14Z", + "name": "Schleich_S_Bayala_Unicorn_70432", + "owner": "GoogleResearch", + "description": "Schleich S Bayala Unicorn, 70432", + "likes": 0, + "downloads": 1256, + "filesize": 7537583, + "upload_date": "2020-09-18T17:58:29Z", + "modify_date": "2020-09-18T20:05:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Schleich_S_Bayala_Unicorn_70432/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:58:27Z", + "updatedAt": "2024-04-03T09:56:04Z", + "name": "Schleich_Lion_Action_Figure", + "owner": "GoogleResearch", + "description": "Schleich Lion Action Figure", + "likes": 1, + "downloads": 1081, + "filesize": 9633109, + "upload_date": "2020-09-18T17:58:23Z", + "modify_date": "2020-09-18T20:05:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Schleich_Lion_Action_Figure/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-18T17:58:07Z", + "updatedAt": "2024-04-03T10:20:53Z", + "name": "Schleich_Hereford_Bull", + "owner": "GoogleResearch", + "description": "Schleich Hereford Bull", + "likes": 0, + "downloads": 1047, + "filesize": 7794022, + "upload_date": "2020-09-18T17:58:03Z", + "modify_date": "2020-09-18T20:05:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Schleich_Hereford_Bull/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:58:01Z", + "updatedAt": "2024-04-03T10:20:46Z", + "name": "Schleich_Bald_Eagle", + "owner": "GoogleResearch", + "description": "Schleich Bald Eagle", + "likes": 0, + "downloads": 978, + "filesize": 10175126, + "upload_date": "2020-09-18T17:57:57Z", + "modify_date": "2020-09-18T20:05:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Schleich_Bald_Eagle/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:57:54Z", + "updatedAt": "2024-04-03T09:55:59Z", + "name": "Schleich_Allosaurus", + "owner": "GoogleResearch", + "description": "Schleich Allosaurus", + "likes": 0, + "downloads": 1115, + "filesize": 9827110, + "upload_date": "2020-09-18T17:57:51Z", + "modify_date": "2020-09-18T20:05:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Schleich_Allosaurus/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:57:41Z", + "updatedAt": "2024-04-03T08:54:42Z", + "name": "Schleich_African_Black_Rhino", + "owner": "GoogleResearch", + "description": "Schleich African Black Rhino", + "likes": 0, + "downloads": 1290, + "filesize": 8794386, + "upload_date": "2020-09-18T17:57:37Z", + "modify_date": "2020-09-18T20:05:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Schleich_African_Black_Rhino/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:57:35Z", + "updatedAt": "2024-04-03T09:26:37Z", + "name": "Sapota_Threshold_4_Ceramic_Round_Planter_Red", + "owner": "GoogleResearch", + "description": "Sapota Threshold 4\" Ceramic Round Planter Red", + "likes": 0, + "downloads": 1015, + "filesize": 4961105, + "upload_date": "2020-09-18T17:57:32Z", + "modify_date": "2020-09-18T20:05:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sapota_Threshold_4_Ceramic_Round_Planter_Red/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:57:30Z", + "updatedAt": "2024-04-03T09:26:29Z", + "name": "STEAK_SET", + "owner": "GoogleResearch", + "description": "STEAK SET\nIncludes 1 plate, 1 fork, 1 knife, 1 steak, 1 roll, 1 piece of corn, and 2 slices of onion and mushrooms.", + "likes": 0, + "downloads": 1067, + "filesize": 9386171, + "upload_date": "2020-09-18T17:57:26Z", + "modify_date": "2020-09-18T20:05:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/STEAK_SET/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:57:18Z", + "updatedAt": "2024-04-03T10:20:39Z", + "name": "STACKING_RING", + "owner": "GoogleResearch", + "description": "STACKING RING\nThe wooden ring set teaches children about sizes and colours. As a safety precaution the central rods is collapsible.", + "likes": 0, + "downloads": 1003, + "filesize": 6587144, + "upload_date": "2020-09-18T17:57:15Z", + "modify_date": "2020-09-18T20:05:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/STACKING_RING/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:57:12Z", + "updatedAt": "2024-04-03T10:20:32Z", + "name": "STACKING_BEAR_V04KKgGBn2A", + "owner": "GoogleResearch", + "description": "STACKING BEAR\nBuild the colorful bear by stacking and matching ?the blocks with the corresponding grooves.", + "likes": 0, + "downloads": 916, + "filesize": 10040510, + "upload_date": "2020-09-18T17:57:09Z", + "modify_date": "2020-09-18T20:05:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/STACKING_BEAR_V04KKgGBn2A/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:57:06Z", + "updatedAt": "2024-04-03T08:54:33Z", + "name": "STACKING_BEAR", + "owner": "GoogleResearch", + "description": "STACKING BEAR\nBuild the colorful bear by stacking and matching ?the blocks with the corresponding grooves.", + "likes": 0, + "downloads": 1181, + "filesize": 9824874, + "upload_date": "2020-09-18T17:57:03Z", + "modify_date": "2020-09-18T20:05:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/STACKING_BEAR/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:57:00Z", + "updatedAt": "2024-04-03T19:03:02Z", + "name": "SORTING_TRAIN", + "owner": "GoogleResearch", + "description": "SORTING TRAIN\nShape and sort features enable this set to form a train which can be used as a pull toy.", + "likes": 0, + "downloads": 952, + "filesize": 8487739, + "upload_date": "2020-09-18T17:56:57Z", + "modify_date": "2020-09-18T20:05:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SORTING_TRAIN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:56:49Z", + "updatedAt": "2024-04-03T10:24:38Z", + "name": "SORTING_BUS", + "owner": "GoogleResearch", + "description": "SORTING BUS\nThe shape sorting bus contains shapes that when sorted correctly will fit into the bus. Pull the sign on the bus and all the pieces will slide out.", + "likes": 0, + "downloads": 925, + "filesize": 7836836, + "upload_date": "2020-09-18T17:56:45Z", + "modify_date": "2020-09-18T20:05:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SORTING_BUS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:56:43Z", + "updatedAt": "2024-04-03T08:54:24Z", + "name": "SHAPE_SORTER", + "owner": "GoogleResearch", + "description": "SHAPE SORTER\nLearn about geometry, fraction and shapes while matching and building the different shapes on the curved two-sided base.", + "likes": 0, + "downloads": 1014, + "filesize": 10318505, + "upload_date": "2020-09-18T17:56:39Z", + "modify_date": "2020-09-18T20:05:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SHAPE_SORTER/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:56:37Z", + "updatedAt": "2024-04-03T09:55:54Z", + "name": "SHAPE_MATCHING_NxacpAY9jDt", + "owner": "GoogleResearch", + "description": "SHAPE MATCHING\nSet included 8 different puzzles blocks with two-sided curved base. Matching the corresponding halves and places the complete shape on the board. Good for differentiating colors, shapes, and forms. Curved base for easy flip over.", + "likes": 0, + "downloads": 924, + "filesize": 9055391, + "upload_date": "2020-09-18T17:56:33Z", + "modify_date": "2020-09-18T20:05:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SHAPE_MATCHING_NxacpAY9jDt/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:56:31Z", + "updatedAt": "2024-04-03T09:55:37Z", + "name": "SHAPE_MATCHING", + "owner": "GoogleResearch", + "description": "SHAPE MATCHING\nSet included 8 different puzzles blocks with two-sided curved base. Matching the corresponding halves and places the complete shape on the board. Good for differentiating colors, shapes, and forms. Curved base for easy flip over.", + "likes": 0, + "downloads": 1150, + "filesize": 11071856, + "upload_date": "2020-09-18T17:56:27Z", + "modify_date": "2020-09-18T20:05:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SHAPE_MATCHING/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:56:24Z", + "updatedAt": "2024-04-03T09:26:20Z", + "name": "SAPPHIRE_R7_260X_OC", + "owner": "GoogleResearch", + "description": "SAPPHIRE R7 260X OC\nSAPPHIRE 260X is a near perfect entry level gaming card. Delivering great MOBA performance this card uses 2GB of GDDR5 to deliver solid gaming for a low price.", + "likes": 0, + "downloads": 1269, + "filesize": 14472187, + "upload_date": "2020-09-18T17:56:20Z", + "modify_date": "2020-09-18T20:05:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SAPPHIRE_R7_260X_OC/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:55:47Z", + "updatedAt": "2024-04-03T09:26:11Z", + "name": "SANDWICH_MEAL", + "owner": "GoogleResearch", + "description": "SANDWICH MEAL\nThe set includes 2 slices of bread and onion, 1 plate, 1 banana, and 1 slice of cheese, ham, cucumber, and tomato. Great for pretend and imaginative play.", + "likes": 0, + "downloads": 1035, + "filesize": 8869575, + "upload_date": "2020-09-18T17:55:44Z", + "modify_date": "2020-09-18T20:05:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SANDWICH_MEAL/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:55:28Z", + "updatedAt": "2024-04-03T10:20:26Z", + "name": "Rubbermaid_Large_Drainer", + "owner": "GoogleResearch", + "description": "Rubbermaid Large Drainer", + "likes": 0, + "downloads": 940, + "filesize": 6468895, + "upload_date": "2020-09-18T17:55:25Z", + "modify_date": "2020-09-18T20:05:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Rubbermaid_Large_Drainer/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:55:23Z", + "updatedAt": "2024-04-03T10:24:34Z", + "name": "Room_Essentials_Salad_Plate_Turquoise", + "owner": "GoogleResearch", + "description": "Room Essentials Salad Plate, Turquoise", + "likes": 0, + "downloads": 987, + "filesize": 3652514, + "upload_date": "2020-09-18T17:55:18Z", + "modify_date": "2020-09-18T20:05:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Room_Essentials_Salad_Plate_Turquoise/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:55:16Z", + "updatedAt": "2024-04-03T08:54:18Z", + "name": "Room_Essentials_Mug_White_Yellow", + "owner": "GoogleResearch", + "description": "Room Essentials Mug, White/ Yellow", + "likes": 1, + "downloads": 1193, + "filesize": 4658945, + "upload_date": "2020-09-18T17:55:13Z", + "modify_date": "2020-09-18T20:05:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Room_Essentials_Mug_White_Yellow/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:55:08Z", + "updatedAt": "2024-04-03T08:25:21Z", + "name": "Room_Essentials_Kitchen_Towels_16_x_26_2_count", + "owner": "GoogleResearch", + "description": "Room Essentials Kitchen Towels, 16\" x 26\" - 2 count", + "likes": 0, + "downloads": 1137, + "filesize": 12091290, + "upload_date": "2020-09-18T17:55:04Z", + "modify_date": "2020-09-18T20:05:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Room_Essentials_Kitchen_Towels_16_x_26_2_count/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:54:51Z", + "updatedAt": "2024-04-03T08:25:04Z", + "name": "Room_Essentials_Fabric_Cube_Lavender", + "owner": "GoogleResearch", + "description": "Room Essentials Fabric Cube - Lavender", + "likes": 0, + "downloads": 1197, + "filesize": 13322881, + "upload_date": "2020-09-18T17:54:47Z", + "modify_date": "2020-09-18T20:05:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Room_Essentials_Fabric_Cube_Lavender/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:54:44Z", + "updatedAt": "2024-04-03T10:24:28Z", + "name": "Room_Essentials_Dish_Drainer_Collapsible_White", + "owner": "GoogleResearch", + "description": "Room Essentials Dish Drainer, Collapsible, White", + "likes": 0, + "downloads": 904, + "filesize": 6185585, + "upload_date": "2020-09-18T17:54:41Z", + "modify_date": "2020-09-18T20:05:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Room_Essentials_Dish_Drainer_Collapsible_White/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:54:38Z", + "updatedAt": "2024-04-03T09:55:31Z", + "name": "Room_Essentials_Bowl_Turquiose", + "owner": "GoogleResearch", + "description": "Room Essentials Bowl, Turquiose", + "likes": 0, + "downloads": 1013, + "filesize": 4089776, + "upload_date": "2020-09-18T17:54:36Z", + "modify_date": "2020-09-18T20:05:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Room_Essentials_Bowl_Turquiose/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:54:33Z", + "updatedAt": "2024-04-03T09:26:02Z", + "name": "Rexy_Glove_Heavy_Duty_Large", + "owner": "GoogleResearch", + "description": "Rexy Glove Heavy Duty, Large", + "likes": 0, + "downloads": 1085, + "filesize": 11224557, + "upload_date": "2020-09-18T17:54:29Z", + "modify_date": "2020-09-18T20:05:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Rexy_Glove_Heavy_Duty_Large/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:54:27Z", + "updatedAt": "2024-04-03T08:24:54Z", + "name": "Rexy_Glove_Heavy_Duty_Gloves_Medium", + "owner": "GoogleResearch", + "description": "Rexy Glove Heavy Duty Gloves, Medium", + "likes": 0, + "downloads": 1112, + "filesize": 8019799, + "upload_date": "2020-09-18T17:54:24Z", + "modify_date": "2020-09-18T20:05:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Rexy_Glove_Heavy_Duty_Gloves_Medium/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:54:21Z", + "updatedAt": "2024-04-03T10:24:20Z", + "name": "Retail_Leadership_Summit_tQFCizMt6g0", + "owner": "GoogleResearch", + "description": "Retail Leadership Summit\nRetail Leadership Summit", + "likes": 0, + "downloads": 926, + "filesize": 8503491, + "upload_date": "2020-09-18T17:54:18Z", + "modify_date": "2020-09-18T20:05:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Retail_Leadership_Summit_tQFCizMt6g0/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:54:15Z", + "updatedAt": "2024-04-03T08:24:49Z", + "name": "Retail_Leadership_Summit_eCT3zqHYIkX", + "owner": "GoogleResearch", + "description": "Retail Leadership Summit\nRetail Leadership Summit", + "likes": 0, + "downloads": 1243, + "filesize": 11702757, + "upload_date": "2020-09-18T17:54:11Z", + "modify_date": "2020-09-18T20:05:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Retail_Leadership_Summit_eCT3zqHYIkX/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:54:08Z", + "updatedAt": "2024-04-03T08:24:42Z", + "name": "Retail_Leadership_Summit", + "owner": "GoogleResearch", + "description": "Retail Leadership Summit\nRetail Leadership Summit", + "likes": 0, + "downloads": 1190, + "filesize": 11710697, + "upload_date": "2020-09-18T17:54:05Z", + "modify_date": "2020-09-18T20:05:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Retail_Leadership_Summit/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:54:01Z", + "updatedAt": "2024-04-03T08:54:10Z", + "name": "Remington_TStudio_Hair_Dryer", + "owner": "GoogleResearch", + "description": "Remington T/Studio Hair Dryer", + "likes": 0, + "downloads": 1037, + "filesize": 6740668, + "upload_date": "2020-09-18T17:53:57Z", + "modify_date": "2020-09-18T20:05:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Remington_TStudio_Hair_Dryer/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:53:49Z", + "updatedAt": "2024-04-03T08:24:35Z", + "name": "Reef_Star_Cushion_Flipflops_Size_8_Black", + "owner": "GoogleResearch", + "description": "Reef Star Cushion Flipflops, Size 8, Black", + "likes": 0, + "downloads": 1058, + "filesize": 5103592, + "upload_date": "2020-09-18T17:53:46Z", + "modify_date": "2020-09-18T20:05:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reef_Star_Cushion_Flipflops_Size_8_Black/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-18T17:53:39Z", + "updatedAt": "2024-04-03T10:20:19Z", + "name": "Razer_Taipan_White_Ambidextrous_Gaming_Mouse", + "owner": "GoogleResearch", + "description": "Razer Taipan White - Ambidextrous Gaming Mouse\nThe Razer Taipan offers 9 Hyperesponse buttons and is ergonomically designed for both right and left handed users. The 8200dpi 4G laser sensor also offers exceptional tracking precision with zero interpolation for high-performance wired gameplay.", + "likes": 1, + "downloads": 942, + "filesize": 5654748, + "upload_date": "2020-09-18T17:53:36Z", + "modify_date": "2020-09-18T20:05:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Razer_Taipan_White_Ambidextrous_Gaming_Mouse/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Mouse" + ] + }, + { + "createdAt": "2020-09-18T17:53:33Z", + "updatedAt": "2024-04-03T09:25:55Z", + "name": "Razer_Taipan_Black_Ambidextrous_Gaming_Mouse", + "owner": "GoogleResearch", + "description": "Razer Taipan Black - Ambidextrous Gaming Mouse\nThe Razer Taipan offers 9 Hyperesponse buttons and is ergonomically designed for both right and left handed users. The 8200dpi 4G laser sensor also offers exceptional tracking precision with zero interpolation for high-performance wired gameplay.", + "likes": 0, + "downloads": 994, + "filesize": 5957654, + "upload_date": "2020-09-18T17:53:30Z", + "modify_date": "2020-09-18T20:05:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Razer_Taipan_Black_Ambidextrous_Gaming_Mouse/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Mouse" + ] + }, + { + "createdAt": "2020-09-18T17:53:28Z", + "updatedAt": "2024-04-03T08:54:05Z", + "name": "Razer_Naga_MMO_Gaming_Mouse", + "owner": "GoogleResearch", + "description": "Razer Naga - MMO Gaming Mouse\nThe Razer Naga MMO gaming mouse comes with 12 mechanical thumb-grid buttons for faster in-game actuations and assured tactile feedback. The improved button design also allows for blind-find so you stay focused on the game, letting your instincts lead you to victory. The all-new Razer Naga comes with refined ergonomics for a comfortable feel in hand, while an intuitive in-game overlay support can be activated via RazerSynapse.", + "likes": 0, + "downloads": 1056, + "filesize": 4989112, + "upload_date": "2020-09-18T17:53:25Z", + "modify_date": "2020-09-18T20:05:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Razer_Naga_MMO_Gaming_Mouse/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Mouse" + ] + }, + { + "createdAt": "2020-09-18T17:53:11Z", + "updatedAt": "2024-04-03T08:24:29Z", + "name": "Razer_Kraken_Pro_headset_Full_size_Black", + "owner": "GoogleResearch", + "description": "Razer Kraken Pro - headset - Full size- Black\nThe Razer Kraken Pro gaming headset can extend gaming sessions as well as for unparalleled comfort on the go. The Razer Kraken Pro's large neodymium magnet drivers are tuned for clear high- and mid-ranges as well as deep bass for powerful lows. A closed ear cup deign with plush circumlunar padding creates superior sound isolation so you can focus on your game or conversation uninterrupted by outside noise.", + "likes": 1, + "downloads": 1112, + "filesize": 4031106, + "upload_date": "2020-09-18T17:53:08Z", + "modify_date": "2020-09-18T20:05:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Razer_Kraken_Pro_headset_Full_size_Black/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Headphones" + ] + }, + { + "createdAt": "2020-09-18T17:53:05Z", + "updatedAt": "2024-04-03T09:55:26Z", + "name": "Razer_Kraken_71_Chroma_headset_Full_size_Black", + "owner": "GoogleResearch", + "description": "Razer Kraken 7.1 Chroma - headset - Full size - Black\nGet the complete 7.1 surround sound gaming experience with the Razer Kraken 7.1 Chroma USB gaming headset. This headset adopts the comfortable form factor of the Razer Kraken Pro, tested by numerous professional gamers to determine the optimal ergonomics for extended gaming sessions. - Advanced 7.1 virtual surround sound engine - True-to-life positional audio. The Razer Kraken 7.1 Chroma comes equipped with an advanced 7.1 virtual surround sound engine that immerses you deeper into the game. The engine is capable of ultra-low latency audio processing and modulates the audio source to simulate a 360 surround sound experience that is usually achievable only by incorporating more than one positional driver in each ear cup.", + "likes": 0, + "downloads": 1100, + "filesize": 11360438, + "upload_date": "2020-09-18T17:53:02Z", + "modify_date": "2020-09-18T20:05:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Razer_Kraken_71_Chroma_headset_Full_size_Black/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Headphones" + ] + }, + { + "createdAt": "2020-09-18T17:52:59Z", + "updatedAt": "2024-04-03T09:25:45Z", + "name": "Razer_Goliathus_Control_Edition_Small_Soft_Gaming_Mouse_Mat", + "owner": "GoogleResearch", + "description": "Razer Goliathus Control Edition - Small - Soft Gaming Mouse Mat\nEngineered to exceed the exacting demands of the world's top professional gamers, the highly-adaptable Razer Goliathus Control Edition gaming mouse mat is optimized for all mouse sensitivity settings and sensor types, with a rubber base for secure grip on smooth surfaces.", + "likes": 0, + "downloads": 1072, + "filesize": 16000628, + "upload_date": "2020-09-18T17:52:55Z", + "modify_date": "2020-09-18T20:05:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Razer_Goliathus_Control_Edition_Small_Soft_Gaming_Mouse_Mat/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:52:47Z", + "updatedAt": "2024-04-03T08:53:57Z", + "name": "Razer_Blackwidow_Tournament_Edition_Keyboard", + "owner": "GoogleResearch", + "description": "Razer Blackwidow Tournament Edition Keyboard", + "likes": 0, + "downloads": 1034, + "filesize": 4755360, + "upload_date": "2020-09-18T17:52:44Z", + "modify_date": "2020-09-18T20:05:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Razer_Blackwidow_Tournament_Edition_Keyboard/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Keyboard" + ] + }, + { + "createdAt": "2020-09-18T17:52:39Z", + "updatedAt": "2024-04-03T08:53:50Z", + "name": "Razer_BlackWidow_Ultimate_2014_Mechanical_Gaming_Keyboard", + "owner": "GoogleResearch", + "description": "Razer BlackWidow Ultimate 2014 - Mechanical Gaming Keyboard\nThe Razer BlackWidow features the all-new Razer? Mechanical Switches that have been designed from the ground up with the aim of elevating the speed and responsiveness of the Razer BlackWidow gaming keyboard beyond the capabilities of current-gen mechanical switches. Tested and validated by the world?s top eSports athletes, we have identified the optimal actuation distance and reduced the tolerance for faster commands and greater precision when compared to standard mechanical switches.", + "likes": 0, + "downloads": 1035, + "filesize": 6740270, + "upload_date": "2020-09-18T17:52:35Z", + "modify_date": "2020-09-18T20:05:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Razer_BlackWidow_Ultimate_2014_Mechanical_Gaming_Keyboard/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Keyboard" + ] + }, + { + "createdAt": "2020-09-18T17:52:33Z", + "updatedAt": "2024-04-03T08:24:21Z", + "name": "Razer_BlackWidow_Stealth_2014_Keyboard_07VFzIVabgh", + "owner": "GoogleResearch", + "description": "Razer BlackWidow Stealth 2014 - Keyboard\nThe Razer BlackWidow features the all-new Razer? Mechanical Switches that have been designed from the ground up with the aim of elevating the speed and responsiveness of the Razer BlackWidow gaming keyboard beyond the capabilities of current-gen mechanical switches. Tested and validated by the world?s top eSports athletes, we have identified the optimal actuation distance and reduced the tolerance for faster commands and greater precision when compared to standard mechanical switches.", + "likes": 1, + "downloads": 1099, + "filesize": 7625811, + "upload_date": "2020-09-18T17:52:30Z", + "modify_date": "2020-09-18T20:05:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Razer_BlackWidow_Stealth_2014_Keyboard_07VFzIVabgh/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Keyboard" + ] + }, + { + "createdAt": "2020-09-18T17:52:22Z", + "updatedAt": "2024-04-03T09:55:10Z", + "name": "Razer_Abyssus_Ambidextrous_Gaming_Mouse", + "owner": "GoogleResearch", + "description": "Razer Abyssus - Ambidextrous Gaming Mouse\nThe Razer Abyssus is armed with ultra-responsive buttons tuned for maximum tactile feedback. With an uncompromising 3500 DPI Razer optical sensor at its core, take full control of your every aim with perfect tracking so you outgun your competition.", + "likes": 0, + "downloads": 1008, + "filesize": 6299654, + "upload_date": "2020-09-18T17:52:18Z", + "modify_date": "2020-09-18T20:05:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Razer_Abyssus_Ambidextrous_Gaming_Mouse/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Mouse" + ] + }, + { + "createdAt": "2020-09-18T17:52:16Z", + "updatedAt": "2024-04-03T09:25:36Z", + "name": "Racoon", + "owner": "GoogleResearch", + "description": "Racoon\nRacoon", + "likes": 0, + "downloads": 1311, + "filesize": 10501864, + "upload_date": "2020-09-18T17:52:11Z", + "modify_date": "2020-09-18T20:05:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Racoon/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:52:05Z", + "updatedAt": "2024-04-03T09:25:28Z", + "name": "RJ_Rabbit_Easter_Basket_Blue", + "owner": "GoogleResearch", + "description": "R.J Rabbit Easter Basket, Blue", + "likes": 1, + "downloads": 1035, + "filesize": 7010798, + "upload_date": "2020-09-18T17:52:02Z", + "modify_date": "2020-09-18T20:05:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/RJ_Rabbit_Easter_Basket_Blue/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:51:59Z", + "updatedAt": "2024-04-03T07:15:47Z", + "name": "REEF_ZENFUN", + "owner": "GoogleResearch", + "description": "REEF ZENFUN\nGirl's Sporty sandal. Synthetic upper featuring mesh detailing. Zen garden inspired molded PU foam footbed with anatomical arch support. Durable rubber outsole", + "likes": 1, + "downloads": 1013, + "filesize": 4609665, + "upload_date": "2020-09-18T17:51:57Z", + "modify_date": "2020-09-18T20:05:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/REEF_ZENFUN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-18T17:51:54Z", + "updatedAt": "2024-04-03T10:24:13Z", + "name": "REEF_BRAIDED_CUSHION", + "owner": "GoogleResearch", + "description": "REEF BRAIDED CUSHION\nGirl's Essentials Sandal. Ultra soft, woven strap lined with polyester webbing. Featuring super soft Reef cushion EVA with anatomical arch support. Durable, rubber outsole", + "likes": 0, + "downloads": 914, + "filesize": 5321750, + "upload_date": "2020-09-18T17:51:51Z", + "modify_date": "2020-09-18T20:05:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/REEF_BRAIDED_CUSHION/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-18T17:51:49Z", + "updatedAt": "2024-04-03T09:25:15Z", + "name": "REEF_BANTU", + "owner": "GoogleResearch", + "description": "REEF BANTU\nReef RESRV collection Premium leather full grain upper with distressed and vintage finishes Medial side zipper for fast removal at airport security lines Slammed cup sole construction Molded wax texture cushion insole Removable and washable insole for function and travel EVA compounds for odor management on the insole Reef molded rubber swellular traction out sole Reef die cut leather labels inlay on the out sole Custom dust bag Laced box system", + "likes": 0, + "downloads": 1034, + "filesize": 5704189, + "upload_date": "2020-09-18T17:51:46Z", + "modify_date": "2020-09-18T20:05:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/REEF_BANTU/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-18T17:51:43Z", + "updatedAt": "2024-04-03T08:53:44Z", + "name": "Provence_Bath_Towel_Royal_Blue", + "owner": "GoogleResearch", + "description": "Provence Bath Towel, Royal Blue", + "likes": 1, + "downloads": 1135, + "filesize": 12042649, + "upload_date": "2020-09-18T17:51:39Z", + "modify_date": "2020-09-18T20:05:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Provence_Bath_Towel_Royal_Blue/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:51:36Z", + "updatedAt": "2024-04-03T08:53:40Z", + "name": "Progressive_Rubber_Spatulas_3_count", + "owner": "GoogleResearch", + "description": "Progressive Rubber Spatulas - 3 count", + "likes": 0, + "downloads": 1019, + "filesize": 2178237, + "upload_date": "2020-09-18T17:51:34Z", + "modify_date": "2020-09-18T20:05:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Progressive_Rubber_Spatulas_3_count/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:51:31Z", + "updatedAt": "2024-04-03T09:55:04Z", + "name": "ProSport_Harness_to_Booster_Seat", + "owner": "GoogleResearch", + "description": "ProSport Harness to Booster Seat", + "likes": 0, + "downloads": 932, + "filesize": 8757162, + "upload_date": "2020-09-18T17:51:28Z", + "modify_date": "2020-09-18T20:05:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ProSport_Harness_to_Booster_Seat/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Car Seat" + ] + }, + { + "createdAt": "2020-09-18T17:51:25Z", + "updatedAt": "2024-04-03T09:55:01Z", + "name": "Poppin_File_Sorter_White", + "owner": "GoogleResearch", + "description": "Poppin File Sorter, White", + "likes": 0, + "downloads": 932, + "filesize": 1959430, + "upload_date": "2020-09-18T17:51:23Z", + "modify_date": "2020-09-18T20:05:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Poppin_File_Sorter_White/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:51:21Z", + "updatedAt": "2024-04-03T09:25:07Z", + "name": "Poppin_File_Sorter_Pink", + "owner": "GoogleResearch", + "description": "Poppin File Sorter, Pink", + "likes": 0, + "downloads": 1051, + "filesize": 2118595, + "upload_date": "2020-09-18T17:51:19Z", + "modify_date": "2020-09-18T20:05:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Poppin_File_Sorter_Pink/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:51:14Z", + "updatedAt": "2024-04-03T08:24:16Z", + "name": "Poppin_File_Sorter_Blue", + "owner": "GoogleResearch", + "description": "Poppin File Sorter, Blue", + "likes": 0, + "downloads": 1041, + "filesize": 1924572, + "upload_date": "2020-09-18T17:51:12Z", + "modify_date": "2020-09-18T20:05:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Poppin_File_Sorter_Blue/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:51:10Z", + "updatedAt": "2024-04-03T08:24:11Z", + "name": "Pony_C_Clamp_1440", + "owner": "GoogleResearch", + "description": "Pony C Clamp, 1440", + "likes": 0, + "downloads": 1036, + "filesize": 4905741, + "upload_date": "2020-09-18T17:51:07Z", + "modify_date": "2020-09-18T20:05:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Pony_C_Clamp_1440/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:51:05Z", + "updatedAt": "2024-04-03T08:24:04Z", + "name": "Perricone_MD_Vitamin_C_Ester_Serum", + "owner": "GoogleResearch", + "description": "Perricone MD Vitamin C Ester Serum\nA vitamin c ester serum formulated to diminish the appearance of melasma, age spots, and brown spots.", + "likes": 0, + "downloads": 1018, + "filesize": 8885423, + "upload_date": "2020-09-18T17:51:02Z", + "modify_date": "2020-09-18T20:05:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Vitamin_C_Ester_Serum/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:50:59Z", + "updatedAt": "2024-04-03T09:43:06Z", + "name": "Perricone_MD_Vitamin_C_Ester_15", + "owner": "GoogleResearch", + "description": "Perricone MD Vitamin C Ester 15\nAn anti-aging treatment to address sun damage, loss of firmness, wrinkles, and boost collagen production.", + "likes": 0, + "downloads": 1050, + "filesize": 9837588, + "upload_date": "2020-09-18T17:50:56Z", + "modify_date": "2020-09-18T20:05:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Vitamin_C_Ester_15/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:50:53Z", + "updatedAt": "2024-04-03T08:53:34Z", + "name": "Perricone_MD_The_Power_Treatments", + "owner": "GoogleResearch", + "description": "Perricone MD The Power Treatments\nA collection of Dr. Perricone's most powerful and effective anti-aging treatments.", + "likes": 0, + "downloads": 986, + "filesize": 9724756, + "upload_date": "2020-09-18T17:50:50Z", + "modify_date": "2020-09-18T20:05:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_The_Power_Treatments/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:50:48Z", + "updatedAt": "2024-04-03T09:42:58Z", + "name": "Perricone_MD_The_Metabolic_Formula_Supplements", + "owner": "GoogleResearch", + "description": "Perricone MD The Metabolic Formula Supplements\nA 10-day dietary supplement program to promote healthy weight maintenance.", + "likes": 0, + "downloads": 959, + "filesize": 10180654, + "upload_date": "2020-09-18T17:50:45Z", + "modify_date": "2020-09-18T20:05:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_The_Metabolic_Formula_Supplements/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:50:42Z", + "updatedAt": "2024-04-03T09:42:51Z", + "name": "Perricone_MD_The_Crease_Cure_Duo", + "owner": "GoogleResearch", + "description": "Perricone MD The Crease Cure Duo\nThe perfect duo to combat deep lines, creases and advanced signs of aging. With patent-pending Acyl Glutathione.", + "likes": 0, + "downloads": 960, + "filesize": 8986156, + "upload_date": "2020-09-18T17:50:39Z", + "modify_date": "2020-09-18T20:05:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_The_Crease_Cure_Duo/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:50:36Z", + "updatedAt": "2024-04-03T07:48:36Z", + "name": "Perricone_MD_The_Cold_Plasma_Face_Eyes_Duo", + "owner": "GoogleResearch", + "description": "Perricone MD The Cold Plasma Face & Eyes Duo\nTwo best selling products to treat the 10 most visible signs of aging. With proprietary Cold Plasma delivery system.", + "likes": 0, + "downloads": 974, + "filesize": 11032384, + "upload_date": "2020-09-18T17:50:33Z", + "modify_date": "2020-09-18T20:05:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_The_Cold_Plasma_Face_Eyes_Duo/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:50:30Z", + "updatedAt": "2024-04-03T08:23:58Z", + "name": "Perricone_MD_Super_Berry_Powder_with_Acai_Supplements", + "owner": "GoogleResearch", + "description": "Perricone MD Super Berry Powder with Acai Supplements\nA dietary supplement powder that provides antioxidant protection to help defer the visible signs of aging.", + "likes": 0, + "downloads": 1023, + "filesize": 5820414, + "upload_date": "2020-09-18T17:50:27Z", + "modify_date": "2020-09-18T20:05:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Super_Berry_Powder_with_Acai_Supplements/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:50:24Z", + "updatedAt": "2024-04-03T08:23:49Z", + "name": "Perricone_MD_Skin_Total_Body_Supplements", + "owner": "GoogleResearch", + "description": "Perricone MD Skin & Total Body Supplements\nSkin & Total Body Dietary Supplements are targeted nutritional supplements and an essential part of Dr. Perricone's 3-Tier Approach for a healthy body and beautiful skin.", + "likes": 0, + "downloads": 1032, + "filesize": 9266115, + "upload_date": "2020-09-18T17:50:21Z", + "modify_date": "2020-09-18T20:05:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Skin_Total_Body_Supplements/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:50:19Z", + "updatedAt": "2024-04-03T10:07:44Z", + "name": "Perricone_MD_Skin_Clear_Supplements", + "owner": "GoogleResearch", + "description": "Perricone MD Skin Clear Supplements\nA comprehensive vitamin supplement that works from the inside out to help clear skin and prevent breakouts.", + "likes": 0, + "downloads": 895, + "filesize": 8014823, + "upload_date": "2020-09-18T17:50:16Z", + "modify_date": "2020-09-18T20:05:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Skin_Clear_Supplements/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:50:13Z", + "updatedAt": "2024-04-03T08:23:41Z", + "name": "Perricone_MD_Photo_Plasma", + "owner": "GoogleResearch", + "description": "Perricone MD Photo Plasma\nAn anti-aging moisturizer luxurious in texture, oil-free and with broad spectrum SPF 30.", + "likes": 0, + "downloads": 1064, + "filesize": 10260985, + "upload_date": "2020-09-18T17:50:08Z", + "modify_date": "2020-09-18T20:05:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Photo_Plasma/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:49:59Z", + "updatedAt": "2024-04-03T10:07:36Z", + "name": "Perricone_MD_Omega_3_Supplements", + "owner": "GoogleResearch", + "description": "Perricone MD Omega 3 Supplements\nA dietary supplement that helps elevate mood, regulate weight and support cardiovascular health. 30 day supply.", + "likes": 0, + "downloads": 907, + "filesize": 8586111, + "upload_date": "2020-09-18T17:49:56Z", + "modify_date": "2020-09-18T20:05:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Omega_3_Supplements/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:49:54Z", + "updatedAt": "2024-04-03T10:07:29Z", + "name": "Perricone_MD_OVM", + "owner": "GoogleResearch", + "description": "Perricone MD OVM\nBio-matrix technology harnessed from the Eggshell Membrane to deliver the appearance of youthful volume, cushion and firmness.", + "likes": 0, + "downloads": 901, + "filesize": 6627746, + "upload_date": "2020-09-18T17:49:51Z", + "modify_date": "2020-09-18T20:05:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_OVM/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:49:43Z", + "updatedAt": "2024-04-03T09:42:43Z", + "name": "Perricone_MD_Nutritive_Cleanser", + "owner": "GoogleResearch", + "description": "Perricone MD Nutritive Cleanser\nA nourishing facial wash that removes impurities while delivering superior anti-aging benefits.", + "likes": 0, + "downloads": 960, + "filesize": 9474052, + "upload_date": "2020-09-18T17:49:40Z", + "modify_date": "2020-09-18T20:05:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Nutritive_Cleanser/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:49:33Z", + "updatedAt": "2024-04-03T09:42:35Z", + "name": "Perricone_MD_No_Mascara_Mascara", + "owner": "GoogleResearch", + "description": "Perricone MD No Mascara Mascara\nA mascara by Perricone MD scientifically formulated for longer, stronger, healthier eye lashes.", + "likes": 0, + "downloads": 967, + "filesize": 9605575, + "upload_date": "2020-09-18T17:49:29Z", + "modify_date": "2020-09-18T20:05:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_No_Mascara_Mascara/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:49:27Z", + "updatedAt": "2024-04-03T09:42:28Z", + "name": "Perricone_MD_No_Lipstick_Lipstick", + "owner": "GoogleResearch", + "description": "Perricone MD No Lipstick Lipstick\nAn anti-aging lipstick designed to restore the natural rosy color of youthful lips while doubling as a lip treatment for lip lines and wrinkles. ?", + "likes": 0, + "downloads": 966, + "filesize": 9088200, + "upload_date": "2020-09-18T17:49:24Z", + "modify_date": "2020-09-18T20:05:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_No_Lipstick_Lipstick/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:49:21Z", + "updatedAt": "2024-04-03T09:42:20Z", + "name": "Perricone_MD_No_Foundation_Serum", + "owner": "GoogleResearch", + "description": "Perricone MD No Foundation Serum\nPerricone MD's No Foundation Serum is a multitasking makeup foundation scientifically formulated to deliver flawless coverage, powerful anti-aging benefits, and sun protection.", + "likes": 0, + "downloads": 1044, + "filesize": 11171753, + "upload_date": "2020-09-18T17:49:18Z", + "modify_date": "2020-09-18T20:05:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_No_Foundation_Serum/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:49:15Z", + "updatedAt": "2024-04-03T08:23:33Z", + "name": "Perricone_MD_No_Foundation_Foundation_No_1", + "owner": "GoogleResearch", + "description": "Perricone MD No Foundation Foundation No. 1\nA lightweight foundation designed to restore the natural color and radiance of youthful skin while delivering powerfulanti-aging benefits and sun protection with a dewy, glowing finish.", + "likes": 0, + "downloads": 1099, + "filesize": 9991371, + "upload_date": "2020-09-18T17:49:12Z", + "modify_date": "2020-09-18T20:05:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_No_Foundation_Foundation_No_1/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:49:09Z", + "updatedAt": "2024-04-03T09:42:14Z", + "name": "Perricone_MD_No_Bronzer_Bronzer", + "owner": "GoogleResearch", + "description": "Perricone MD No Bronzer Bronzer\nPerricone MD's No Bronzer Bronzer protects the skin with broad spectrum SPF 30 while instantly reviving the complexion with warm radiance.", + "likes": 0, + "downloads": 1136, + "filesize": 10510514, + "upload_date": "2020-09-18T17:49:05Z", + "modify_date": "2020-09-18T20:05:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_No_Bronzer_Bronzer/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:49:03Z", + "updatedAt": "2024-04-03T08:53:26Z", + "name": "Perricone_MD_Neuropeptide_Firming_Moisturizer", + "owner": "GoogleResearch", + "description": "Perricone MD Neuropeptide Firming Moisturizer\nAn anti-aging moisturizer to repair severe loss of elasticity and deliver antioxidant protection. With Alpha Lipoic Acid, DMAE and Vitamin C Ester.", + "likes": 0, + "downloads": 1007, + "filesize": 8492634, + "upload_date": "2020-09-18T17:49:00Z", + "modify_date": "2020-09-18T20:05:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Neuropeptide_Firming_Moisturizer/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:48:57Z", + "updatedAt": "2024-04-03T09:42:05Z", + "name": "Perricone_MD_Neuropeptide_Facial_Conformer", + "owner": "GoogleResearch", + "description": "Perricone MD Neuropeptide Facial Conformer\nThe most advanced formulation of anti-aging ingredients to completely rejuvenate and restore the appearance of younger looking skin. With Neuropeptides, DMAE and Phospholipids. 1 fl oz / 30 mL", + "likes": 0, + "downloads": 1040, + "filesize": 13882307, + "upload_date": "2020-09-18T17:48:53Z", + "modify_date": "2020-09-18T20:05:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Neuropeptide_Facial_Conformer/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:48:32Z", + "updatedAt": "2024-04-03T08:53:17Z", + "name": "Perricone_MD_Hypoallergenic_Gentle_Cleanser", + "owner": "GoogleResearch", + "description": "Perricone MD Hypoallergenic Gentle Cleanser\nA mild cleanser that is safe and effective for sensitive skin. With Olive Polyphenols, Tocotrienols, Neuropeptides and Green Tea Extract.", + "likes": 0, + "downloads": 1007, + "filesize": 6893304, + "upload_date": "2020-09-18T17:48:29Z", + "modify_date": "2020-09-18T20:05:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Hypoallergenic_Gentle_Cleanser/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:48:27Z", + "updatedAt": "2024-04-03T08:23:27Z", + "name": "Perricone_MD_Hypoallergenic_Firming_Eye_Cream_05_oz", + "owner": "GoogleResearch", + "description": "Perricone MD Hypoallergenic Firming Eye Cream 0.5 oz", + "likes": 0, + "downloads": 1016, + "filesize": 5710701, + "upload_date": "2020-09-18T17:48:24Z", + "modify_date": "2020-09-18T20:05:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Hypoallergenic_Firming_Eye_Cream_05_oz/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:48:16Z", + "updatedAt": "2024-04-03T10:24:03Z", + "name": "Perricone_MD_High_Potency_Evening_Repair", + "owner": "GoogleResearch", + "description": "Perricone MD High Potency Evening Repair\nA retinol based treatment to correct sun damage, dark spots, and uneven skin tone.", + "likes": 0, + "downloads": 881, + "filesize": 10183804, + "upload_date": "2020-09-18T17:48:12Z", + "modify_date": "2020-09-18T20:05:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_High_Potency_Evening_Repair/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:48:10Z", + "updatedAt": "2024-04-03T10:07:15Z", + "name": "Perricone_MD_Health_Weight_Management_Supplements", + "owner": "GoogleResearch", + "description": "Perricone MD Health & Weight Management Supplements\nA dietary supplement designed to promote healthy weight loss and maintenance.", + "likes": 0, + "downloads": 901, + "filesize": 9272643, + "upload_date": "2020-09-18T17:48:06Z", + "modify_date": "2020-09-18T20:05:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Health_Weight_Management_Supplements/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:48:04Z", + "updatedAt": "2024-04-03T08:53:11Z", + "name": "Perricone_MD_Firming_Neck_Therapy_Treatment", + "owner": "GoogleResearch", + "description": "Perricone MD Firming Neck Therapy Treatment\nA targeted treatment to firm, tighten and tone the neck while reducing wrinkles and creases. With Phospholipids and Tocotrienols", + "likes": 0, + "downloads": 985, + "filesize": 6452058, + "upload_date": "2020-09-18T17:48:01Z", + "modify_date": "2020-09-18T20:05:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Firming_Neck_Therapy_Treatment/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:47:58Z", + "updatedAt": "2024-04-03T08:53:04Z", + "name": "Perricone_MD_Face_Finishing_Moisturizer_4_oz", + "owner": "GoogleResearch", + "description": "Perricone MD Face Finishing Moisturizer 4 oz\nFace Finishing moisturizer is an anti-aging moisturizer to hydrate dry skin while correcting fine lines and wrinkles.", + "likes": 0, + "downloads": 988, + "filesize": 6683255, + "upload_date": "2020-09-18T17:47:55Z", + "modify_date": "2020-09-18T20:05:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Face_Finishing_Moisturizer_4_oz/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:47:50Z", + "updatedAt": "2024-04-03T08:23:20Z", + "name": "Perricone_MD_Face_Finishing_Moisturizer", + "owner": "GoogleResearch", + "description": "Perricone MD Face Finishing Moisturizer\nA bestselling and performance-driven moisturizer rich in corrective antioxidants to hydrate, nourish and impart a glow.", + "likes": 0, + "downloads": 1008, + "filesize": 7064982, + "upload_date": "2020-09-18T17:47:47Z", + "modify_date": "2020-09-18T20:05:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Face_Finishing_Moisturizer/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:47:28Z", + "updatedAt": "2024-04-03T10:07:08Z", + "name": "Perricone_MD_Cold_Plasma_Body", + "owner": "GoogleResearch", + "description": "Perricone MD Cold Plasma Body\nAn anti-aging body moisturizer formulated with Dr. Perricone's Cold Plasma delivery system.", + "likes": 0, + "downloads": 919, + "filesize": 10430560, + "upload_date": "2020-09-18T17:47:24Z", + "modify_date": "2020-09-18T20:05:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Cold_Plasma_Body/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:47:22Z", + "updatedAt": "2024-04-03T09:41:58Z", + "name": "Perricone_MD_Cold_Plasma", + "owner": "GoogleResearch", + "description": "Perricone MD Cold Plasma\nA revolutionary anti-aging product, Cold Plasma helps correct the ten most visible signs of aging: wrinkles, enlarged pores, dryness, redness, discoloration, uneven skin tone, impurities, loss of firmness, loss of smoothness, and loss of radiance.", + "likes": 0, + "downloads": 1002, + "filesize": 9815379, + "upload_date": "2020-09-18T17:47:18Z", + "modify_date": "2020-09-18T20:05:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Cold_Plasma/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:47:16Z", + "updatedAt": "2024-04-03T08:52:56Z", + "name": "Perricone_MD_Chia_Serum", + "owner": "GoogleResearch", + "description": "Perricone MD Chia Serum\nA luxurious serum that delivers superior nourishment and hydration. With Chia Oil.", + "likes": 0, + "downloads": 1078, + "filesize": 10561203, + "upload_date": "2020-09-18T17:47:12Z", + "modify_date": "2020-09-18T20:05:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Chia_Serum/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:47:10Z", + "updatedAt": "2024-04-03T08:52:47Z", + "name": "Perricone_MD_Blue_Plasma_Orbital", + "owner": "GoogleResearch", + "description": "Perricone MD Blue Plasma Orbital\nA eye treatment to reduce dark circles, puffiness, wrinkles and crowsfeet, and also brighten the eye.", + "likes": 0, + "downloads": 1002, + "filesize": 9608618, + "upload_date": "2020-09-18T17:47:06Z", + "modify_date": "2020-09-18T20:05:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Blue_Plasma_Orbital/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:47:04Z", + "updatedAt": "2024-04-03T10:07:00Z", + "name": "Perricone_MD_Best_of_Perricone_7Piece_Collection_MEGsO6GIsyL", + "owner": "GoogleResearch", + "description": "Perricone MD Best of Perricone 7-Piece Collection\nSeven of Dr. Perricone's best selling products in one collection.", + "likes": 0, + "downloads": 900, + "filesize": 8895121, + "upload_date": "2020-09-18T17:47:00Z", + "modify_date": "2020-09-18T20:05:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_Best_of_Perricone_7Piece_Collection_MEGsO6GIsyL/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:46:52Z", + "updatedAt": "2024-04-03T08:23:13Z", + "name": "Perricone_MD_AcylGlutathione_Eye_Lid_Serum", + "owner": "GoogleResearch", + "description": "Perricone MD Acyl-Glutathione Eye Lid Serum\nA targeted eye treatment to tighten and firm the upper eye lid while smoothing fine lines and creases around the entire eye area. With patent-pending Acyl Glutathione.", + "likes": 0, + "downloads": 996, + "filesize": 10038062, + "upload_date": "2020-09-18T17:46:49Z", + "modify_date": "2020-09-18T20:05:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_AcylGlutathione_Eye_Lid_Serum/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:46:46Z", + "updatedAt": "2024-04-03T10:06:53Z", + "name": "Perricone_MD_AcylGlutathione_Deep_Crease_Serum", + "owner": "GoogleResearch", + "description": "Perricone MD Acyl-Glutathione Deep Crease Serum\nA targeted treatment for the appearance of expression lines and creases. With patent-pending Acyl-Glutathione.", + "likes": 0, + "downloads": 1008, + "filesize": 9959144, + "upload_date": "2020-09-18T17:46:43Z", + "modify_date": "2020-09-18T20:05:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricone_MD_AcylGlutathione_Deep_Crease_Serum/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:46:40Z", + "updatedAt": "2024-04-03T09:24:59Z", + "name": "Perricoen_MD_No_Concealer_Concealer", + "owner": "GoogleResearch", + "description": "Perricoen MD No Concealer Concealer\nA universal concealer, brightener, and illuminator with anti-aging and hydrating benefits for the eye area.", + "likes": 0, + "downloads": 1048, + "filesize": 9633069, + "upload_date": "2020-09-18T17:46:37Z", + "modify_date": "2020-09-18T20:05:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Perricoen_MD_No_Concealer_Concealer/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:46:35Z", + "updatedAt": "2024-04-03T08:23:05Z", + "name": "Pepsi_Max_Cola_Zero_Calorie_12_12_fl_oz_355_ml_cans_144_fl_oz_426_lt", + "owner": "GoogleResearch", + "description": "Pepsi Max Cola, Zero Calorie - 12 - 12 fl oz (355 ml) cans [144 fl oz (4.26 lt)]\n0 calorie cola. 0 calories per can. Maximum taste. Sugar free. Very low sodium, 35 mg or less per 240 ml (8 fl oz). Caffeine Content: 69 ml/12 fl oz. www.pepsi.com. Please recycle.", + "likes": 0, + "downloads": 1113, + "filesize": 12966268, + "upload_date": "2020-09-18T17:46:31Z", + "modify_date": "2020-09-18T20:06:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Pepsi_Max_Cola_Zero_Calorie_12_12_fl_oz_355_ml_cans_144_fl_oz_426_lt/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:46:28Z", + "updatedAt": "2024-04-03T10:06:45Z", + "name": "Pepsi_Cola_Wild_Cherry_Diet_12_12_fl_oz_355_ml_cans_144_fl_oz_426_lt", + "owner": "GoogleResearch", + "description": "Pepsi Cola, Wild Cherry, Diet - 12 - 12 fl oz (355 ml) cans [144 fl oz (4.26 lt)]\nWith other natural flavors. 0 calories per can. Contains no juice. Sugar free. Very low sodium, 35 mg or less per 8 fl oz (240 ml). Caffeine content: 38 mg /12 fl oz.", + "likes": 0, + "downloads": 930, + "filesize": 13061996, + "upload_date": "2020-09-18T17:46:25Z", + "modify_date": "2020-09-18T20:06:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Pepsi_Cola_Wild_Cherry_Diet_12_12_fl_oz_355_ml_cans_144_fl_oz_426_lt/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:46:22Z", + "updatedAt": "2024-04-03T10:23:42Z", + "name": "Pepsi_Cola_Caffeine_Free_12_12_fl_oz_355_ml_cans_144_fl_oz_426_lt", + "owner": "GoogleResearch", + "description": "Pepsi Cola, Caffeine Free - 12 - 12 fl oz (355 ml) cans [144 fl oz (4.26 lt)]\n150 calories per can. Very low sodium. Please recycle.", + "likes": 0, + "downloads": 925, + "filesize": 9911526, + "upload_date": "2020-09-18T17:46:19Z", + "modify_date": "2020-09-18T20:06:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Pepsi_Cola_Caffeine_Free_12_12_fl_oz_355_ml_cans_144_fl_oz_426_lt/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:46:16Z", + "updatedAt": "2024-04-03T10:23:32Z", + "name": "Pepsi_Caffeine_Free_Diet_12_CT", + "owner": "GoogleResearch", + "description": "Pepsi Caffeine Free Diet - 12 CT\n0 calories per can. Sugar free. Very low sodium, 35 mg or less per 8 fl oz (240 ml). Please recycle.", + "likes": 0, + "downloads": 905, + "filesize": 8685518, + "upload_date": "2020-09-18T17:46:13Z", + "modify_date": "2020-09-18T20:06:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Pepsi_Caffeine_Free_Diet_12_CT/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:46:09Z", + "updatedAt": "2024-04-03T09:54:55Z", + "name": "Pennington_Electric_Pot_Cabana_4", + "owner": "GoogleResearch", + "description": "Pennington Electric Pot, Cabana, 4\"", + "likes": 0, + "downloads": 929, + "filesize": 6139761, + "upload_date": "2020-09-18T17:46:07Z", + "modify_date": "2020-09-18T20:06:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Pennington_Electric_Pot_Cabana_4/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:46:04Z", + "updatedAt": "2024-04-03T08:22:58Z", + "name": "PUNCH_DROP_TjicLPMqLvz", + "owner": "GoogleResearch", + "description": "PUNCH & DROP\nGreat fun for children to pound the balls until they drop and slide out.", + "likes": 0, + "downloads": 1020, + "filesize": 8813678, + "upload_date": "2020-09-18T17:46:01Z", + "modify_date": "2020-09-18T20:06:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PUNCH_DROP_TjicLPMqLvz/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:45:58Z", + "updatedAt": "2024-04-03T08:52:40Z", + "name": "PUNCH_DROP", + "owner": "GoogleResearch", + "description": "PUNCH & DROP\nGreat fun for children to pound the balls until they drop and slide out.", + "likes": 0, + "downloads": 1056, + "filesize": 7293092, + "upload_date": "2020-09-18T17:45:55Z", + "modify_date": "2020-09-18T20:06:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PUNCH_DROP/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:45:52Z", + "updatedAt": "2024-04-03T08:22:52Z", + "name": "POUNDING_MUSHROOMS", + "owner": "GoogleResearch", + "description": "POUNDING MUSHROOMS\nPound the mushroom down and another one continuously comes up. Mushrooms can also be pressed down by hand. Helps develop hand-eye coordination.", + "likes": 0, + "downloads": 1069, + "filesize": 6367005, + "upload_date": "2020-09-18T17:45:49Z", + "modify_date": "2020-09-18T20:06:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/POUNDING_MUSHROOMS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:45:47Z", + "updatedAt": "2024-04-03T08:22:43Z", + "name": "PEPSI_NEXT_CACRV", + "owner": "GoogleResearch", + "description": "PEPSI NEXT (CA+CRV)", + "likes": 0, + "downloads": 1133, + "filesize": 13699545, + "upload_date": "2020-09-18T17:45:43Z", + "modify_date": "2020-09-18T20:06:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PEPSI_NEXT_CACRV/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:45:40Z", + "updatedAt": "2024-04-03T09:54:50Z", + "name": "PARENT_ROOM_FURNITURE_SET_1_DLKEy8H4mwK", + "owner": "GoogleResearch", + "description": "PARENT ROOM (FURNITURE SET 1)\nThe set includes a bed with blanket, an armoire, a vanity and a stool. Made of Eco-Friendly PlanWood and solid rubber wood.", + "likes": 0, + "downloads": 954, + "filesize": 9111668, + "upload_date": "2020-09-18T17:45:37Z", + "modify_date": "2020-09-18T20:06:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PARENT_ROOM_FURNITURE_SET_1_DLKEy8H4mwK/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:45:35Z", + "updatedAt": "2024-04-03T08:52:35Z", + "name": "PARENT_ROOM_FURNITURE_SET_1", + "owner": "GoogleResearch", + "description": "PARENT ROOM (FURNITURE SET 1)\nThe set includes a bed with blanket, an armoire, a vanity and a stool. Made of Eco-Friendly PlanWood and solid rubber wood.", + "likes": 0, + "downloads": 1184, + "filesize": 10925023, + "upload_date": "2020-09-18T17:45:31Z", + "modify_date": "2020-09-18T20:06:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PARENT_ROOM_FURNITURE_SET_1/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:45:28Z", + "updatedAt": "2024-04-03T19:03:06Z", + "name": "Ortho_Forward_Facing_QCaor9ImJ2G", + "owner": "GoogleResearch", + "description": "Ortho Forward Facing", + "likes": 0, + "downloads": 1062, + "filesize": 11037540, + "upload_date": "2020-09-18T17:45:24Z", + "modify_date": "2020-09-18T20:06:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ortho_Forward_Facing_QCaor9ImJ2G/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:45:21Z", + "updatedAt": "2024-04-03T08:52:18Z", + "name": "Ortho_Forward_Facing_CkAW6rL25xH", + "owner": "GoogleResearch", + "description": "Ortho Forward Facing", + "likes": 0, + "downloads": 1052, + "filesize": 5467103, + "upload_date": "2020-09-18T17:45:18Z", + "modify_date": "2020-09-18T20:06:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ortho_Forward_Facing_CkAW6rL25xH/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:45:15Z", + "updatedAt": "2024-04-03T08:22:37Z", + "name": "Ortho_Forward_Facing_3Q6J2oKJD92", + "owner": "GoogleResearch", + "description": "Ortho Forward Facing", + "likes": 0, + "downloads": 1038, + "filesize": 3865186, + "upload_date": "2020-09-18T17:45:12Z", + "modify_date": "2020-09-18T20:06:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ortho_Forward_Facing_3Q6J2oKJD92/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:45:10Z", + "updatedAt": "2024-04-03T19:03:10Z", + "name": "Ortho_Forward_Facing", + "owner": "GoogleResearch", + "description": "Ortho Forward Facing", + "likes": 0, + "downloads": 1092, + "filesize": 7495148, + "upload_date": "2020-09-18T17:45:06Z", + "modify_date": "2020-09-18T20:06:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ortho_Forward_Facing/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:45:03Z", + "updatedAt": "2024-04-03T10:20:13Z", + "name": "Ocedar_Snap_On_Dust_Pan_And_Brush_1_ct", + "owner": "GoogleResearch", + "description": "Ocedar Snap On Dust Pan And Brush - 1 ct", + "likes": 0, + "downloads": 894, + "filesize": 4173158, + "upload_date": "2020-09-18T17:45:01Z", + "modify_date": "2020-09-18T20:06:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ocedar_Snap_On_Dust_Pan_And_Brush_1_ct/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:44:58Z", + "updatedAt": "2024-04-03T08:52:10Z", + "name": "Object_REmvBDJStub", + "owner": "GoogleResearch", + "description": "Object\nObject", + "likes": 0, + "downloads": 1005, + "filesize": 3437615, + "upload_date": "2020-09-18T17:44:56Z", + "modify_date": "2020-09-18T20:06:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Object_REmvBDJStub/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:44:53Z", + "updatedAt": "2024-04-03T09:54:46Z", + "name": "Object", + "owner": "GoogleResearch", + "description": "Object\nObject", + "likes": 0, + "downloads": 997, + "filesize": 4052669, + "upload_date": "2020-09-18T17:44:51Z", + "modify_date": "2020-09-18T20:06:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Object/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:44:48Z", + "updatedAt": "2024-04-03T07:45:25Z", + "name": "OXO_Soft_Works_Can_Opener_SnapLock", + "owner": "GoogleResearch", + "description": "OXO Soft Works Can Opener, Snap-Lock", + "likes": 0, + "downloads": 911, + "filesize": 4910545, + "upload_date": "2020-09-18T17:44:45Z", + "modify_date": "2020-09-18T20:06:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/OXO_Soft_Works_Can_Opener_SnapLock/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:44:43Z", + "updatedAt": "2024-04-03T08:51:56Z", + "name": "OXO_Cookie_Spatula", + "owner": "GoogleResearch", + "description": "OXO Cookie Spatula", + "likes": 0, + "downloads": 1043, + "filesize": 2633115, + "upload_date": "2020-09-18T17:44:41Z", + "modify_date": "2020-09-18T20:06:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/OXO_Cookie_Spatula/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:44:39Z", + "updatedAt": "2024-04-03T08:51:46Z", + "name": "Now_Designs_Snack_Bags_Bicycle_2_count", + "owner": "GoogleResearch", + "description": "Now Designs Snack Bags, Bicycle - 2 count", + "likes": 0, + "downloads": 1040, + "filesize": 6607409, + "upload_date": "2020-09-18T17:44:36Z", + "modify_date": "2020-09-18T20:06:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Now_Designs_Snack_Bags_Bicycle_2_count/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:44:33Z", + "updatedAt": "2024-04-03T08:50:48Z", + "name": "Now_Designs_Dish_Towel_Mojave_18_x_28", + "owner": "GoogleResearch", + "description": "Now Designs Dish Towel, Mojave, 18\" x 28\"", + "likes": 0, + "downloads": 1243, + "filesize": 18080753, + "upload_date": "2020-09-18T17:44:29Z", + "modify_date": "2020-09-18T20:06:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Now_Designs_Dish_Towel_Mojave_18_x_28/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:44:23Z", + "updatedAt": "2024-04-03T08:22:29Z", + "name": "Now_Designs_Bowl_Akita_Black", + "owner": "GoogleResearch", + "description": "Now Designs Bowl, Akita, Black", + "likes": 0, + "downloads": 1146, + "filesize": 9560589, + "upload_date": "2020-09-18T17:44:19Z", + "modify_date": "2020-09-18T20:06:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Now_Designs_Bowl_Akita_Black/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:44:17Z", + "updatedAt": "2024-04-03T09:24:52Z", + "name": "Nordic_Ware_Original_Bundt_Pan", + "owner": "GoogleResearch", + "description": "Nordic Ware Original Bundt Pan", + "likes": 0, + "downloads": 1097, + "filesize": 5784621, + "upload_date": "2020-09-18T17:44:13Z", + "modify_date": "2020-09-18T20:06:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nordic_Ware_Original_Bundt_Pan/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:44:11Z", + "updatedAt": "2024-04-03T08:22:25Z", + "name": "Neat_Solutions_Character_Bib_2_pack", + "owner": "GoogleResearch", + "description": "Neat Solutions Character Bib - 2 pack", + "likes": 0, + "downloads": 1025, + "filesize": 3179523, + "upload_date": "2020-09-18T17:44:08Z", + "modify_date": "2020-09-18T20:06:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Neat_Solutions_Character_Bib_2_pack/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:44:06Z", + "updatedAt": "2024-04-03T08:50:44Z", + "name": "Markings_Letter_Holder", + "owner": "GoogleResearch", + "description": "Markings Letter Holder", + "likes": 0, + "downloads": 1110, + "filesize": 5376493, + "upload_date": "2020-09-18T17:44:03Z", + "modify_date": "2020-09-18T20:06:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Markings_Letter_Holder/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:43:49Z", + "updatedAt": "2024-04-03T10:20:05Z", + "name": "Markings_Desk_Caddy", + "owner": "GoogleResearch", + "description": "Markings Desk Caddy", + "likes": 1, + "downloads": 897, + "filesize": 7351427, + "upload_date": "2020-09-18T17:43:46Z", + "modify_date": "2020-09-18T20:06:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Markings_Desk_Caddy/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:43:43Z", + "updatedAt": "2024-04-03T09:24:47Z", + "name": "Magnifying_Glassassrt", + "owner": "GoogleResearch", + "description": "Magnifying Glass-assrt", + "likes": 0, + "downloads": 1002, + "filesize": 1952576, + "upload_date": "2020-09-18T17:43:41Z", + "modify_date": "2020-09-18T20:06:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Magnifying_Glassassrt/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:43:39Z", + "updatedAt": "2024-04-03T09:24:38Z", + "name": "MY_MOOD_MEMO", + "owner": "GoogleResearch", + "description": "MY MOOD MEMO\nThe set consists of 24 wooden tiles with 12 different emotions. Children can learn how to match two identical emotions with this fun memory game! Skills include learning about the relationship of colors and emotions. Emotion Color Wheel can help visually group feeling and practice emotion vocabulary.", + "likes": 0, + "downloads": 983, + "filesize": 9750069, + "upload_date": "2020-09-18T17:43:35Z", + "modify_date": "2020-09-18T20:06:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/MY_MOOD_MEMO/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:43:31Z", + "updatedAt": "2024-04-03T10:19:55Z", + "name": "Lovable_Huggable_Cuddly_Boutique_Teddy_Bear_Beige", + "owner": "GoogleResearch", + "description": "Lovable Huggable Cuddly Boutique Teddy Bear Beige", + "likes": 0, + "downloads": 1001, + "filesize": 12343007, + "upload_date": "2020-09-18T17:43:26Z", + "modify_date": "2020-09-18T20:06:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Lovable_Huggable_Cuddly_Boutique_Teddy_Bear_Beige/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Stuffed Toys" + ] + }, + { + "createdAt": "2020-09-18T17:43:19Z", + "updatedAt": "2024-04-03T09:23:58Z", + "name": "Kotobuki_Saucer_Dragon_Fly", + "owner": "GoogleResearch", + "description": "Kotobuki Saucer, Dragon Fly", + "likes": 0, + "downloads": 1022, + "filesize": 4710344, + "upload_date": "2020-09-18T17:43:17Z", + "modify_date": "2020-09-18T20:06:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Kotobuki_Saucer_Dragon_Fly/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:43:14Z", + "updatedAt": "2024-04-03T10:23:17Z", + "name": "Kong_Puppy_Teething_Rubber_Small_Pink", + "owner": "GoogleResearch", + "description": "Kong Puppy Teething Rubber, Small, Pink", + "likes": 0, + "downloads": 1043, + "filesize": 3378907, + "upload_date": "2020-09-18T17:43:11Z", + "modify_date": "2020-09-18T20:06:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Kong_Puppy_Teething_Rubber_Small_Pink/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:43:02Z", + "updatedAt": "2024-04-03T08:22:19Z", + "name": "KS_Chocolate_Cube_Box_Assortment_By_Neuhaus_2010_Ounces", + "owner": "GoogleResearch", + "description": "KS Chocolate Cube Box Assortment By Neuhaus 20.10 Ounces", + "likes": 0, + "downloads": 1131, + "filesize": 7185061, + "upload_date": "2020-09-18T17:42:59Z", + "modify_date": "2020-09-18T20:06:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/KS_Chocolate_Cube_Box_Assortment_By_Neuhaus_2010_Ounces/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:42:57Z", + "updatedAt": "2024-04-03T09:54:42Z", + "name": "KITCHEN_SET_CLASSIC_40HwCHfeG0H", + "owner": "GoogleResearch", + "description": "KITCHEN SET - CLASSIC\nChildren can enjoy decorating their dollhouse with the Classic set of furniture while developing their imagination and creating more interest time.", + "likes": 0, + "downloads": 965, + "filesize": 7493536, + "upload_date": "2020-09-18T17:42:54Z", + "modify_date": "2020-09-18T20:06:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/KITCHEN_SET_CLASSIC_40HwCHfeG0H/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:42:40Z", + "updatedAt": "2024-04-03T09:54:38Z", + "name": "KITCHEN_FURNITURE_SET_1", + "owner": "GoogleResearch", + "description": "KITCHEN (FURNITURE SET 1)\nThe set includes refrigerator, a freestanding range, corner storage, and a sink with bottom shlef. Made of Eco-Friendly PlanWood and solid rubber wood.", + "likes": 0, + "downloads": 958, + "filesize": 8427294, + "upload_date": "2020-09-18T17:42:37Z", + "modify_date": "2020-09-18T20:06:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/KITCHEN_FURNITURE_SET_1/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:42:34Z", + "updatedAt": "2024-04-03T08:50:39Z", + "name": "JA_Henckels_International_Premio_Cutlery_Block_Set_14Piece", + "owner": "GoogleResearch", + "description": "J.A. Henckels International Premio Cutlery Block Set, 14-Piece", + "likes": 0, + "downloads": 1048, + "filesize": 8523023, + "upload_date": "2020-09-18T17:42:31Z", + "modify_date": "2020-09-18T20:06:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/JA_Henckels_International_Premio_Cutlery_Block_Set_14Piece/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:42:28Z", + "updatedAt": "2024-04-03T10:23:11Z", + "name": "InterDesign_Over_Door", + "owner": "GoogleResearch", + "description": "InterDesign Over Door", + "likes": 0, + "downloads": 888, + "filesize": 3284008, + "upload_date": "2020-09-18T17:42:25Z", + "modify_date": "2020-09-18T20:06:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/InterDesign_Over_Door/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:42:23Z", + "updatedAt": "2024-04-03T09:23:52Z", + "name": "In_Green_Company_Surface_Saver_Ring_10_Terra_Cotta", + "owner": "GoogleResearch", + "description": "In Green Company Surface Saver Ring, 10\", Terra Cotta", + "likes": 0, + "downloads": 1002, + "filesize": 4364991, + "upload_date": "2020-09-18T17:42:21Z", + "modify_date": "2020-09-18T20:06:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/In_Green_Company_Surface_Saver_Ring_10_Terra_Cotta/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:42:18Z", + "updatedAt": "2024-04-03T08:22:15Z", + "name": "INTERNATIONAL_PAPER_Willamette_4_Brown_Bag_500Count", + "owner": "GoogleResearch", + "description": "INTERNATIONAL PAPER Willamette #4 Brown Bag 500-Count", + "likes": 0, + "downloads": 1044, + "filesize": 5496894, + "upload_date": "2020-09-18T17:42:16Z", + "modify_date": "2020-09-18T20:06:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/INTERNATIONAL_PAPER_Willamette_4_Brown_Bag_500Count/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:42:13Z", + "updatedAt": "2024-04-03T09:54:33Z", + "name": "Home_Fashions_Washcloth_Olive_Green", + "owner": "GoogleResearch", + "description": "Home Fashions Washcloth, Olive Green", + "likes": 0, + "downloads": 916, + "filesize": 10215947, + "upload_date": "2020-09-18T17:42:10Z", + "modify_date": "2020-09-18T20:06:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Home_Fashions_Washcloth_Olive_Green/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:42:07Z", + "updatedAt": "2024-04-03T09:23:42Z", + "name": "Home_Fashions_Washcloth_Linen", + "owner": "GoogleResearch", + "description": "Home Fashions Washcloth, Linen", + "likes": 0, + "downloads": 1073, + "filesize": 11667819, + "upload_date": "2020-09-18T17:42:02Z", + "modify_date": "2020-09-18T20:06:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Home_Fashions_Washcloth_Linen/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:42:00Z", + "updatedAt": "2024-04-03T08:50:29Z", + "name": "Hilary", + "owner": "GoogleResearch", + "description": "Hilary", + "likes": 1, + "downloads": 1100, + "filesize": 5769243, + "upload_date": "2020-09-18T17:41:56Z", + "modify_date": "2020-09-18T20:06:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Hilary/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-18T17:41:53Z", + "updatedAt": "2024-04-03T08:22:08Z", + "name": "Hefty_Waste_Basket_Decorative_Bronze_85_liter", + "owner": "GoogleResearch", + "description": "Hefty Waste Basket, Decorative, Bronze - 8.5 liter", + "likes": 0, + "downloads": 1033, + "filesize": 6966711, + "upload_date": "2020-09-18T17:41:50Z", + "modify_date": "2020-09-18T20:06:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Hefty_Waste_Basket_Decorative_Bronze_85_liter/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:41:48Z", + "updatedAt": "2024-04-03T08:50:22Z", + "name": "HeavyDuty_Flashlight", + "owner": "GoogleResearch", + "description": "Heavy-Duty Flashlight", + "likes": 0, + "downloads": 1147, + "filesize": 4386214, + "upload_date": "2020-09-18T17:41:45Z", + "modify_date": "2020-09-18T20:06:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/HeavyDuty_Flashlight/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:41:43Z", + "updatedAt": "2024-04-03T10:23:04Z", + "name": "Grreatv_Choice_Dog_Bowl_Gray_Bones_Plastic_20_fl_oz_total", + "owner": "GoogleResearch", + "description": "Grreatv Choice Dog Bowl, Gray Bones, Plastic - 20 fl oz total", + "likes": 0, + "downloads": 889, + "filesize": 3745142, + "upload_date": "2020-09-18T17:41:40Z", + "modify_date": "2020-09-18T20:06:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Grreatv_Choice_Dog_Bowl_Gray_Bones_Plastic_20_fl_oz_total/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:41:35Z", + "updatedAt": "2024-04-03T09:23:37Z", + "name": "Grreat_Choice_Dog_Double_Dish_Plastic_Blue", + "owner": "GoogleResearch", + "description": "Grreat Choice Dog Double Dish, Plastic, Blue", + "likes": 0, + "downloads": 994, + "filesize": 2479515, + "upload_date": "2020-09-18T17:41:33Z", + "modify_date": "2020-09-18T20:06:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Grreat_Choice_Dog_Double_Dish_Plastic_Blue/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:41:31Z", + "updatedAt": "2024-04-03T08:22:02Z", + "name": "Great_Dinos_Triceratops_Toy", + "owner": "GoogleResearch", + "description": "Great Dinos Triceratops Toy\ntest", + "likes": 0, + "downloads": 1065, + "filesize": 4154017, + "upload_date": "2020-09-18T17:41:28Z", + "modify_date": "2020-09-18T20:06:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Great_Dinos_Triceratops_Toy/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:41:26Z", + "updatedAt": "2024-04-03T09:23:00Z", + "name": "Granimals_20_Wooden_ABC_Blocks_Wagon_g2TinmUGGHI", + "owner": "GoogleResearch", + "description": "Granimals 20 Wooden ABC Blocks & Wagon\n18+ months", + "likes": 0, + "downloads": 1020, + "filesize": 4529991, + "upload_date": "2020-09-18T17:41:23Z", + "modify_date": "2020-09-18T20:06:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Granimals_20_Wooden_ABC_Blocks_Wagon_g2TinmUGGHI/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:41:21Z", + "updatedAt": "2024-04-03T10:22:57Z", + "name": "Granimals_20_Wooden_ABC_Blocks_Wagon_85VdSftGsLi", + "owner": "GoogleResearch", + "description": "Granimals 20 Wooden ABC Blocks & Wagon\n18+ months", + "likes": 0, + "downloads": 913, + "filesize": 5198795, + "upload_date": "2020-09-18T17:41:18Z", + "modify_date": "2020-09-18T20:06:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Granimals_20_Wooden_ABC_Blocks_Wagon_85VdSftGsLi/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:41:15Z", + "updatedAt": "2024-04-03T08:21:58Z", + "name": "Granimals_20_Wooden_ABC_Blocks_Wagon", + "owner": "GoogleResearch", + "description": "Granimals 20 Wooden ABC Blocks & Wagon\n18+ months", + "likes": 0, + "downloads": 1106, + "filesize": 5305625, + "upload_date": "2020-09-18T17:41:12Z", + "modify_date": "2020-09-18T20:06:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Granimals_20_Wooden_ABC_Blocks_Wagon/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:40:56Z", + "updatedAt": "2024-04-03T08:21:50Z", + "name": "Gigabyte_GAZ97XSLI_10_motherboard_ATX_LGA1150_Socket_Z97", + "owner": "GoogleResearch", + "description": "Gigabyte GA-Z97X-SLI 1.0 motherboard ATX LGA1150 Socket Z97", + "likes": 0, + "downloads": 1112, + "filesize": 13547426, + "upload_date": "2020-09-18T17:40:52Z", + "modify_date": "2020-09-18T20:06:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Gigabyte_GAZ97XSLI_10_motherboard_ATX_LGA1150_Socket_Z97/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:40:50Z", + "updatedAt": "2024-04-03T09:22:51Z", + "name": "Gigabyte_GA970AUD3P_10_Motherboard_ATX_Socket_AM3", + "owner": "GoogleResearch", + "description": "Gigabyte GA-970A-UD3P 1.0 Motherboard ATX Socket AM3+", + "likes": 0, + "downloads": 1241, + "filesize": 13653370, + "upload_date": "2020-09-18T17:40:46Z", + "modify_date": "2020-09-18T20:06:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Gigabyte_GA970AUD3P_10_Motherboard_ATX_Socket_AM3/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:40:36Z", + "updatedAt": "2024-04-03T09:22:44Z", + "name": "Gigabyte_GA78LMTUSB3_50_Motherboard_Micro_ATX_Socket_AM3", + "owner": "GoogleResearch", + "description": "Gigabyte GA-78LMT-USB3 5.0 Motherboard Micro ATX Socket AM3+", + "likes": 0, + "downloads": 1068, + "filesize": 12218507, + "upload_date": "2020-09-18T17:40:33Z", + "modify_date": "2020-09-18T20:06:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Gigabyte_GA78LMTUSB3_50_Motherboard_Micro_ATX_Socket_AM3/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:40:19Z", + "updatedAt": "2024-04-03T09:54:25Z", + "name": "GIRLS_DECKHAND", + "owner": "GoogleResearch", + "description": "GIRLS DECKHAND\nReef Bella Costas Girl's Shoe Classic boat shoe styling Hemp and canvas upper Interior suede heel patch for comfort Mattress-inspired PU foam footbed with anatomical arch support Vulcanized construction Durable rubber outsole with jute inlay", + "likes": 0, + "downloads": 967, + "filesize": 7010145, + "upload_date": "2020-09-18T17:40:15Z", + "modify_date": "2020-09-18T20:06:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/GIRLS_DECKHAND/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-18T17:40:12Z", + "updatedAt": "2024-04-03T08:50:15Z", + "name": "GEOMETRIC_SORTING_BOARD_MNi4Rbuz9vj", + "owner": "GoogleResearch", + "description": "GEOMETRIC SORTING BOARD\nA set of four geometric shapes which can be stacked together according to the number of holes in the middle of each one.", + "likes": 1, + "downloads": 1009, + "filesize": 9347664, + "upload_date": "2020-09-18T17:40:08Z", + "modify_date": "2020-09-18T20:06:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/GEOMETRIC_SORTING_BOARD_MNi4Rbuz9vj/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:40:05Z", + "updatedAt": "2024-04-03T07:00:42Z", + "name": "GEOMETRIC_SORTING_BOARD", + "owner": "GoogleResearch", + "description": "GEOMETRIC SORTING BOARD\nA set of four geometric shapes which can be stacked together according to the number of holes in the middle of each one.", + "likes": 0, + "downloads": 1067, + "filesize": 10060421, + "upload_date": "2020-09-18T17:40:01Z", + "modify_date": "2020-09-18T20:06:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/GEOMETRIC_SORTING_BOARD/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:39:59Z", + "updatedAt": "2024-04-03T09:22:35Z", + "name": "GEARS_PUZZLES_STANDARD_gcYxhNHhKlI", + "owner": "GoogleResearch", + "description": "GEARS & PUZZLES - STANDARD\nExplore and build endless possibilities by combining the colorful assortment of gears. Place the puzzle pieces together and watch the amazing movement you can create by spinning and twirling the gears. (12 pieces included)", + "likes": 0, + "downloads": 1124, + "filesize": 13068795, + "upload_date": "2020-09-18T17:39:55Z", + "modify_date": "2020-09-18T20:06:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/GEARS_PUZZLES_STANDARD_gcYxhNHhKlI/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:39:40Z", + "updatedAt": "2024-04-03T07:45:10Z", + "name": "GARDEN_SWING", + "owner": "GoogleResearch", + "description": "GARDEN SWING\nThis set includes a swing, a canopy and 2 cushions.", + "likes": 0, + "downloads": 948, + "filesize": 10268778, + "upload_date": "2020-09-18T17:39:36Z", + "modify_date": "2020-09-18T20:06:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/GARDEN_SWING/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:39:33Z", + "updatedAt": "2024-04-03T10:19:47Z", + "name": "Full_Circle_Happy_Scraps_Out_Collector_Gray", + "owner": "GoogleResearch", + "description": "Full Circle Happy Scraps Out Collector, Gray", + "likes": 0, + "downloads": 905, + "filesize": 4580692, + "upload_date": "2020-09-18T17:39:31Z", + "modify_date": "2020-09-18T20:06:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Full_Circle_Happy_Scraps_Out_Collector_Gray/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:39:28Z", + "updatedAt": "2024-04-03T07:47:54Z", + "name": "Footed_Bowl_Sand", + "owner": "GoogleResearch", + "description": "Footed Bowl Sand", + "likes": 0, + "downloads": 949, + "filesize": 5932979, + "upload_date": "2020-09-18T17:39:26Z", + "modify_date": "2020-09-18T20:06:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Footed_Bowl_Sand/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:39:23Z", + "updatedAt": "2024-04-03T07:00:38Z", + "name": "Focus_8643_Lime_Squeezer_10x35x188_Enamelled_Aluminum_Light", + "owner": "GoogleResearch", + "description": "Focus 8643 Lime Squeezer - 10x3.5x1.88, Enamelled Aluminum, Light", + "likes": 0, + "downloads": 1112, + "filesize": 2783430, + "upload_date": "2020-09-18T17:39:21Z", + "modify_date": "2020-09-18T20:06:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Focus_8643_Lime_Squeezer_10x35x188_Enamelled_Aluminum_Light/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:39:18Z", + "updatedAt": "2024-04-03T09:54:16Z", + "name": "FRACTION_FUN_n4h4qte23QR", + "owner": "GoogleResearch", + "description": "FRACTION FUN\nFeature as two-sided curved base which easy to flip over! Set develops the understanding of geometric fraction from shapes. Kid will learn about the proportional relationships between one section and the whole.", + "likes": 0, + "downloads": 910, + "filesize": 9318390, + "upload_date": "2020-09-18T17:39:15Z", + "modify_date": "2020-09-18T20:06:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/FRACTION_FUN_n4h4qte23QR/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:39:03Z", + "updatedAt": "2024-04-03T10:22:48Z", + "name": "FOOD_BEVERAGE_SET", + "owner": "GoogleResearch", + "description": "FOOD & BEVERAGE SET\nIncludes orange juice, water, milk, ketchup, jam,?and honey.", + "likes": 0, + "downloads": 934, + "filesize": 8257008, + "upload_date": "2020-09-18T17:39:00Z", + "modify_date": "2020-09-18T20:06:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/FOOD_BEVERAGE_SET/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:38:57Z", + "updatedAt": "2024-03-12T03:51:47Z", + "name": "FARM_ANIMAL_9GyfdcPyESK", + "owner": "GoogleResearch", + "description": "FARM ANIMAL\nThe set includes a cow, a calf, a piglet, a sheep dog that has moveable head, a sheep plus the sheep?s wool is removable to give that sheered look.", + "likes": 0, + "downloads": 64, + "filesize": 9702840, + "upload_date": "2020-09-18T17:38:54Z", + "modify_date": "2020-09-18T20:06:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/FARM_ANIMAL_9GyfdcPyESK/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:38:51Z", + "updatedAt": "2024-04-03T09:22:27Z", + "name": "FARM_ANIMAL", + "owner": "GoogleResearch", + "description": "FARM ANIMAL\nThe set includes a cow, a calf, a piglet, a sheep dog that has moveable head, a sheep plus the sheep?s wool is removable to give that sheered look.", + "likes": 0, + "downloads": 1105, + "filesize": 8805011, + "upload_date": "2020-09-18T17:38:48Z", + "modify_date": "2020-09-18T20:06:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/FARM_ANIMAL/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:38:45Z", + "updatedAt": "2024-04-03T09:54:03Z", + "name": "Envision_Home_Dish_Drying_Mat_Red_6_x_18", + "owner": "GoogleResearch", + "description": "Envision Home Dish Drying Mat, Red, 6\" x 18\"", + "likes": 0, + "downloads": 968, + "filesize": 9108466, + "upload_date": "2020-09-18T17:38:42Z", + "modify_date": "2020-09-18T20:06:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Envision_Home_Dish_Drying_Mat_Red_6_x_18/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:38:39Z", + "updatedAt": "2024-04-03T08:50:07Z", + "name": "Embark_Lunch_Cooler_Blue", + "owner": "GoogleResearch", + "description": "Embark Lunch Cooler, Blue", + "likes": 1, + "downloads": 1059, + "filesize": 7718165, + "upload_date": "2020-09-18T17:38:36Z", + "modify_date": "2020-09-18T20:06:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Embark_Lunch_Cooler_Blue/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:38:27Z", + "updatedAt": "2024-04-04T05:36:47Z", + "name": "Elephant", + "owner": "GoogleResearch", + "description": "Elephant\nElephant", + "likes": 0, + "downloads": 1159, + "filesize": 9462011, + "upload_date": "2020-09-18T17:38:23Z", + "modify_date": "2020-09-18T20:06:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Elephant/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:38:21Z", + "updatedAt": "2024-04-03T09:53:56Z", + "name": "Ecoforms_Saucer_SQ3_Turquoise", + "owner": "GoogleResearch", + "description": "Ecoforms Saucer, SQ3, Turquoise", + "likes": 0, + "downloads": 1019, + "filesize": 11600699, + "upload_date": "2020-09-18T17:38:17Z", + "modify_date": "2020-09-18T20:06:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Saucer_SQ3_Turquoise/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:38:15Z", + "updatedAt": "2024-04-03T09:21:14Z", + "name": "Ecoforms_Quadra_Saucer_SQ1_Avocado", + "owner": "GoogleResearch", + "description": "Ecoforms Quadra Saucer, SQ1, Avocado", + "likes": 0, + "downloads": 987, + "filesize": 9385678, + "upload_date": "2020-09-18T17:38:11Z", + "modify_date": "2020-09-18T20:06:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Quadra_Saucer_SQ1_Avocado/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:38:09Z", + "updatedAt": "2024-04-03T09:53:50Z", + "name": "Ecoforms_Pot_Nova_6_Turquoise", + "owner": "GoogleResearch", + "description": "Ecoforms Pot, Nova 6, Turquoise", + "likes": 0, + "downloads": 924, + "filesize": 7818291, + "upload_date": "2020-09-18T17:38:06Z", + "modify_date": "2020-09-18T20:06:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Pot_Nova_6_Turquoise/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:38:03Z", + "updatedAt": "2024-04-03T08:50:00Z", + "name": "Ecoforms_Plate_S20Avocado", + "owner": "GoogleResearch", + "description": "Ecoforms Plate, S20-Avocado", + "likes": 0, + "downloads": 1030, + "filesize": 7223385, + "upload_date": "2020-09-18T17:38:00Z", + "modify_date": "2020-09-18T20:06:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plate_S20Avocado/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:37:58Z", + "updatedAt": "2024-04-03T09:21:06Z", + "name": "Ecoforms_Planter_Pot_QP6Ebony", + "owner": "GoogleResearch", + "description": "Ecoforms Planter Pot, QP6-Ebony", + "likes": 0, + "downloads": 1010, + "filesize": 9777688, + "upload_date": "2020-09-18T17:37:55Z", + "modify_date": "2020-09-18T20:06:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Planter_Pot_QP6Ebony/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:37:52Z", + "updatedAt": "2024-04-03T09:20:59Z", + "name": "Ecoforms_Planter_Pot_GP12AAvocado", + "owner": "GoogleResearch", + "description": "Ecoforms Planter Pot, GP12A-Avocado", + "likes": 0, + "downloads": 1021, + "filesize": 7996137, + "upload_date": "2020-09-18T17:37:49Z", + "modify_date": "2020-09-18T20:06:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Planter_Pot_GP12AAvocado/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:37:46Z", + "updatedAt": "2024-04-03T08:21:39Z", + "name": "Ecoforms_Planter_Bowl_Cole_Hardware", + "owner": "GoogleResearch", + "description": "Ecoforms Planter Bowl, Cole Hardware", + "likes": 0, + "downloads": 1095, + "filesize": 5841566, + "upload_date": "2020-09-18T17:37:43Z", + "modify_date": "2020-09-18T20:06:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Planter_Bowl_Cole_Hardware/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:37:41Z", + "updatedAt": "2024-04-03T08:49:52Z", + "name": "Ecoforms_Plant_Saucer_SQ8COR", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Saucer, SQ8-COR", + "likes": 0, + "downloads": 1010, + "filesize": 7608279, + "upload_date": "2020-09-18T17:37:38Z", + "modify_date": "2020-09-18T20:06:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Saucer_SQ8COR/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:37:35Z", + "updatedAt": "2024-04-03T09:20:53Z", + "name": "Ecoforms_Plant_Saucer_SQ1HARVEST", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Saucer, SQ1-HARVEST", + "likes": 0, + "downloads": 1007, + "filesize": 7933674, + "upload_date": "2020-09-18T17:37:32Z", + "modify_date": "2020-09-18T20:06:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Saucer_SQ1HARVEST/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:37:25Z", + "updatedAt": "2024-04-03T08:49:45Z", + "name": "Ecoforms_Plant_Saucer_S20MOCHA", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Saucer, S20-MOCHA", + "likes": 0, + "downloads": 1048, + "filesize": 7606221, + "upload_date": "2020-09-18T17:37:22Z", + "modify_date": "2020-09-18T20:06:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Saucer_S20MOCHA/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:37:19Z", + "updatedAt": "2024-04-03T08:21:34Z", + "name": "Ecoforms_Plant_Saucer_S17MOCHA", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Saucer, S17-MOCHA", + "likes": 0, + "downloads": 1139, + "filesize": 7312581, + "upload_date": "2020-09-18T17:37:16Z", + "modify_date": "2020-09-18T20:06:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Saucer_S17MOCHA/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:37:13Z", + "updatedAt": "2024-04-03T09:53:43Z", + "name": "Ecoforms_Plant_Saucer_S14NATURAL", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Saucer, S14-NATURAL", + "likes": 0, + "downloads": 912, + "filesize": 7739743, + "upload_date": "2020-09-18T17:37:10Z", + "modify_date": "2020-09-18T20:06:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Saucer_S14NATURAL/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:37:07Z", + "updatedAt": "2024-04-03T09:53:37Z", + "name": "Ecoforms_Plant_Saucer_S14MOCHA", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Saucer, S14-MOCHA", + "likes": 0, + "downloads": 908, + "filesize": 7111823, + "upload_date": "2020-09-18T17:37:04Z", + "modify_date": "2020-09-18T20:06:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Saucer_S14MOCHA/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:37:01Z", + "updatedAt": "2024-04-03T08:21:27Z", + "name": "Ecoforms_Plant_Pot_GP9_SAND", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Pot, GP9 SAND", + "likes": 0, + "downloads": 1030, + "filesize": 8093283, + "upload_date": "2020-09-18T17:36:58Z", + "modify_date": "2020-09-18T20:06:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Pot_GP9_SAND/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:36:55Z", + "updatedAt": "2024-04-03T09:20:47Z", + "name": "Ecoforms_Plant_Pot_GP9AAvocado", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Pot, GP9A-Avocado", + "likes": 0, + "downloads": 1043, + "filesize": 9600395, + "upload_date": "2020-09-18T17:36:51Z", + "modify_date": "2020-09-18T20:06:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Pot_GP9AAvocado/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:36:49Z", + "updatedAt": "2024-04-03T08:49:39Z", + "name": "Ecoforms_Plant_Plate_S11Turquoise", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Plate, S11-Turquoise", + "likes": 0, + "downloads": 1100, + "filesize": 5195945, + "upload_date": "2020-09-18T17:36:46Z", + "modify_date": "2020-09-18T20:06:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Plate_S11Turquoise/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:36:44Z", + "updatedAt": "2024-04-03T08:21:03Z", + "name": "Ecoforms_Plant_Container_Urn_55_Mocha", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, Urn 5.5, Mocha", + "likes": 0, + "downloads": 1121, + "filesize": 9338024, + "upload_date": "2020-09-18T17:36:40Z", + "modify_date": "2020-09-18T20:06:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_Urn_55_Mocha/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:36:38Z", + "updatedAt": "2024-04-03T09:20:41Z", + "name": "Ecoforms_Plant_Container_Urn_55_Avocado", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, Urn 5.5, Avocado", + "likes": 0, + "downloads": 1071, + "filesize": 8239461, + "upload_date": "2020-09-18T17:36:35Z", + "modify_date": "2020-09-18T20:06:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_Urn_55_Avocado/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:36:32Z", + "updatedAt": "2024-04-03T08:49:31Z", + "name": "Ecoforms_Plant_Container_URN_SAN", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, URN SAN", + "likes": 0, + "downloads": 1022, + "filesize": 7954869, + "upload_date": "2020-09-18T17:36:29Z", + "modify_date": "2020-09-18T20:06:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_URN_SAN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:36:27Z", + "updatedAt": "2024-04-03T08:20:54Z", + "name": "Ecoforms_Plant_Container_URN_NAT", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, URN NAT", + "likes": 0, + "downloads": 1015, + "filesize": 10248547, + "upload_date": "2020-09-18T17:36:23Z", + "modify_date": "2020-09-18T20:06:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_URN_NAT/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:36:20Z", + "updatedAt": "2024-04-03T09:20:33Z", + "name": "Ecoforms_Plant_Container_SB9Turquoise", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, SB9-Turquoise", + "likes": 0, + "downloads": 985, + "filesize": 5683752, + "upload_date": "2020-09-18T17:36:17Z", + "modify_date": "2020-09-18T20:06:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_SB9Turquoise/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:36:15Z", + "updatedAt": "2024-04-03T10:19:41Z", + "name": "Ecoforms_Plant_Container_S24Turquoise", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, S24-Turquoise", + "likes": 0, + "downloads": 896, + "filesize": 6446809, + "upload_date": "2020-09-18T17:36:12Z", + "modify_date": "2020-09-18T20:06:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_S24Turquoise/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:36:04Z", + "updatedAt": "2024-04-03T07:47:37Z", + "name": "Ecoforms_Plant_Container_S24NATURAL", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, S24-NATURAL", + "likes": 0, + "downloads": 885, + "filesize": 7775403, + "upload_date": "2020-09-18T17:36:01Z", + "modify_date": "2020-09-18T20:06:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_S24NATURAL/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:35:47Z", + "updatedAt": "2024-04-03T09:53:33Z", + "name": "Ecoforms_Plant_Container_S14Turquoise", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, S14-Turquoise", + "likes": 0, + "downloads": 912, + "filesize": 5344375, + "upload_date": "2020-09-18T17:35:44Z", + "modify_date": "2020-09-18T20:06:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_S14Turquoise/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:35:37Z", + "updatedAt": "2024-04-03T10:22:39Z", + "name": "Ecoforms_Plant_Container_Quadra_Turquoise_QP12", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, Quadra, Turquoise, QP12", + "likes": 0, + "downloads": 895, + "filesize": 7648243, + "upload_date": "2020-09-18T17:35:33Z", + "modify_date": "2020-09-18T20:06:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_Quadra_Turquoise_QP12/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:35:20Z", + "updatedAt": "2024-04-03T09:53:25Z", + "name": "Ecoforms_Plant_Container_Quadra_Sand_QP6", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, Quadra, Sand, QP6", + "likes": 0, + "downloads": 923, + "filesize": 6552057, + "upload_date": "2020-09-18T17:35:17Z", + "modify_date": "2020-09-18T20:06:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_Quadra_Sand_QP6/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:35:14Z", + "updatedAt": "2024-04-03T10:22:32Z", + "name": "Ecoforms_Plant_Container_QP_Turquoise", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, QP, Turquoise", + "likes": 0, + "downloads": 887, + "filesize": 6243767, + "upload_date": "2020-09-18T17:35:12Z", + "modify_date": "2020-09-18T20:06:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_QP_Turquoise/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:35:08Z", + "updatedAt": "2024-04-03T08:49:20Z", + "name": "Ecoforms_Plant_Container_QP_Harvest", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, QP, Harvest", + "likes": 0, + "downloads": 1023, + "filesize": 4595110, + "upload_date": "2020-09-18T17:35:05Z", + "modify_date": "2020-09-18T20:06:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_QP_Harvest/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:35:03Z", + "updatedAt": "2024-04-03T08:20:48Z", + "name": "Ecoforms_Plant_Container_QP6HARVEST", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, QP6-HARVEST", + "likes": 0, + "downloads": 1025, + "filesize": 5461333, + "upload_date": "2020-09-18T17:34:58Z", + "modify_date": "2020-09-18T20:06:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_QP6HARVEST/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:34:56Z", + "updatedAt": "2024-04-03T07:47:25Z", + "name": "Ecoforms_Plant_Container_QP6CORAL", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, QP6-CORAL", + "likes": 0, + "downloads": 1081, + "filesize": 10787238, + "upload_date": "2020-09-18T17:34:52Z", + "modify_date": "2020-09-18T20:06:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_QP6CORAL/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:34:50Z", + "updatedAt": "2024-04-03T08:20:40Z", + "name": "Ecoforms_Plant_Container_GP16A_Coral", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, GP16A, Coral", + "likes": 0, + "downloads": 1034, + "filesize": 9503992, + "upload_date": "2020-09-18T17:34:46Z", + "modify_date": "2020-09-18T20:06:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_GP16A_Coral/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:34:43Z", + "updatedAt": "2024-04-03T08:20:30Z", + "name": "Ecoforms_Plant_Container_GP16AMOCHA", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, GP16A-MOCHA", + "likes": 0, + "downloads": 1069, + "filesize": 10169532, + "upload_date": "2020-09-18T17:34:40Z", + "modify_date": "2020-09-18T20:06:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_GP16AMOCHA/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:34:37Z", + "updatedAt": "2024-04-03T09:53:16Z", + "name": "Ecoforms_Plant_Container_FB6_Tur", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, FB6 Tur", + "likes": 0, + "downloads": 938, + "filesize": 5682643, + "upload_date": "2020-09-18T17:34:34Z", + "modify_date": "2020-09-18T20:06:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_FB6_Tur/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:34:32Z", + "updatedAt": "2024-04-03T08:20:23Z", + "name": "Ecoforms_Plant_Container_B4_Har", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, B4 Har", + "likes": 0, + "downloads": 1026, + "filesize": 6027367, + "upload_date": "2020-09-18T17:34:29Z", + "modify_date": "2020-09-18T20:06:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_B4_Har/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:34:27Z", + "updatedAt": "2024-04-03T07:47:20Z", + "name": "Ecoforms_Plant_Container_12_Pot_Nova", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Container, 12 Pot Nova", + "likes": 0, + "downloads": 982, + "filesize": 11053382, + "upload_date": "2020-09-18T17:34:23Z", + "modify_date": "2020-09-18T20:06:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Container_12_Pot_Nova/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:34:21Z", + "updatedAt": "2024-04-04T05:45:09Z", + "name": "Ecoforms_Plant_Bowl_Turquoise_7", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Bowl, Turquoise, 7\"", + "likes": 0, + "downloads": 977, + "filesize": 6326798, + "upload_date": "2020-09-18T17:34:18Z", + "modify_date": "2020-09-18T20:06:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Bowl_Turquoise_7/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:34:15Z", + "updatedAt": "2024-04-04T05:44:51Z", + "name": "Ecoforms_Plant_Bowl_Atlas_Low", + "owner": "GoogleResearch", + "description": "Ecoforms Plant Bowl, Atlas Low", + "likes": 0, + "downloads": 1014, + "filesize": 5616803, + "upload_date": "2020-09-18T17:34:13Z", + "modify_date": "2020-09-18T20:06:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Plant_Bowl_Atlas_Low/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:34:10Z", + "updatedAt": "2024-04-03T09:53:00Z", + "name": "Ecoforms_Garden_Pot_GP16ATurquois", + "owner": "GoogleResearch", + "description": "Ecoforms Garden Pot, GP16A-Turquois", + "likes": 0, + "downloads": 914, + "filesize": 7010186, + "upload_date": "2020-09-18T17:34:07Z", + "modify_date": "2020-09-18T20:06:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Garden_Pot_GP16ATurquois/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:34:00Z", + "updatedAt": "2024-04-04T05:41:22Z", + "name": "Ecoforms_Cup_B4_SAN", + "owner": "GoogleResearch", + "description": "Ecoforms Cup, B4 SAN", + "likes": 0, + "downloads": 1038, + "filesize": 4754276, + "upload_date": "2020-09-18T17:33:58Z", + "modify_date": "2020-09-18T20:06:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ecoforms_Cup_B4_SAN/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:33:55Z", + "updatedAt": "2024-04-03T09:20:26Z", + "name": "Down_To_Earth_Orchid_Pot_Ceramic_Red", + "owner": "GoogleResearch", + "description": "Down To Earth Orchid Pot, Ceramic, Red", + "likes": 0, + "downloads": 999, + "filesize": 5682065, + "upload_date": "2020-09-18T17:33:53Z", + "modify_date": "2020-09-18T20:06:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Down_To_Earth_Orchid_Pot_Ceramic_Red/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:33:50Z", + "updatedAt": "2024-04-03T08:49:04Z", + "name": "Down_To_Earth_Orchid_Pot_Ceramic_Lime", + "owner": "GoogleResearch", + "description": "Down To Earth Orchid Pot, Ceramic, Lime", + "likes": 0, + "downloads": 1031, + "filesize": 4709528, + "upload_date": "2020-09-18T17:33:48Z", + "modify_date": "2020-09-18T20:06:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Down_To_Earth_Orchid_Pot_Ceramic_Lime/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:33:45Z", + "updatedAt": "2024-04-03T09:52:53Z", + "name": "Down_To_Earth_Ceramic_Orchid_Pot_Asst_Blue", + "owner": "GoogleResearch", + "description": "Down To Earth Ceramic Orchid Pot, Asst Blue", + "likes": 0, + "downloads": 960, + "filesize": 8335858, + "upload_date": "2020-09-18T17:33:42Z", + "modify_date": "2020-09-18T20:06:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Down_To_Earth_Ceramic_Orchid_Pot_Asst_Blue/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:33:33Z", + "updatedAt": "2024-04-04T05:35:40Z", + "name": "Dog", + "owner": "GoogleResearch", + "description": "Dog\nDog", + "likes": 0, + "downloads": 1206, + "filesize": 8024840, + "upload_date": "2020-09-18T17:33:29Z", + "modify_date": "2020-09-18T20:06:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Dog/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:33:06Z", + "updatedAt": "2024-04-03T09:52:47Z", + "name": "Dixie_10_ounce_Bowls_35_ct", + "owner": "GoogleResearch", + "description": "Dixie 10 ounce Bowls - 35 ct", + "likes": 0, + "downloads": 955, + "filesize": 5249932, + "upload_date": "2020-09-18T17:33:03Z", + "modify_date": "2020-09-18T20:06:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Dixie_10_ounce_Bowls_35_ct/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:33:00Z", + "updatedAt": "2024-04-03T09:52:39Z", + "name": "Dino_5", + "owner": "GoogleResearch", + "description": "Dino 5", + "likes": 0, + "downloads": 1126, + "filesize": 13485649, + "upload_date": "2020-09-18T17:32:56Z", + "modify_date": "2020-09-18T20:06:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Dino_5/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-18T17:32:53Z", + "updatedAt": "2024-04-03T08:48:45Z", + "name": "Dino_4", + "owner": "GoogleResearch", + "description": "Dino 4", + "likes": 0, + "downloads": 1376, + "filesize": 12465461, + "upload_date": "2020-09-18T17:32:50Z", + "modify_date": "2020-09-18T20:06:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Dino_4/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-18T17:32:46Z", + "updatedAt": "2024-04-03T09:20:13Z", + "name": "Dino_3", + "owner": "GoogleResearch", + "description": "Dino 3", + "likes": 0, + "downloads": 1250, + "filesize": 17329483, + "upload_date": "2020-09-18T17:32:41Z", + "modify_date": "2020-09-18T20:06:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Dino_3/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-18T17:32:11Z", + "updatedAt": "2024-04-03T08:20:12Z", + "name": "Diet_Pepsi_Soda_Cola12_Pack_12_oz_Cans", + "owner": "GoogleResearch", + "description": "Diet Pepsi Soda Cola,12 Pack 12 oz Cans", + "likes": 0, + "downloads": 1146, + "filesize": 12126111, + "upload_date": "2020-09-18T17:32:07Z", + "modify_date": "2020-09-18T20:06:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Diet_Pepsi_Soda_Cola12_Pack_12_oz_Cans/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:32:05Z", + "updatedAt": "2024-04-03T10:19:36Z", + "name": "Diamond_Visions_Scissors_Red", + "owner": "GoogleResearch", + "description": "Diamond Visions Scissors, Red", + "likes": 0, + "downloads": 947, + "filesize": 2935793, + "upload_date": "2020-09-18T17:32:02Z", + "modify_date": "2020-09-18T20:06:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Diamond_Visions_Scissors_Red/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:30:02Z", + "updatedAt": "2024-04-03T08:20:07Z", + "name": "Cole_Hardware_Saucer_Glazed_6", + "owner": "GoogleResearch", + "description": "Cole Hardware Saucer, Glazed, 6\"", + "likes": 0, + "downloads": 1026, + "filesize": 3549823, + "upload_date": "2020-09-18T17:29:59Z", + "modify_date": "2020-09-18T20:06:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Saucer_Glazed_6/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:02:15Z", + "updatedAt": "2024-04-03T08:20:00Z", + "name": "Deskstar_Desk_Top_Hard_Drive_1_TB", + "owner": "GoogleResearch", + "description": "Deskstar Desk Top Hard Drive, 1 TB", + "likes": 0, + "downloads": 1069, + "filesize": 9430743, + "upload_date": "2020-09-18T17:02:11Z", + "modify_date": "2020-09-18T20:06:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Deskstar_Desk_Top_Hard_Drive_1_TB/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:02:08Z", + "updatedAt": "2024-04-03T09:20:03Z", + "name": "Design_Ideas_Drawer_Store_Organizer", + "owner": "GoogleResearch", + "description": "Design Ideas Drawer Store Organizer", + "likes": 0, + "downloads": 1109, + "filesize": 13351441, + "upload_date": "2020-09-18T17:02:04Z", + "modify_date": "2020-09-18T20:06:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Design_Ideas_Drawer_Store_Organizer/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:02:02Z", + "updatedAt": "2024-04-03T08:48:39Z", + "name": "DPC_tropical_Trends_Hat", + "owner": "GoogleResearch", + "description": "DPC tropical Trends, Hat", + "likes": 0, + "downloads": 1153, + "filesize": 10864484, + "upload_date": "2020-09-18T17:01:58Z", + "modify_date": "2020-09-18T20:06:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/DPC_tropical_Trends_Hat/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Hat" + ] + }, + { + "createdAt": "2020-09-18T17:01:55Z", + "updatedAt": "2024-04-03T09:19:55Z", + "name": "DPC_Thinsulate_Isolate_Gloves_Brown", + "owner": "GoogleResearch", + "description": "DPC Thinsulate Isolate Gloves, Brown", + "likes": 0, + "downloads": 1007, + "filesize": 8887961, + "upload_date": "2020-09-18T17:01:52Z", + "modify_date": "2020-09-18T20:06:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/DPC_Thinsulate_Isolate_Gloves_Brown/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:01:49Z", + "updatedAt": "2024-04-03T09:52:33Z", + "name": "DPC_Handmade_Hat_Brown", + "owner": "GoogleResearch", + "description": "DPC Handmade Hat, Brown", + "likes": 0, + "downloads": 1067, + "filesize": 5311685, + "upload_date": "2020-09-18T17:01:46Z", + "modify_date": "2020-09-18T20:06:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/DPC_Handmade_Hat_Brown/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Hat" + ] + }, + { + "createdAt": "2020-09-18T17:01:44Z", + "updatedAt": "2024-04-03T10:22:24Z", + "name": "DOLL_FAMILY", + "owner": "GoogleResearch", + "description": "DOLL FAMILY", + "likes": 0, + "downloads": 1073, + "filesize": 13003539, + "upload_date": "2020-09-18T17:01:40Z", + "modify_date": "2020-09-18T20:06:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/DOLL_FAMILY/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:01:37Z", + "updatedAt": "2024-04-03T10:22:16Z", + "name": "DINNING_ROOM_FURNITURE_SET_1", + "owner": "GoogleResearch", + "description": "DINNING ROOM (FURNITURE SET 1)\nThis set includes a dining table, a cabinet, and four chairs. Made of Eco-Friendly PlanWood and solid rubber wood.", + "likes": 0, + "downloads": 927, + "filesize": 8368897, + "upload_date": "2020-09-18T17:01:34Z", + "modify_date": "2020-09-18T20:06:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/DINNING_ROOM_FURNITURE_SET_1/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:01:14Z", + "updatedAt": "2024-04-03T10:19:27Z", + "name": "DINING_ROOM_CLASSIC_UJuxQ0hv5XU", + "owner": "GoogleResearch", + "description": "DINING ROOM - CLASSIC\nChildren can enjoy decorating their dollhouse with the Classic set of furniture while developing their imagination and creating more interest time.", + "likes": 0, + "downloads": 903, + "filesize": 8364434, + "upload_date": "2020-09-18T17:01:11Z", + "modify_date": "2020-09-18T20:06:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/DINING_ROOM_CLASSIC_UJuxQ0hv5XU/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:01:09Z", + "updatedAt": "2024-04-03T07:47:06Z", + "name": "DINING_ROOM_CLASSIC", + "owner": "GoogleResearch", + "description": "DINING ROOM - CLASSIC\nChildren can enjoy decorating their dollhouse with the Classic set of furniture while developing their imagination and creating more interest time.", + "likes": 0, + "downloads": 933, + "filesize": 8568827, + "upload_date": "2020-09-18T17:01:05Z", + "modify_date": "2020-09-18T20:06:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/DINING_ROOM_CLASSIC/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:01:03Z", + "updatedAt": "2024-04-03T19:03:20Z", + "name": "DANCING_ALLIGATOR_zoWBjc0jbTs", + "owner": "GoogleResearch", + "description": "DANCING ALLIGATOR\nWhile being pulled, the wooden pieces make rhythmic click-clack sounds.", + "likes": 0, + "downloads": 911, + "filesize": 8509546, + "upload_date": "2020-09-18T17:01:00Z", + "modify_date": "2020-09-18T20:06:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/DANCING_ALLIGATOR_zoWBjc0jbTs/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:00:56Z", + "updatedAt": "2024-03-12T04:01:17Z", + "name": "DANCING_ALLIGATOR", + "owner": "GoogleResearch", + "description": "DANCING ALLIGATOR\nWhen pulled along, the alligator moves his head and tail up and down making click-clack sound.", + "likes": 0, + "downloads": 70, + "filesize": 10882788, + "upload_date": "2020-09-18T17:00:53Z", + "modify_date": "2020-09-18T20:06:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/DANCING_ALLIGATOR/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T17:00:50Z", + "updatedAt": "2024-04-03T09:52:23Z", + "name": "Curver_Storage_Bin_Black_Small", + "owner": "GoogleResearch", + "description": "Curver Storage Bin, Black, Small", + "likes": 0, + "downloads": 996, + "filesize": 8515388, + "upload_date": "2020-09-18T17:00:46Z", + "modify_date": "2020-09-18T20:06:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Curver_Storage_Bin_Black_Small/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:00:43Z", + "updatedAt": "2024-04-03T09:19:48Z", + "name": "Crosley_Alarm_Clock_Vintage_Metal", + "owner": "GoogleResearch", + "description": "Crosley Alarm Clock, Vintage Metal", + "likes": 0, + "downloads": 1116, + "filesize": 6754158, + "upload_date": "2020-09-18T17:00:40Z", + "modify_date": "2020-09-18T20:06:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Crosley_Alarm_Clock_Vintage_Metal/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:00:38Z", + "updatedAt": "2024-04-03T09:52:19Z", + "name": "Craftsman_Grip_Screwdriver_Phillips_Cushion", + "owner": "GoogleResearch", + "description": "Craftsman Grip Screwdriver, Phillips Cushion", + "likes": 0, + "downloads": 1030, + "filesize": 2575332, + "upload_date": "2020-09-18T17:00:35Z", + "modify_date": "2020-09-18T20:06:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Craftsman_Grip_Screwdriver_Phillips_Cushion/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:00:33Z", + "updatedAt": "2024-04-03T09:19:41Z", + "name": "Corningware_CW_by_Corningware_3qt_Oblong_Casserole_Dish_Blue", + "owner": "GoogleResearch", + "description": "Corningware CW by Corningware 3-qt. Oblong Casserole Dish (Blue)", + "likes": 0, + "downloads": 1073, + "filesize": 6363782, + "upload_date": "2020-09-18T17:00:30Z", + "modify_date": "2020-09-18T20:06:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Corningware_CW_by_Corningware_3qt_Oblong_Casserole_Dish_Blue/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:00:28Z", + "updatedAt": "2024-04-03T09:19:34Z", + "name": "Cole_Hardware_School_Bell_Solid_Brass_38", + "owner": "GoogleResearch", + "description": "Cole Hardware School Bell, Solid Brass, 3/8\"", + "likes": 0, + "downloads": 1175, + "filesize": 5320172, + "upload_date": "2020-09-18T17:00:25Z", + "modify_date": "2020-09-18T20:06:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_School_Bell_Solid_Brass_38/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T17:00:17Z", + "updatedAt": "2024-04-03T09:19:29Z", + "name": "Cole_Hardware_Saucer_Electric", + "owner": "GoogleResearch", + "description": "Cole Hardware Saucer, Electric", + "likes": 0, + "downloads": 1046, + "filesize": 4873623, + "upload_date": "2020-09-18T17:00:14Z", + "modify_date": "2020-09-18T20:06:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Saucer_Electric/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:00:11Z", + "updatedAt": "2024-04-03T08:48:33Z", + "name": "Cole_Hardware_Plant_Saucer_Glazed_9", + "owner": "GoogleResearch", + "description": "Cole Hardware Plant Saucer, Glazed, 9\"", + "likes": 0, + "downloads": 1013, + "filesize": 4381906, + "upload_date": "2020-09-18T17:00:08Z", + "modify_date": "2020-09-18T20:06:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Plant_Saucer_Glazed_9/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:00:05Z", + "updatedAt": "2024-04-03T08:19:53Z", + "name": "Cole_Hardware_Plant_Saucer_Brown_125", + "owner": "GoogleResearch", + "description": "Cole Hardware Plant Saucer, Brown, 12.5\"", + "likes": 0, + "downloads": 1022, + "filesize": 4138737, + "upload_date": "2020-09-18T17:00:03Z", + "modify_date": "2020-09-18T20:06:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Plant_Saucer_Brown_125/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T17:00:00Z", + "updatedAt": "2024-04-03T09:52:10Z", + "name": "Cole_Hardware_Orchid_Pot_85", + "owner": "GoogleResearch", + "description": "Cole Hardware Orchid Pot, 8.5\"", + "likes": 0, + "downloads": 938, + "filesize": 4208197, + "upload_date": "2020-09-18T16:59:57Z", + "modify_date": "2020-09-18T20:06:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Orchid_Pot_85/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:59:55Z", + "updatedAt": "2024-04-03T09:52:06Z", + "name": "Cole_Hardware_Mug_Classic_Blue", + "owner": "GoogleResearch", + "description": "Cole Hardware Mug, Classic Blue", + "likes": 0, + "downloads": 1013, + "filesize": 3688547, + "upload_date": "2020-09-18T16:59:52Z", + "modify_date": "2020-09-18T20:06:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Mug_Classic_Blue/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:59:50Z", + "updatedAt": "2024-04-03T08:19:47Z", + "name": "Cole_Hardware_Mini_Honey_Dipper", + "owner": "GoogleResearch", + "description": "Cole Hardware Mini Honey Dipper", + "likes": 0, + "downloads": 1031, + "filesize": 2275218, + "upload_date": "2020-09-18T16:59:48Z", + "modify_date": "2020-09-18T20:06:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Mini_Honey_Dipper/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T16:59:46Z", + "updatedAt": "2024-04-03T08:19:43Z", + "name": "Cole_Hardware_Hammer_Black", + "owner": "GoogleResearch", + "description": "Cole Hardware Hammer, Black", + "likes": 0, + "downloads": 1096, + "filesize": 2359266, + "upload_date": "2020-09-18T16:59:43Z", + "modify_date": "2020-09-18T20:06:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Hammer_Black/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:59:41Z", + "updatedAt": "2024-04-03T08:48:29Z", + "name": "Cole_Hardware_Flower_Pot_1025", + "owner": "GoogleResearch", + "description": "Cole Hardware Flower Pot, 10.25\"", + "likes": 0, + "downloads": 1054, + "filesize": 3888864, + "upload_date": "2020-09-18T16:59:38Z", + "modify_date": "2020-09-18T20:06:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Flower_Pot_1025/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:59:36Z", + "updatedAt": "2024-04-03T09:19:24Z", + "name": "Cole_Hardware_Electric_Pot_Cabana_55", + "owner": "GoogleResearch", + "description": "Cole Hardware Electric Pot, Cabana, 5.5\"", + "likes": 0, + "downloads": 983, + "filesize": 3888353, + "upload_date": "2020-09-18T16:59:33Z", + "modify_date": "2020-09-18T20:06:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Electric_Pot_Cabana_55/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:59:31Z", + "updatedAt": "2024-04-03T10:19:11Z", + "name": "Cole_Hardware_Electric_Pot_Assortment_55", + "owner": "GoogleResearch", + "description": "Cole Hardware Electric Pot, Assortment, 5.5\"", + "likes": 0, + "downloads": 894, + "filesize": 4878555, + "upload_date": "2020-09-18T16:59:28Z", + "modify_date": "2020-09-18T20:06:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Electric_Pot_Assortment_55/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:59:26Z", + "updatedAt": "2024-04-03T08:48:20Z", + "name": "Cole_Hardware_Dishtowel_Stripe", + "owner": "GoogleResearch", + "description": "Cole Hardware Dishtowel, Stripe", + "likes": 0, + "downloads": 1146, + "filesize": 16594581, + "upload_date": "2020-09-18T16:59:22Z", + "modify_date": "2020-09-18T20:06:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Dishtowel_Stripe/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:59:19Z", + "updatedAt": "2024-04-03T08:48:11Z", + "name": "Cole_Hardware_Dishtowel_Red", + "owner": "GoogleResearch", + "description": "Cole Hardware Dishtowel, Red", + "likes": 0, + "downloads": 1185, + "filesize": 14640135, + "upload_date": "2020-09-18T16:59:15Z", + "modify_date": "2020-09-18T20:06:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Dishtowel_Red/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:58:54Z", + "updatedAt": "2024-04-03T09:19:14Z", + "name": "Cole_Hardware_Dishtowel_Multicolors", + "owner": "GoogleResearch", + "description": "Cole Hardware Dishtowel, Multicolors", + "likes": 0, + "downloads": 1186, + "filesize": 16736862, + "upload_date": "2020-09-18T16:58:50Z", + "modify_date": "2020-09-18T20:06:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Dishtowel_Multicolors/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:58:47Z", + "updatedAt": "2024-04-03T08:19:36Z", + "name": "Cole_Hardware_Dishtowel_BlueWhite", + "owner": "GoogleResearch", + "description": "Cole Hardware Dishtowel, Blue/White", + "likes": 0, + "downloads": 1108, + "filesize": 13091650, + "upload_date": "2020-09-18T16:58:42Z", + "modify_date": "2020-09-18T20:06:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Dishtowel_BlueWhite/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:58:39Z", + "updatedAt": "2024-04-03T08:48:04Z", + "name": "Cole_Hardware_Dishtowel_Blue", + "owner": "GoogleResearch", + "description": "Cole Hardware Dishtowel, Blue", + "likes": 0, + "downloads": 1125, + "filesize": 16968229, + "upload_date": "2020-09-18T16:58:35Z", + "modify_date": "2020-09-18T20:06:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Dishtowel_Blue/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:58:32Z", + "updatedAt": "2024-04-04T05:44:35Z", + "name": "Cole_Hardware_Deep_Bowl_Good_Earth_1075", + "owner": "GoogleResearch", + "description": "Cole Hardware Deep Bowl, Good Earth, 10.75\"", + "likes": 0, + "downloads": 1084, + "filesize": 3746750, + "upload_date": "2020-09-18T16:58:30Z", + "modify_date": "2020-09-18T20:06:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Deep_Bowl_Good_Earth_1075/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:58:27Z", + "updatedAt": "2024-04-03T08:47:56Z", + "name": "Cole_Hardware_Butter_Dish_Square_Red", + "owner": "GoogleResearch", + "description": "Cole Hardware Butter Dish, Square, Red", + "likes": 0, + "downloads": 1175, + "filesize": 6739156, + "upload_date": "2020-09-18T16:58:24Z", + "modify_date": "2020-09-18T20:06:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Butter_Dish_Square_Red/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T16:58:10Z", + "updatedAt": "2024-04-04T05:44:00Z", + "name": "Cole_Hardware_Bowl_Scirocco_YellowBlue", + "owner": "GoogleResearch", + "description": "Cole Hardware Bowl Scirocco, Yellow/Blue", + "likes": 0, + "downloads": 1010, + "filesize": 5105213, + "upload_date": "2020-09-18T16:58:08Z", + "modify_date": "2020-09-18T20:06:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Bowl_Scirocco_YellowBlue/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:57:54Z", + "updatedAt": "2024-04-03T09:51:55Z", + "name": "Cole_Hardware_Antislip_Surfacing_White_2_x_60", + "owner": "GoogleResearch", + "description": "Cole Hardware Antislip Surfacing, White, 2\" x 60'", + "likes": 0, + "downloads": 917, + "filesize": 3964874, + "upload_date": "2020-09-18T16:57:52Z", + "modify_date": "2020-09-18T20:06:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Antislip_Surfacing_White_2_x_60/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:57:49Z", + "updatedAt": "2024-04-03T10:19:05Z", + "name": "Cole_Hardware_Antislip_Surfacing_Material_White", + "owner": "GoogleResearch", + "description": "Cole Hardware Antislip Surfacing Material, White", + "likes": 0, + "downloads": 1037, + "filesize": 5482097, + "upload_date": "2020-09-18T16:57:47Z", + "modify_date": "2020-09-18T20:06:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cole_Hardware_Antislip_Surfacing_Material_White/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:57:44Z", + "updatedAt": "2024-04-03T10:18:56Z", + "name": "Closetmaid_Premium_Fabric_Cube_Red", + "owner": "GoogleResearch", + "description": "Closetmaid Premium Fabric Cube - Red", + "likes": 0, + "downloads": 953, + "filesize": 7270520, + "upload_date": "2020-09-18T16:57:41Z", + "modify_date": "2020-09-18T20:06:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Closetmaid_Premium_Fabric_Cube_Red/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:57:20Z", + "updatedAt": "2024-04-03T08:19:25Z", + "name": "Clorox_Premium_Choice_Gloves_SM_1_pair", + "owner": "GoogleResearch", + "description": "Clorox Premium Choice Gloves, S/M - 1 pair\n1 pair foam lined latex 13\" cuff gloves. Moisturized with glycerine.", + "likes": 0, + "downloads": 1034, + "filesize": 4625152, + "upload_date": "2020-09-18T16:57:18Z", + "modify_date": "2020-09-18T20:06:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Clorox_Premium_Choice_Gloves_SM_1_pair/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:57:15Z", + "updatedAt": "2024-04-03T09:19:08Z", + "name": "Circo_Fish_Toothbrush_Holder_14995988", + "owner": "GoogleResearch", + "description": "Circo Fish Toothbrush Holder 14995988", + "likes": 0, + "downloads": 1054, + "filesize": 5131883, + "upload_date": "2020-09-18T16:57:12Z", + "modify_date": "2020-09-18T20:06:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Circo_Fish_Toothbrush_Holder_14995988/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T16:57:10Z", + "updatedAt": "2024-04-03T10:18:48Z", + "name": "Chefmate_8_Frypan", + "owner": "GoogleResearch", + "description": "Chefmate 8\" Frypan", + "likes": 0, + "downloads": 969, + "filesize": 7733360, + "upload_date": "2020-09-18T16:57:07Z", + "modify_date": "2020-09-18T20:06:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Chefmate_8_Frypan/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:57:04Z", + "updatedAt": "2024-04-03T08:47:51Z", + "name": "Chef_Style_Round_Cake_Pan_9_inch_pan", + "owner": "GoogleResearch", + "description": "Chef Style Round Cake Pan - 9 inch pan", + "likes": 0, + "downloads": 1019, + "filesize": 4418850, + "upload_date": "2020-09-18T16:57:01Z", + "modify_date": "2020-09-18T20:06:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Chef_Style_Round_Cake_Pan_9_inch_pan/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:56:59Z", + "updatedAt": "2024-04-03T09:51:49Z", + "name": "Central_Garden_Flower_Pot_Goo_425", + "owner": "GoogleResearch", + "description": "Central Garden Flower Pot, Goo, 4.25\"", + "likes": 0, + "downloads": 1073, + "filesize": 4731312, + "upload_date": "2020-09-18T16:56:56Z", + "modify_date": "2020-09-18T20:06:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Central_Garden_Flower_Pot_Goo_425/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T16:56:54Z", + "updatedAt": "2024-04-03T09:19:02Z", + "name": "Calphalon_Kitchen_Essentials_12_Cast_Iron_Fry_Pan_Black", + "owner": "GoogleResearch", + "description": "Calphalon Kitchen Essentials 12\" Cast Iron Fry Pan, Black", + "likes": 0, + "downloads": 1086, + "filesize": 2515560, + "upload_date": "2020-09-18T16:56:52Z", + "modify_date": "2020-09-18T20:06:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Calphalon_Kitchen_Essentials_12_Cast_Iron_Fry_Pan_Black/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:56:49Z", + "updatedAt": "2024-04-03T07:44:27Z", + "name": "CONE_SORTING_kg5fbARBwts", + "owner": "GoogleResearch", + "description": "CONE SORTING\nLearn about height, depth, size, patterns and ?the sequence of sorting and stacking with this ?nine-piece set.", + "likes": 0, + "downloads": 898, + "filesize": 7162302, + "upload_date": "2020-09-18T16:56:47Z", + "modify_date": "2020-09-18T20:06:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CONE_SORTING_kg5fbARBwts/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:56:44Z", + "updatedAt": "2024-04-03T08:19:19Z", + "name": "CONE_SORTING", + "owner": "GoogleResearch", + "description": "CONE SORTING\nLearn about height, depth, size, patterns and ?the sequence of sorting and stacking with this ?nine-piece set.", + "likes": 0, + "downloads": 1123, + "filesize": 9827538, + "upload_date": "2020-09-18T16:56:40Z", + "modify_date": "2020-09-18T20:06:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CONE_SORTING/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:56:01Z", + "updatedAt": "2024-04-03T09:18:55Z", + "name": "CHILDREN_BEDROOM_CLASSIC", + "owner": "GoogleResearch", + "description": "CHILDREN BEDROOM - CLASSIC\nChildren can enjoy decorating their dollhouse with the Classic set of furniture while developing their imagination and creating more interest time.", + "likes": 0, + "downloads": 1261, + "filesize": 10627883, + "upload_date": "2020-09-18T16:55:58Z", + "modify_date": "2020-09-18T20:07:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CHILDREN_BEDROOM_CLASSIC/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:55:55Z", + "updatedAt": "2024-04-03T08:47:44Z", + "name": "CHICKEN_NESTING", + "owner": "GoogleResearch", + "description": "CHICKEN NESTING\nThis basic nesting toy comes with a chicken theme. It consists of 4 pieces and a circle base. Children are able to learn about the sequencing, life cycle of a chicken and play in various styles.", + "likes": 0, + "downloads": 1172, + "filesize": 7938522, + "upload_date": "2020-09-18T16:55:52Z", + "modify_date": "2020-09-18T20:07:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CHICKEN_NESTING/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:55:44Z", + "updatedAt": "2024-04-03T09:51:42Z", + "name": "CASTLE_BLOCKS", + "owner": "GoogleResearch", + "description": "CASTLE BLOCKS\nExplore your imaginative side with this 35-piece castle-themed block set.", + "likes": 0, + "downloads": 960, + "filesize": 10806996, + "upload_date": "2020-09-18T16:55:40Z", + "modify_date": "2020-09-18T20:07:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CASTLE_BLOCKS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:55:37Z", + "updatedAt": "2024-04-03T08:47:24Z", + "name": "Brother_Printing_Cartridge_PC501", + "owner": "GoogleResearch", + "description": "Brother Printing Cartridge, PC-501", + "likes": 0, + "downloads": 1088, + "filesize": 11607501, + "upload_date": "2020-09-18T16:55:34Z", + "modify_date": "2020-09-18T20:07:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Brother_Printing_Cartridge_PC501/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T16:55:31Z", + "updatedAt": "2024-04-03T08:47:16Z", + "name": "Brother_LC_1053PKS_Ink_Cartridge_CyanMagentaYellow_1pack", + "owner": "GoogleResearch", + "description": "Brother LC 1053PKS Ink Cartridge, Cyan/Magenta/Yellow - 1-pack", + "likes": 0, + "downloads": 1247, + "filesize": 10754819, + "upload_date": "2020-09-18T16:55:28Z", + "modify_date": "2020-09-18T20:07:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Brother_LC_1053PKS_Ink_Cartridge_CyanMagentaYellow_1pack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T16:55:25Z", + "updatedAt": "2024-04-03T10:18:27Z", + "name": "Brother_Ink_Cartridge_Magenta_LC75M", + "owner": "GoogleResearch", + "description": "Brother Ink Cartridge, Magenta LC75M", + "likes": 0, + "downloads": 1025, + "filesize": 12376670, + "upload_date": "2020-09-18T16:55:22Z", + "modify_date": "2020-09-18T20:07:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Brother_Ink_Cartridge_Magenta_LC75M/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T16:54:42Z", + "updatedAt": "2024-04-04T05:35:54Z", + "name": "Breyer_Horse_Of_The_Year_2015", + "owner": "GoogleResearch", + "description": "Breyer Horse Of The Year, 2015", + "likes": 0, + "downloads": 1114, + "filesize": 4678261, + "upload_date": "2020-09-18T16:54:39Z", + "modify_date": "2020-09-18T20:07:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Breyer_Horse_Of_The_Year_2015/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:54:37Z", + "updatedAt": "2024-04-04T05:43:09Z", + "name": "Bradshaw_International_11642_7_Qt_MP_Plastic_Bowl", + "owner": "GoogleResearch", + "description": "Bradshaw International 11642 7 Qt MP Plastic Bowl\n\"Good Cook - Assorted Colors.\"", + "likes": 0, + "downloads": 1095, + "filesize": 5592554, + "upload_date": "2020-09-18T16:54:34Z", + "modify_date": "2020-09-18T20:07:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Bradshaw_International_11642_7_Qt_MP_Plastic_Bowl/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:53:35Z", + "updatedAt": "2024-04-03T09:51:34Z", + "name": "Big_O_Sponges_Assorted_Cellulose_12_pack", + "owner": "GoogleResearch", + "description": "Big O Sponges, Assorted Cellulose - 12 pack", + "likes": 0, + "downloads": 922, + "filesize": 6573394, + "upload_date": "2020-09-18T16:53:31Z", + "modify_date": "2020-09-18T20:07:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Big_O_Sponges_Assorted_Cellulose_12_pack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T16:53:29Z", + "updatedAt": "2024-04-03T07:44:20Z", + "name": "Baby_Elements_Stacking_Cups", + "owner": "GoogleResearch", + "description": "Baby Elements Stacking Cups", + "likes": 0, + "downloads": 990, + "filesize": 3365657, + "upload_date": "2020-09-18T16:53:26Z", + "modify_date": "2020-09-18T20:07:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Baby_Elements_Stacking_Cups/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:52:50Z", + "updatedAt": "2024-04-03T10:18:19Z", + "name": "BUILD_A_ROBOT", + "owner": "GoogleResearch", + "description": "BUILD -A- ROBOT\nThis charming robot features four interchangeable heads, which teach emotions and offer different tactile & auditory experiences. Legs are movable for standing or sitting.", + "likes": 0, + "downloads": 958, + "filesize": 6668318, + "upload_date": "2020-09-18T16:52:47Z", + "modify_date": "2020-09-18T20:07:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BUILD_A_ROBOT/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:52:45Z", + "updatedAt": "2024-04-03T09:18:39Z", + "name": "BREAKFAST_MENU", + "owner": "GoogleResearch", + "description": "BREAKFAST MENU\nThe set includes 2 slices of bread, a bun, sausage, bacon, cheese, fried egg, boiled egg, salt and pepper that are served on a tray.", + "likes": 0, + "downloads": 1040, + "filesize": 8862756, + "upload_date": "2020-09-18T16:52:42Z", + "modify_date": "2020-09-18T20:07:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BREAKFAST_MENU/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:52:39Z", + "updatedAt": "2024-04-04T05:41:08Z", + "name": "BIA_Porcelain_Ramekin_With_Glazed_Rim_35_45_oz_cup", + "owner": "GoogleResearch", + "description": "BIA Porcelain Ramekin With Glazed Rim, 3.5\" - 4.5 oz cup", + "likes": 0, + "downloads": 1094, + "filesize": 2953933, + "upload_date": "2020-09-18T16:52:37Z", + "modify_date": "2020-09-18T20:07:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BIA_Porcelain_Ramekin_With_Glazed_Rim_35_45_oz_cup/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:52:28Z", + "updatedAt": "2024-04-03T08:19:15Z", + "name": "BIA_Cordon_Bleu_White_Porcelain_Utensil_Holder_900028", + "owner": "GoogleResearch", + "description": "B.I.A Cordon Bleu White Porcelain Utensil Holder 900028\nBIA Cordon Bleu Give your spatulas and serving spoons an elegant home with this 60 Oz. Made from porcelain, this piece is resistant to chipping, cracking and staining. The clean design and solid white glaze make this piece a classic addition to any table kitchen.", + "likes": 0, + "downloads": 1199, + "filesize": 3905417, + "upload_date": "2020-09-18T16:52:25Z", + "modify_date": "2020-09-18T20:07:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BIA_Cordon_Bleu_White_Porcelain_Utensil_Holder_900028/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:52:23Z", + "updatedAt": "2024-03-12T04:08:18Z", + "name": "BEDROOM_CLASSIC_Gi22DjScTVS", + "owner": "GoogleResearch", + "description": "BEDROOM - CLASSIC\nChildren can enjoy decorating their dollhouse with the Classic set of furniture while developing their imagination and creating more interest time.", + "likes": 0, + "downloads": 60, + "filesize": 10139969, + "upload_date": "2020-09-18T16:52:20Z", + "modify_date": "2020-09-18T20:07:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BEDROOM_CLASSIC_Gi22DjScTVS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:52:17Z", + "updatedAt": "2024-04-03T08:19:08Z", + "name": "BEDROOM_CLASSIC", + "owner": "GoogleResearch", + "description": "BEDROOM - CLASSIC\nChildren can enjoy decorating their dollhouse with the Classic set of furniture while developing their imagination and creating more interest time.", + "likes": 0, + "downloads": 1132, + "filesize": 9877978, + "upload_date": "2020-09-18T16:52:14Z", + "modify_date": "2020-09-18T20:07:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BEDROOM_CLASSIC/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:52:11Z", + "updatedAt": "2024-04-03T10:18:09Z", + "name": "BATHROOM_FURNITURE_SET_1", + "owner": "GoogleResearch", + "description": "BATHROOM (FURNITURE SET 1)\nThis set includes stand up shower with removable shower head, a sink, a toilet, and a bathtub. Made of Eco-Friendly PlanWood and solid rubber wood.", + "likes": 0, + "downloads": 1133, + "filesize": 10756181, + "upload_date": "2020-09-18T16:52:08Z", + "modify_date": "2020-09-18T20:07:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BATHROOM_FURNITURE_SET_1/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:52:05Z", + "updatedAt": "2024-04-03T07:44:06Z", + "name": "BATHROOM_CLASSIC", + "owner": "GoogleResearch", + "description": "BATHROOM - CLASSIC\nChildren can enjoy decorating their dollhouse with the Classic set of furniture while developing their imagination and creating more interest time.", + "likes": 0, + "downloads": 939, + "filesize": 9204832, + "upload_date": "2020-09-18T16:52:02Z", + "modify_date": "2020-09-18T20:07:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BATHROOM_CLASSIC/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:51:59Z", + "updatedAt": "2024-04-03T09:18:27Z", + "name": "BAKING_UTENSILS", + "owner": "GoogleResearch", + "description": "BAKING UTENSILS\nIncludes a rolling pin, measuring spoons, whisk, pastry cutter, and a spatula.", + "likes": 0, + "downloads": 996, + "filesize": 7377036, + "upload_date": "2020-09-18T16:51:56Z", + "modify_date": "2020-09-18T20:07:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BAKING_UTENSILS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:51:48Z", + "updatedAt": "2024-04-03T10:18:01Z", + "name": "BAGEL_WITH_CHEESE", + "owner": "GoogleResearch", + "description": "BAGEL WITH CHEESE\nIncludes 1 bagel cut in half, 1 plate, 1 strawberry, ?1 slice of cheese, and 2 slices of cucumber, tomato, ?and onion.", + "likes": 0, + "downloads": 935, + "filesize": 8192946, + "upload_date": "2020-09-18T16:51:45Z", + "modify_date": "2020-09-18T20:07:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BAGEL_WITH_CHEESE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:51:37Z", + "updatedAt": "2024-04-04T02:32:35Z", + "name": "Avengers_Thor_PLlrpYniaeB", + "owner": "GoogleResearch", + "description": "Avengers Thor", + "likes": 0, + "downloads": 5196, + "filesize": 4736870, + "upload_date": "2020-09-18T16:51:35Z", + "modify_date": "2020-09-18T20:07:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Avengers_Thor_PLlrpYniaeB/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-18T16:50:55Z", + "updatedAt": "2024-04-03T09:51:29Z", + "name": "Aroma_Stainless_Steel_Milk_Frother_2_Cup", + "owner": "GoogleResearch", + "description": "Aroma Stainless Steel Milk Frother - 2 Cup", + "likes": 0, + "downloads": 971, + "filesize": 4742294, + "upload_date": "2020-09-18T16:50:52Z", + "modify_date": "2020-09-18T20:07:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Aroma_Stainless_Steel_Milk_Frother_2_Cup/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T16:50:43Z", + "updatedAt": "2024-04-03T08:18:53Z", + "name": "Animal_Planet_Foam_2Headed_Dragon", + "owner": "GoogleResearch", + "description": "Animal Planet Foam 2-Headed Dragon", + "likes": 0, + "downloads": 1271, + "filesize": 12674000, + "upload_date": "2020-09-18T16:50:40Z", + "modify_date": "2020-09-18T20:07:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Animal_Planet_Foam_2Headed_Dragon/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:49:54Z", + "updatedAt": "2024-04-03T09:51:23Z", + "name": "Android_Lego", + "owner": "GoogleResearch", + "description": "Android Lego", + "likes": 0, + "downloads": 995, + "filesize": 5721440, + "upload_date": "2020-09-18T16:49:51Z", + "modify_date": "2020-09-18T20:07:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Android_Lego/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Legos" + ] + }, + { + "createdAt": "2020-09-18T16:49:44Z", + "updatedAt": "2024-04-03T09:51:17Z", + "name": "Android_Figure_Panda", + "owner": "GoogleResearch", + "description": "Android Figure, Panda", + "likes": 0, + "downloads": 1140, + "filesize": 4299171, + "upload_date": "2020-09-18T16:49:41Z", + "modify_date": "2020-09-18T20:07:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Android_Figure_Panda/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T16:49:25Z", + "updatedAt": "2024-04-04T05:33:21Z", + "name": "Air_Hogs_Wind_Flyers_Set_Airplane_Red", + "owner": "GoogleResearch", + "description": "Air Hogs Wind Flyers Set, Airplane, Red", + "likes": 0, + "downloads": 1127, + "filesize": 5773079, + "upload_date": "2020-09-18T16:49:22Z", + "modify_date": "2020-09-18T20:07:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Air_Hogs_Wind_Flyers_Set_Airplane_Red/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:49:13Z", + "updatedAt": "2024-04-03T09:18:12Z", + "name": "ASSORTED_VEGETABLE_SET", + "owner": "GoogleResearch", + "description": "ASSORTED VEGETABLE SET\nThe set includes a cutting board, knife, and 5 sliceable veggies - tomato, mushroom, shallot, bell pepper, and cucumber. Tactile details offer realistic play.", + "likes": 0, + "downloads": 1194, + "filesize": 10925461, + "upload_date": "2020-09-18T16:49:10Z", + "modify_date": "2020-09-18T20:07:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ASSORTED_VEGETABLE_SET/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:49:07Z", + "updatedAt": "2024-04-03T09:51:09Z", + "name": "ALPHABET_AZ_GRADIENT_WQb1ufEycSj", + "owner": "GoogleResearch", + "description": "ALPHABET A-Z (GRADIENT)\nDevelop your fundamental skills with this alphabet set. The two-sided wooden tiles feature 26 intended capital letters and pictures of objects that correspond to the letter. Trace the letters with your finger and expand your vocabulary!", + "likes": 0, + "downloads": 914, + "filesize": 8615482, + "upload_date": "2020-09-18T16:49:04Z", + "modify_date": "2020-09-18T20:07:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ALPHABET_AZ_GRADIENT_WQb1ufEycSj/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:49:02Z", + "updatedAt": "2024-04-03T09:51:00Z", + "name": "ALPHABET_AZ_GRADIENT", + "owner": "GoogleResearch", + "description": "ALPHABET A-Z (GRADIENT)\nDevelop your fundamental skills with this alphabet set. The two-sided wooden tiles feature 26 intended capital letters and pictures of objects that correspond to the letter. Trace the letters with your finger and expand your vocabulary!", + "likes": 0, + "downloads": 925, + "filesize": 9948366, + "upload_date": "2020-09-18T16:48:58Z", + "modify_date": "2020-09-18T20:07:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ALPHABET_AZ_GRADIENT/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:48:56Z", + "updatedAt": "2024-04-04T05:41:54Z", + "name": "ACE_Coffee_Mug_Kristen_16_oz_cup", + "owner": "GoogleResearch", + "description": "ACE Coffee Mug, Kristen, 16 oz cup", + "likes": 1, + "downloads": 1262, + "filesize": 6232969, + "upload_date": "2020-09-18T16:48:53Z", + "modify_date": "2020-09-18T20:07:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ACE_Coffee_Mug_Kristen_16_oz_cup/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T16:48:24Z", + "updatedAt": "2024-04-03T10:17:55Z", + "name": "45oz_RAMEKIN_ASST_DEEP_COLORS", + "owner": "GoogleResearch", + "description": "4.5oz RAMEKIN ASST DEEP COLORS", + "likes": 0, + "downloads": 989, + "filesize": 5865038, + "upload_date": "2020-09-18T16:48:21Z", + "modify_date": "2020-09-18T20:07:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/45oz_RAMEKIN_ASST_DEEP_COLORS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T16:48:19Z", + "updatedAt": "2024-04-03T08:18:49Z", + "name": "3M_Vinyl_Tape_Green_1_x_36_yd", + "owner": "GoogleResearch", + "description": "3M Vinyl Tape, Green, 1\" x 36 yd", + "likes": 0, + "downloads": 1134, + "filesize": 2894634, + "upload_date": "2020-09-18T16:48:16Z", + "modify_date": "2020-09-18T20:07:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/3M_Vinyl_Tape_Green_1_x_36_yd/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:48:14Z", + "updatedAt": "2024-04-03T08:18:41Z", + "name": "3M_Antislip_Surfacing_Light_Duty_White", + "owner": "GoogleResearch", + "description": "3M Antislip Surfacing; Light Duty; White", + "likes": 0, + "downloads": 1047, + "filesize": 6273278, + "upload_date": "2020-09-18T16:48:05Z", + "modify_date": "2020-09-18T20:07:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/3M_Antislip_Surfacing_Light_Duty_White/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-18T16:48:03Z", + "updatedAt": "2024-04-03T10:17:50Z", + "name": "3D_Dollhouse_TablePurple", + "owner": "GoogleResearch", + "description": "3D Dollhouse Table-Purple", + "likes": 0, + "downloads": 1036, + "filesize": 4931636, + "upload_date": "2020-09-18T16:47:57Z", + "modify_date": "2020-09-18T20:07:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/3D_Dollhouse_TablePurple/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:47:55Z", + "updatedAt": "2024-04-03T08:18:35Z", + "name": "3D_Dollhouse_Swing", + "owner": "GoogleResearch", + "description": "3D Dollhouse Swing", + "likes": 0, + "downloads": 1157, + "filesize": 6845483, + "upload_date": "2020-09-18T16:47:52Z", + "modify_date": "2020-09-18T20:07:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/3D_Dollhouse_Swing/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:47:49Z", + "updatedAt": "2024-04-03T09:18:02Z", + "name": "3D_Dollhouse_Sofa", + "owner": "GoogleResearch", + "description": "3D Dollhouse Sofa", + "likes": 0, + "downloads": 1447, + "filesize": 11709964, + "upload_date": "2020-09-18T16:47:42Z", + "modify_date": "2020-09-18T20:07:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/3D_Dollhouse_Sofa/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:47:39Z", + "updatedAt": "2024-04-03T09:17:56Z", + "name": "3D_Dollhouse_Sink", + "owner": "GoogleResearch", + "description": "3D Dollhouse Sink", + "likes": 0, + "downloads": 1128, + "filesize": 6359694, + "upload_date": "2020-09-18T16:47:37Z", + "modify_date": "2020-09-18T20:07:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/3D_Dollhouse_Sink/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:47:34Z", + "updatedAt": "2024-04-03T08:47:04Z", + "name": "3D_Dollhouse_Refrigerator", + "owner": "GoogleResearch", + "description": "3D Dollhouse Refrigerator", + "likes": 0, + "downloads": 1172, + "filesize": 8394013, + "upload_date": "2020-09-18T16:47:31Z", + "modify_date": "2020-09-18T20:07:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/3D_Dollhouse_Refrigerator/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:47:29Z", + "updatedAt": "2024-04-03T09:17:51Z", + "name": "3D_Dollhouse_Lamp", + "owner": "GoogleResearch", + "description": "3D Dollhouse Lamp", + "likes": 0, + "downloads": 1152, + "filesize": 4890334, + "upload_date": "2020-09-18T16:47:26Z", + "modify_date": "2020-09-18T20:07:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/3D_Dollhouse_Lamp/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-18T16:47:24Z", + "updatedAt": "2024-04-03T09:50:55Z", + "name": "3D_Dollhouse_Happy_Brother", + "owner": "GoogleResearch", + "description": "3D Dollhouse Happy Brother", + "likes": 0, + "downloads": 1059, + "filesize": 6189525, + "upload_date": "2020-09-18T16:47:21Z", + "modify_date": "2020-09-18T20:07:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/3D_Dollhouse_Happy_Brother/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-18T16:47:19Z", + "updatedAt": "2024-04-03T08:18:29Z", + "name": "30_CONSTRUCTION_SET", + "owner": "GoogleResearch", + "description": "30 CONSTRUCTION SET\nThe pieces can be easily assembled and reassembled to create any imaginable form. Screwdriver included.", + "likes": 0, + "downloads": 1150, + "filesize": 9021732, + "upload_date": "2020-09-18T16:47:15Z", + "modify_date": "2020-09-18T20:07:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/30_CONSTRUCTION_SET/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-10T00:01:20Z", + "updatedAt": "2024-03-28T07:48:08Z", + "name": "hatchback_red", + "owner": "chapulina", + "description": "Testing model dependencies, this uses hatchback's wheel texture", + "likes": 0, + "downloads": 88, + "filesize": 670800, + "upload_date": "2020-09-10T00:01:18Z", + "modify_date": "2020-09-10T00:16:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/hatchback_red/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-10T00:00:49Z", + "updatedAt": "2024-03-31T03:27:29Z", + "name": "hatchback", + "owner": "chapulina", + "description": "Testing model dependencies", + "likes": 0, + "downloads": 273, + "filesize": 1011201, + "upload_date": "2020-09-10T00:00:47Z", + "modify_date": "2020-09-10T00:08:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/hatchback/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-03T18:58:45Z", + "updatedAt": "2024-04-03T08:18:23Z", + "name": "adizero_F50_TRX_FG_LEA", + "owner": "GoogleResearch", + "description": "adizero F50 TRX FG LEA", + "likes": 0, + "downloads": 1191, + "filesize": 3947063, + "upload_date": "2020-09-03T18:58:42Z", + "modify_date": "2020-09-18T20:07:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/adizero_F50_TRX_FG_LEA/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:58:40Z", + "updatedAt": "2024-04-03T09:10:50Z", + "name": "adizero_5Tool_25", + "owner": "GoogleResearch", + "description": "adizero 5-Tool 2.5", + "likes": 0, + "downloads": 1104, + "filesize": 6449947, + "upload_date": "2020-09-03T18:58:37Z", + "modify_date": "2020-09-18T20:07:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/adizero_5Tool_25/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:58:33Z", + "updatedAt": "2024-04-03T10:06:37Z", + "name": "adistar_boost_m", + "owner": "GoogleResearch", + "description": "adistar boost m\nFW-SHOES", + "likes": 0, + "downloads": 974, + "filesize": 6900951, + "upload_date": "2020-09-03T18:58:30Z", + "modify_date": "2020-09-18T20:07:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/adistar_boost_m/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:58:21Z", + "updatedAt": "2024-04-03T08:13:30Z", + "name": "adiZero_Slide_2_SC", + "owner": "GoogleResearch", + "description": "adiZero Slide 2 SC\nFW-SLIDES", + "likes": 0, + "downloads": 1142, + "filesize": 5123314, + "upload_date": "2020-09-03T18:58:18Z", + "modify_date": "2020-09-18T20:07:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/adiZero_Slide_2_SC/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:58:16Z", + "updatedAt": "2024-04-03T10:17:43Z", + "name": "ZigKick_Hoops", + "owner": "GoogleResearch", + "description": "ZigKick Hoops\nFootwear", + "likes": 0, + "downloads": 930, + "filesize": 6982683, + "upload_date": "2020-09-03T18:58:13Z", + "modify_date": "2020-09-18T20:07:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ZigKick_Hoops/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:58:09Z", + "updatedAt": "2024-04-03T08:46:57Z", + "name": "ZX700_mzGbdP3u6JB", + "owner": "GoogleResearch", + "description": "ZX700", + "likes": 0, + "downloads": 1091, + "filesize": 5212906, + "upload_date": "2020-09-03T18:58:06Z", + "modify_date": "2020-09-18T20:07:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ZX700_mzGbdP3u6JB/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:58:04Z", + "updatedAt": "2024-04-03T09:17:44Z", + "name": "ZX700_mf9Pc06uL06", + "owner": "GoogleResearch", + "description": "ZX700", + "likes": 0, + "downloads": 1024, + "filesize": 5973845, + "upload_date": "2020-09-03T18:58:01Z", + "modify_date": "2020-09-18T20:07:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ZX700_mf9Pc06uL06/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:57:41Z", + "updatedAt": "2024-04-03T09:50:52Z", + "name": "ZX700_lYiwcTIekXk", + "owner": "GoogleResearch", + "description": "ZX700", + "likes": 0, + "downloads": 960, + "filesize": 5863030, + "upload_date": "2020-09-03T18:57:39Z", + "modify_date": "2020-09-18T20:07:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ZX700_lYiwcTIekXk/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:57:14Z", + "updatedAt": "2024-04-03T09:50:47Z", + "name": "YumYum_D3_Liquid", + "owner": "GoogleResearch", + "description": "Yum-Yum D3 Liquid\nJarrow Formulas Yum-Yum D3 Liquid delivers 200 IU of vitamin D3 (cholecalciferol) per drop. Vitamin D3 is essential for children (and adults) in promoting healthy bones, teeth, brain and immune system.* WARNING: Breast-fed and partially breast-fed infants should not consume more than 400 IU (international units) of vitamin D per day. Limit intake of this product to 2 drops per day in infants. *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.", + "likes": 0, + "downloads": 1001, + "filesize": 9739530, + "upload_date": "2020-09-03T18:57:11Z", + "modify_date": "2020-09-18T20:07:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/YumYum_D3_Liquid/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:56:58Z", + "updatedAt": "2024-04-03T08:18:15Z", + "name": "Xyli_Pure_Xylitol", + "owner": "GoogleResearch", + "description": "Xyli Pure Xylitol", + "likes": 0, + "downloads": 1138, + "filesize": 6323034, + "upload_date": "2020-09-03T18:56:55Z", + "modify_date": "2020-09-18T20:07:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Xyli_Pure_Xylitol/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:56:53Z", + "updatedAt": "2024-04-03T08:46:49Z", + "name": "Wrigley_Orbit_Mint_Variety_18_Count", + "owner": "GoogleResearch", + "description": "Wrigley Orbit Mint Variety 18 Count", + "likes": 0, + "downloads": 1161, + "filesize": 11468800, + "upload_date": "2020-09-03T18:56:50Z", + "modify_date": "2020-09-18T20:07:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Wrigley_Orbit_Mint_Variety_18_Count/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:56:47Z", + "updatedAt": "2024-04-03T09:50:38Z", + "name": "Wooden_ABC_123_Blocks_50_pack", + "owner": "GoogleResearch", + "description": "Wooden ABC 123 Blocks - 50 pack", + "likes": 0, + "downloads": 1166, + "filesize": 16902719, + "upload_date": "2020-09-03T18:56:43Z", + "modify_date": "2020-09-18T20:07:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Wooden_ABC_123_Blocks_50_pack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:56:40Z", + "updatedAt": "2024-04-03T08:18:08Z", + "name": "Womens_Teva_Capistrano_Bootie_ldjRT9yZ5Ht", + "owner": "GoogleResearch", + "description": "Women's Teva Capistrano Bootie", + "likes": 0, + "downloads": 1092, + "filesize": 6583933, + "upload_date": "2020-09-03T18:56:38Z", + "modify_date": "2020-09-18T20:07:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Teva_Capistrano_Bootie_ldjRT9yZ5Ht/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:56:35Z", + "updatedAt": "2024-04-03T08:18:01Z", + "name": "Womens_Teva_Capistrano_Bootie", + "owner": "GoogleResearch", + "description": "Women's Teva Capistrano Bootie", + "likes": 0, + "downloads": 1066, + "filesize": 6888526, + "upload_date": "2020-09-03T18:56:32Z", + "modify_date": "2020-09-18T20:07:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Teva_Capistrano_Bootie/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:56:30Z", + "updatedAt": "2024-04-03T10:17:37Z", + "name": "Womens_Suede_Bahama_in_Graphite_Suede_t22AJSRjBOX", + "owner": "GoogleResearch", + "description": "Women's Suede Bahama in Graphite Suede\nWomen's Suede Bahama", + "likes": 0, + "downloads": 936, + "filesize": 5659713, + "upload_date": "2020-09-03T18:56:27Z", + "modify_date": "2020-09-18T20:07:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Suede_Bahama_in_Graphite_Suede_t22AJSRjBOX/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:56:25Z", + "updatedAt": "2024-04-03T09:50:31Z", + "name": "Womens_Suede_Bahama_in_Graphite_Suede_p1KUwoWbw7R", + "owner": "GoogleResearch", + "description": "Women's Suede Bahama in Graphite Suede\nWomen's Suede Bahama", + "likes": 0, + "downloads": 959, + "filesize": 6430920, + "upload_date": "2020-09-03T18:56:22Z", + "modify_date": "2020-09-18T20:07:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Suede_Bahama_in_Graphite_Suede_p1KUwoWbw7R/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:56:20Z", + "updatedAt": "2024-04-03T08:46:43Z", + "name": "Womens_Suede_Bahama_in_Graphite_Suede_cUAjIMhWSO9", + "owner": "GoogleResearch", + "description": "Women's Suede Bahama in Graphite Suede\nWomen's Suede Bahama", + "likes": 0, + "downloads": 1064, + "filesize": 5074356, + "upload_date": "2020-09-03T18:56:17Z", + "modify_date": "2020-09-18T20:07:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Suede_Bahama_in_Graphite_Suede_cUAjIMhWSO9/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:56:04Z", + "updatedAt": "2024-04-03T09:50:27Z", + "name": "Womens_Sparkle_Suede_Bahama_in_Silver_Sparkle_Suede_Grey_Patent_x9rclU7EJXx", + "owner": "GoogleResearch", + "description": "Women's Sparkle Suede Bahama in Silver Sparkle Suede / Grey Patent\nWomen's Sparkle Suede Bahama", + "likes": 0, + "downloads": 940, + "filesize": 8489973, + "upload_date": "2020-09-03T18:56:01Z", + "modify_date": "2020-09-18T20:07:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Sparkle_Suede_Bahama_in_Silver_Sparkle_Suede_Grey_Patent_x9rclU7EJXx/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:55:59Z", + "updatedAt": "2024-04-03T09:50:23Z", + "name": "Womens_Sparkle_Suede_Bahama_in_Silver_Sparkle_Suede_Grey_Patent_tYrIBLMhSTN", + "owner": "GoogleResearch", + "description": "Women's Sparkle Suede Bahama in Silver Sparkle Suede / Grey Patent\nWomen's Sparkle Suede Bahama", + "likes": 0, + "downloads": 1031, + "filesize": 6285808, + "upload_date": "2020-09-03T18:55:56Z", + "modify_date": "2020-09-18T20:07:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Sparkle_Suede_Bahama_in_Silver_Sparkle_Suede_Grey_Patent_tYrIBLMhSTN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:55:16Z", + "updatedAt": "2024-04-03T10:17:29Z", + "name": "Womens_Sparkle_Suede_Angelfish_in_Grey_Sparkle_Suede_Silver", + "owner": "GoogleResearch", + "description": "Women's Sparkle Suede Angelfish in Grey Sparkle Suede / Silver\nWomen's Sparkle Suede Angelfish", + "likes": 0, + "downloads": 941, + "filesize": 8365509, + "upload_date": "2020-09-03T18:55:13Z", + "modify_date": "2020-09-18T20:07:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Sparkle_Suede_Angelfish_in_Grey_Sparkle_Suede_Silver/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:55:10Z", + "updatedAt": "2024-04-03T08:17:55Z", + "name": "Womens_Sequin_Bahama_in_White_Sequin_yGVsSA4tOwJ", + "owner": "GoogleResearch", + "description": "Women's Sequin Bahama in White Sequin\nWomen's Sequin Bahama", + "likes": 0, + "downloads": 1065, + "filesize": 4910026, + "upload_date": "2020-09-03T18:55:08Z", + "modify_date": "2020-09-18T20:07:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Sequin_Bahama_in_White_Sequin_yGVsSA4tOwJ/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:54:55Z", + "updatedAt": "2024-04-03T06:58:34Z", + "name": "Womens_Sequin_Bahama_in_White_Sequin_XoR8xTlxj1g", + "owner": "GoogleResearch", + "description": "Women's Sequin Bahama in White Sequin\nWomen's Sequin Bahama", + "likes": 0, + "downloads": 1106, + "filesize": 8079137, + "upload_date": "2020-09-03T18:54:52Z", + "modify_date": "2020-09-18T20:07:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Sequin_Bahama_in_White_Sequin_XoR8xTlxj1g/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:54:49Z", + "updatedAt": "2024-04-03T08:17:48Z", + "name": "Womens_Sequin_Bahama_in_White_Sequin_V9K1hf24Oxe", + "owner": "GoogleResearch", + "description": "Women's Sequin Bahama in White Sequin\nWomen's Sequin Bahama", + "likes": 0, + "downloads": 1075, + "filesize": 7176694, + "upload_date": "2020-09-03T18:54:46Z", + "modify_date": "2020-09-18T20:07:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Sequin_Bahama_in_White_Sequin_V9K1hf24Oxe/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:54:39Z", + "updatedAt": "2024-04-03T09:50:16Z", + "name": "Womens_Multi_13", + "owner": "GoogleResearch", + "description": "Women's Multi 1-3", + "likes": 0, + "downloads": 961, + "filesize": 8009348, + "upload_date": "2020-09-03T18:54:36Z", + "modify_date": "2020-09-18T20:07:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Multi_13/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:54:33Z", + "updatedAt": "2024-04-03T10:17:22Z", + "name": "Womens_Hikerfish_Boot_in_Linen_Leather_Sparkle_Suede_imlP8VkwqIH", + "owner": "GoogleResearch", + "description": "Women's Hikerfish Boot in Linen Leather / Sparkle Suede\nWomen's Hikerfish Boot", + "likes": 0, + "downloads": 932, + "filesize": 7527619, + "upload_date": "2020-09-03T18:54:30Z", + "modify_date": "2020-09-18T20:07:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Hikerfish_Boot_in_Linen_Leather_Sparkle_Suede_imlP8VkwqIH/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:54:27Z", + "updatedAt": "2024-04-03T09:17:36Z", + "name": "Womens_Hikerfish_Boot_in_Linen_Leather_Sparkle_Suede_QktIyAkonrU", + "owner": "GoogleResearch", + "description": "Women's Hikerfish Boot in Linen Leather / Sparkle Suede\nWomen's Hikerfish Boot", + "likes": 0, + "downloads": 1024, + "filesize": 9620534, + "upload_date": "2020-09-03T18:54:24Z", + "modify_date": "2020-09-18T20:07:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Hikerfish_Boot_in_Linen_Leather_Sparkle_Suede_QktIyAkonrU/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:53:50Z", + "updatedAt": "2024-04-03T10:17:15Z", + "name": "Womens_Hikerfish_Boot_in_Black_Leopard_ridcCWsv8rW", + "owner": "GoogleResearch", + "description": "Women's Hikerfish Boot in Black / Leopard\nWomen's Hikerfish Boot", + "likes": 0, + "downloads": 919, + "filesize": 6423214, + "upload_date": "2020-09-03T18:53:47Z", + "modify_date": "2020-09-18T20:07:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Hikerfish_Boot_in_Black_Leopard_ridcCWsv8rW/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:53:45Z", + "updatedAt": "2024-04-03T08:17:36Z", + "name": "Womens_Hikerfish_Boot_in_Black_Leopard_bVSNY1Le1sm", + "owner": "GoogleResearch", + "description": "Women's Hikerfish Boot in Black / Leopard\nWomen's Hikerfish Boot", + "likes": 0, + "downloads": 1064, + "filesize": 7589464, + "upload_date": "2020-09-03T18:53:42Z", + "modify_date": "2020-09-18T20:07:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Hikerfish_Boot_in_Black_Leopard_bVSNY1Le1sm/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:53:21Z", + "updatedAt": "2024-04-03T10:17:08Z", + "name": "Womens_Cloud_Logo_Authentic_Original_Boat_Shoe_in_Black_Supersoft_cZR022qFI4k", + "owner": "GoogleResearch", + "description": "Women's Cloud Logo Authentic Original Boat Shoe in Black Supersoft\nWomen's Cloud Logo Authentic Original Boat Shoe", + "likes": 0, + "downloads": 917, + "filesize": 5418801, + "upload_date": "2020-09-03T18:53:19Z", + "modify_date": "2020-09-18T20:07:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Cloud_Logo_Authentic_Original_Boat_Shoe_in_Black_Supersoft_cZR022qFI4k/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:53:16Z", + "updatedAt": "2024-04-03T10:06:30Z", + "name": "Womens_Cloud_Logo_Authentic_Original_Boat_Shoe_in_Black_Supersoft_8LigQYwf4gr", + "owner": "GoogleResearch", + "description": "Women's Cloud Logo Authentic Original Boat Shoe in Black Supersoft\nWomen's Cloud Logo Authentic Original Boat Shoe", + "likes": 0, + "downloads": 928, + "filesize": 7705669, + "upload_date": "2020-09-03T18:53:13Z", + "modify_date": "2020-09-18T20:07:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Cloud_Logo_Authentic_Original_Boat_Shoe_in_Black_Supersoft_8LigQYwf4gr/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:52:37Z", + "updatedAt": "2024-04-03T08:17:29Z", + "name": "Womens_Canvas_Bahama_in_White_UfZPHGQpvz0", + "owner": "GoogleResearch", + "description": "Women's Canvas Bahama in White\nWomen's Canvas Bahama", + "likes": 0, + "downloads": 1064, + "filesize": 4806311, + "upload_date": "2020-09-03T18:52:34Z", + "modify_date": "2020-09-18T20:07:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Canvas_Bahama_in_White_UfZPHGQpvz0/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:52:08Z", + "updatedAt": "2024-04-03T08:17:22Z", + "name": "Womens_Canvas_Bahama_in_White_4UyOhP6rYGO", + "owner": "GoogleResearch", + "description": "Women's Canvas Bahama in White\nWomen's Canvas Bahama", + "likes": 0, + "downloads": 1066, + "filesize": 6237517, + "upload_date": "2020-09-03T18:52:05Z", + "modify_date": "2020-09-18T20:07:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Canvas_Bahama_in_White_4UyOhP6rYGO/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:51:58Z", + "updatedAt": "2024-04-03T08:17:13Z", + "name": "Womens_Canvas_Bahama_in_Black_vnJULsDVyq5", + "owner": "GoogleResearch", + "description": "Women's Canvas Bahama in Black\nWomen's Canvas Bahama", + "likes": 0, + "downloads": 1064, + "filesize": 5806551, + "upload_date": "2020-09-03T18:51:55Z", + "modify_date": "2020-09-18T20:07:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Canvas_Bahama_in_Black_vnJULsDVyq5/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:51:37Z", + "updatedAt": "2024-04-03T08:46:36Z", + "name": "Womens_Canvas_Bahama_in_Black", + "owner": "GoogleResearch", + "description": "Women's Canvas Bahama in Black\nWomen's Canvas Bahama", + "likes": 0, + "downloads": 1061, + "filesize": 5199606, + "upload_date": "2020-09-03T18:51:34Z", + "modify_date": "2020-09-18T20:07:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Canvas_Bahama_in_Black/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:51:21Z", + "updatedAt": "2024-04-03T08:17:05Z", + "name": "Womens_Bluefish_2Eye_Boat_Shoe_in_White_Tumbled_YG44xIePRHw", + "owner": "GoogleResearch", + "description": "Women's Bluefish 2-Eye Boat Shoe in White Tumbled\nWomen's Bluefish 2-Eye Boat Shoe", + "likes": 0, + "downloads": 1062, + "filesize": 5281684, + "upload_date": "2020-09-03T18:51:18Z", + "modify_date": "2020-09-18T20:07:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Bluefish_2Eye_Boat_Shoe_in_White_Tumbled_YG44xIePRHw/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:50:50Z", + "updatedAt": "2024-04-03T09:17:26Z", + "name": "Womens_Bluefish_2Eye_Boat_Shoe_in_Tan", + "owner": "GoogleResearch", + "description": "Women's Bluefish 2-Eye Boat Shoe in Tan\nWomen's Bluefish 2-Eye Boat Shoe", + "likes": 0, + "downloads": 1019, + "filesize": 8367040, + "upload_date": "2020-09-03T18:50:47Z", + "modify_date": "2020-09-18T20:07:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Bluefish_2Eye_Boat_Shoe_in_Tan/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:50:45Z", + "updatedAt": "2024-04-03T09:50:11Z", + "name": "Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Oat_niKJKeWsmxY", + "owner": "GoogleResearch", + "description": "Women's Bluefish 2-Eye Boat Shoe in Linen Oat\nWomen's Bluefish 2-Eye Boat Shoe", + "likes": 0, + "downloads": 1020, + "filesize": 7950915, + "upload_date": "2020-09-03T18:50:42Z", + "modify_date": "2020-09-18T20:07:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Oat_niKJKeWsmxY/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:50:39Z", + "updatedAt": "2024-04-03T08:46:28Z", + "name": "Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Oat_IbrSyJdpT3h", + "owner": "GoogleResearch", + "description": "Women's Bluefish 2-Eye Boat Shoe in Linen Oat\nWomen's Bluefish 2-Eye Boat Shoe", + "likes": 0, + "downloads": 1074, + "filesize": 7044779, + "upload_date": "2020-09-03T18:50:36Z", + "modify_date": "2020-09-18T20:07:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Oat_IbrSyJdpT3h/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:50:23Z", + "updatedAt": "2024-04-03T09:17:18Z", + "name": "Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Oat", + "owner": "GoogleResearch", + "description": "Women's Bluefish 2-Eye Boat Shoe in Linen Oat\nWomen's Bluefish 2-Eye Boat Shoe", + "likes": 1, + "downloads": 1019, + "filesize": 7304574, + "upload_date": "2020-09-03T18:50:20Z", + "modify_date": "2020-09-18T20:07:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Oat/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:50:18Z", + "updatedAt": "2024-04-03T08:16:59Z", + "name": "Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Natural_Sparkle_Suede_w34KNQ41csH", + "owner": "GoogleResearch", + "description": "Women's Bluefish 2-Eye Boat Shoe in Linen / Natural Sparkle Suede\nWomen's Bluefish 2-Eye Boat Shoe", + "likes": 0, + "downloads": 1129, + "filesize": 5317282, + "upload_date": "2020-09-03T18:50:15Z", + "modify_date": "2020-09-18T20:07:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Natural_Sparkle_Suede_w34KNQ41csH/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:50:06Z", + "updatedAt": "2024-04-03T08:46:19Z", + "name": "Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Natural_Sparkle_Suede_kqi81aojcOR", + "owner": "GoogleResearch", + "description": "Women's Bluefish 2-Eye Boat Shoe in Linen / Natural Sparkle Suede\nWomen's Bluefish 2-Eye Boat Shoe", + "likes": 0, + "downloads": 1067, + "filesize": 8683819, + "upload_date": "2020-09-03T18:50:03Z", + "modify_date": "2020-09-18T20:07:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Bluefish_2Eye_Boat_Shoe_in_Linen_Natural_Sparkle_Suede_kqi81aojcOR/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:49:55Z", + "updatedAt": "2024-04-03T09:50:05Z", + "name": "Womens_Bluefish_2Eye_Boat_Shoe_in_Brown_Deerskin_i1TgjjO0AKY", + "owner": "GoogleResearch", + "description": "Women's Bluefish 2-Eye Boat Shoe in Brown Deerskin\nWomen's Bluefish 2-Eye Boat Shoe", + "likes": 0, + "downloads": 978, + "filesize": 8887369, + "upload_date": "2020-09-03T18:49:52Z", + "modify_date": "2020-09-18T20:07:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Bluefish_2Eye_Boat_Shoe_in_Brown_Deerskin_i1TgjjO0AKY/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:48:57Z", + "updatedAt": "2024-04-03T09:49:57Z", + "name": "Womens_Bluefish_2Eye_Boat_Shoe_in_Brown_Deerskin_JJ2pfEHTZG7", + "owner": "GoogleResearch", + "description": "Women's Bluefish 2-Eye Boat Shoe in Brown Deerskin\nWomen's Bluefish 2-Eye Boat Shoe", + "likes": 0, + "downloads": 932, + "filesize": 4619212, + "upload_date": "2020-09-03T18:48:54Z", + "modify_date": "2020-09-18T20:07:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Bluefish_2Eye_Boat_Shoe_in_Brown_Deerskin_JJ2pfEHTZG7/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:46:21Z", + "updatedAt": "2024-04-03T08:16:53Z", + "name": "Womens_Betty_Chukka_Boot_in_Salt_Washed_Red_AL2YrOt9CRy", + "owner": "GoogleResearch", + "description": "Women's Betty Chukka Boot in Salt Washed Red\nWomen's Betty Chukka Boot", + "likes": 0, + "downloads": 1133, + "filesize": 8834181, + "upload_date": "2020-09-03T18:46:18Z", + "modify_date": "2020-09-18T20:07:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Betty_Chukka_Boot_in_Salt_Washed_Red_AL2YrOt9CRy/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:45:11Z", + "updatedAt": "2024-04-03T10:06:25Z", + "name": "Womens_Betty_Chukka_Boot_in_Navy_aEE8OqvMII4", + "owner": "GoogleResearch", + "description": "Women's Betty Chukka Boot in Navy\nWomen's Betty Chukka Boot", + "likes": 0, + "downloads": 929, + "filesize": 8866846, + "upload_date": "2020-09-03T18:45:08Z", + "modify_date": "2020-09-18T20:07:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Betty_Chukka_Boot_in_Navy_aEE8OqvMII4/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:45:05Z", + "updatedAt": "2024-04-03T10:06:18Z", + "name": "Womens_Betty_Chukka_Boot_in_Navy_Jersey_Sequin_y0SsHk7dKUX", + "owner": "GoogleResearch", + "description": "Women's Betty Chukka Boot in Navy Jersey Sequin\nWomen's Betty Chukka Boot", + "likes": 0, + "downloads": 944, + "filesize": 8812134, + "upload_date": "2020-09-03T18:45:01Z", + "modify_date": "2020-09-18T20:07:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Betty_Chukka_Boot_in_Navy_Jersey_Sequin_y0SsHk7dKUX/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:44:04Z", + "updatedAt": "2024-04-03T08:16:45Z", + "name": "Womens_Betty_Chukka_Boot_in_Grey_Jersey_Sequin", + "owner": "GoogleResearch", + "description": "Women's Betty Chukka Boot in Grey Jersey Sequin\nWomen's Betty Chukka Boot", + "likes": 0, + "downloads": 1078, + "filesize": 5692858, + "upload_date": "2020-09-03T18:43:59Z", + "modify_date": "2020-09-18T20:07:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Betty_Chukka_Boot_in_Grey_Jersey_Sequin/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:43:51Z", + "updatedAt": "2024-04-03T09:49:44Z", + "name": "Womens_Authentic_Original_Boat_Shoe_in_Navy_Deerskin_50lWJaLWG8R", + "owner": "GoogleResearch", + "description": "Women's Authentic Original Boat Shoe in Navy Deerskin\nWomen's Authentic Original Boat Shoe", + "likes": 0, + "downloads": 975, + "filesize": 5965884, + "upload_date": "2020-09-03T18:43:46Z", + "modify_date": "2020-09-18T20:07:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Authentic_Original_Boat_Shoe_in_Navy_Deerskin_50lWJaLWG8R/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:43:02Z", + "updatedAt": "2024-04-03T08:16:02Z", + "name": "Womens_Authentic_Original_Boat_Shoe_in_Classic_Brown_Leather_cJSCWiH7QmB", + "owner": "GoogleResearch", + "description": "Women's Authentic Original Boat Shoe in Classic Brown Leather\nWomen's Authentic Original Boat Shoe", + "likes": 0, + "downloads": 1078, + "filesize": 4978679, + "upload_date": "2020-09-03T18:42:59Z", + "modify_date": "2020-09-18T20:07:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Authentic_Original_Boat_Shoe_in_Classic_Brown_Leather_cJSCWiH7QmB/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:42:37Z", + "updatedAt": "2024-04-03T09:49:33Z", + "name": "Womens_Authentic_Original_Boat_Shoe_in_Classic_Brown_Leather_48Nh7VuMwW6", + "owner": "GoogleResearch", + "description": "Women's Authentic Original Boat Shoe in Classic Brown Leather\nWomen's Authentic Original Boat Shoe", + "likes": 0, + "downloads": 951, + "filesize": 5279408, + "upload_date": "2020-09-03T18:42:34Z", + "modify_date": "2020-09-18T20:07:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Authentic_Original_Boat_Shoe_in_Classic_Brown_Leather_48Nh7VuMwW6/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:42:16Z", + "updatedAt": "2024-04-03T09:49:29Z", + "name": "Womens_Authentic_Original_Boat_Shoe_in_Classic_Brown_Leather", + "owner": "GoogleResearch", + "description": "Women's Authentic Original Boat Shoe in Classic Brown Leather\nWomen's Authentic Original Boat Shoe", + "likes": 0, + "downloads": 986, + "filesize": 5674012, + "upload_date": "2020-09-03T18:42:13Z", + "modify_date": "2020-09-18T20:07:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Authentic_Original_Boat_Shoe_in_Classic_Brown_Leather/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:42:11Z", + "updatedAt": "2024-04-03T08:15:57Z", + "name": "Womens_Audrey_Slip_On_Boat_Shoe_in_Graphite_Nubuck_xWVkCJ5vxZe", + "owner": "GoogleResearch", + "description": "Women's Audrey Slip On Boat Shoe in Graphite Nubuck\nWomen's Audrey Slip On Boat Shoe", + "likes": 0, + "downloads": 1078, + "filesize": 6834600, + "upload_date": "2020-09-03T18:42:08Z", + "modify_date": "2020-09-18T20:07:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Audrey_Slip_On_Boat_Shoe_in_Graphite_Nubuck_xWVkCJ5vxZe/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:41:28Z", + "updatedAt": "2024-04-03T08:46:10Z", + "name": "Womens_Angelfish_Boat_Shoe_in_Linen_Oat", + "owner": "GoogleResearch", + "description": "Women's Angelfish Boat Shoe in Linen Oat\nWomen's Angelfish Boat Shoe", + "likes": 0, + "downloads": 1104, + "filesize": 8279112, + "upload_date": "2020-09-03T18:41:23Z", + "modify_date": "2020-09-18T20:07:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Angelfish_Boat_Shoe_in_Linen_Oat/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:41:19Z", + "updatedAt": "2024-04-03T09:49:25Z", + "name": "Womens_Angelfish_Boat_Shoe_in_Linen_Leopard_Sequin_NJDwosWNeZz", + "owner": "GoogleResearch", + "description": "Women's Angelfish Boat Shoe in Linen / Leopard Sequin\nWomen's Angelfish Boat Shoe", + "likes": 0, + "downloads": 952, + "filesize": 7191765, + "upload_date": "2020-09-03T18:41:15Z", + "modify_date": "2020-09-18T20:07:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Womens_Angelfish_Boat_Shoe_in_Linen_Leopard_Sequin_NJDwosWNeZz/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:39:56Z", + "updatedAt": "2024-04-03T08:15:48Z", + "name": "Wishbone_Pencil_Case", + "owner": "GoogleResearch", + "description": "Wishbone Pencil Case", + "likes": 0, + "downloads": 1351, + "filesize": 11972325, + "upload_date": "2020-09-03T18:39:52Z", + "modify_date": "2020-09-18T20:07:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Wishbone_Pencil_Case/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T18:39:10Z", + "updatedAt": "2024-04-03T19:02:17Z", + "name": "Winning_Moves_1180_Aggravation_Board_Game", + "owner": "GoogleResearch", + "description": "Winning Moves 1180 Aggravation Board Game", + "likes": 0, + "downloads": 1153, + "filesize": 17564823, + "upload_date": "2020-09-03T18:39:03Z", + "modify_date": "2020-09-18T20:07:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Winning_Moves_1180_Aggravation_Board_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T18:39:01Z", + "updatedAt": "2024-04-03T10:16:57Z", + "name": "Wilton_PreCut_Parchment_Sheets_10_x_15_24_sheets", + "owner": "GoogleResearch", + "description": "Wilton Pre-Cut Parchment Sheets, 10\" x 15\" - 24 sheets", + "likes": 0, + "downloads": 906, + "filesize": 9359231, + "upload_date": "2020-09-03T18:38:51Z", + "modify_date": "2020-09-18T20:07:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Wilton_PreCut_Parchment_Sheets_10_x_15_24_sheets/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:38:48Z", + "updatedAt": "2024-04-03T09:49:18Z", + "name": "Wilton_Pearlized_Sugar_Sprinkles_525_oz_Gold", + "owner": "GoogleResearch", + "description": "Wilton Pearlized Sugar Sprinkles 5.25 oz. - Gold\nMade in the USA.", + "likes": 0, + "downloads": 979, + "filesize": 9084916, + "upload_date": "2020-09-03T18:38:40Z", + "modify_date": "2020-09-18T20:07:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Wilton_Pearlized_Sugar_Sprinkles_525_oz_Gold/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:38:08Z", + "updatedAt": "2024-04-03T10:06:11Z", + "name": "Wilton_Easy_Layers_Cake_Pan_Set", + "owner": "GoogleResearch", + "description": "Wilton Easy Layers Cake Pan Set", + "likes": 0, + "downloads": 910, + "filesize": 6331928, + "upload_date": "2020-09-03T18:38:06Z", + "modify_date": "2020-09-18T20:07:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Wilton_Easy_Layers_Cake_Pan_Set/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:37:46Z", + "updatedAt": "2024-04-03T10:06:00Z", + "name": "Wild_Copper_Tieks_Metallic_Italian_Leather_Ballet_Flats", + "owner": "GoogleResearch", + "description": "Wild Copper Tieks - Metallic Italian Leather Ballet Flats\nThese luxurious, metallic ballet flats add sparkle to every ensemble. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 948, + "filesize": 8618335, + "upload_date": "2020-09-03T18:37:41Z", + "modify_date": "2020-09-18T20:07:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Wild_Copper_Tieks_Metallic_Italian_Leather_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:37:39Z", + "updatedAt": "2024-04-03T09:17:10Z", + "name": "White_Rose_Tieks_Leather_Ballet_Flats_with_Floral_Rosettes", + "owner": "GoogleResearch", + "description": "White Rose Tieks - Leather Ballet Flats with Floral Rosettes\nHand-stitched, fabric flower petals form a beautiful rose mosaic that makes these ballet flats a spring-to-summer staple and a favorite among brides. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 1005, + "filesize": 7857349, + "upload_date": "2020-09-03T18:37:33Z", + "modify_date": "2020-09-18T20:07:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/White_Rose_Tieks_Leather_Ballet_Flats_with_Floral_Rosettes/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:37:01Z", + "updatedAt": "2024-04-03T08:15:25Z", + "name": "Whey_Protein_Vanilla_12_Packets", + "owner": "GoogleResearch", + "description": "Whey Protein, Vanilla - 12 Packets\nJarrow FORMULAS WHEY PROTEIN is a 100% natural protein concentrate of whey, from cows not treated with growth hormone (rBST), and is ultrafiltered to be low in fat, lactose and carbohydrates. WHEY PROTEIN is a rich natural source of BCAAs (Isoleucine, Leucine and Valine). Each packet (26 grams) of WHEY PROTEIN provides a total of 4 grams of BCAAs. No other source of protein provides as much of the BCAAs as whey. WHEY PROTEIN is rich in essential amino acids, ranking it with egg as one of the highest quality protein sources available. *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.", + "likes": 0, + "downloads": 1113, + "filesize": 8982919, + "upload_date": "2020-09-03T18:36:44Z", + "modify_date": "2020-09-18T20:07:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Whey_Protein_Vanilla_12_Packets/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:36:42Z", + "updatedAt": "2024-04-03T08:15:17Z", + "name": "Whey_Protein_Vanilla", + "owner": "GoogleResearch", + "description": "Whey Protein, Vanilla", + "likes": 0, + "downloads": 1103, + "filesize": 6372460, + "upload_date": "2020-09-03T18:36:39Z", + "modify_date": "2020-09-18T20:07:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Whey_Protein_Vanilla/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:36:36Z", + "updatedAt": "2024-04-03T09:49:08Z", + "name": "Whey_Protein_Chocolate_12_Packets", + "owner": "GoogleResearch", + "description": "Whey Protein, Chocolate - 12 Packets\nJarrow FORMULAS WHEY PROTEIN is a 100%natural protein concentrate of whey, from cows not treated with growth hormone (rBST), and is ultrafiltered to be low in fat, lactose and carbohydrates. WHEY PROTEIN is a rich natural source of BCAAs (Isoleucine, Leucine and Valine). Each packet (27 grams) of WHEY PROTEIN provides a total of 4 grams of BCAAs. No other source of protein provides as much of the BCAAs as whey. WHEY PROTEIN is rich in essential amino acids, ranking it with egg as one of the highest quality protein sources available. *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.", + "likes": 0, + "downloads": 937, + "filesize": 8925995, + "upload_date": "2020-09-03T18:36:32Z", + "modify_date": "2020-09-18T20:07:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Whey_Protein_Chocolate_12_Packets/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:36:29Z", + "updatedAt": "2024-04-03T09:49:04Z", + "name": "Whey_Protein_3_Flavor_Variety_Pack_12_Packets", + "owner": "GoogleResearch", + "description": "Whey Protein, 3 Flavor Variety Pack - 12 Packets\nJarrow FORMULAS WHEY PROTEIN is a 100%natural protein concentrate of whey, from cows not treated with growth hormone (rBST), and is ultrafiltered to be low in fat, lactose and carbohydrates. WHEY PROTEIN is a rich natural source of BCAAs (Isoleucine, Leucine and Valine). Each packet (? 23 grams) of WHEY PROTEIN provides a total of 4 grams of BCAAs. No other source of protein provides as much of the BCAAs as whey. WHEY PROTEIN is rich in essential amino acids, ranking it with egg as one of the highest quality protein sources available. *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.", + "likes": 0, + "downloads": 967, + "filesize": 7780826, + "upload_date": "2020-09-03T18:36:21Z", + "modify_date": "2020-09-18T20:07:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Whey_Protein_3_Flavor_Variety_Pack_12_Packets/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:36:18Z", + "updatedAt": "2024-04-03T08:15:10Z", + "name": "Weston_No_33_Signature_Sausage_Tonic_12_fl_oz", + "owner": "GoogleResearch", + "description": "Weston No. 33 Signature Sausage Tonic - 12 fl oz\nWeston Premium Jerky Tonic - the cure for the tired tastebud! Our bottles let you use only what you need. Mix one tablespoon of seasoning with one tablespoon of water for every one pound of meat.", + "likes": 0, + "downloads": 1152, + "filesize": 7502539, + "upload_date": "2020-09-03T18:36:13Z", + "modify_date": "2020-09-18T20:07:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Weston_No_33_Signature_Sausage_Tonic_12_fl_oz/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:35:41Z", + "updatedAt": "2024-04-03T08:46:03Z", + "name": "Weston_No_22_Cajun_Jerky_Tonic_12_fl_oz_nLj64ZnGwDh", + "owner": "GoogleResearch", + "description": "Weston No. 22 Cajun Jerky Tonic - 12 fl oz\nWeston Premium Jerky Tonic - the cure for the tired tastebud! Our bottles let you use only what you need. Mix one tablespoon of seasoning with one tablespoon of water for every one pound of meat.", + "likes": 0, + "downloads": 1056, + "filesize": 7749136, + "upload_date": "2020-09-03T18:35:38Z", + "modify_date": "2020-09-18T20:07:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Weston_No_22_Cajun_Jerky_Tonic_12_fl_oz_nLj64ZnGwDh/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:35:30Z", + "updatedAt": "2024-04-03T09:48:57Z", + "name": "W_Lou_z0dkC78niiZ", + "owner": "GoogleResearch", + "description": "W Lou", + "likes": 0, + "downloads": 942, + "filesize": 7168303, + "upload_date": "2020-09-03T18:35:27Z", + "modify_date": "2020-09-18T20:07:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/W_Lou_z0dkC78niiZ/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:33:41Z", + "updatedAt": "2024-04-03T09:17:04Z", + "name": "WHALE_WHISTLE_6PCS_SET", + "owner": "GoogleResearch", + "description": "WHALE WHISTLE (6PCS@ SET)\n6 Pieces Per Set", + "likes": 0, + "downloads": 1084, + "filesize": 6596154, + "upload_date": "2020-09-03T18:33:38Z", + "modify_date": "2020-09-18T20:07:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/WHALE_WHISTLE_6PCS_SET/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:33:36Z", + "updatedAt": "2024-04-03T10:05:52Z", + "name": "WATER_LANDING_NET", + "owner": "GoogleResearch", + "description": "WATER LANDING NET\nGone fishin' with your wooden toy Landing Net! The set includes a landing net, a fish, a turtle, a starfish and 2 different cups. Kids will enjoy experimenting different flows of water with these 3 cups. Some are pierced and kids can enjoy dumping, filling, reversing, the possibilities are endless.", + "likes": 0, + "downloads": 1064, + "filesize": 12027982, + "upload_date": "2020-09-03T18:33:32Z", + "modify_date": "2020-09-18T20:07:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/WATER_LANDING_NET/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:33:29Z", + "updatedAt": "2024-04-03T09:16:55Z", + "name": "Vans_Cereal_Honey_Nut_Crunch_11_oz_box", + "owner": "GoogleResearch", + "description": "Van's Cereal, Honey Nut Crunch - 11 oz box", + "likes": 0, + "downloads": 1198, + "filesize": 11570400, + "upload_date": "2020-09-03T18:33:26Z", + "modify_date": "2020-09-18T20:07:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Vans_Cereal_Honey_Nut_Crunch_11_oz_box/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:33:24Z", + "updatedAt": "2024-04-03T09:48:49Z", + "name": "VANS_FIRE_ROASTED_VEGGIE_CRACKERS_GLUTEN_FREE", + "owner": "GoogleResearch", + "description": "VAN'S FIRE ROASTED VEGGIE CRACKERS GLUTEN FREE", + "likes": 0, + "downloads": 1100, + "filesize": 12587018, + "upload_date": "2020-09-03T18:33:20Z", + "modify_date": "2020-09-18T20:07:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/VANS_FIRE_ROASTED_VEGGIE_CRACKERS_GLUTEN_FREE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:33:18Z", + "updatedAt": "2024-04-03T08:15:04Z", + "name": "Unmellow_Yellow_Tieks_Neon_Patent_Leather_Ballet_Flats", + "owner": "GoogleResearch", + "description": "Unmellow Yellow Tieks - Neon Patent Leather Ballet Flats\nShock your outfit to life in Unmellow Yellow Tieks. These patent, neon croc print ballet flats will electrify any look. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 1104, + "filesize": 6154468, + "upload_date": "2020-09-03T18:33:15Z", + "modify_date": "2020-09-18T20:07:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Unmellow_Yellow_Tieks_Neon_Patent_Leather_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:32:56Z", + "updatedAt": "2024-04-03T07:43:23Z", + "name": "Ultra_JarroDophilus", + "owner": "GoogleResearch", + "description": "Ultra Jarro-Dophilus", + "likes": 0, + "downloads": 898, + "filesize": 10332239, + "upload_date": "2020-09-03T18:32:53Z", + "modify_date": "2020-09-18T20:07:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ultra_JarroDophilus/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:32:50Z", + "updatedAt": "2024-04-03T10:16:47Z", + "name": "U_By_Kotex_Sleek_Regular_Unscented_Tampons_36_Ct_Box", + "owner": "GoogleResearch", + "description": "U By Kotex Sleek Regular Unscented Tampons 36 Ct Box\n2X. Full size applicator. PerfectTouch grip. Get a hold of confident period protection. Smooth tip for easy insertion. PerfectTouch grip for just right placement. Slim size for your comfort. ubykotex.com. Made in the USA from domestic and imported material.", + "likes": 0, + "downloads": 903, + "filesize": 9360949, + "upload_date": "2020-09-03T18:32:47Z", + "modify_date": "2020-09-18T20:07:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/U_By_Kotex_Sleek_Regular_Unscented_Tampons_36_Ct_Box/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:32:45Z", + "updatedAt": "2024-04-03T09:48:41Z", + "name": "U_By_Kotex_Cleanwear_Heavy_Flow_Pads_32_Ct", + "owner": "GoogleResearch", + "description": "U By Kotex Cleanwear Heavy Flow Pads 32 Ct\n2x, We've got answers to the questions you are afraid to ask. Serious attitude. Serious protection. For when things get heavy. Unique shape conforms to fit your body. First 4 layer advanced absorbency system. Clean Wear cover for a clean and fresh feeling. MemoryFlex core is ultra-thin and ultra-flexible to move with you. No. 66 Myth or Fact?: PMS is a pain in the back. Fact - Low back pain is pretty common just before and during the first few days of your period. It's your excuse to go get a massage or do some gentle yoga. Made in the USA from domestic and imported materials.", + "likes": 0, + "downloads": 960, + "filesize": 9196407, + "upload_date": "2020-09-03T18:32:42Z", + "modify_date": "2020-09-18T20:07:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/U_By_Kotex_Cleanwear_Heavy_Flow_Pads_32_Ct/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:32:39Z", + "updatedAt": "2024-04-03T08:45:55Z", + "name": "US_Army_Stash_Lunch_Bag", + "owner": "GoogleResearch", + "description": "U.S. Army Stash Lunch Bag", + "likes": 0, + "downloads": 1141, + "filesize": 13686195, + "upload_date": "2020-09-03T18:32:35Z", + "modify_date": "2020-09-18T20:07:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/US_Army_Stash_Lunch_Bag/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T18:31:58Z", + "updatedAt": "2024-04-03T08:14:58Z", + "name": "UGG_Jena_Womens_Java_7", + "owner": "GoogleResearch", + "description": "UGG Jena Women's - Java 7\nUggs : UGG Australia- UGGs Women Jena . Statement-making style mavens will love this New Orleans-inspired military boot, designed with a removable kiltie and rich brogue detailing. Convertible in nature, this lace-up boot can be worn cuffed up or down, transitioning seamlessly from polished to playful.", + "likes": 0, + "downloads": 1076, + "filesize": 8650213, + "upload_date": "2020-09-03T18:31:55Z", + "modify_date": "2020-09-18T20:07:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/UGG_Jena_Womens_Java_7/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:31:52Z", + "updatedAt": "2024-04-03T09:48:32Z", + "name": "UGG_Classic_Tall_Womens_Boots_Grey_7", + "owner": "GoogleResearch", + "description": "UGG Classic Tall Women's Boots- Grey 7\nUgg Boots: Ugg Classic Tall Boots for Women by UGG Australia. One of UGG® Australia's most beloved silhouettes, the Classic Tall features cuffable Twinface sheepskin in a palette of seasonal shades. An icon of casual style, the chic silhouette showcases all the characteristics of the Classic Collection, keeping feet dry and comfortable with a moisture-wicking interior and trademark molded-EVA outsole.", + "likes": 0, + "downloads": 934, + "filesize": 6599982, + "upload_date": "2020-09-03T18:31:50Z", + "modify_date": "2020-09-18T20:07:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/UGG_Classic_Tall_Womens_Boots_Grey_7/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:31:47Z", + "updatedAt": "2024-04-03T09:16:48Z", + "name": "UGG_Classic_Tall_Womens_Boots_Chestnut_7", + "owner": "GoogleResearch", + "description": "UGG Classic Tall Women's Boots- Chestnut 7\nUgg Boots: Ugg Classic Tall Boots for Women by UGG Australia. One of UGG® Australia's most beloved silhouettes, the Classic Tall features cuffable Twinface sheepskin in a palette of seasonal shades. An icon of casual style, the chic silhouette showcases all the characteristics of the Classic Collection, keeping feet dry and comfortable with a moisture-wicking interior and trademark molded-EVA outsole.", + "likes": 0, + "downloads": 1023, + "filesize": 7090043, + "upload_date": "2020-09-03T18:31:44Z", + "modify_date": "2020-09-18T20:07:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/UGG_Classic_Tall_Womens_Boots_Chestnut_7/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:31:22Z", + "updatedAt": "2024-04-03T09:16:40Z", + "name": "UGG_Cambridge_Womens_Black_7", + "owner": "GoogleResearch", + "description": "UGG Cambridge Women's - Black 7\nUggs : UGG Australia- UGGs Women Cambridge . Cozy up in our Classic Knit collection. Lined in sumptuous sheepskin with a fold-over knit collar, Cambridge is essentially the perfect pulloverfor your feet, featuring an adjustable strap for versatile fit and a sheepskin lined cushy foam insole for extra comfort.", + "likes": 0, + "downloads": 1038, + "filesize": 5924410, + "upload_date": "2020-09-03T18:31:19Z", + "modify_date": "2020-09-18T20:07:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/UGG_Cambridge_Womens_Black_7/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:31:16Z", + "updatedAt": "2024-04-03T09:16:34Z", + "name": "UGG_Bailey_Button_Womens_Boots_Black_7", + "owner": "GoogleResearch", + "description": "UGG Bailey Button Women's Boots- Black 7\nUgg Boots: Ugg Bailey Button Boots for Women by UGG Australia. Bringing versatility to the calf-height style of the Classic Short, the Bailey Button showcases the exclusivewooden logo button with elastic-band closure--in a spectrum of colors. Signature Twinface sheepskin silhouette can be cuffed to expose its cozy interior.", + "likes": 0, + "downloads": 1010, + "filesize": 4096878, + "upload_date": "2020-09-03T18:31:14Z", + "modify_date": "2020-09-18T20:07:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/UGG_Bailey_Button_Womens_Boots_Black_7/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:31:11Z", + "updatedAt": "2024-04-03T08:14:53Z", + "name": "UGG_Bailey_Button_Triplet_Womens_Boots_Black_7", + "owner": "GoogleResearch", + "description": "UGG Bailey Button Triplet Women's Boots- Black 7\nUgg Boots: Ugg Bailey Button Triplet Boots for Women by UGG Australia. A fresh take on the timeless style of the Classic Tall, the Bailey Button Triplet features wooden logo buttons with elastic-band closures. Lending signature UGG softness, Twinface sheepskin can be unbuttoned and cuffed to expose its cozy interior.", + "likes": 0, + "downloads": 1074, + "filesize": 5321991, + "upload_date": "2020-09-03T18:31:09Z", + "modify_date": "2020-09-18T20:07:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/UGG_Bailey_Button_Triplet_Womens_Boots_Black_7/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:31:06Z", + "updatedAt": "2024-04-03T10:16:39Z", + "name": "UGG_Bailey_Bow_Womens_Clogs_Black_7", + "owner": "GoogleResearch", + "description": "UGG Bailey Bow Women's Clogs- Black 7\nUggs Clogs: UGG Australia- UGGs Women Bailey Bow Clogs. The Bailey Bow is embellished with fixed, double ribbon bows at the back, enhancing the defining features of an UGG Classic. A light, flexible outsole and foundational Twinface sheepskin keep feet cozy and dry indoors or out, while durable construction and added foam ensure all-day comfort.", + "likes": 0, + "downloads": 915, + "filesize": 4931193, + "upload_date": "2020-09-03T18:31:04Z", + "modify_date": "2020-09-18T20:07:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/UGG_Bailey_Bow_Womens_Clogs_Black_7/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:30:53Z", + "updatedAt": "2024-04-03T09:48:24Z", + "name": "Twinlab_Premium_Creatine_Fuel_Powder", + "owner": "GoogleResearch", + "description": "Twinlab Premium Creatine Fuel Powder\nResearch shows that Creatine users had a significant increase in peak power output, lean body mass and muscular performance.* Depletion of phosphocreatine can result in muscular fatigue and fading muscle power.* Research shows that users of high quality creatine monohydrate exhibited: Increased peak power*, Amplified muscular performance*, Improved lean body mass*, Advanced performance enhancer with pure Creatine Monohydrate, an energy enhancing supplement*, Improves muscle strength, performance and lean mass*, Featuring precision, micronized, German-sourced brand creatine (micronization allows Creatine powder to stay suspended in liquid longer). *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure or prevent disease.", + "likes": 0, + "downloads": 985, + "filesize": 10205554, + "upload_date": "2020-09-03T18:30:50Z", + "modify_date": "2020-09-18T20:07:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Twinlab_Premium_Creatine_Fuel_Powder/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:30:47Z", + "updatedAt": "2024-04-03T08:45:49Z", + "name": "Twinlab_Nitric_Fuel", + "owner": "GoogleResearch", + "description": "Twinlab Nitric Fuel\nFinally, a product that takes you beyond a simple pump.* Nitric Fuel? floods muscles with Nitric Oxide, Beta-Alanine and Creatine in an innovative bi-layer tablet designed for both quick and prolonged power and pump.* Nitric Fuel goes beyond simple \"pump\" products by combining the volumizing effects of Nitric Oxide (from Di-arginine Malate and Citrulline Malate) with stamina-boosting Beta-Alanine and performance-enhancing Creatine (Di-creatine Malate).* Nitric Oxide increases blood flow, which may deliver more nutrients to muscles and help get that pumped-up post workout look.* In addition to Di-arginine Malate and Di-creatine Malate, Nitric Fuel's Power Pump Complex contains Citrulline Malate, a precursor to Nitric Oxide that helps promote resistance to fatigue and better muscle recovery; Aspartic acid, which may increase stamina; and L-histidine, an amino acid that combines with Beta- Alanine to further increase muscular strength.* We also added Glyceryl Monostearate, which helps transport water into muscle cells and may further promote muscle hydration.* All of these nutrients are combined in a unique bi-layer tablet. The gray side of the tablet dissolves quickly to kick-start your workout, while the blue side dissipates more slowly to fuel sustained and intense 1-2 hour workouts.* *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure or prevent disease.", + "likes": 0, + "downloads": 1051, + "filesize": 9706096, + "upload_date": "2020-09-03T18:30:44Z", + "modify_date": "2020-09-18T20:07:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Twinlab_Nitric_Fuel/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:30:41Z", + "updatedAt": "2024-04-03T08:45:39Z", + "name": "Twinlab_100_Whey_Protein_Fuel_Vanilla", + "owner": "GoogleResearch", + "description": "Twinlab 100% Whey Protein Fuel Vanilla\nOur 100% Whey Fuel ever is a superior blend of high quality, bioavailable whey proteins that's fully instantized, quick dissolving and easy to mix with a rich, creamy taste in both water and skim milk. 100% Whey Fuel stimulates muscle protein anabolism, which maximizes muscle growth that occurs after exercise by enhancing muscle building and lean tissue mass.* It also increases muscle performance and improves post-workout recovery.* Clinical studies show that whey protein is one of the most anabolic muscle building proteins available, providing a rapid drive of amino acids to skeletal muscle tissue, thereby increasing the effects of weight training.* Enhanced muscle protein anabolism increases muscle growth to maximize gains.* Additionally, research shows that whey protein is among the most easily digested and absorbed proteins, and has one of the highest Protein Efficiency Ratios, providing more branched chain amino acids than most other proteins. 100% Whey Fuel stimulates muscle protein anabolism, which maximizes muscle growth that occurs after exercise by enhancing muscle building and lean tissue mass.* It also increases muscle performance and improves post-workout recovery*. *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure or prevent disease.", + "likes": 0, + "downloads": 1139, + "filesize": 11700750, + "upload_date": "2020-09-03T18:30:38Z", + "modify_date": "2020-09-18T20:07:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Twinlab_100_Whey_Protein_Fuel_Vanilla/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:30:35Z", + "updatedAt": "2024-04-03T09:48:19Z", + "name": "Twinlab_100_Whey_Protein_Fuel_Cookies_and_Cream", + "owner": "GoogleResearch", + "description": "Twinlab 100% Whey Protein Fuel Cookies and Cream\nOur 100% Whey Fuel ever is a superior blend of high quality, bioavailable whey proteins that's fully instantized, quick dissolving and easy to mix with a rich, creamy taste in both water and skim milk. 100% Whey Fuel stimulates muscle protein anabolism, which maximizes muscle growth that occurs after exercise by enhancing muscle building and lean tissue mass.* It also increases muscle performance and improves post-workout recovery.* Clinical studies show that whey protein is one of the most anabolic muscle building proteins available, providing a rapid drive of amino acids to skeletal muscle tissue, thereby increasing the effects of weight training.* Enhanced muscle protein anabolism increases muscle growth to maximize gains.* Additionally, research shows that whey protein is among the most easily digested and absorbed proteins, and has one of the highest Protein Efficiency Ratios, providing more branched chain amino acids than most other proteins. 100% Whey Fuel stimulates muscle protein anabolism, which maximizes muscle growth that occurs after exercise by enhancing muscle building and lean tissue mass.* It also increases muscle performance and improves post-workout recovery*. *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure or prevent disease.", + "likes": 0, + "downloads": 999, + "filesize": 11382399, + "upload_date": "2020-09-03T18:30:32Z", + "modify_date": "2020-09-18T20:07:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Twinlab_100_Whey_Protein_Fuel_Cookies_and_Cream/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:30:29Z", + "updatedAt": "2024-04-03T08:44:57Z", + "name": "Twinlab_100_Whey_Protein_Fuel_Chocolate", + "owner": "GoogleResearch", + "description": "Twinlab 100% Whey Protein Fuel Chocolate\nOur 100% Whey Fuel ever is a superior blend of high quality, bioavailable whey proteins that's fully instantized, quick dissolving and easy to mix with a rich, creamy taste in both water and skim milk. 100% Whey Fuel stimulates muscle protein anabolism, which maximizes muscle growth that occurs after exercise by enhancing muscle building and lean tissue mass.* It also increases muscle performance and improves post-workout recovery.* Clinical studies show that whey protein is one of the most anabolic muscle building proteins available, providing a rapid drive of amino acids to skeletal muscle tissue, thereby increasing the effects of weight training.* Enhanced muscle protein anabolism increases muscle growth to maximize gains.* Additionally, research shows that whey protein is among the most easily digested and absorbed proteins, and has one of the highest Protein Efficiency Ratios, providing more branched chain amino acids than most other proteins. 100% Whey Fuel stimulates muscle protein anabolism, which maximizes muscle growth that occurs after exercise by enhancing muscle building and lean tissue mass.* It also increases muscle performance and improves post-workout recovery*. *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure or prevent disease.", + "likes": 0, + "downloads": 1143, + "filesize": 10987698, + "upload_date": "2020-09-03T18:30:26Z", + "modify_date": "2020-09-18T20:07:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Twinlab_100_Whey_Protein_Fuel_Chocolate/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:30:23Z", + "updatedAt": "2024-04-03T09:16:24Z", + "name": "Tune_Belt_Sport_Armband_For_Samsung_Galaxy_S3", + "owner": "GoogleResearch", + "description": "Tune Belt Sport Armband For Samsung Galaxy S3", + "likes": 0, + "downloads": 1088, + "filesize": 12861981, + "upload_date": "2020-09-03T18:30:19Z", + "modify_date": "2020-09-18T20:07:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tune_Belt_Sport_Armband_For_Samsung_Galaxy_S3/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:30:17Z", + "updatedAt": "2024-04-03T08:14:42Z", + "name": "Travel_Smart_Neck_Rest_Inflatable", + "owner": "GoogleResearch", + "description": "Travel Smart Neck Rest, Inflatable", + "likes": 0, + "downloads": 1164, + "filesize": 13161598, + "upload_date": "2020-09-03T18:30:13Z", + "modify_date": "2020-09-18T20:07:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Travel_Smart_Neck_Rest_Inflatable/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:29:46Z", + "updatedAt": "2024-04-03T08:13:25Z", + "name": "Travel_Mate_P_series_Notebook", + "owner": "GoogleResearch", + "description": "Travel Mate P series Notebook\n14\" commerical notebok", + "likes": 1, + "downloads": 1137, + "filesize": 10418562, + "upload_date": "2020-09-03T18:29:43Z", + "modify_date": "2020-09-18T20:07:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Travel_Mate_P_series_Notebook/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T18:29:20Z", + "updatedAt": "2024-04-03T10:05:44Z", + "name": "Transformers_Age_of_Extinction_Stomp_and_Chomp_Grimlock_Figure", + "owner": "GoogleResearch", + "description": "Transformers Age of Extinction Stomp and Chomp Grimlock Figure\nYour Transformers adventures just got a whole lot bigger! Your Chomp and Stomp Grimlock figure is a giant, 20-inch robot with a mighty sword who's ready to take on any enemy. He changes in 1 step to a dino with a terrible, chomping jaw and light-up eyes! Team him up with the included Optimus Prime mini-figure for maximum mayhem.", + "likes": 0, + "downloads": 939, + "filesize": 10479664, + "upload_date": "2020-09-03T18:29:16Z", + "modify_date": "2020-09-18T20:07:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Transformers_Age_of_Extinction_Stomp_and_Chomp_Grimlock_Figure/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:28:35Z", + "updatedAt": "2024-04-04T02:32:07Z", + "name": "Transformers_Age_of_Extinction_Mega_1Step_Bumblebee_Figure", + "owner": "GoogleResearch", + "description": "Transformers Age of Extinction Mega 1-Step Bumblebee Figure\nJoin the epic battle between the Autobots and Decepticons with this giant Bumblebee figure that switches between robot and vehicle modes in 1 awesome step! You can experience the wow of the fluid conversion you see your favorite Transformers characters perform. Just flip to change from robot to vehicle and back. With a firing disc launcher included, you can create exciting Transformers battles, all in larger, mega-sized scale!", + "likes": 0, + "downloads": 5465, + "filesize": 9593798, + "upload_date": "2020-09-03T18:28:31Z", + "modify_date": "2020-09-18T20:07:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Transformers_Age_of_Extinction_Mega_1Step_Bumblebee_Figure/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:28:28Z", + "updatedAt": "2024-04-03T08:14:37Z", + "name": "Tory_Burch_Sabe_65mm_Bootie_Split_Suede_in_Caramel", + "owner": "GoogleResearch", + "description": "Tory Burch Sabe 65mm Bootie- Split Suede in Caramel", + "likes": 0, + "downloads": 1074, + "filesize": 4733725, + "upload_date": "2020-09-03T18:28:26Z", + "modify_date": "2020-09-18T20:07:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tory_Burch_Sabe_65mm_Bootie_Split_Suede_in_Caramel/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:28:24Z", + "updatedAt": "2024-04-03T09:48:12Z", + "name": "Tory_Burch_Reva_Metal_Logo_Litus_Snake_Print_in_dark_BranchGold", + "owner": "GoogleResearch", + "description": "Tory Burch Reva (Metal Logo)- Litus Snake Print in dark Branch/Gold", + "likes": 0, + "downloads": 947, + "filesize": 7550153, + "upload_date": "2020-09-03T18:28:20Z", + "modify_date": "2020-09-18T20:07:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tory_Burch_Reva_Metal_Logo_Litus_Snake_Print_in_dark_BranchGold/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:28:18Z", + "updatedAt": "2024-04-03T09:47:56Z", + "name": "Tory_Burch_Kiernan_Riding_Boot", + "owner": "GoogleResearch", + "description": "Tory Burch Kiernan Riding Boot\nDirectly from Tory Burch - A wardrobe staple ? our must-have riding boot. A classic equestrian shape dressed up with fretwork-inspired gold metal. Our leather Kiernan Boot is inset with a signature ?T? logo done in an open-cut design based on the decorative elements used in our boutiques, giving the minimalistic and infinitely versatile silhouette a hint of graphic shine. Tory Burch Official Site.", + "likes": 0, + "downloads": 943, + "filesize": 7642022, + "upload_date": "2020-09-03T18:28:15Z", + "modify_date": "2020-09-18T20:07:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tory_Burch_Kiernan_Riding_Boot/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:28:00Z", + "updatedAt": "2024-04-03T08:13:18Z", + "name": "Tory_Burch_Kaitlin_Ballet_Mestico_in_BlackGold", + "owner": "GoogleResearch", + "description": "Tory Burch Kaitlin Ballet - Mestico in Black/Gold", + "likes": 0, + "downloads": 1092, + "filesize": 7510837, + "upload_date": "2020-09-03T18:27:57Z", + "modify_date": "2020-09-18T20:07:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tory_Burch_Kaitlin_Ballet_Mestico_in_BlackGold/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:27:54Z", + "updatedAt": "2024-04-03T09:47:51Z", + "name": "Timberland_Womens_Waterproof_Nellie_Chukka_Double", + "owner": "GoogleResearch", + "description": "Timberland Women's Waterproof Nellie Chukka Double\nUpdated for the new season Women's Waterproof Nellie Chukka Double. We've used our exclusive anti-fatigue technology in the midsoles to ensure that our rugged but feminine Nellie Chukka Double offers the ultimate in comfort. Women's Waterproof Nellie Chukka Double. We've used our exclusive anti-fatigue technology in the midsoles to ensure that our rugged but feminine Nellie Chukka Double offers the ultimate in comfort.", + "likes": 0, + "downloads": 951, + "filesize": 6436617, + "upload_date": "2020-09-03T18:27:52Z", + "modify_date": "2020-09-18T20:07:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Timberland_Womens_Waterproof_Nellie_Chukka_Double/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:27:49Z", + "updatedAt": "2024-04-03T08:13:13Z", + "name": "Timberland_Womens_Earthkeepers_Classic_Unlined_Boat_Shoe", + "owner": "GoogleResearch", + "description": "Timberland Women's Earthkeepers Classic Unlined Boat Shoe\nShop Timberland for the Women's Earthkeepers Classic Unlined Boat Shoe. Great colors for the new season and a compression-molded midsole make this classic boat shoe comfy and perfectly on-trend.", + "likes": 0, + "downloads": 1126, + "filesize": 6693048, + "upload_date": "2020-09-03T18:27:46Z", + "modify_date": "2020-09-18T20:07:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Timberland_Womens_Earthkeepers_Classic_Unlined_Boat_Shoe/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:27:44Z", + "updatedAt": "2024-04-03T08:44:49Z", + "name": "Timberland_Womens_Classic_Amherst_2Eye_Boat_Shoe", + "owner": "GoogleResearch", + "description": "Timberland Women's Classic Amherst 2-Eye Boat Shoe\nGet geared up this season. Take a look at our Women's Classic Amherst 2-Eye Boat Shoe. We made our name with the first waterproof boots, then we extended our craftsmanship to the boat shoe.", + "likes": 0, + "downloads": 1058, + "filesize": 6909990, + "upload_date": "2020-09-03T18:27:41Z", + "modify_date": "2020-09-18T20:07:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Timberland_Womens_Classic_Amherst_2Eye_Boat_Shoe/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:27:38Z", + "updatedAt": "2024-04-03T08:44:42Z", + "name": "Timberland_Mens_Earthkeepers_Stormbuck_Plain_Toe_Oxford", + "owner": "GoogleResearch", + "description": "Timberland Men's Earthkeepers Stormbuck Plain Toe Oxford\nExploring new gear for this season? Check out our Men's Earthkeepers Stormbuck Plain Toe Oxford. One of our most classic styles, our Earthkeepers™ Stormbuck Plain Toe Oxford is versatile, waterproof and updated for the new season with plenty of eco-conscious features.", + "likes": 0, + "downloads": 1063, + "filesize": 5647474, + "upload_date": "2020-09-03T18:27:36Z", + "modify_date": "2020-09-18T20:07:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Timberland_Mens_Earthkeepers_Stormbuck_Plain_Toe_Oxford/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:27:33Z", + "updatedAt": "2024-04-03T09:16:13Z", + "name": "Timberland_Mens_Earthkeepers_Stormbuck_Lite_Plain_Toe_Oxford", + "owner": "GoogleResearch", + "description": "Timberland Men's Earthkeepers Stormbuck Lite Plain Toe Oxford\nExploring new gear for this season? Check out our Men's Earthkeepers Stormbuck Lite Plain Toe Oxford. Ready for outdoor adventure, but happy to hang out around the house This simply styled oxford has siped, compression-molded outsoles for traction, water-resistant uppers and a footbed made with our exclusive anti-fatigue technology for all-day comfort. This simply styled oxford has siped, compression-molded outsoles for traction, water-resistant uppers and a footbed made with our exclusive anti-fatigue technology for all-day comfort.", + "likes": 0, + "downloads": 1045, + "filesize": 5129264, + "upload_date": "2020-09-03T18:27:31Z", + "modify_date": "2020-09-18T20:07:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Timberland_Mens_Earthkeepers_Stormbuck_Lite_Plain_Toe_Oxford/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:27:28Z", + "updatedAt": "2024-04-03T08:13:05Z", + "name": "Timberland_Mens_Earthkeepers_Stormbuck_Chukka", + "owner": "GoogleResearch", + "description": "Timberland Men's Earthkeepers Stormbuck Chukka\nCheck out our Men's Earthkeepers Stormbuck Chukka. Complicated isn't always better. Simple lines and eco-conscious materials speak for themselves in our Earthkeepers Stormbuck Chukka, which features premium, water-resistant suede uppers and our exclusive anti-fatigue technology built right into the footbed for all-day style and comfort.", + "likes": 0, + "downloads": 1099, + "filesize": 5459168, + "upload_date": "2020-09-03T18:27:26Z", + "modify_date": "2020-09-18T20:07:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Timberland_Mens_Earthkeepers_Stormbuck_Chukka/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:27:23Z", + "updatedAt": "2024-04-03T08:12:58Z", + "name": "Timberland_Mens_Earthkeepers_Newmarket_6Inch_Cupsole_Boot", + "owner": "GoogleResearch", + "description": "Timberland Men's Earthkeepers Newmarket 6-Inch Cupsole Boot\nRugged, durable and hard-wearing Men's Earthkeepers Newmarket 6-Inch Cupsole Boot. We've been using nubuck leather to craft our hard-wearing boots for decades - and our Earthkeepers Newmarket 6-Inch Cupsole is the latest version of a classic style. Men's Earthkeepers Newmarket 6-Inch Cupsole Boot. We've been using nubuck leather to craft our hard-wearing boots for decades - and our Earthkeepers Newmarket 6-Inch Cupsole is the latest version of a classic style.", + "likes": 0, + "downloads": 1182, + "filesize": 7079553, + "upload_date": "2020-09-03T18:27:20Z", + "modify_date": "2020-09-18T20:07:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Timberland_Mens_Earthkeepers_Newmarket_6Inch_Cupsole_Boot/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:27:17Z", + "updatedAt": "2024-04-03T08:44:37Z", + "name": "Timberland_Mens_Earthkeepers_Heritage_2Eye_Boat_Shoe", + "owner": "GoogleResearch", + "description": "Timberland Men's Earthkeepers Heritage 2-Eye Boat Shoe\nExploring new gear for this season? Check out our Men's Earthkeepers Heritage 2-Eye Boat Shoe. It just keeps getting better, and never goes out of style. With its premium leather and classic good looks, our Earthkeepers Heritage 2-Eye is better than ever this season.", + "likes": 0, + "downloads": 1091, + "filesize": 5603471, + "upload_date": "2020-09-03T18:27:15Z", + "modify_date": "2020-09-18T20:07:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Timberland_Mens_Earthkeepers_Heritage_2Eye_Boat_Shoe/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:27:12Z", + "updatedAt": "2024-04-03T09:47:43Z", + "name": "Timberland_Mens_Earthkeepers_Casco_Bay_Suede_1Eye", + "owner": "GoogleResearch", + "description": "Timberland Men's Earthkeepers Casco Bay Suede 1-Eye\nGet geared up this season. Take a look at our Men's Earthkeepers Casco Bay Suede 1-Eye . One eye is all this low-profile shoe needs - its minimalist good looks are perfect for pairing with your warm-weather ensembles.", + "likes": 0, + "downloads": 945, + "filesize": 7609617, + "upload_date": "2020-09-03T18:27:07Z", + "modify_date": "2020-09-18T20:07:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Timberland_Mens_Earthkeepers_Casco_Bay_Suede_1Eye/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:27:03Z", + "updatedAt": "2024-04-03T10:16:33Z", + "name": "Timberland_Mens_Earthkeepers_Casco_Bay_Canvas_SlipOn", + "owner": "GoogleResearch", + "description": "Timberland Men's Earthkeepers Casco Bay Canvas Slip-On\nExploring new gear for this season? Check out our Men's Earthkeepers Casco Bay Canvas Slip-On. Built for simplicity and comfort, our Casco Bay Canvas Slip-On features canvas uppers made entirely of recycled plastic bottles and features a brushed synthetic suede footbed cover.", + "likes": 0, + "downloads": 915, + "filesize": 7746251, + "upload_date": "2020-09-03T18:27:00Z", + "modify_date": "2020-09-18T20:07:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Timberland_Mens_Earthkeepers_Casco_Bay_Canvas_SlipOn/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:26:39Z", + "updatedAt": "2024-04-03T09:15:48Z", + "name": "Timberland_Mens_Earthkeepers_Casco_Bay_Canvas_Oxford", + "owner": "GoogleResearch", + "description": "Timberland Men's Earthkeepers Casco Bay Canvas Oxford\nCheck out our Men's Earthkeepers Casco Bay Canvas Oxford. Nothing says summer like a lightweight canvas shoe. Ours features uppers made of ReCanvas™ material, which looks and feels just like cotton canvas but is made entirely from recycled plastic bottles - perfect for warm-weather style and kinder to the environment at the same time.", + "likes": 0, + "downloads": 1015, + "filesize": 8762288, + "upload_date": "2020-09-03T18:26:36Z", + "modify_date": "2020-09-18T20:07:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Timberland_Mens_Earthkeepers_Casco_Bay_Canvas_Oxford/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:26:09Z", + "updatedAt": "2024-04-03T09:47:11Z", + "name": "Timberland_Mens_Classic_2Eye_Boat_Shoe", + "owner": "GoogleResearch", + "description": "Timberland Men's Classic 2-Eye Boat Shoe\nRugged, durable and hard-wearing the OK. We've been building boat shoes for decades, and this season we're building upon that experience to bring you the Men's Classic 2-Eye Boat Shoe. the OK. We've been building boat shoes for decades, and this season we're building upon that experience to bring you the Men's Classic 2-Eye Boat Shoe.", + "likes": 0, + "downloads": 947, + "filesize": 6163509, + "upload_date": "2020-09-03T18:26:07Z", + "modify_date": "2020-09-18T20:07:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Timberland_Mens_Classic_2Eye_Boat_Shoe/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:26:04Z", + "updatedAt": "2024-04-03T10:16:25Z", + "name": "Tieks_Ballet_Flats_Electric_Snake", + "owner": "GoogleResearch", + "description": "Tieks Ballet Flats, Electric Snake\nChannel your inner wild side in enchanting Electric Snake Tieks. With a blend of metallic gold, pink, aqua and black, these lust-worthy ballet flats will capture the spotlight. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 942, + "filesize": 8000116, + "upload_date": "2020-09-03T18:26:01Z", + "modify_date": "2020-09-18T20:07:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tieks_Ballet_Flats_Electric_Snake/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:25:59Z", + "updatedAt": "2024-04-03T08:12:53Z", + "name": "Tieks_Ballet_Flats_Diamond_White_Croc", + "owner": "GoogleResearch", + "description": "Tieks Ballet Flats, Diamond White Croc\nAdd classic elegance to your wardrobe with these chic, patent crocodile print ballet flats. A favorite among brides. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 1126, + "filesize": 5681477, + "upload_date": "2020-09-03T18:25:56Z", + "modify_date": "2020-09-18T20:07:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tieks_Ballet_Flats_Diamond_White_Croc/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:25:54Z", + "updatedAt": "2024-04-03T08:44:31Z", + "name": "Tiek_Blue_Patent_Tieks_Italian_Leather_Ballet_Flats", + "owner": "GoogleResearch", + "description": "Tiek Blue Patent Tieks - Italian Leather Ballet Flats\nStatement making is made simple with our Tiek Blue Patent Tieks. Our signature color is unique, bold and bright. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 1093, + "filesize": 6658370, + "upload_date": "2020-09-03T18:25:51Z", + "modify_date": "2020-09-18T20:07:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tiek_Blue_Patent_Tieks_Italian_Leather_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:25:28Z", + "updatedAt": "2024-04-03T09:15:37Z", + "name": "Thomas_Friends_Wooden_Railway_Talking_Thomas_z7yi7UFHJRj", + "owner": "GoogleResearch", + "description": "Thomas & Friends Wooden Railway, Talking Thomas", + "likes": 0, + "downloads": 1107, + "filesize": 8871098, + "upload_date": "2020-09-03T18:25:24Z", + "modify_date": "2020-09-18T20:07:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Thomas_Friends_Wooden_Railway_Talking_Thomas_z7yi7UFHJRj/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:24:40Z", + "updatedAt": "2024-04-03T10:05:37Z", + "name": "Thomas_Friends_Wooden_Railway_Porter_5JzRhMm3a9o", + "owner": "GoogleResearch", + "description": "Thomas & Friends Wooden Railway, Porter", + "likes": 0, + "downloads": 908, + "filesize": 6144108, + "upload_date": "2020-09-03T18:24:38Z", + "modify_date": "2020-09-18T20:07:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Thomas_Friends_Wooden_Railway_Porter_5JzRhMm3a9o/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:24:30Z", + "updatedAt": "2024-04-03T08:44:22Z", + "name": "Thomas_Friends_Wooden_Railway_Deluxe_Track_Accessory_Pack", + "owner": "GoogleResearch", + "description": "Thomas & Friends Wooden Railway, Deluxe Track Accessory Pack", + "likes": 0, + "downloads": 1088, + "filesize": 9365854, + "upload_date": "2020-09-03T18:24:27Z", + "modify_date": "2020-09-18T20:07:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Thomas_Friends_Wooden_Railway_Deluxe_Track_Accessory_Pack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:24:25Z", + "updatedAt": "2024-04-03T10:05:29Z", + "name": "Thomas_Friends_Wooden_Railway_Ascending_Track_Riser_Pack", + "owner": "GoogleResearch", + "description": "Thomas & Friends Wooden Railway, Ascending Track & Riser Pack", + "likes": 0, + "downloads": 920, + "filesize": 7821609, + "upload_date": "2020-09-03T18:24:22Z", + "modify_date": "2020-09-18T20:07:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Thomas_Friends_Wooden_Railway_Ascending_Track_Riser_Pack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:24:19Z", + "updatedAt": "2024-04-03T09:15:29Z", + "name": "Thomas_Friends_Woodan_Railway_Henry", + "owner": "GoogleResearch", + "description": "Thomas & Friends Woodan Railway, Henry", + "likes": 0, + "downloads": 1011, + "filesize": 8649423, + "upload_date": "2020-09-03T18:24:16Z", + "modify_date": "2020-09-18T20:07:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Thomas_Friends_Woodan_Railway_Henry/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:24:14Z", + "updatedAt": "2024-04-03T09:47:04Z", + "name": "Theanine", + "owner": "GoogleResearch", + "description": "Theanine", + "likes": 0, + "downloads": 940, + "filesize": 7750468, + "upload_date": "2020-09-03T18:24:11Z", + "modify_date": "2020-09-18T20:07:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Theanine/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:24:08Z", + "updatedAt": "2024-04-03T08:44:13Z", + "name": "The_Scooper_Hooper", + "owner": "GoogleResearch", + "description": "The Scooper Hooper", + "likes": 0, + "downloads": 1143, + "filesize": 8168545, + "upload_date": "2020-09-03T18:24:05Z", + "modify_date": "2020-09-18T20:07:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/The_Scooper_Hooper/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:24:00Z", + "updatedAt": "2024-04-03T08:43:19Z", + "name": "The_Coffee_Bean_Tea_Leaf_KCup_Packs_Jasmine_Green_Tea_16_count", + "owner": "GoogleResearch", + "description": "The Coffee Bean & Tea Leaf K-Cup Packs, Jasmine Green Tea - 16 count", + "likes": 0, + "downloads": 1060, + "filesize": 10337706, + "upload_date": "2020-09-03T18:23:57Z", + "modify_date": "2020-09-18T20:07:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/The_Coffee_Bean_Tea_Leaf_KCup_Packs_Jasmine_Green_Tea_16_count/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:23:18Z", + "updatedAt": "2024-04-03T09:46:53Z", + "name": "Tetris_Link_Game", + "owner": "GoogleResearch", + "description": "Tetris Link Game", + "likes": 0, + "downloads": 1068, + "filesize": 13417082, + "upload_date": "2020-09-03T18:23:15Z", + "modify_date": "2020-09-18T20:07:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tetris_Link_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T18:23:12Z", + "updatedAt": "2024-04-03T10:15:30Z", + "name": "Tena_Pads_Heavy_Long_42_pads", + "owner": "GoogleResearch", + "description": "Tena Pads, Heavy, Long - 42 pads\ndescription 1,045", + "likes": 0, + "downloads": 896, + "filesize": 7545468, + "upload_date": "2020-09-03T18:23:09Z", + "modify_date": "2020-09-18T20:07:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Tena_Pads_Heavy_Long_42_pads/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:23:07Z", + "updatedAt": "2024-04-03T09:46:33Z", + "name": "Teenage_Mutant_Ninja_Turtles_Rahzar_Action_Figure", + "owner": "GoogleResearch", + "description": "Teenage Mutant Ninja Turtles Rahzar Action Figure", + "likes": 0, + "downloads": 944, + "filesize": 10250255, + "upload_date": "2020-09-03T18:23:03Z", + "modify_date": "2020-09-18T20:07:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Teenage_Mutant_Ninja_Turtles_Rahzar_Action_Figure/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-03T18:22:56Z", + "updatedAt": "2024-04-03T08:43:13Z", + "name": "TZX_Runner", + "owner": "GoogleResearch", + "description": "T-ZX Runner", + "likes": 0, + "downloads": 1152, + "filesize": 3769636, + "upload_date": "2020-09-03T18:22:53Z", + "modify_date": "2020-09-18T20:07:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TZX_Runner/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:22:51Z", + "updatedAt": "2024-04-03T09:46:26Z", + "name": "TURBOPROP_AIRPLANE_WITH_PILOT", + "owner": "GoogleResearch", + "description": "TURBOPROP AIRPLANE WITH PILOT", + "likes": 0, + "downloads": 949, + "filesize": 7763405, + "upload_date": "2020-09-03T18:22:48Z", + "modify_date": "2020-09-18T20:07:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TURBOPROP_AIRPLANE_WITH_PILOT/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:22:46Z", + "updatedAt": "2024-04-03T10:05:24Z", + "name": "TROCHILUS_BOOST", + "owner": "GoogleResearch", + "description": "TROCHILUS BOOST", + "likes": 0, + "downloads": 927, + "filesize": 8638870, + "upload_date": "2020-09-03T18:22:42Z", + "modify_date": "2020-09-18T20:07:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TROCHILUS_BOOST/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:22:40Z", + "updatedAt": "2024-04-03T10:15:23Z", + "name": "TOWER_TUMBLING", + "owner": "GoogleResearch", + "description": "TOWER TUMBLING\nStack the rods and discs according to color or make various patterns to create a tower without falling.", + "likes": 0, + "downloads": 909, + "filesize": 5831804, + "upload_date": "2020-09-03T18:22:37Z", + "modify_date": "2020-09-18T20:07:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TOWER_TUMBLING/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:22:35Z", + "updatedAt": "2024-04-03T08:14:31Z", + "name": "TOP_TEN_HI_60KlbRbdoJA", + "owner": "GoogleResearch", + "description": "TOP TEN HI\nFW-HIGH TOP", + "likes": 0, + "downloads": 1098, + "filesize": 6507776, + "upload_date": "2020-09-03T18:22:32Z", + "modify_date": "2020-09-18T20:07:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TOP_TEN_HI_60KlbRbdoJA/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:22:28Z", + "updatedAt": "2024-04-03T08:43:08Z", + "name": "TOP_TEN_HI", + "owner": "GoogleResearch", + "description": "TOP TEN HI\nFW-HIGH TOP", + "likes": 0, + "downloads": 1075, + "filesize": 6211631, + "upload_date": "2020-09-03T18:22:25Z", + "modify_date": "2020-09-18T20:08:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TOP_TEN_HI/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:21:57Z", + "updatedAt": "2024-04-03T10:15:14Z", + "name": "TOOL_BELT", + "owner": "GoogleResearch", + "description": "TOOL BELT\nBuild a bridge or fix a door. This handy, children?s tool belt fits up to a 25? waist. Includes a hammer, wrench, screwdriver, level tool, and a measuring tape. The fabric tool belt is hand and machine washable.", + "likes": 0, + "downloads": 1126, + "filesize": 11156681, + "upload_date": "2020-09-03T18:21:53Z", + "modify_date": "2020-09-18T20:08:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TOOL_BELT/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:21:10Z", + "updatedAt": "2024-04-03T09:46:18Z", + "name": "TERREX_FAST_X_GTX", + "owner": "GoogleResearch", + "description": "TERREX FAST X GTX\nFW-SHOES", + "likes": 0, + "downloads": 953, + "filesize": 6228446, + "upload_date": "2020-09-03T18:21:07Z", + "modify_date": "2020-09-18T20:08:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TERREX_FAST_X_GTX/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:21:04Z", + "updatedAt": "2024-04-03T08:12:46Z", + "name": "TERREX_FAST_R", + "owner": "GoogleResearch", + "description": "TERREX FAST R\nFW-SHOES", + "likes": 0, + "downloads": 1144, + "filesize": 4972981, + "upload_date": "2020-09-03T18:21:02Z", + "modify_date": "2020-09-18T20:08:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/TERREX_FAST_R/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:20:59Z", + "updatedAt": "2024-04-03T08:43:00Z", + "name": "Swiss_Miss_Hot_Cocoa_KCups_Milk_Chocolate_12_count", + "owner": "GoogleResearch", + "description": "Swiss Miss Hot Cocoa K-Cups, Milk Chocolate - 12 count", + "likes": 0, + "downloads": 1323, + "filesize": 10905181, + "upload_date": "2020-09-03T18:20:56Z", + "modify_date": "2020-09-18T20:08:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Swiss_Miss_Hot_Cocoa_KCups_Milk_Chocolate_12_count/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:20:36Z", + "updatedAt": "2024-04-03T09:15:18Z", + "name": "Supernatural_Ouija_Board_Game", + "owner": "GoogleResearch", + "description": "Supernatural Ouija Board Game", + "likes": 0, + "downloads": 1155, + "filesize": 17051866, + "upload_date": "2020-09-03T18:20:32Z", + "modify_date": "2020-09-18T20:08:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Supernatural_Ouija_Board_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T18:19:59Z", + "updatedAt": "2024-04-03T09:15:10Z", + "name": "Superman_Battle_of_Smallville", + "owner": "GoogleResearch", + "description": "Superman?: Battle of Smallville\nSuper Heroes DC", + "likes": 0, + "downloads": 1013, + "filesize": 8904620, + "upload_date": "2020-09-03T18:19:56Z", + "modify_date": "2020-09-18T20:08:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Superman_Battle_of_Smallville/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Legos" + ] + }, + { + "createdAt": "2020-09-03T18:19:53Z", + "updatedAt": "2024-04-03T08:42:51Z", + "name": "Super_Mario_Kart_Super_Nintendo_Entertainment_System", + "owner": "GoogleResearch", + "description": "Super Mario Kart, Super Nintendo Entertainment System", + "likes": 0, + "downloads": 1232, + "filesize": 11024709, + "upload_date": "2020-09-03T18:19:50Z", + "modify_date": "2020-09-18T20:08:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Super_Mario_Kart_Super_Nintendo_Entertainment_System/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T18:19:48Z", + "updatedAt": "2024-04-03T09:14:49Z", + "name": "Super_Mario_3D_World_Wii_U_Game", + "owner": "GoogleResearch", + "description": "Super Mario 3D World [Wii U Game]", + "likes": 0, + "downloads": 1131, + "filesize": 12496547, + "upload_date": "2020-09-03T18:19:44Z", + "modify_date": "2020-09-18T20:08:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Super_Mario_3D_World_Wii_U_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T18:19:42Z", + "updatedAt": "2024-04-03T09:14:39Z", + "name": "Super_Mario_3D_World_Deluxe_Set_yThuvW9vZed", + "owner": "GoogleResearch", + "description": "Super Mario 3D World Deluxe Set\n? Black Wii U Console\n? Super Mario 3D World Game \n? Nintendo Land Game\n? Wii U AC Adapter\n? Wii U GamePad AC Adapter\n? High Speed HDMI Cable\n? Sensor Bar\n? Wii U GamePad Cradle\n? Wii U GamePad Stand Support\n? Wii U Console Stand", + "likes": 0, + "downloads": 1056, + "filesize": 2461003, + "upload_date": "2020-09-03T18:19:40Z", + "modify_date": "2020-09-18T20:08:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Super_Mario_3D_World_Deluxe_Set_yThuvW9vZed/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T18:19:37Z", + "updatedAt": "2024-04-03T10:15:06Z", + "name": "Super_Mario_3D_World_Deluxe_Set", + "owner": "GoogleResearch", + "description": "Super Mario 3D World Deluxe Set\n? Black Wii U Console\n? Super Mario 3D World Game \n? Nintendo Land Game\n? Wii U AC Adapter\n? Wii U GamePad AC Adapter\n? High Speed HDMI Cable\n? Sensor Bar\n? Wii U GamePad Cradle\n? Wii U GamePad Stand Support\n? Wii U Console Stand", + "likes": 0, + "downloads": 919, + "filesize": 4626792, + "upload_date": "2020-09-03T18:19:35Z", + "modify_date": "2020-09-18T20:08:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Super_Mario_3D_World_Deluxe_Set/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T18:19:33Z", + "updatedAt": "2024-04-03T08:42:41Z", + "name": "Starstruck_Tieks_Glittery_Gold_Italian_Leather_Ballet_Flats", + "owner": "GoogleResearch", + "description": "Starstruck Tieks - Glittery Gold Italian Leather Ballet Flats\nThese glittery, one-of-a-kind ballet flats are sure to steal the show. Flashy, fun and fabulous, any outfit will become the perfect accessory to Starstruck Tieks. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 1195, + "filesize": 11262524, + "upload_date": "2020-09-03T18:19:29Z", + "modify_date": "2020-09-18T20:08:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Starstruck_Tieks_Glittery_Gold_Italian_Leather_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:18:48Z", + "updatedAt": "2024-04-03T09:14:31Z", + "name": "Star_Wars_Rogue_Squadron_Nintendo_64", + "owner": "GoogleResearch", + "description": "Star Wars Rogue Squadron, Nintendo 64", + "likes": 0, + "downloads": 1159, + "filesize": 9292880, + "upload_date": "2020-09-03T18:18:45Z", + "modify_date": "2020-09-18T20:08:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Star_Wars_Rogue_Squadron_Nintendo_64/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:18:35Z", + "updatedAt": "2024-04-03T09:10:40Z", + "name": "Squirtin_Barnyard_Friends_4pk", + "owner": "GoogleResearch", + "description": "Squirtin' Barnyard Friends - 4pk", + "likes": 0, + "downloads": 1032, + "filesize": 3605292, + "upload_date": "2020-09-03T18:18:32Z", + "modify_date": "2020-09-18T20:08:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Squirtin_Barnyard_Friends_4pk/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:18:16Z", + "updatedAt": "2024-04-03T09:46:11Z", + "name": "Squirt_Strain_Fruit_Basket", + "owner": "GoogleResearch", + "description": "Squirt & Strain Fruit Basket", + "likes": 0, + "downloads": 929, + "filesize": 4216724, + "upload_date": "2020-09-03T18:18:14Z", + "modify_date": "2020-09-18T20:08:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Squirt_Strain_Fruit_Basket/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:18:11Z", + "updatedAt": "2024-04-03T10:05:19Z", + "name": "SpiderMan_Titan_Hero_12Inch_Action_Figure_oo1qph4wwiW", + "owner": "GoogleResearch", + "description": "Spider-Man Titan Hero 12-Inch Action Figure\nSpider-Man Titan Hero 12-Inch Action Figure Hasbro Spider-Man Action Figures One bite from a radioactive spider changed Peter Parker's life forever, giving him super-human powers and amazing wall-crawling ability. Wearing the mask that has made him a legend, he battles evil wherever a hero is needed as the one-and-only Spider-Man! Super-size your super hero adventures with this incredible Titan Hero Series Ultimate Spider-Man figure! This 12-inch web-slinging dynamo is ready to open up a large-sized attack on the foes of justice everywhere. With him at your side, there's no telling where your adventures will take you! Ages 4 and up.", + "likes": 0, + "downloads": 991, + "filesize": 6458997, + "upload_date": "2020-09-03T18:18:09Z", + "modify_date": "2020-09-18T20:08:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SpiderMan_Titan_Hero_12Inch_Action_Figure_oo1qph4wwiW/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-03T18:17:43Z", + "updatedAt": "2024-04-03T10:05:12Z", + "name": "SpiderMan_Titan_Hero_12Inch_Action_Figure_5Hnn4mtkFsP", + "owner": "GoogleResearch", + "description": "Spider-Man Titan Hero 12-Inch Action Figure\nSpider-Man Titan Hero 12-Inch Action Figure Hasbro Spider-Man Action Figures One bite from a radioactive spider changed Peter Parker's life forever, giving him super-human powers and amazing wall-crawling ability. Wearing the mask that has made him a legend, he battles evil wherever a hero is needed as the one-and-only Spider-Man! Super-size your super hero adventures with this incredible Titan Hero Series Ultimate Spider-Man figure! This 12-inch web-slinging dynamo is ready to open up a large-sized attack on the foes of justice everywhere. With him at your side, there's no telling where your adventures will take you! Ages 4 and up.", + "likes": 0, + "downloads": 1064, + "filesize": 9064845, + "upload_date": "2020-09-03T18:17:40Z", + "modify_date": "2020-09-18T20:08:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SpiderMan_Titan_Hero_12Inch_Action_Figure_5Hnn4mtkFsP/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-03T18:17:31Z", + "updatedAt": "2024-04-03T07:11:14Z", + "name": "Sperry_TopSider_tNB9t6YBUf3", + "owner": "GoogleResearch", + "description": "Sperry Top-Sider", + "likes": 0, + "downloads": 1120, + "filesize": 7185204, + "upload_date": "2020-09-03T18:17:28Z", + "modify_date": "2020-09-18T20:08:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sperry_TopSider_tNB9t6YBUf3/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:17:25Z", + "updatedAt": "2024-04-03T08:40:36Z", + "name": "Sperry_TopSider_pSUFPWQXPp3", + "owner": "GoogleResearch", + "description": "Sperry Top-Sider", + "likes": 0, + "downloads": 1095, + "filesize": 7548152, + "upload_date": "2020-09-03T18:17:22Z", + "modify_date": "2020-09-18T20:08:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sperry_TopSider_pSUFPWQXPp3/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:16:51Z", + "updatedAt": "2024-04-03T08:40:32Z", + "name": "Spectrum_Wall_Mount", + "owner": "GoogleResearch", + "description": "Spectrum Wall Mount", + "likes": 0, + "downloads": 1050, + "filesize": 3326942, + "upload_date": "2020-09-03T18:16:49Z", + "modify_date": "2020-09-18T20:08:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Spectrum_Wall_Mount/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:16:46Z", + "updatedAt": "2024-04-03T09:14:21Z", + "name": "Sorry_Sliders_Board_Game", + "owner": "GoogleResearch", + "description": "Sorry Sliders Board Game", + "likes": 0, + "downloads": 1119, + "filesize": 15920706, + "upload_date": "2020-09-03T18:16:42Z", + "modify_date": "2020-09-18T20:08:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sorry_Sliders_Board_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T18:16:39Z", + "updatedAt": "2024-04-03T08:12:39Z", + "name": "Sony_Downloadable_Loops", + "owner": "GoogleResearch", + "description": "Sony Downloadable Loops", + "likes": 0, + "downloads": 1291, + "filesize": 12602094, + "upload_date": "2020-09-03T18:16:36Z", + "modify_date": "2020-09-18T20:08:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sony_Downloadable_Loops/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:16:33Z", + "updatedAt": "2024-04-03T08:40:26Z", + "name": "Sony_Acid_Music_Studio", + "owner": "GoogleResearch", + "description": "Sony Acid Music Studio", + "likes": 0, + "downloads": 1159, + "filesize": 10492060, + "upload_date": "2020-09-03T18:16:30Z", + "modify_date": "2020-09-18T20:08:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sony_Acid_Music_Studio/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:16:27Z", + "updatedAt": "2024-04-03T07:42:46Z", + "name": "Sonicare_2_Series_Toothbrush_Plaque_Control", + "owner": "GoogleResearch", + "description": "Sonicare 2 Series Toothbrush, Plaque Control", + "likes": 0, + "downloads": 904, + "filesize": 9555950, + "upload_date": "2020-09-03T18:16:24Z", + "modify_date": "2020-09-18T20:08:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sonicare_2_Series_Toothbrush_Plaque_Control/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T18:15:48Z", + "updatedAt": "2024-04-03T09:10:32Z", + "name": "Snack_Catcher_Snack_Dispenser", + "owner": "GoogleResearch", + "description": "Snack Catcher Snack Dispenser", + "likes": 0, + "downloads": 1022, + "filesize": 6244700, + "upload_date": "2020-09-03T18:15:46Z", + "modify_date": "2020-09-18T20:08:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Snack_Catcher_Snack_Dispenser/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:15:43Z", + "updatedAt": "2024-04-03T08:14:22Z", + "name": "Sleep_Optimizer", + "owner": "GoogleResearch", + "description": "Sleep Optimizer\nJarrow Formulas Sleep Optimizer combines herbs and amino acids that work together to facilitate falling asleep and maintaining a regular sleep cycle.* Gamma-aminobutyric acid (GABA), lemon balm, and L-tryptophan promote relaxation.* The combination of valerian and hops flower has been studied for its effect on reducing latency (the delay before entry into sleep).* Melatonin is a hormone secreted by the pineal gland that controls the biological clock and signals the entry into sleep.* Our biological clock can be disturbed by stress, crossing time zones, and changing work shifts. *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.", + "likes": 0, + "downloads": 1291, + "filesize": 13980919, + "upload_date": "2020-09-03T18:15:40Z", + "modify_date": "2020-09-18T20:08:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sleep_Optimizer/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:15:20Z", + "updatedAt": "2024-04-03T09:46:06Z", + "name": "Simon_Swipe_Game", + "owner": "GoogleResearch", + "description": "Simon Swipe Game", + "likes": 0, + "downloads": 922, + "filesize": 4503742, + "upload_date": "2020-09-03T18:15:18Z", + "modify_date": "2020-09-18T20:08:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Simon_Swipe_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T18:14:58Z", + "updatedAt": "2024-04-03T09:10:23Z", + "name": "Sienna_Brown_Croc_Tieks_Patent_Leather_Crocodile_Print_Ballet_Flats", + "owner": "GoogleResearch", + "description": "Sienna Brown Croc Tieks - Patent Leather Crocodile Print Ballet Flats\nFor some fancy footwork this season, add striking style to your favorite looks with these patent, crocodile print ballet flats. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 1017, + "filesize": 5639495, + "upload_date": "2020-09-03T18:14:55Z", + "modify_date": "2020-09-18T20:08:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Sienna_Brown_Croc_Tieks_Patent_Leather_Crocodile_Print_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:14:25Z", + "updatedAt": "2024-04-03T10:05:03Z", + "name": "Seagate_Archive_HDD_8_TB_Internal_hard_drive_SATA_6Gbs_35_ST8000AS0002", + "owner": "GoogleResearch", + "description": "Seagate Archive HDD 8 TB Internal hard drive SATA 6Gb/s 3.5\" ST8000AS0002", + "likes": 0, + "downloads": 993, + "filesize": 8435908, + "upload_date": "2020-09-03T18:14:22Z", + "modify_date": "2020-09-18T20:08:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Seagate_Archive_HDD_8_TB_Internal_hard_drive_SATA_6Gbs_35_ST8000AS0002/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T18:14:20Z", + "updatedAt": "2024-04-03T09:45:59Z", + "name": "Seagate_3TB_Central_shared_storage", + "owner": "GoogleResearch", + "description": "Seagate 3TB Central shared storage\nConnect Seagate? Central to your Wi-Fi router to organize and back up all your content on one device that you can access from anywhere.", + "likes": 0, + "downloads": 1087, + "filesize": 12404728, + "upload_date": "2020-09-03T18:14:16Z", + "modify_date": "2020-09-18T20:08:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Seagate_3TB_Central_shared_storage/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T18:14:14Z", + "updatedAt": "2024-04-03T08:40:17Z", + "name": "Seagate_1TB_Wireless_Plus_mobile_device_storage", + "owner": "GoogleResearch", + "description": "Seagate 1TB Wireless Plus mobile device storage\nEnjoy your content anywhere?without wires or web.", + "likes": 0, + "downloads": 1115, + "filesize": 9098051, + "upload_date": "2020-09-03T18:14:10Z", + "modify_date": "2020-09-18T20:08:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Seagate_1TB_Wireless_Plus_mobile_device_storage/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T18:14:08Z", + "updatedAt": "2024-04-03T08:39:23Z", + "name": "Seagate_1TB_Backup_Plus_portable_drive_for_Mac", + "owner": "GoogleResearch", + "description": "Seagate 1TB Backup Plus portable drive for Mac\nThe Backup Plus portable drive for Mac from Seagate is the simple way to protect and share your entire digital life?without getting in the way of the rest of your life.", + "likes": 1, + "downloads": 1072, + "filesize": 4561057, + "upload_date": "2020-09-03T18:14:05Z", + "modify_date": "2020-09-18T20:08:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Seagate_1TB_Backup_Plus_portable_drive_for_Mac/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T18:14:03Z", + "updatedAt": "2024-04-03T09:45:51Z", + "name": "Seagate_1TB_Backup_Plus_portable_drive_Silver", + "owner": "GoogleResearch", + "description": "Seagate 1TB Backup Plus portable drive - Silver\nThe Backup Plus portable drive from Seagate is the simple, one-click way to protect and share your entire digital life?without getting in the way of the rest of your life.", + "likes": 0, + "downloads": 932, + "filesize": 5037974, + "upload_date": "2020-09-03T18:14:00Z", + "modify_date": "2020-09-18T20:08:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Seagate_1TB_Backup_Plus_portable_drive_Silver/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T18:13:58Z", + "updatedAt": "2024-04-03T09:45:44Z", + "name": "Seagate_1TB_Backup_Plus_portable_drive_Blue", + "owner": "GoogleResearch", + "description": "Seagate 1TB Backup Plus portable drive - Blue\nThe Backup Plus portable drive from Seagate is the simple, one-click way to protect and share your entire digital life?without getting in the way of the rest of your life.", + "likes": 0, + "downloads": 923, + "filesize": 7415179, + "upload_date": "2020-09-03T18:13:55Z", + "modify_date": "2020-09-18T20:08:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Seagate_1TB_Backup_Plus_portable_drive_Blue/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T18:13:53Z", + "updatedAt": "2024-04-03T10:04:57Z", + "name": "Santa_Cruz_Mens_vnbiTDDt5xH", + "owner": "GoogleResearch", + "description": "Santa Cruz Mens", + "likes": 0, + "downloads": 947, + "filesize": 5417925, + "upload_date": "2020-09-03T18:13:50Z", + "modify_date": "2020-09-18T20:08:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Santa_Cruz_Mens_vnbiTDDt5xH/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:13:47Z", + "updatedAt": "2024-04-03T10:04:50Z", + "name": "Santa_Cruz_Mens_umxTczr1Ygg", + "owner": "GoogleResearch", + "description": "Santa Cruz Mens", + "likes": 0, + "downloads": 1001, + "filesize": 9996505, + "upload_date": "2020-09-03T18:13:43Z", + "modify_date": "2020-09-18T20:08:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Santa_Cruz_Mens_umxTczr1Ygg/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:13:19Z", + "updatedAt": "2024-04-03T09:10:14Z", + "name": "Santa_Cruz_Mens_YmsMDkFf11Z", + "owner": "GoogleResearch", + "description": "Santa Cruz Mens", + "likes": 0, + "downloads": 1023, + "filesize": 9054178, + "upload_date": "2020-09-03T18:13:16Z", + "modify_date": "2020-09-18T20:08:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Santa_Cruz_Mens_YmsMDkFf11Z/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:12:36Z", + "updatedAt": "2024-04-03T08:39:12Z", + "name": "Santa_Cruz_Mens_G7kQXK7cIky", + "owner": "GoogleResearch", + "description": "Santa Cruz Mens", + "likes": 0, + "downloads": 1090, + "filesize": 8486225, + "upload_date": "2020-09-03T18:12:33Z", + "modify_date": "2020-09-18T20:08:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Santa_Cruz_Mens_G7kQXK7cIky/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:12:19Z", + "updatedAt": "2024-04-03T10:04:43Z", + "name": "Santa_Cruz_Mens", + "owner": "GoogleResearch", + "description": "Santa Cruz Mens", + "likes": 0, + "downloads": 932, + "filesize": 7062554, + "upload_date": "2020-09-03T18:12:16Z", + "modify_date": "2020-09-18T20:08:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Santa_Cruz_Mens/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:12:14Z", + "updatedAt": "2024-04-03T09:45:34Z", + "name": "Samsung_CLTC406S_Toner_Cartridge_Cyan_1pack", + "owner": "GoogleResearch", + "description": "Samsung CLT-C406S Toner Cartridge, Cyan - 1-pack", + "likes": 0, + "downloads": 1065, + "filesize": 15029561, + "upload_date": "2020-09-03T18:12:10Z", + "modify_date": "2020-09-18T20:08:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Samsung_CLTC406S_Toner_Cartridge_Cyan_1pack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:12:07Z", + "updatedAt": "2024-04-03T10:04:36Z", + "name": "Samoa_onepiece", + "owner": "GoogleResearch", + "description": "Samoa (one-piece)", + "likes": 0, + "downloads": 1032, + "filesize": 4577170, + "upload_date": "2020-09-03T18:12:05Z", + "modify_date": "2020-09-18T20:08:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Samoa_onepiece/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:11:34Z", + "updatedAt": "2024-04-03T10:04:29Z", + "name": "Saccharomyces_Boulardii_MOS_Value_Size", + "owner": "GoogleResearch", + "description": "Saccharomyces Boulardii + MOS Value Size", + "likes": 0, + "downloads": 949, + "filesize": 6112287, + "upload_date": "2020-09-03T18:11:32Z", + "modify_date": "2020-09-18T20:08:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Saccharomyces_Boulardii_MOS_Value_Size/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:11:29Z", + "updatedAt": "2024-04-03T07:42:41Z", + "name": "SUPERSTAR_CLR", + "owner": "GoogleResearch", + "description": "SUPERSTAR CLR", + "likes": 0, + "downloads": 914, + "filesize": 6137798, + "upload_date": "2020-09-03T18:11:26Z", + "modify_date": "2020-09-18T20:08:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SUPERSTAR_CLR/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:11:23Z", + "updatedAt": "2024-04-03T19:02:31Z", + "name": "SPEED_BOAT", + "owner": "GoogleResearch", + "description": "SPEED BOAT\nImagine racing across the sea at super speeds! This delightful set stimulates interactive and imaginative play.", + "likes": 0, + "downloads": 1030, + "filesize": 9710213, + "upload_date": "2020-09-03T18:11:20Z", + "modify_date": "2020-09-18T20:08:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SPEED_BOAT/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:11:17Z", + "updatedAt": "2024-04-03T19:02:27Z", + "name": "SNAIL_MEASURING_TAPE", + "owner": "GoogleResearch", + "description": "SNAIL MEASURING TAPE\nQuickly learn spatial recognition and exploration through measurement with this not so fast critter.", + "likes": 0, + "downloads": 938, + "filesize": 8411811, + "upload_date": "2020-09-03T18:11:14Z", + "modify_date": "2020-09-18T20:08:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SNAIL_MEASURING_TAPE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:11:12Z", + "updatedAt": "2024-04-03T09:09:58Z", + "name": "SLACK_CRUISER", + "owner": "GoogleResearch", + "description": "SLACK CRUISER\nFW-SHOES", + "likes": 0, + "downloads": 1033, + "filesize": 6105569, + "upload_date": "2020-09-03T18:11:09Z", + "modify_date": "2020-09-18T20:08:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SLACK_CRUISER/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:11:07Z", + "updatedAt": "2024-04-03T08:39:06Z", + "name": "SIT_N_WALK_PUPPY", + "owner": "GoogleResearch", + "description": "SIT N WALK PUPPY\nPull the Sit N Walk Puppy along and it will walk and sit just like a real puppy!", + "likes": 0, + "downloads": 1049, + "filesize": 8185053, + "upload_date": "2020-09-03T18:11:03Z", + "modify_date": "2020-09-18T20:08:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SIT_N_WALK_PUPPY/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:11:01Z", + "updatedAt": "2024-04-04T05:33:40Z", + "name": "SCHOOL_BUS", + "owner": "GoogleResearch", + "description": "SCHOOL BUS", + "likes": 0, + "downloads": 1248, + "filesize": 8417945, + "upload_date": "2020-09-03T18:10:58Z", + "modify_date": "2020-09-18T20:08:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SCHOOL_BUS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:10:55Z", + "updatedAt": "2024-04-03T08:14:14Z", + "name": "SAMe_200_KX7ZmOw47co", + "owner": "GoogleResearch", + "description": "SAM-e 200\nJarrow Formulas SAM-e 200 provides a full 200 mg SAM-e (net yield) from 400 mg of SAM-e tosylate disulfate. SAM-e 200 is manufactured under low temperature and low humidity and is enteric-coated to ensure a biologically active product. Found in all living cells, SAM-e is a metabolite of methionine (an essential amino acid). SAM-e is a chiral molecule and consists of two forms: (S,S) SAM-e and (R,S) SAM-e. The biologically active form is the (S,S) structure, while the (R,S) structure is biologically inactive. Jarrow Formulas SAM-e is made naturally by microbiological fermentation and then specially processed without solvents to preserve 68-80% (S,S) SAM-e, the highest active level available. SAM-e supports the production of healthy connective tissue through transulfuration. In this process, critical components of connective tissue, including glucosamine and the chondroitin sulfates, are sulfated by SAM-e metabolites.* SAM-e methylation reactions are involved in the synthesis of neurotransmitters such as L-DOPA, dopamine and related hormones, serotonin, epinephrine and phosphatidylcholine (a component of lecithin).* SAM-e metabolism supports the synthesis of glutathione (GSH) and glutathione-dependent enzymes (glutathione peroxidase and glutathione-S-transferase), which are substances important for liver function, including phase II detoxification.* Jarrow Formulas SAM-e 200 is foil blister-packed to maximize stability and safety. DO NOT use if outer seal of blister pack is broken. Full Potency 200 mg SAM-e is derived from 400 mg of SAM-e tosylate disulfate. *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.", + "likes": 0, + "downloads": 1161, + "filesize": 12508723, + "upload_date": "2020-09-03T18:10:52Z", + "modify_date": "2020-09-18T20:08:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SAMe_200_KX7ZmOw47co/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:10:49Z", + "updatedAt": "2024-04-03T09:14:02Z", + "name": "SAMe_200", + "owner": "GoogleResearch", + "description": "SAM-e 200\nJarrow Formulas SAM-e 200 provides a full 200 mg SAM-e (net yield) from 400 mg of SAM-e tosylate disulfate. SAM-e 200 is manufactured under low temperature and low humidity and is enteric-coated to ensure a biologically active product. Found in all living cells, SAM-e is a metabolite of methionine (an essential amino acid). SAM-e is a chiral molecule and consists of two forms: (S,S) SAM-e and (R,S) SAM-e. The biologically active form is the (S,S) structure, while the (R,S) structure is biologically inactive. Jarrow Formulas SAM-e is made naturally by microbiological fermentation and then specially processed without solvents to preserve 68-80% (S,S) SAM-e, the highest active level available. SAM-e supports the production of healthy connective tissue through transulfuration. In this process, critical components of connective tissue, including glucosamine and the chondroitin sulfates, are sulfated by SAM-e metabolites.* SAM-e methylation reactions are involved in the synthesis of neurotransmitters such as L-DOPA, dopamine and related hormones, serotonin, epinephrine and phosphatidylcholine (a component of lecithin).* SAM-e metabolism supports the synthesis of glutathione (GSH) and glutathione-dependent enzymes (glutathione peroxidase and glutathione-S-transferase), which are substances important for liver function, including phase II detoxification.* Jarrow Formulas SAM-e 200 is foil blister-packed to maximize stability and safety. DO NOT use if outer seal of blister pack is broken. Full Potency 200 mg SAM-e is derived from 400 mg of SAM-e tosylate disulfate. *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.", + "likes": 0, + "downloads": 1150, + "filesize": 14145728, + "upload_date": "2020-09-03T18:10:45Z", + "modify_date": "2020-09-18T20:08:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SAMe_200/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:10:43Z", + "updatedAt": "2024-04-03T08:12:34Z", + "name": "SAMOA", + "owner": "GoogleResearch", + "description": "SAMOA", + "likes": 0, + "downloads": 1121, + "filesize": 5977965, + "upload_date": "2020-09-03T18:10:40Z", + "modify_date": "2020-09-18T20:08:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SAMOA/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:10:38Z", + "updatedAt": "2024-04-03T09:09:44Z", + "name": "SAMBA_HEMP", + "owner": "GoogleResearch", + "description": "SAMBA HEMP", + "likes": 0, + "downloads": 1081, + "filesize": 6464017, + "upload_date": "2020-09-03T18:10:35Z", + "modify_date": "2020-09-18T20:08:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/SAMBA_HEMP/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:09:49Z", + "updatedAt": "2024-04-03T09:09:13Z", + "name": "Rose_Garden_Tieks_Leather_Ballet_Flats_with_Floral_Rosettes", + "owner": "GoogleResearch", + "description": "Rose Garden Tieks - Leather Ballet Flats with Floral Rosettes\nFall in love all over again with these charming, hand-stitched ballet flats. The delicate blend of fuchsia, white, pink and green, twisted into tiny fabric roses, is a true work of art. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 1040, + "filesize": 6195883, + "upload_date": "2020-09-03T18:09:46Z", + "modify_date": "2020-09-18T20:08:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Rose_Garden_Tieks_Leather_Ballet_Flats_with_Floral_Rosettes/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:09:43Z", + "updatedAt": "2024-04-03T08:38:58Z", + "name": "Romantic_Blush_Tieks_Metallic_Italian_Leather_Ballet_Flats", + "owner": "GoogleResearch", + "description": "Romantic Blush Tieks - Metallic Italian Leather Ballet Flats\nRomantic Blush Tieks are sure to make any girl blush! The lovely combination of sparkling silver and pale pink fashions one of our most feminine and beautiful ballet flats. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 1147, + "filesize": 6386405, + "upload_date": "2020-09-03T18:09:41Z", + "modify_date": "2020-09-18T20:08:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Romantic_Blush_Tieks_Metallic_Italian_Leather_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:09:38Z", + "updatedAt": "2024-04-03T07:42:37Z", + "name": "Remington_TStudio_Silk_Ceramic_Hair_Straightener_2_Inch_Floating_Plates", + "owner": "GoogleResearch", + "description": "Remington TStudio Silk Ceramic Hair Straightener 2 Inch Floating Plates\nCombining advanced technology, high-performance ceramic coating, and real crushed pearls, the remington t/studio silk ceramic 1-inch slim straightener delivers professional, salon-quality results with each use. It quickly reaches a top heat of 450 degrees fahrenheit and has precise digital controls with temperature lock so you can enjoy smooth, silky hair in just minutes.", + "likes": 0, + "downloads": 899, + "filesize": 4523498, + "upload_date": "2020-09-03T18:09:36Z", + "modify_date": "2020-09-18T20:08:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Remington_TStudio_Silk_Ceramic_Hair_Straightener_2_Inch_Floating_Plates/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:08:58Z", + "updatedAt": "2024-04-03T09:09:08Z", + "name": "Remington_1_12_inch_Hair_Straightener", + "owner": "GoogleResearch", + "description": "Remington 1 1/2 inch Hair Straightener", + "likes": 0, + "downloads": 1024, + "filesize": 5657007, + "upload_date": "2020-09-03T18:08:56Z", + "modify_date": "2020-09-18T20:08:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Remington_1_12_inch_Hair_Straightener/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T18:08:53Z", + "updatedAt": "2024-04-03T09:08:59Z", + "name": "Reebok_ZIGTECH_SHARK_MAYHEM360", + "owner": "GoogleResearch", + "description": "Reebok ZIGTECH SHARK MAYHEM360", + "likes": 0, + "downloads": 1072, + "filesize": 8261925, + "upload_date": "2020-09-03T18:08:50Z", + "modify_date": "2020-09-18T20:08:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_ZIGTECH_SHARK_MAYHEM360/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:08:48Z", + "updatedAt": "2024-04-03T09:08:53Z", + "name": "Reebok_ZIGSTORM", + "owner": "GoogleResearch", + "description": "Reebok ZIGSTORM", + "likes": 0, + "downloads": 1099, + "filesize": 4237530, + "upload_date": "2020-09-03T18:08:45Z", + "modify_date": "2020-09-18T20:08:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_ZIGSTORM/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:08:43Z", + "updatedAt": "2024-04-03T09:41:52Z", + "name": "Reebok_ZIGLITE_RUSH_AC", + "owner": "GoogleResearch", + "description": "Reebok ZIGLITE RUSH AC", + "likes": 0, + "downloads": 980, + "filesize": 7142799, + "upload_date": "2020-09-03T18:08:40Z", + "modify_date": "2020-09-18T20:08:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_ZIGLITE_RUSH_AC/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:08:37Z", + "updatedAt": "2024-04-03T08:38:50Z", + "name": "Reebok_ZIGLITE_RUSH", + "owner": "GoogleResearch", + "description": "Reebok ZIGLITE RUSH", + "likes": 0, + "downloads": 1117, + "filesize": 6404060, + "upload_date": "2020-09-03T18:08:35Z", + "modify_date": "2020-09-18T20:08:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_ZIGLITE_RUSH/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:08:32Z", + "updatedAt": "2024-04-03T09:08:47Z", + "name": "Reebok_ZIGCOOPERSTOWN_QUAG", + "owner": "GoogleResearch", + "description": "Reebok ZIGCOOPERSTOWN QUAG", + "likes": 0, + "downloads": 1027, + "filesize": 4759059, + "upload_date": "2020-09-03T18:08:29Z", + "modify_date": "2020-09-18T20:08:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_ZIGCOOPERSTOWN_QUAG/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:08:27Z", + "updatedAt": "2024-04-03T08:38:34Z", + "name": "Reebok_VERSA_TRAIN", + "owner": "GoogleResearch", + "description": "Reebok VERSA TRAIN", + "likes": 0, + "downloads": 1114, + "filesize": 5695812, + "upload_date": "2020-09-03T18:08:24Z", + "modify_date": "2020-09-18T20:08:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_VERSA_TRAIN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:07:38Z", + "updatedAt": "2024-04-03T09:08:39Z", + "name": "Reebok_ULTIMATIC_2V", + "owner": "GoogleResearch", + "description": "Reebok ULTIMATIC 2V", + "likes": 0, + "downloads": 1035, + "filesize": 7812264, + "upload_date": "2020-09-03T18:07:35Z", + "modify_date": "2020-09-18T20:08:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_ULTIMATIC_2V/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:07:32Z", + "updatedAt": "2024-04-03T07:42:33Z", + "name": "Reebok_TURBO_RC", + "owner": "GoogleResearch", + "description": "Reebok TURBO RC", + "likes": 0, + "downloads": 946, + "filesize": 5948700, + "upload_date": "2020-09-03T18:07:30Z", + "modify_date": "2020-09-18T20:08:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_TURBO_RC/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:07:26Z", + "updatedAt": "2024-04-03T09:08:00Z", + "name": "Reebok_TRIPLE_BREAK_LITE", + "owner": "GoogleResearch", + "description": "Reebok TRIPLE BREAK LITE", + "likes": 0, + "downloads": 1038, + "filesize": 5000422, + "upload_date": "2020-09-03T18:07:24Z", + "modify_date": "2020-09-18T20:08:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_TRIPLE_BREAK_LITE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:07:21Z", + "updatedAt": "2024-04-03T09:41:47Z", + "name": "Reebok_STUDIO_BEAT_LOW_V", + "owner": "GoogleResearch", + "description": "Reebok STUDIO BEAT LOW V", + "likes": 0, + "downloads": 937, + "filesize": 4360754, + "upload_date": "2020-09-03T18:07:18Z", + "modify_date": "2020-09-18T20:08:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_STUDIO_BEAT_LOW_V/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:07:16Z", + "updatedAt": "2024-04-03T10:14:54Z", + "name": "Reebok_SOMERSET_RUN", + "owner": "GoogleResearch", + "description": "Reebok SOMERSET RUN", + "likes": 0, + "downloads": 931, + "filesize": 6717271, + "upload_date": "2020-09-03T18:07:13Z", + "modify_date": "2020-09-18T20:08:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_SOMERSET_RUN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:06:27Z", + "updatedAt": "2024-04-03T08:12:27Z", + "name": "Reebok_SMOOTHFLEX_CUSHRUN_20", + "owner": "GoogleResearch", + "description": "Reebok SMOOTHFLEX CUSHRUN 2.0", + "likes": 0, + "downloads": 1107, + "filesize": 9267296, + "upload_date": "2020-09-03T18:06:24Z", + "modify_date": "2020-09-18T20:08:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_SMOOTHFLEX_CUSHRUN_20/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:06:21Z", + "updatedAt": "2024-04-03T09:07:53Z", + "name": "Reebok_SL_FLIP_UPDATE", + "owner": "GoogleResearch", + "description": "Reebok SL FLIP UPDATE", + "likes": 0, + "downloads": 1037, + "filesize": 5564117, + "upload_date": "2020-09-03T18:06:18Z", + "modify_date": "2020-09-18T20:08:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_SL_FLIP_UPDATE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:06:08Z", + "updatedAt": "2024-04-03T08:12:20Z", + "name": "Reebok_SH_PRIME_COURT_MID", + "owner": "GoogleResearch", + "description": "Reebok SH PRIME COURT MID", + "likes": 0, + "downloads": 1099, + "filesize": 6600106, + "upload_date": "2020-09-03T18:06:05Z", + "modify_date": "2020-09-18T20:08:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_SH_PRIME_COURT_MID/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:06:02Z", + "updatedAt": "2024-04-03T09:41:40Z", + "name": "Reebok_SH_PRIME_COURT_LOW", + "owner": "GoogleResearch", + "description": "Reebok SH PRIME COURT LOW", + "likes": 0, + "downloads": 944, + "filesize": 6753985, + "upload_date": "2020-09-03T18:05:59Z", + "modify_date": "2020-09-18T20:08:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_SH_PRIME_COURT_LOW/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:05:57Z", + "updatedAt": "2024-04-03T08:38:29Z", + "name": "Reebok_SH_NEWPORT_LOW", + "owner": "GoogleResearch", + "description": "Reebok SH NEWPORT LOW", + "likes": 0, + "downloads": 1091, + "filesize": 5009095, + "upload_date": "2020-09-03T18:05:54Z", + "modify_date": "2020-09-18T20:08:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_SH_NEWPORT_LOW/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:05:52Z", + "updatedAt": "2024-04-03T09:41:33Z", + "name": "Reebok_SH_COURT_MID_II", + "owner": "GoogleResearch", + "description": "Reebok SH COURT MID II", + "likes": 0, + "downloads": 942, + "filesize": 5500951, + "upload_date": "2020-09-03T18:05:37Z", + "modify_date": "2020-09-18T20:08:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_SH_COURT_MID_II/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:05:15Z", + "updatedAt": "2024-04-03T09:41:27Z", + "name": "Reebok_R_DANCE_FLASH", + "owner": "GoogleResearch", + "description": "Reebok R DANCE FLASH", + "likes": 0, + "downloads": 944, + "filesize": 4616844, + "upload_date": "2020-09-03T18:05:12Z", + "modify_date": "2020-09-18T20:08:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_R_DANCE_FLASH/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:04:37Z", + "updatedAt": "2024-04-03T10:14:47Z", + "name": "Reebok_R_CROSSFIT_OLY_UFORM", + "owner": "GoogleResearch", + "description": "Reebok R CROSSFIT OLY U-FORM", + "likes": 0, + "downloads": 915, + "filesize": 6823069, + "upload_date": "2020-09-03T18:04:34Z", + "modify_date": "2020-09-18T20:08:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_R_CROSSFIT_OLY_UFORM/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:04:32Z", + "updatedAt": "2024-04-03T08:38:21Z", + "name": "Reebok_RETRO_RUSH_2V", + "owner": "GoogleResearch", + "description": "Reebok RETRO RUSH 2V", + "likes": 0, + "downloads": 1093, + "filesize": 8108645, + "upload_date": "2020-09-03T18:04:29Z", + "modify_date": "2020-09-18T20:08:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_RETRO_RUSH_2V/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:04:27Z", + "updatedAt": "2024-04-03T08:38:14Z", + "name": "Reebok_REESCULPT_TRAINER_II", + "owner": "GoogleResearch", + "description": "Reebok REESCULPT TRAINER II", + "likes": 0, + "downloads": 1089, + "filesize": 5158848, + "upload_date": "2020-09-03T18:04:24Z", + "modify_date": "2020-09-18T20:08:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_REESCULPT_TRAINER_II/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:04:22Z", + "updatedAt": "2024-04-03T10:14:40Z", + "name": "Reebok_REALFLEX_SELECT", + "owner": "GoogleResearch", + "description": "Reebok REALFLEX SELECT", + "likes": 0, + "downloads": 918, + "filesize": 8160923, + "upload_date": "2020-09-03T18:04:19Z", + "modify_date": "2020-09-18T20:08:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_REALFLEX_SELECT/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:03:42Z", + "updatedAt": "2024-04-03T10:14:32Z", + "name": "Reebok_PUMP_OMNI_LITE_HLS", + "owner": "GoogleResearch", + "description": "Reebok PUMP OMNI LITE HLS", + "likes": 0, + "downloads": 911, + "filesize": 8846535, + "upload_date": "2020-09-03T18:03:39Z", + "modify_date": "2020-09-18T20:08:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_PUMP_OMNI_LITE_HLS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:03:04Z", + "updatedAt": "2024-04-03T08:12:14Z", + "name": "Reebok_KAMIKAZE_II_MID", + "owner": "GoogleResearch", + "description": "Reebok KAMIKAZE II MID", + "likes": 0, + "downloads": 1213, + "filesize": 6289570, + "upload_date": "2020-09-03T18:03:01Z", + "modify_date": "2020-09-18T20:08:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_KAMIKAZE_II_MID/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:02:59Z", + "updatedAt": "2024-04-03T08:12:09Z", + "name": "Reebok_JR_ZIG_COOPERSTOWN_MR", + "owner": "GoogleResearch", + "description": "Reebok JR ZIG COOPERSTOWN MR", + "likes": 0, + "downloads": 1092, + "filesize": 7313318, + "upload_date": "2020-09-03T18:02:56Z", + "modify_date": "2020-09-18T20:08:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_JR_ZIG_COOPERSTOWN_MR/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:02:53Z", + "updatedAt": "2024-04-03T09:45:22Z", + "name": "Reebok_HIMARA_LTR", + "owner": "GoogleResearch", + "description": "Reebok HIMARA LTR", + "likes": 0, + "downloads": 976, + "filesize": 7991997, + "upload_date": "2020-09-03T18:02:50Z", + "modify_date": "2020-09-18T20:08:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_HIMARA_LTR/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:02:47Z", + "updatedAt": "2024-04-03T08:12:01Z", + "name": "Reebok_GL_6000", + "owner": "GoogleResearch", + "description": "Reebok GL 6000", + "likes": 0, + "downloads": 1126, + "filesize": 4758511, + "upload_date": "2020-09-03T18:02:44Z", + "modify_date": "2020-09-18T20:08:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_GL_6000/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:02:42Z", + "updatedAt": "2024-04-03T08:38:06Z", + "name": "Reebok_FUELTRAIN", + "owner": "GoogleResearch", + "description": "Reebok FUELTRAIN", + "likes": 0, + "downloads": 1095, + "filesize": 6480426, + "upload_date": "2020-09-03T18:02:39Z", + "modify_date": "2020-09-18T20:08:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_FUELTRAIN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:02:37Z", + "updatedAt": "2024-04-03T09:07:46Z", + "name": "Reebok_FS_HI_MINI", + "owner": "GoogleResearch", + "description": "Reebok F/S HI MINI", + "likes": 0, + "downloads": 1036, + "filesize": 5045066, + "upload_date": "2020-09-03T18:02:34Z", + "modify_date": "2020-09-18T20:08:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_FS_HI_MINI/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:02:31Z", + "updatedAt": "2024-04-03T09:07:37Z", + "name": "Reebok_FS_HI_INT_R12", + "owner": "GoogleResearch", + "description": "Reebok F/S HI INT R12", + "likes": 0, + "downloads": 1034, + "filesize": 7141612, + "upload_date": "2020-09-03T18:02:28Z", + "modify_date": "2020-09-18T20:08:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_FS_HI_INT_R12/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:02:26Z", + "updatedAt": "2024-04-03T10:04:22Z", + "name": "Reebok_EASYTONE_CL_LEATHER", + "owner": "GoogleResearch", + "description": "Reebok EASYTONE CL LEATHER", + "likes": 0, + "downloads": 925, + "filesize": 5244725, + "upload_date": "2020-09-03T18:02:23Z", + "modify_date": "2020-09-18T20:08:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_EASYTONE_CL_LEATHER/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:02:21Z", + "updatedAt": "2024-04-03T08:11:56Z", + "name": "Reebok_DMX_MAX_PLUS_RAINWALKER", + "owner": "GoogleResearch", + "description": "Reebok DMX MAX PLUS RAINWALKER", + "likes": 0, + "downloads": 1095, + "filesize": 4209723, + "upload_date": "2020-09-03T18:02:18Z", + "modify_date": "2020-09-18T20:08:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_DMX_MAX_PLUS_RAINWALKER/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:02:16Z", + "updatedAt": "2024-04-03T09:41:20Z", + "name": "Reebok_DMX_MAX_PLUS_ATHLETIC", + "owner": "GoogleResearch", + "description": "Reebok DMX MAX PLUS ATHLETIC", + "likes": 0, + "downloads": 975, + "filesize": 5753819, + "upload_date": "2020-09-03T18:02:13Z", + "modify_date": "2020-09-18T20:08:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_DMX_MAX_PLUS_ATHLETIC/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:02:10Z", + "updatedAt": "2024-04-03T08:11:48Z", + "name": "Reebok_DMX_MAX_MANIA_WD_D", + "owner": "GoogleResearch", + "description": "Reebok DMX MAX MANIA WD D", + "likes": 0, + "downloads": 1102, + "filesize": 6987655, + "upload_date": "2020-09-03T18:02:07Z", + "modify_date": "2020-09-18T20:08:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_DMX_MAX_MANIA_WD_D/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:02:05Z", + "updatedAt": "2024-04-03T08:37:59Z", + "name": "Reebok_COMFORT_REEFRESH_FLIP", + "owner": "GoogleResearch", + "description": "Reebok COMFORT REEFRESH FLIP", + "likes": 0, + "downloads": 1112, + "filesize": 5856352, + "upload_date": "2020-09-03T18:02:02Z", + "modify_date": "2020-09-18T20:08:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_COMFORT_REEFRESH_FLIP/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:02:00Z", + "updatedAt": "2024-04-03T08:11:42Z", + "name": "Reebok_CL_RAYEN", + "owner": "GoogleResearch", + "description": "Reebok CL RAYEN", + "likes": 0, + "downloads": 1122, + "filesize": 5862917, + "upload_date": "2020-09-03T18:01:57Z", + "modify_date": "2020-09-18T20:08:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_CL_RAYEN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:01:55Z", + "updatedAt": "2024-04-03T08:37:54Z", + "name": "Reebok_CL_LTHR_R12", + "owner": "GoogleResearch", + "description": "Reebok CL LTHR R12", + "likes": 0, + "downloads": 1094, + "filesize": 5520226, + "upload_date": "2020-09-03T18:01:52Z", + "modify_date": "2020-09-18T20:08:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_CL_LTHR_R12/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:01:49Z", + "updatedAt": "2024-04-03T09:45:15Z", + "name": "Reebok_CL_DIBELLO_II", + "owner": "GoogleResearch", + "description": "Reebok CL DIBELLO II", + "likes": 0, + "downloads": 993, + "filesize": 5476235, + "upload_date": "2020-09-03T18:01:47Z", + "modify_date": "2020-09-18T20:08:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_CL_DIBELLO_II/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:01:44Z", + "updatedAt": "2024-04-03T10:04:14Z", + "name": "Reebok_CLASSIC_LEGACY_II", + "owner": "GoogleResearch", + "description": "Reebok CLASSIC LEGACY II", + "likes": 0, + "downloads": 931, + "filesize": 6912916, + "upload_date": "2020-09-03T18:01:41Z", + "modify_date": "2020-09-18T20:08:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_CLASSIC_LEGACY_II/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:01:39Z", + "updatedAt": "2024-04-03T08:11:36Z", + "name": "Reebok_CLASSIC_JOGGER", + "owner": "GoogleResearch", + "description": "Reebok CLASSIC JOGGER", + "likes": 0, + "downloads": 1098, + "filesize": 6294638, + "upload_date": "2020-09-03T18:01:36Z", + "modify_date": "2020-09-18T20:08:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_CLASSIC_JOGGER/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:01:34Z", + "updatedAt": "2024-04-03T08:11:30Z", + "name": "Reebok_BREAKPOINT_MID", + "owner": "GoogleResearch", + "description": "Reebok BREAKPOINT MID", + "likes": 0, + "downloads": 1130, + "filesize": 6436087, + "upload_date": "2020-09-03T18:01:31Z", + "modify_date": "2020-09-18T20:08:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_BREAKPOINT_MID/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:01:28Z", + "updatedAt": "2024-04-03T08:37:47Z", + "name": "Reebok_BREAKPOINT_LO_2V", + "owner": "GoogleResearch", + "description": "Reebok BREAKPOINT LO 2V", + "likes": 0, + "downloads": 1104, + "filesize": 6516396, + "upload_date": "2020-09-03T18:01:25Z", + "modify_date": "2020-09-18T20:08:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_BREAKPOINT_LO_2V/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:01:22Z", + "updatedAt": "2024-04-03T10:04:08Z", + "name": "Reebok_ALLYLYNN", + "owner": "GoogleResearch", + "description": "Reebok ALLYLYNN", + "likes": 0, + "downloads": 928, + "filesize": 8270363, + "upload_date": "2020-09-03T18:01:19Z", + "modify_date": "2020-09-18T20:08:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Reebok_ALLYLYNN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:01:16Z", + "updatedAt": "2024-04-03T09:41:07Z", + "name": "RedBlack_Nintendo_3DSXL", + "owner": "GoogleResearch", + "description": "Red/Black Nintendo 3DS?XL\nThe Nintendo 3DS XL system combines next-generation portable gaming with eye-popping 3D\nvisuals?without the need for special glasses. Take 3D photos, connect to friends, other players, or wireless hotspots with the wireless StreetPass? and SpotPass? communication modes. From games to photos and beyond, Nintendo 3DS XL is the ultimate 3D entertainment system. It comes bundled with a 4GB SD card, making it perfect for downloading content from the Nintendo eShop.\n\nThe Nintendo 3DS XL system plays all Nintendo DS games. Nintendo DS games will not appear in 3D.", + "likes": 0, + "downloads": 964, + "filesize": 5147142, + "upload_date": "2020-09-03T18:01:13Z", + "modify_date": "2020-09-18T20:08:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/RedBlack_Nintendo_3DSXL/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T18:01:11Z", + "updatedAt": "2024-04-03T08:11:23Z", + "name": "Real_Deal_1nIwCHX1MTh", + "owner": "GoogleResearch", + "description": "Real Deal", + "likes": 0, + "downloads": 1125, + "filesize": 6862388, + "upload_date": "2020-09-03T18:01:08Z", + "modify_date": "2020-09-18T20:08:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Real_Deal_1nIwCHX1MTh/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:00:59Z", + "updatedAt": "2024-04-03T08:37:41Z", + "name": "ReadytoUse_Rolled_Fondant_Pure_White_24_oz_box", + "owner": "GoogleResearch", + "description": "Ready-to-Use Rolled Fondant, Pure White - 24 oz box", + "likes": 0, + "downloads": 1092, + "filesize": 10065225, + "upload_date": "2020-09-03T18:00:56Z", + "modify_date": "2020-09-18T20:08:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ReadytoUse_Rolled_Fondant_Pure_White_24_oz_box/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T18:00:48Z", + "updatedAt": "2024-04-03T08:37:34Z", + "name": "Rayna_BootieWP", + "owner": "GoogleResearch", + "description": "Rayna Bootie.WP", + "likes": 0, + "downloads": 1128, + "filesize": 7148676, + "upload_date": "2020-09-03T18:00:45Z", + "modify_date": "2020-09-18T20:08:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Rayna_BootieWP/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:00:42Z", + "updatedAt": "2024-04-03T09:07:30Z", + "name": "Ravenna_4_Color_WhtOlyBluBlkShkOrngSlvRdO_Size_70", + "owner": "GoogleResearch", + "description": "Ravenna 4, Color: Wht/OlyBlu/Blk/ShkOrng/Slv/RdO, Size: 7.0\nA middle child to neutral and support, the Ravenna 4 is leading the charge for in-between feet. This season, this shoe is bringing a little more cushion, a bit more flex, and a whole lot of swagger with sleek design lines and fast colors. We've also honed in on midfoot capture and engineered a saddle that envelops the foot with an adjustable band. Not too Neutral and not too Support, the Ravenna 4 is juuuust right. Don't take our word for it: Runner's World named the Ravenna 4 its \"Best Buy\" in the Spring Shoe Guide in the March 2013 issue. Their bottom line? \"For the price, it's awfully hard to beat this balance of features and ride.\" > See the Women's Ravenna 4 Runner's World is a registered trademark of Rodale Inc. 2013 Rodale Inc. All rights reserved.Category: Guidance Weight: 10.8 oz Platform: Universal Construction: Strobel DNA: Anatomical Launch Date: February 1, 2013", + "likes": 0, + "downloads": 1047, + "filesize": 8023084, + "upload_date": "2020-09-03T18:00:39Z", + "modify_date": "2020-09-18T20:08:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ravenna_4_Color_WhtOlyBluBlkShkOrngSlvRdO_Size_70/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T18:00:36Z", + "updatedAt": "2024-04-03T09:07:23Z", + "name": "ROAD_CONSTRUCTION_SET", + "owner": "GoogleResearch", + "description": "ROAD CONSTRUCTION SET", + "likes": 0, + "downloads": 1043, + "filesize": 7728150, + "upload_date": "2020-09-03T18:00:32Z", + "modify_date": "2020-09-18T20:08:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ROAD_CONSTRUCTION_SET/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:00:12Z", + "updatedAt": "2024-04-03T19:02:34Z", + "name": "RESCUE_CREW", + "owner": "GoogleResearch", + "description": "RESCUE CREW\nPlanCity professional figures will help your children understand and learn about different occupations, and develop their social skills.", + "likes": 0, + "downloads": 1121, + "filesize": 6458629, + "upload_date": "2020-09-03T18:00:09Z", + "modify_date": "2020-09-18T20:08:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/RESCUE_CREW/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T18:00:06Z", + "updatedAt": "2024-04-03T09:40:59Z", + "name": "Quercetin_500", + "owner": "GoogleResearch", + "description": "Quercetin 500", + "likes": 0, + "downloads": 924, + "filesize": 6815558, + "upload_date": "2020-09-03T18:00:03Z", + "modify_date": "2020-09-18T20:08:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Quercetin_500/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T18:00:00Z", + "updatedAt": "2024-04-03T08:11:16Z", + "name": "QHPomegranate", + "owner": "GoogleResearch", + "description": "QH-Pomegranate", + "likes": 0, + "downloads": 1096, + "filesize": 7498300, + "upload_date": "2020-09-03T17:59:57Z", + "modify_date": "2020-09-18T20:08:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/QHPomegranate/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:59:40Z", + "updatedAt": "2024-04-03T08:37:14Z", + "name": "QAbsorb_CoQ10_53iUqjWjW3O", + "owner": "GoogleResearch", + "description": "Q-Absorb Co-Q10", + "likes": 0, + "downloads": 1093, + "filesize": 7569410, + "upload_date": "2020-09-03T17:59:37Z", + "modify_date": "2020-09-18T20:08:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/QAbsorb_CoQ10_53iUqjWjW3O/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:59:29Z", + "updatedAt": "2024-04-03T08:11:04Z", + "name": "QAbsorb_CoQ10", + "owner": "GoogleResearch", + "description": "Q-Absorb Co-Q10", + "likes": 0, + "downloads": 1120, + "filesize": 6261966, + "upload_date": "2020-09-03T17:59:26Z", + "modify_date": "2020-09-18T20:08:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/QAbsorb_CoQ10/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:59:23Z", + "updatedAt": "2024-04-03T10:04:02Z", + "name": "PureFlow_2_Color_RylPurHibiscusBlkSlvrWht_Size_50", + "owner": "GoogleResearch", + "description": "PureFlow 2, Color: RylPur/Hibiscus/Blk/Slvr/Wht, Size: 5.0\nLike peanut butter and jelly or water and energy gels, the lightweight construction and lush cushioning of the PureFlow 2 are a perfect match. The key to blending the two is engineering comfort features in a lean way like a shaped BioMoGo DNA midsole that gives your feet a cushy feel without added materials. It's a match your feet will hunger for. Just like our core line, we hold PureProject to the industry's highest weartest and durability standards. Because of their lightweight construction and fewer materials, runners should generally expect shoes from the PureProject line to last approximately 250-300 miles. > See the Men's PureFlow 2Category: Guidance Weight: 7.2 oz Platform: Anatomical Last Construction: Stroebel Launch Date: December 1, 2012 Technologies • BioMoGo DNA Midsole • IDEAL Heel • Toe Flex • Nav Band • Anatomical Last", + "likes": 0, + "downloads": 927, + "filesize": 9897760, + "upload_date": "2020-09-03T17:59:20Z", + "modify_date": "2020-09-18T20:08:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PureFlow_2_Color_RylPurHibiscusBlkSlvrWht_Size_50/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:59:17Z", + "updatedAt": "2024-04-03T08:10:45Z", + "name": "PureConnect_2_Color_FernNightlifeSilverBlack_Size_70_5w0BYsiogeV", + "owner": "GoogleResearch", + "description": "PureConnect 2, Color: Fern/Nightlife/Silver/Black, Size: 7.0\nEmbrace the ground beneath you with the featherweight feel and pliable flex of the PureConnect 2. This slim and nimble turn-hugger is the perfect fit when you crave less shoe and more freedom. A split toe groove extends toward the midfoot, engaging the natural movement of the foot and letting you feel every nuance of the run. With rad looks, the baby is ready to run, right out of the box. Just like our core line, we hold PureProject to the industry's highest weartest and durability standards. Because of their lightweight construction and fewer materials, runners should generally expect shoes from the PureProject line to last approximately 250-300 miles. > See the Women's PureConnect 2Category: Neutral Weight: 7.2 oz Platform: Anatomical Last Construction: Stroebel Launch Date: January 1, 2013 Technologies • BioMoGo DNA Midsole • IDEAL Heel • Toe Flex • Nav Band • Anatomical Last", + "likes": 0, + "downloads": 1107, + "filesize": 7324235, + "upload_date": "2020-09-03T17:59:15Z", + "modify_date": "2020-09-18T20:08:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PureConnect_2_Color_FernNightlifeSilverBlack_Size_70_5w0BYsiogeV/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:59:06Z", + "updatedAt": "2024-04-03T09:07:17Z", + "name": "PureConnect_2_Color_BlckBrllntBluNghtlfeAnthrct_Size_70", + "owner": "GoogleResearch", + "description": "PureConnect 2, Color: Blck/BrllntBlu/Nghtlfe/Anthrct, Size: 7.0\nEmbrace the ground beneath you with the featherweight feel and pliable flex of the PureConnect 2. This slim and nimble turn-hugger is the perfect fit when you crave less shoe and more freedom. A split toe groove extends toward the midfoot, engaging the natural movement of the foot and letting you feel every nuance of the run. With rad looks, the baby is ready to run, right out of the box. Just like our core line, we hold PureProject to the industry's highest weartest and durability standards. Because of their lightweight construction and fewer materials, runners should generally expect shoes from the PureProject line to last approximately 250-300 miles. > See the Women's PureConnect 2Category: Neutral Weight: 7.2 oz Platform: Anatomical Last Construction: Stroebel Launch Date: January 1, 2013 Technologies • BioMoGo DNA Midsole • IDEAL Heel • Toe Flex • Nav Band • Anatomical Last", + "likes": 0, + "downloads": 1045, + "filesize": 6102828, + "upload_date": "2020-09-03T17:59:03Z", + "modify_date": "2020-09-18T20:08:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PureConnect_2_Color_BlckBrllntBluNghtlfeAnthrct_Size_70/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:58:57Z", + "updatedAt": "2024-04-03T10:03:53Z", + "name": "PureConnect_2_Color_AnthrcteKnckoutPnkGrnGecko_Size_50", + "owner": "GoogleResearch", + "description": "PureConnect 2, Color: Anthrcte/KnckoutPnk/GrnGecko, Size: 5.0\nEmbrace the ground beneath you with the featherweight feel and pliable flex of the PureConnect 2. This slim and nimble turn-hugger is the perfect fit when you crave less shoe and more freedom. A split toe groove extends toward the midfoot, engaging the natural movement of the foot and letting you feel every nuance of the run. With rad looks, the baby is ready to run, right out of the box. Just like our core line, we hold PureProject to the industry's highest weartest and durability standards. Because of their lightweight construction and fewer materials, runners should generally expect shoes from the PureProject line to last approximately 250-300 miles. > See the Men's PureConnect 2Category: Neutral Weight: 5.9 oz Platform: Anatomical Last Construction: Stroebel Launch Date: January 1, 2013 Technologies • BioMoGo DNA Midsole • IDEAL Heel • Toe Flex • Nav Band • Anatomical Last", + "likes": 0, + "downloads": 929, + "filesize": 8421594, + "upload_date": "2020-09-03T17:58:54Z", + "modify_date": "2020-09-18T20:08:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PureConnect_2_Color_AnthrcteKnckoutPnkGrnGecko_Size_50/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:58:52Z", + "updatedAt": "2024-04-03T10:03:46Z", + "name": "PureCadence_2_Color_TleBluLmePnchSlvMoodIndgWh_Size_50_EEzAfcBfHHO", + "owner": "GoogleResearch", + "description": "PureCadence 2, Color: TleBlu/LmePnch/Slv/MoodIndg/Wh, Size: 5.0\nWith lean construction and a responsive fit, the PureCadence 2 rethinks how support technology is engineered. Features like the internal PDRB help prevent overpronation without added parts and the wide Nav Band holds your foot like an endless hug. Add fresh looks and some street cred, and this featherweight friend will run footloose and fancy-free with you. Just like our core line, we hold PureProject to the industry's highest weartest and durability standards. Because of their lightweight construction and fewer materials, runners should generally expect shoes from the PureProject line to last approximately 250-300 miles. > See the Men's PureCadence 2Category: Support Weight: 7.7 oz Platform: Anatomical Last Construction: Stroebel Launch Date: December 1, 2012 Technologies • BioMoGo DNA Midsole • IDEAL Heel • Toe Flex • Nav Band • Anatomical Last", + "likes": 0, + "downloads": 933, + "filesize": 8721487, + "upload_date": "2020-09-03T17:58:49Z", + "modify_date": "2020-09-18T20:08:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PureCadence_2_Color_TleBluLmePnchSlvMoodIndgWh_Size_50_EEzAfcBfHHO/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:57:57Z", + "updatedAt": "2024-04-03T10:03:38Z", + "name": "PureCadence_2_Color_HiRskRedNghtlfeSlvrBlckWht_Size_70", + "owner": "GoogleResearch", + "description": "PureCadence 2, Color: HiRskRed/Nghtlf/eSlvr/Blck/Wht, Size: 7.0\nWith lean construction and a responsive fit, the PureCadence 2 rethinks how support technology is engineered. Features like the internal PDRB help prevent overpronation without added parts and the wide Nav Band holds your foot like an endless hug. Add fresh looks and some street cred, and this featherweight friend will run footloose and fancy-free with you. Just like our core line, we hold PureProject to the industry's highest weartest and durability standards. Because of their lightweight construction and fewer materials, runners should generally expect shoes from the PureProject line to last approximately 250-300 miles. > See the Women's PureCadence 2Category: Support Weight: 9.3 oz Platform: Anatomical Last Construction: Stroebel Launch Date: December 1, 2012 Technologies • BioMoGo DNA Midsole • IDEAL Heel • Toe Flex • Nav Band • Anatomical Last", + "likes": 0, + "downloads": 932, + "filesize": 8420153, + "upload_date": "2020-09-03T17:57:54Z", + "modify_date": "2020-09-18T20:08:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PureCadence_2_Color_HiRskRedNghtlfeSlvrBlckWht_Size_70/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:57:52Z", + "updatedAt": "2024-04-03T08:10:38Z", + "name": "Prostate_Optimizer", + "owner": "GoogleResearch", + "description": "Prostate Optimizer", + "likes": 0, + "downloads": 1106, + "filesize": 9596789, + "upload_date": "2020-09-03T17:57:48Z", + "modify_date": "2020-09-18T20:08:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Prostate_Optimizer/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:57:45Z", + "updatedAt": "2024-04-03T08:36:59Z", + "name": "Predito_LZ_TRX_FG_W", + "owner": "GoogleResearch", + "description": "Predito LZ TRX FG W", + "likes": 0, + "downloads": 1153, + "filesize": 4967331, + "upload_date": "2020-09-03T17:57:43Z", + "modify_date": "2020-09-18T20:08:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Predito_LZ_TRX_FG_W/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:57:41Z", + "updatedAt": "2024-04-03T09:40:53Z", + "name": "Predator_LZ_TRX_FG", + "owner": "GoogleResearch", + "description": "Predator LZ TRX FG", + "likes": 0, + "downloads": 1074, + "filesize": 5283205, + "upload_date": "2020-09-03T17:57:38Z", + "modify_date": "2020-09-18T20:08:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Predator_LZ_TRX_FG/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:57:34Z", + "updatedAt": "2024-04-03T09:45:06Z", + "name": "Polar_Herring_Fillets_Smoked_Peppered_705_oz_total", + "owner": "GoogleResearch", + "description": "Polar Herring Fillets, Smoked Peppered - 7.05 oz total", + "likes": 0, + "downloads": 1047, + "filesize": 11781160, + "upload_date": "2020-09-03T17:57:30Z", + "modify_date": "2020-09-18T20:08:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Polar_Herring_Fillets_Smoked_Peppered_705_oz_total/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:57:28Z", + "updatedAt": "2024-04-03T08:36:53Z", + "name": "Pok\u00e9mon_Yellow_Special_Pikachu_Edition_Nintendo_Game_Boy_Color", + "owner": "GoogleResearch", + "description": "Pok\u00e9mon Yellow: Special Pikachu Edition, Nintendo Game Boy Color", + "likes": 0, + "downloads": 1093, + "filesize": 7592733, + "upload_date": "2020-09-03T17:57:25Z", + "modify_date": "2020-09-18T20:08:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Pok%C3%A9mon_Yellow_Special_Pikachu_Edition_Nintendo_Game_Boy_Color/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T17:57:23Z", + "updatedAt": "2024-04-03T08:10:28Z", + "name": "Pok\u00e9mon_Omega_Ruby_Alpha_Sapphire_Dual_Pack_Nintendo_3DS", + "owner": "GoogleResearch", + "description": "Pok\u00e9mon: Omega Ruby + Alpha Sapphire Dual Pack [Nintendo 3DS]", + "likes": 0, + "downloads": 1174, + "filesize": 10832521, + "upload_date": "2020-09-03T17:57:19Z", + "modify_date": "2020-09-18T20:08:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Pok%C3%A9mon_Omega_Ruby_Alpha_Sapphire_Dual_Pack_Nintendo_3DS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:57:17Z", + "updatedAt": "2024-04-03T09:40:42Z", + "name": "Pokmon_Y_Nintendo_3DS_Game", + "owner": "GoogleResearch", + "description": "Pok?mon Y [Nintendo 3DS Game]", + "likes": 0, + "downloads": 956, + "filesize": 10284590, + "upload_date": "2020-09-03T17:57:14Z", + "modify_date": "2020-09-18T20:08:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Pokmon_Y_Nintendo_3DS_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T17:57:11Z", + "updatedAt": "2024-04-03T08:36:40Z", + "name": "Pokmon_X_Nintendo_3DS_Game", + "owner": "GoogleResearch", + "description": "Pok?mon X [Nintendo 3DS Game]", + "likes": 0, + "downloads": 1139, + "filesize": 9683916, + "upload_date": "2020-09-03T17:57:08Z", + "modify_date": "2020-09-18T20:08:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Pokmon_X_Nintendo_3DS_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T17:57:06Z", + "updatedAt": "2024-04-03T10:03:30Z", + "name": "Pokmon_Conquest_Nintendo_DS_Game", + "owner": "GoogleResearch", + "description": "Pok?mon Conquest [Nintendo DS Game]", + "likes": 0, + "downloads": 1000, + "filesize": 11843820, + "upload_date": "2020-09-03T17:57:02Z", + "modify_date": "2020-09-18T20:08:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Pokmon_Conquest_Nintendo_DS_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T17:56:59Z", + "updatedAt": "2024-04-03T09:40:34Z", + "name": "Poise_Ultimate_Pads_Long", + "owner": "GoogleResearch", + "description": "Poise Ultimate Pads Long\nDiscreet bladder protection. Leak-block sides. Absorb-loc core. Secure overnight protection. Fresh new look & dry-touch layer. Discreet and worry-free protection. Our most coverage Poise pad! Individually wrapped. Absorb-loc core quickly locks away wetness and odor. Dry-touch layer for your comfort. Leak-block sides for outstanding protection. Distributed in the USA. Made in the USA from domestic and imported material.", + "likes": 0, + "downloads": 927, + "filesize": 9211682, + "upload_date": "2020-09-03T17:56:56Z", + "modify_date": "2020-09-18T20:08:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Poise_Ultimate_Pads_Long/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:56:53Z", + "updatedAt": "2024-04-03T07:08:49Z", + "name": "Playmates_nickelodeon_teenage_mutant_ninja_turtles_shredder", + "owner": "GoogleResearch", + "description": "Playmates nickelodeon teenage mutant ninja turtles, shredder", + "likes": 0, + "downloads": 1102, + "filesize": 10382374, + "upload_date": "2020-09-03T17:56:49Z", + "modify_date": "2020-09-18T20:08:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Playmates_nickelodeon_teenage_mutant_ninja_turtles_shredder/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-03T17:56:47Z", + "updatedAt": "2024-04-03T08:36:31Z", + "name": "Playmates_Industrial_CoSplinter_Teenage_Mutant_Ninja_Turtle_Action_Figure", + "owner": "GoogleResearch", + "description": "Playmates Industrial Co.Splinter Teenage Mutant Ninja Turtle Action Figure", + "likes": 0, + "downloads": 1181, + "filesize": 8275196, + "upload_date": "2020-09-03T17:56:44Z", + "modify_date": "2020-09-18T20:08:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Playmates_Industrial_CoSplinter_Teenage_Mutant_Ninja_Turtle_Action_Figure/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-03T17:56:41Z", + "updatedAt": "2024-04-03T08:36:23Z", + "name": "Pinwheel_Pencil_Case", + "owner": "GoogleResearch", + "description": "Pinwheel Pencil Case", + "likes": 0, + "downloads": 1260, + "filesize": 13855255, + "upload_date": "2020-09-03T17:56:38Z", + "modify_date": "2020-09-18T20:08:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Pinwheel_Pencil_Case/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:56:35Z", + "updatedAt": "2024-04-03T09:07:07Z", + "name": "PhosphOmega", + "owner": "GoogleResearch", + "description": "PhosphOmega", + "likes": 0, + "downloads": 1032, + "filesize": 7320851, + "upload_date": "2020-09-03T17:56:32Z", + "modify_date": "2020-09-18T20:08:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PhosphOmega/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:56:30Z", + "updatedAt": "2024-04-03T10:14:22Z", + "name": "Phillips_Stool_Softener_Liquid_Gels_30_liquid_gels", + "owner": "GoogleResearch", + "description": "Phillips Stool Softener, Liquid Gels - 30 liquid gels\nOther Information: Each Softgel Contains: sodium 6 mg. Very low sodium. Store at room temperature. Avoid excessive heat 104 degrees F (40 degrees C). Misc: Docusate sodium. Genuine. Gentle, dependable relief. No. 1 doctor recommended among stool softener ingredients. Stimulant free. Cramp free. Phillips' Milk of Magnesia has provided stimulant-free relief of constipation for over 125 years. Easy-to-swallow Phillips' Liquid Gels contain the No. 1 doctor recommended stool softening ingredient and provide effective relief of occasional constipation. Unlike some other laxatives, Phillips' Liquid Gels do not contain the harsh stimulants that can cause pain and cramping. Liquid Gels help you feel your best by gently drawing water into the stool making it more comfortable to pass. As with any laxative, your dose should be adjusted within the label directions to meet your own body's needs. Many people find 2 liquid gels to be an effective starting adult dosage. Phillips' comfortable, cramp-free relief. www.bayercare.com. Made in USA.", + "likes": 0, + "downloads": 950, + "filesize": 7982651, + "upload_date": "2020-09-03T17:56:27Z", + "modify_date": "2020-09-18T20:08:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Phillips_Stool_Softener_Liquid_Gels_30_liquid_gels/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:56:24Z", + "updatedAt": "2024-04-03T08:42:31Z", + "name": "Phillips_Milk_of_Magnesia_Saline_Laxative_Liquid_Original", + "owner": "GoogleResearch", + "description": "Phillips Milk of Magnesia Saline Laxative Liquid Original", + "likes": 0, + "downloads": 1063, + "filesize": 7481536, + "upload_date": "2020-09-03T17:56:21Z", + "modify_date": "2020-09-18T20:08:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Phillips_Milk_of_Magnesia_Saline_Laxative_Liquid_Original/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:56:19Z", + "updatedAt": "2024-04-03T09:44:55Z", + "name": "Phillips_Colon_Health_Probiotic_Capsule", + "owner": "GoogleResearch", + "description": "Phillips Colon Health Probiotic Capsule", + "likes": 0, + "downloads": 924, + "filesize": 9631583, + "upload_date": "2020-09-03T17:56:16Z", + "modify_date": "2020-09-18T20:08:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Phillips_Colon_Health_Probiotic_Capsule/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:56:12Z", + "updatedAt": "2024-04-03T10:14:13Z", + "name": "Phillips_Caplets_Size_24", + "owner": "GoogleResearch", + "description": "Phillips Caplets Size: 24\nLaxative Dietary Supplement. Genuine. Comfortable relief. Convenient. Easy-to-swallow. Stimulant free. Cramp free. Comfortable, cramp-free relief of occasional constipation. Is the only line of stimulant-free laxatives for overnight relief. Nothing's been proven more effective and gentle than Phillips. Please visit our website at www.bayercare.com. (This statement has not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.) Made in USA.", + "likes": 0, + "downloads": 902, + "filesize": 8062510, + "upload_date": "2020-09-03T17:56:09Z", + "modify_date": "2020-09-18T20:08:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Phillips_Caplets_Size_24/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:56:06Z", + "updatedAt": "2024-04-03T09:13:53Z", + "name": "Philips_Sonicare_Tooth_Brush_2_count", + "owner": "GoogleResearch", + "description": "Philips Sonicare Tooth Brush - 2 count", + "likes": 0, + "downloads": 995, + "filesize": 9737784, + "upload_date": "2020-09-03T17:56:03Z", + "modify_date": "2020-09-18T20:08:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Philips_Sonicare_Tooth_Brush_2_count/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:56:01Z", + "updatedAt": "2024-04-03T08:10:21Z", + "name": "Philips_EcoVantage_43_W_Light_Bulbs_Natural_Light_2_pack", + "owner": "GoogleResearch", + "description": "Philips EcoVantage 43 W Light Bulbs, Natural Light - 2 pack", + "likes": 0, + "downloads": 1104, + "filesize": 7510580, + "upload_date": "2020-09-03T17:55:56Z", + "modify_date": "2020-09-18T20:08:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Philips_EcoVantage_43_W_Light_Bulbs_Natural_Light_2_pack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:55:34Z", + "updatedAt": "2024-04-03T09:06:58Z", + "name": "Philips_60ct_Warm_White_LED_Smooth_Mini_String_Lights", + "owner": "GoogleResearch", + "description": "Philips 60ct Warm White LED Smooth Mini String Lights", + "likes": 0, + "downloads": 1192, + "filesize": 12020919, + "upload_date": "2020-09-03T17:55:30Z", + "modify_date": "2020-09-18T20:08:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Philips_60ct_Warm_White_LED_Smooth_Mini_String_Lights/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:55:24Z", + "updatedAt": "2024-04-03T09:06:52Z", + "name": "Pet_Dophilus_powder", + "owner": "GoogleResearch", + "description": "Pet Dophilus, powder", + "likes": 0, + "downloads": 1028, + "filesize": 6216643, + "upload_date": "2020-09-03T17:55:21Z", + "modify_date": "2020-09-18T20:08:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Pet_Dophilus_powder/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:55:17Z", + "updatedAt": "2024-04-03T08:10:11Z", + "name": "Persona_Q_Shadow_of_the_Labyrinth_Nintendo_3DS", + "owner": "GoogleResearch", + "description": "Persona Q: Shadow of the Labyrinth [Nintendo 3DS]", + "likes": 0, + "downloads": 1207, + "filesize": 14597937, + "upload_date": "2020-09-03T17:55:14Z", + "modify_date": "2020-09-18T20:08:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Persona_Q_Shadow_of_the_Labyrinth_Nintendo_3DS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T17:55:11Z", + "updatedAt": "2024-04-03T08:10:02Z", + "name": "Paul_Frank_Dot_Lunch_Box", + "owner": "GoogleResearch", + "description": "Paul Frank Dot Lunch Box", + "likes": 1, + "downloads": 1240, + "filesize": 13393603, + "upload_date": "2020-09-03T17:55:07Z", + "modify_date": "2020-09-18T20:08:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Paul_Frank_Dot_Lunch_Box/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:55:04Z", + "updatedAt": "2024-04-03T10:14:05Z", + "name": "Pass_The_Popcorn_Movie_Guessing_Game", + "owner": "GoogleResearch", + "description": "Pass The Popcorn Movie Guessing Game", + "likes": 0, + "downloads": 1089, + "filesize": 13818811, + "upload_date": "2020-09-03T17:55:01Z", + "modify_date": "2020-09-18T20:08:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Pass_The_Popcorn_Movie_Guessing_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T17:54:43Z", + "updatedAt": "2024-04-03T09:06:43Z", + "name": "Paper_Mario_Sticker_Star_Nintendo_3DS_Game", + "owner": "GoogleResearch", + "description": "Paper Mario: Sticker Star [Nintendo 3DS Game]", + "likes": 0, + "downloads": 1124, + "filesize": 10679674, + "upload_date": "2020-09-03T17:54:39Z", + "modify_date": "2020-09-18T20:08:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Paper_Mario_Sticker_Star_Nintendo_3DS_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T17:54:37Z", + "updatedAt": "2024-04-03T09:06:33Z", + "name": "Paint_Maker", + "owner": "GoogleResearch", + "description": "Paint Maker\nCreate your own custom paint colors in minutes! Use the mixing guide to create your color or make up your own. This interactive kit provides everything you need to make 15 unique paint colors. Whether you experiment with colors or keep things simple this kit guides you through every step of the process! Available at Walmart.", + "likes": 0, + "downloads": 1126, + "filesize": 14146359, + "upload_date": "2020-09-03T17:54:33Z", + "modify_date": "2020-09-18T20:08:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Paint_Maker/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:54:30Z", + "updatedAt": "2024-04-03T08:36:13Z", + "name": "PINEAPPLE_MARACA_6_PCSSET", + "owner": "GoogleResearch", + "description": "PINEAPPLE MARACA (6 PCS/SET)\nShake up your next musical adventure with this tropical maraca. Combine with other PlanToys musical items to form a rockstar band !", + "likes": 0, + "downloads": 1112, + "filesize": 7965454, + "upload_date": "2020-09-03T17:54:27Z", + "modify_date": "2020-09-18T20:08:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PINEAPPLE_MARACA_6_PCSSET/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:54:25Z", + "updatedAt": "2024-04-03T09:40:26Z", + "name": "PHEEHAN_RUN", + "owner": "GoogleResearch", + "description": "PHEEHAN RUN\nFootwear", + "likes": 0, + "downloads": 942, + "filesize": 7967876, + "upload_date": "2020-09-03T17:54:22Z", + "modify_date": "2020-09-18T20:08:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PHEEHAN_RUN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:54:20Z", + "updatedAt": "2024-04-03T08:09:53Z", + "name": "PETS_ACCESSORIES", + "owner": "GoogleResearch", + "description": "PETS & ACCESSORIES\nThis set includes a dog and kennel, a cat, a rabbit and feeding bowls.", + "likes": 0, + "downloads": 1115, + "filesize": 7933898, + "upload_date": "2020-09-03T17:54:17Z", + "modify_date": "2020-09-18T20:08:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PETS_ACCESSORIES/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:54:08Z", + "updatedAt": "2024-04-03T08:09:15Z", + "name": "PEEKABOO_ROLLER", + "owner": "GoogleResearch", + "description": "PEEK-A-BOO ROLLER\nWatch the colored pieces peek in and out when rolled.", + "likes": 0, + "downloads": 1176, + "filesize": 6146952, + "upload_date": "2020-09-03T17:54:05Z", + "modify_date": "2020-09-18T20:08:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/PEEKABOO_ROLLER/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:54:01Z", + "updatedAt": "2024-04-03T08:36:07Z", + "name": "Organic_Whey_Protein_Vanilla", + "owner": "GoogleResearch", + "description": "Organic Whey Protein, Vanilla", + "likes": 0, + "downloads": 1110, + "filesize": 7282830, + "upload_date": "2020-09-03T17:53:58Z", + "modify_date": "2020-09-18T20:08:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Organic_Whey_Protein_Vanilla/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:53:55Z", + "updatedAt": "2024-04-03T09:06:24Z", + "name": "Organic_Whey_Protein_Unflavored", + "owner": "GoogleResearch", + "description": "Organic Whey Protein, Unflavored", + "likes": 0, + "downloads": 1149, + "filesize": 6493846, + "upload_date": "2020-09-03T17:53:52Z", + "modify_date": "2020-09-18T20:08:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Organic_Whey_Protein_Unflavored/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:53:45Z", + "updatedAt": "2024-04-03T08:09:07Z", + "name": "Orbit_Bubblemint_Mini_Bottle_6_ct", + "owner": "GoogleResearch", + "description": "Orbit Bubblemint Mini Bottle - 6 ct", + "likes": 0, + "downloads": 1116, + "filesize": 8830834, + "upload_date": "2020-09-03T17:53:42Z", + "modify_date": "2020-09-18T20:08:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Orbit_Bubblemint_Mini_Bottle_6_ct/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T17:53:39Z", + "updatedAt": "2024-04-03T09:06:17Z", + "name": "Olive_Kids_Trains_Planes_Trucks_Munch_n_Lunch_Bag", + "owner": "GoogleResearch", + "description": "Olive Kids Trains, Planes & Trucks Munch 'n Lunch Bag", + "likes": 0, + "downloads": 1121, + "filesize": 12810301, + "upload_date": "2020-09-03T17:53:36Z", + "modify_date": "2020-09-18T20:08:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Trains_Planes_Trucks_Munch_n_Lunch_Bag/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:53:33Z", + "updatedAt": "2024-04-04T05:39:05Z", + "name": "Olive_Kids_Trains_Planes_Trucks_Bogo_Backpack", + "owner": "GoogleResearch", + "description": "Olive Kids Trains, Planes, Trucks Bogo Backpack", + "likes": 0, + "downloads": 1249, + "filesize": 8431015, + "upload_date": "2020-09-03T17:53:30Z", + "modify_date": "2020-09-18T20:08:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Trains_Planes_Trucks_Bogo_Backpack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:53:27Z", + "updatedAt": "2024-04-03T08:08:49Z", + "name": "Olive_Kids_Robots_Pencil_Case", + "owner": "GoogleResearch", + "description": "Olive Kids Robots Pencil Case", + "likes": 0, + "downloads": 1354, + "filesize": 12742105, + "upload_date": "2020-09-03T17:53:24Z", + "modify_date": "2020-09-18T20:08:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Robots_Pencil_Case/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:53:21Z", + "updatedAt": "2024-04-03T10:13:57Z", + "name": "Olive_Kids_Paisley_Pencil_Case", + "owner": "GoogleResearch", + "description": "Olive Kids Paisley Pencil Case", + "likes": 0, + "downloads": 936, + "filesize": 12699494, + "upload_date": "2020-09-03T17:53:17Z", + "modify_date": "2020-09-18T20:08:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Paisley_Pencil_Case/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:53:15Z", + "updatedAt": "2024-04-04T05:38:48Z", + "name": "Olive_Kids_Mermaids_Pack_n_Snack_Backpack", + "owner": "GoogleResearch", + "description": "Olive Kids Mermaids Pack 'n Snack Backpack", + "likes": 0, + "downloads": 1219, + "filesize": 10752366, + "upload_date": "2020-09-03T17:53:11Z", + "modify_date": "2020-09-18T20:08:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Mermaids_Pack_n_Snack_Backpack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:53:09Z", + "updatedAt": "2024-04-03T08:08:32Z", + "name": "Olive_Kids_Game_On_Pack_n_Snack", + "owner": "GoogleResearch", + "description": "Olive Kids Game On Pack 'n Snack", + "likes": 0, + "downloads": 1124, + "filesize": 7901620, + "upload_date": "2020-09-03T17:53:06Z", + "modify_date": "2020-09-18T20:08:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Game_On_Pack_n_Snack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:53:02Z", + "updatedAt": "2024-04-03T09:06:08Z", + "name": "Olive_Kids_Game_On_Munch_n_Lunch", + "owner": "GoogleResearch", + "description": "Olive Kids Game On Munch 'n Lunch", + "likes": 0, + "downloads": 1201, + "filesize": 10950991, + "upload_date": "2020-09-03T17:52:59Z", + "modify_date": "2020-09-18T20:08:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Game_On_Munch_n_Lunch/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:52:56Z", + "updatedAt": "2024-04-03T09:05:58Z", + "name": "Olive_Kids_Game_On_Lunch_Box", + "owner": "GoogleResearch", + "description": "Olive Kids Game On Lunch Box", + "likes": 0, + "downloads": 1132, + "filesize": 13161966, + "upload_date": "2020-09-03T17:52:53Z", + "modify_date": "2020-09-18T20:08:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Game_On_Lunch_Box/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:52:50Z", + "updatedAt": "2024-04-04T05:38:31Z", + "name": "Olive_Kids_Dinosaur_Land_Sidekick_Backpack", + "owner": "GoogleResearch", + "description": "Olive Kids Dinosaur Land Sidekick Backpack", + "likes": 0, + "downloads": 924, + "filesize": 10060821, + "upload_date": "2020-09-03T17:52:47Z", + "modify_date": "2020-09-18T20:08:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Dinosaur_Land_Sidekick_Backpack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:52:44Z", + "updatedAt": "2024-04-03T08:35:57Z", + "name": "Olive_Kids_Dinosaur_Land_Pack_n_Snack", + "owner": "GoogleResearch", + "description": "Olive Kids Dinosaur Land Pack 'n Snack", + "likes": 0, + "downloads": 1112, + "filesize": 8649351, + "upload_date": "2020-09-03T17:52:41Z", + "modify_date": "2020-09-18T20:08:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Dinosaur_Land_Pack_n_Snack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:52:38Z", + "updatedAt": "2024-04-03T09:05:48Z", + "name": "Olive_Kids_Dinosaur_Land_Munch_n_Lunch", + "owner": "GoogleResearch", + "description": "Olive Kids Dinosaur Land Munch 'n Lunch", + "likes": 0, + "downloads": 1269, + "filesize": 10841423, + "upload_date": "2020-09-03T17:52:35Z", + "modify_date": "2020-09-18T20:08:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Dinosaur_Land_Munch_n_Lunch/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:52:32Z", + "updatedAt": "2024-04-03T10:13:48Z", + "name": "Olive_Kids_Dinosaur_Land_Lunch_Box", + "owner": "GoogleResearch", + "description": "Olive Kids Dinosaur Land Lunch Box", + "likes": 0, + "downloads": 1048, + "filesize": 12041784, + "upload_date": "2020-09-03T17:52:28Z", + "modify_date": "2020-09-18T20:08:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Dinosaur_Land_Lunch_Box/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:52:25Z", + "updatedAt": "2024-04-03T10:13:40Z", + "name": "Olive_Kids_Butterfly_Garden_Pencil_Case", + "owner": "GoogleResearch", + "description": "Olive Kids Butterfly Garden Pencil Case", + "likes": 0, + "downloads": 901, + "filesize": 9823932, + "upload_date": "2020-09-03T17:52:22Z", + "modify_date": "2020-09-18T20:08:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Butterfly_Garden_Pencil_Case/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:52:19Z", + "updatedAt": "2024-04-03T10:13:32Z", + "name": "Olive_Kids_Butterfly_Garden_Munch_n_Lunch_Bag", + "owner": "GoogleResearch", + "description": "Olive Kids Butterfly Garden Munch 'n Lunch Bag", + "likes": 0, + "downloads": 1069, + "filesize": 11420741, + "upload_date": "2020-09-03T17:52:16Z", + "modify_date": "2020-09-18T20:08:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Butterfly_Garden_Munch_n_Lunch_Bag/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:52:13Z", + "updatedAt": "2024-04-04T05:38:17Z", + "name": "Olive_Kids_Birdie_Sidekick_Backpack", + "owner": "GoogleResearch", + "description": "Olive Kids Birdie Sidekick Backpack", + "likes": 0, + "downloads": 1174, + "filesize": 7792825, + "upload_date": "2020-09-03T17:52:10Z", + "modify_date": "2020-09-18T20:09:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Birdie_Sidekick_Backpack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:52:08Z", + "updatedAt": "2024-04-03T09:40:09Z", + "name": "Olive_Kids_Birdie_Pack_n_Snack", + "owner": "GoogleResearch", + "description": "Olive Kids Birdie Pack 'n Snack", + "likes": 0, + "downloads": 1037, + "filesize": 12133837, + "upload_date": "2020-09-03T17:52:04Z", + "modify_date": "2020-09-18T20:09:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Birdie_Pack_n_Snack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:52:01Z", + "updatedAt": "2024-04-03T08:07:49Z", + "name": "Olive_Kids_Birdie_Munch_n_Lunch", + "owner": "GoogleResearch", + "description": "Olive Kids Birdie Munch 'n Lunch", + "likes": 0, + "downloads": 1179, + "filesize": 9862144, + "upload_date": "2020-09-03T17:51:58Z", + "modify_date": "2020-09-18T20:09:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Birdie_Munch_n_Lunch/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:51:55Z", + "updatedAt": "2024-04-03T08:07:43Z", + "name": "Olive_Kids_Birdie_Lunch_Box", + "owner": "GoogleResearch", + "description": "Olive Kids Birdie Lunch Box", + "likes": 0, + "downloads": 1113, + "filesize": 8946155, + "upload_date": "2020-09-03T17:51:52Z", + "modify_date": "2020-09-18T20:09:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Olive_Kids_Birdie_Lunch_Box/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T17:51:50Z", + "updatedAt": "2024-04-03T08:35:44Z", + "name": "Office_Depot_HP_98_Remanufactured_Ink_Cartridge_Black", + "owner": "GoogleResearch", + "description": "Office Depot (HP 98) Remanufactured Ink Cartridge - Black", + "likes": 0, + "downloads": 1110, + "filesize": 7065986, + "upload_date": "2020-09-03T17:51:47Z", + "modify_date": "2020-09-18T20:09:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_HP_98_Remanufactured_Ink_Cartridge_Black/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:51:45Z", + "updatedAt": "2024-04-03T09:40:03Z", + "name": "Office_Depot_HP_96_Remanufactured_Ink_Cartridge_Black", + "owner": "GoogleResearch", + "description": "Office Depot (HP 96) Remanufactured Ink Cartridge - Black", + "likes": 0, + "downloads": 931, + "filesize": 7740920, + "upload_date": "2020-09-03T17:51:42Z", + "modify_date": "2020-09-18T20:09:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_HP_96_Remanufactured_Ink_Cartridge_Black/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:51:39Z", + "updatedAt": "2024-04-03T10:03:23Z", + "name": "Office_Depot_HP_950XL_Ink_Cartridge_Black_CN045AN", + "owner": "GoogleResearch", + "description": "Office Depot HP 950XL Ink Cartridge, Black (CN045AN)", + "likes": 0, + "downloads": 909, + "filesize": 6473975, + "upload_date": "2020-09-03T17:51:37Z", + "modify_date": "2020-09-18T20:09:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_HP_950XL_Ink_Cartridge_Black_CN045AN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:51:34Z", + "updatedAt": "2024-04-03T08:35:38Z", + "name": "Office_Depot_HP_932XL_Ink_Cartridge_Black_CN053A", + "owner": "GoogleResearch", + "description": "Office Depot HP 932XL Ink Cartridge, Black (CN053A)", + "likes": 0, + "downloads": 1108, + "filesize": 9053135, + "upload_date": "2020-09-03T17:51:31Z", + "modify_date": "2020-09-18T20:09:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_HP_932XL_Ink_Cartridge_Black_CN053A/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:51:29Z", + "updatedAt": "2024-04-03T08:35:30Z", + "name": "Office_Depot_HP_920XL_920_High_Yield_Black_and_Standard_CMY_Color_Ink_Cartridges", + "owner": "GoogleResearch", + "description": "Office Depot HP 920XL /920 High Yield Black and Standard C/M/Y Color Ink Cartridges", + "likes": 0, + "downloads": 1109, + "filesize": 6319211, + "upload_date": "2020-09-03T17:51:26Z", + "modify_date": "2020-09-18T20:09:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_HP_920XL_920_High_Yield_Black_and_Standard_CMY_Color_Ink_Cartridges/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:51:24Z", + "updatedAt": "2024-04-03T08:35:23Z", + "name": "Office_Depot_HP_75_Remanufactured_Ink_Cartridge_TriColor", + "owner": "GoogleResearch", + "description": "Office Depot (HP 75) Remanufactured Ink Cartridge - Tri-Color", + "likes": 0, + "downloads": 1104, + "filesize": 8777657, + "upload_date": "2020-09-03T17:51:21Z", + "modify_date": "2020-09-18T20:09:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_HP_75_Remanufactured_Ink_Cartridge_TriColor/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:51:18Z", + "updatedAt": "2024-04-03T08:07:35Z", + "name": "Office_Depot_HP_74XL75_Remanufactured_Ink_Cartridges_BlackTriColor_2_count", + "owner": "GoogleResearch", + "description": "Office Depot (HP 74XL/75) Remanufactured Ink Cartridges - Black/Tri-Color - 2 count", + "likes": 0, + "downloads": 1110, + "filesize": 6151325, + "upload_date": "2020-09-03T17:51:15Z", + "modify_date": "2020-09-18T20:09:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_HP_74XL75_Remanufactured_Ink_Cartridges_BlackTriColor_2_count/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:51:12Z", + "updatedAt": "2024-04-03T08:07:28Z", + "name": "Office_Depot_HP_71_Remanufactured_Ink_Cartridge_Black", + "owner": "GoogleResearch", + "description": "Office Depot (HP 71) Remanufactured Ink Cartridge - Black", + "likes": 0, + "downloads": 1114, + "filesize": 6730468, + "upload_date": "2020-09-03T17:51:09Z", + "modify_date": "2020-09-18T20:09:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_HP_71_Remanufactured_Ink_Cartridge_Black/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:51:07Z", + "updatedAt": "2024-04-03T10:03:17Z", + "name": "Office_Depot_HP_61Tricolor_Ink_Cartridge", + "owner": "GoogleResearch", + "description": "Office Depot HP 61Tricolor Ink Cartridge", + "likes": 0, + "downloads": 945, + "filesize": 8401370, + "upload_date": "2020-09-03T17:51:04Z", + "modify_date": "2020-09-18T20:09:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_HP_61Tricolor_Ink_Cartridge/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:51:01Z", + "updatedAt": "2024-04-03T09:05:41Z", + "name": "Office_Depot_HP_564XL_Remanufactured_Ink_Cartridges_Color_Cyan_Magenta_Yellow_3_count", + "owner": "GoogleResearch", + "description": "Office Depot (HP 564XL) Remanufactured Ink Cartridges - Color (Cyan, Magenta, Yellow) - 3 count", + "likes": 0, + "downloads": 1026, + "filesize": 6815700, + "upload_date": "2020-09-03T17:50:59Z", + "modify_date": "2020-09-18T20:09:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_HP_564XL_Remanufactured_Ink_Cartridges_Color_Cyan_Magenta_Yellow_3_count/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:50:56Z", + "updatedAt": "2024-04-03T10:03:10Z", + "name": "Office_Depot_HP_564XL_Ink_Cartridge_Black_CN684WN", + "owner": "GoogleResearch", + "description": "Office Depot HP 564XL Ink Cartridge, Black (CN684WN)", + "likes": 0, + "downloads": 905, + "filesize": 6873579, + "upload_date": "2020-09-03T17:50:53Z", + "modify_date": "2020-09-18T20:09:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_HP_564XL_Ink_Cartridge_Black_CN684WN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:50:43Z", + "updatedAt": "2024-04-03T09:39:55Z", + "name": "Office_Depot_HP_2_Remanufactured_Ink_Cartridges_Color_Cyan_Magenta_Yellow_3_count", + "owner": "GoogleResearch", + "description": "Office Depot (HP 2) Remanufactured Ink Cartridges - Color (Cyan, Magenta, Yellow) - 3 count", + "likes": 0, + "downloads": 922, + "filesize": 7979769, + "upload_date": "2020-09-03T17:50:40Z", + "modify_date": "2020-09-18T20:09:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_HP_2_Remanufactured_Ink_Cartridges_Color_Cyan_Magenta_Yellow_3_count/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:50:38Z", + "updatedAt": "2024-04-03T08:35:18Z", + "name": "Office_Depot_Dell_Series_9_Ink_Cartridge_Black_MK992", + "owner": "GoogleResearch", + "description": "Office Depot Dell Series 9 Ink Cartridge, Black (MK992)", + "likes": 0, + "downloads": 1115, + "filesize": 8716359, + "upload_date": "2020-09-03T17:50:35Z", + "modify_date": "2020-09-18T20:09:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Dell_Series_9_Ink_Cartridge_Black_MK992/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:50:32Z", + "updatedAt": "2024-04-03T10:03:01Z", + "name": "Office_Depot_Dell_Series_9_Color_Ink_Ink_Cartridge_MK991_MK993", + "owner": "GoogleResearch", + "description": "Office Depot Dell Series 9 Color Ink Ink Cartridge (MK991, MK993)", + "likes": 0, + "downloads": 924, + "filesize": 8969208, + "upload_date": "2020-09-03T17:50:29Z", + "modify_date": "2020-09-18T20:09:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Dell_Series_9_Color_Ink_Ink_Cartridge_MK991_MK993/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:50:20Z", + "updatedAt": "2024-04-03T10:02:54Z", + "name": "Office_Depot_Dell_Series_5_Remanufactured_Ink_Cartridge_Black", + "owner": "GoogleResearch", + "description": "Office Depot (Dell Series 5) Remanufactured Ink Cartridge - Black", + "likes": 0, + "downloads": 913, + "filesize": 7904811, + "upload_date": "2020-09-03T17:50:17Z", + "modify_date": "2020-09-18T20:09:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Dell_Series_5_Remanufactured_Ink_Cartridge_Black/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:50:15Z", + "updatedAt": "2024-04-03T08:35:10Z", + "name": "Office_Depot_Dell_Series_1_Remanufactured_Ink_Cartridge_TriColor", + "owner": "GoogleResearch", + "description": "Office Depot (Dell Series 1) Remanufactured Ink Cartridge - Tri-Color", + "likes": 0, + "downloads": 1223, + "filesize": 7052974, + "upload_date": "2020-09-03T17:50:12Z", + "modify_date": "2020-09-18T20:09:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Dell_Series_1_Remanufactured_Ink_Cartridge_TriColor/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:50:09Z", + "updatedAt": "2024-04-03T09:39:49Z", + "name": "Office_Depot_Dell_Series_1_Remanufactured_Ink_Cartridge_Black", + "owner": "GoogleResearch", + "description": "Office Depot (Dell Series 1) Remanufactured Ink Cartridge - Black", + "likes": 0, + "downloads": 924, + "filesize": 6893844, + "upload_date": "2020-09-03T17:50:06Z", + "modify_date": "2020-09-18T20:09:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Dell_Series_1_Remanufactured_Ink_Cartridge_Black/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:50:01Z", + "updatedAt": "2024-04-03T10:02:47Z", + "name": "Office_Depot_Dell_Series_11_Remanufactured_Ink_Cartridge_TriColor", + "owner": "GoogleResearch", + "description": "Office Depot (Dell Series 11) Remanufactured Ink Cartridge - Tri-Color", + "likes": 0, + "downloads": 912, + "filesize": 8313695, + "upload_date": "2020-09-03T17:49:58Z", + "modify_date": "2020-09-18T20:09:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Dell_Series_11_Remanufactured_Ink_Cartridge_TriColor/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:49:56Z", + "updatedAt": "2024-04-03T09:05:32Z", + "name": "Office_Depot_Dell_Series_11_Remanufactured_Ink_Cartridge_Black", + "owner": "GoogleResearch", + "description": "Office Depot (Dell Series 11) Remanufactured Ink Cartridge - Black", + "likes": 0, + "downloads": 1027, + "filesize": 8984715, + "upload_date": "2020-09-03T17:49:53Z", + "modify_date": "2020-09-18T20:09:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Dell_Series_11_Remanufactured_Ink_Cartridge_Black/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:49:50Z", + "updatedAt": "2024-04-03T09:05:25Z", + "name": "Office_Depot_Canon_PG_240XL_Ink_Cartridge_Black_5206B001", + "owner": "GoogleResearch", + "description": "Office Depot Canon PG 240XL Ink Cartridge, Black (5206B001)", + "likes": 0, + "downloads": 1030, + "filesize": 7981737, + "upload_date": "2020-09-03T17:49:47Z", + "modify_date": "2020-09-18T20:09:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Canon_PG_240XL_Ink_Cartridge_Black_5206B001/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:49:45Z", + "updatedAt": "2024-04-03T08:35:03Z", + "name": "Office_Depot_Canon_PGI5BK_Remanufactured_Ink_Cartridge_Black", + "owner": "GoogleResearch", + "description": "Office Depot (Canon PGI-5BK) Remanufactured Ink Cartridge - Black", + "likes": 0, + "downloads": 1199, + "filesize": 7009256, + "upload_date": "2020-09-03T17:49:42Z", + "modify_date": "2020-09-18T20:09:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Canon_PGI5BK_Remanufactured_Ink_Cartridge_Black/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:49:22Z", + "updatedAt": "2024-04-03T08:34:55Z", + "name": "Office_Depot_Canon_PGI35_Remanufactured_Ink_Cartridge_Black", + "owner": "GoogleResearch", + "description": "Office Depot (Canon PGI-35) Remanufactured Ink Cartridge - Black", + "likes": 0, + "downloads": 1189, + "filesize": 7779019, + "upload_date": "2020-09-03T17:49:19Z", + "modify_date": "2020-09-18T20:09:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Canon_PGI35_Remanufactured_Ink_Cartridge_Black/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:49:05Z", + "updatedAt": "2024-04-03T08:34:49Z", + "name": "Office_Depot_Canon_PGI22_Remanufactured_Ink_Cartridge_Black", + "owner": "GoogleResearch", + "description": "Office Depot (Canon PGI-22) Remanufactured Ink Cartridge - Black", + "likes": 0, + "downloads": 1146, + "filesize": 8809647, + "upload_date": "2020-09-03T17:49:02Z", + "modify_date": "2020-09-18T20:09:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Canon_PGI22_Remanufactured_Ink_Cartridge_Black/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:48:50Z", + "updatedAt": "2024-04-03T09:05:17Z", + "name": "Office_Depot_Canon_PG21XL_Remanufactured_Ink_Cartridge_Black", + "owner": "GoogleResearch", + "description": "Office Depot (Canon PG-21XL) Remanufactured Ink Cartridge - Black", + "likes": 0, + "downloads": 1034, + "filesize": 8273810, + "upload_date": "2020-09-03T17:48:47Z", + "modify_date": "2020-09-18T20:09:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Canon_PG21XL_Remanufactured_Ink_Cartridge_Black/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:48:45Z", + "updatedAt": "2024-04-03T08:07:21Z", + "name": "Office_Depot_Canon_CL_41_Remanufactured_Ink_Cartridge_TriColor", + "owner": "GoogleResearch", + "description": "Office Depot (Canon CL 41) Remanufactured Ink Cartridge - Tri-Color", + "likes": 0, + "downloads": 1121, + "filesize": 6824998, + "upload_date": "2020-09-03T17:48:42Z", + "modify_date": "2020-09-18T20:09:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Canon_CL_41_Remanufactured_Ink_Cartridge_TriColor/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:48:39Z", + "updatedAt": "2024-04-03T08:07:14Z", + "name": "Office_Depot_Canon_CLI_8Y_Ink_Cartridge_Yellow_0623B002", + "owner": "GoogleResearch", + "description": "Office Depot Canon CLI 8Y Ink Cartridge, Yellow (0623B002)", + "likes": 0, + "downloads": 1119, + "filesize": 8342955, + "upload_date": "2020-09-03T17:48:37Z", + "modify_date": "2020-09-18T20:09:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Canon_CLI_8Y_Ink_Cartridge_Yellow_0623B002/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:48:34Z", + "updatedAt": "2024-04-03T09:39:44Z", + "name": "Office_Depot_Canon_CLI_8CMY_Remanufactured_Ink_Cartridges_Color_Cyan_Magenta_Yellow_3_count", + "owner": "GoogleResearch", + "description": "Office Depot (Canon CLI 8CMY) Remanufactured Ink Cartridges - Color (Cyan, Magenta, Yellow) - 3 count", + "likes": 0, + "downloads": 920, + "filesize": 8280603, + "upload_date": "2020-09-03T17:48:31Z", + "modify_date": "2020-09-18T20:09:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Canon_CLI_8CMY_Remanufactured_Ink_Cartridges_Color_Cyan_Magenta_Yellow_3_count/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:48:29Z", + "updatedAt": "2024-04-03T09:05:09Z", + "name": "Office_Depot_Canon_CLI_221BK_Ink_Cartridge_Black_2946B001", + "owner": "GoogleResearch", + "description": "Office Depot Canon CLI 221BK Ink Cartridge, Black (2946B001)", + "likes": 0, + "downloads": 1032, + "filesize": 9528479, + "upload_date": "2020-09-03T17:48:26Z", + "modify_date": "2020-09-18T20:09:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Canon_CLI_221BK_Ink_Cartridge_Black_2946B001/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:48:23Z", + "updatedAt": "2024-04-03T09:39:37Z", + "name": "Office_Depot_Canon_CLI36_Remanufactured_Ink_Cartridge_TriColor", + "owner": "GoogleResearch", + "description": "Office Depot (Canon CLI-36) Remanufactured Ink Cartridge - Tri-Color", + "likes": 0, + "downloads": 924, + "filesize": 8466299, + "upload_date": "2020-09-03T17:48:20Z", + "modify_date": "2020-09-18T20:09:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Canon_CLI36_Remanufactured_Ink_Cartridge_TriColor/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:47:59Z", + "updatedAt": "2024-04-03T08:34:41Z", + "name": "Office_Depot_Canon_CL211XL_Remanufactured_Ink_Cartridge_TriColor", + "owner": "GoogleResearch", + "description": "Office Depot (Canon CL-211XL) Remanufactured Ink Cartridge - Tri-Color", + "likes": 0, + "downloads": 1156, + "filesize": 9337185, + "upload_date": "2020-09-03T17:47:56Z", + "modify_date": "2020-09-18T20:09:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Office_Depot_Canon_CL211XL_Remanufactured_Ink_Cartridge_TriColor/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:47:43Z", + "updatedAt": "2024-04-03T09:05:00Z", + "name": "OWL_SORTER", + "owner": "GoogleResearch", + "description": "OWL SORTER\nGreat fun for children to sort 4 different shapes in the Owl. It also encourages children?s recognition of colors and shapes as well as the development of hand-eye coordination.", + "likes": 0, + "downloads": 1075, + "filesize": 7913585, + "upload_date": "2020-09-03T17:47:40Z", + "modify_date": "2020-09-18T20:09:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/OWL_SORTER/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:47:35Z", + "updatedAt": "2024-04-03T10:13:24Z", + "name": "OVAL_XYLOPHONE", + "owner": "GoogleResearch", + "description": "OVAL XYLOPHONE\nThis xylophone will help develop hand-eye coordination and reinforce children?s natural sense of harmony and rhythm.", + "likes": 0, + "downloads": 957, + "filesize": 9129771, + "upload_date": "2020-09-03T17:47:32Z", + "modify_date": "2020-09-18T20:09:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/OVAL_XYLOPHONE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:47:29Z", + "updatedAt": "2024-04-03T08:42:22Z", + "name": "Nips_Hard_Candy_Rich_Creamy_Butter_Rum_4_oz_1133_g", + "owner": "GoogleResearch", + "description": "Nips Hard Candy, Rich & Creamy, Butter Rum - 4 oz (113.3 g)\n30 Calories per piece. Value pack! Artificially flavored. Good to Remember: Reward yourself with a smooth indulgent treat. Good to Know: Each delicious piece has 30 calories! Enjoy the long-lasting, rich and creamy taste of Nips.", + "likes": 0, + "downloads": 1248, + "filesize": 14622608, + "upload_date": "2020-09-03T17:47:24Z", + "modify_date": "2020-09-18T20:09:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nips_Hard_Candy_Rich_Creamy_Butter_Rum_4_oz_1133_g/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:47:01Z", + "updatedAt": "2024-04-03T10:02:40Z", + "name": "Nintendo_Yoshi_Action_Figure", + "owner": "GoogleResearch", + "description": "Nintendo Yoshi Action Figure", + "likes": 0, + "downloads": 1046, + "filesize": 6364684, + "upload_date": "2020-09-03T17:46:58Z", + "modify_date": "2020-09-18T20:09:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nintendo_Yoshi_Action_Figure/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:46:52Z", + "updatedAt": "2024-04-03T08:34:32Z", + "name": "Nintendo_Wii_Party_U_with_Controller_Wii_U_Game", + "owner": "GoogleResearch", + "description": "Nintendo Wii Party U with Controller [Wii U Game]", + "likes": 0, + "downloads": 1201, + "filesize": 11097522, + "upload_date": "2020-09-03T17:46:48Z", + "modify_date": "2020-09-18T20:09:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nintendo_Wii_Party_U_with_Controller_Wii_U_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T17:46:45Z", + "updatedAt": "2024-04-03T10:02:10Z", + "name": "Nintendo_Mario_Action_Figure", + "owner": "GoogleResearch", + "description": "Nintendo Mario Action Figure", + "likes": 0, + "downloads": 1210, + "filesize": 6021335, + "upload_date": "2020-09-03T17:46:43Z", + "modify_date": "2020-09-18T20:09:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nintendo_Mario_Action_Figure/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:46:40Z", + "updatedAt": "2024-04-03T09:04:53Z", + "name": "Nintendo_2DS_Crimson_Red", + "owner": "GoogleResearch", + "description": "Nintendo 2DS? ? Crimson Red\nThe Best of Two Worlds. The Nintendo 2DS system brings the \npower of two systems together into a single, affordable package. Play all games?both Nintendo DS and Nintendo 3DS?in 2D. Connect with friends, other players, and wireless hotspots using the wireless StreetPass? and SpotPass? communication modes to unlock exclusive content for games and download other entertainment. From games to photos and beyond, Nintendo 2DS is the ultimate 2D gaming experience. \n\nNintendo 2DS is a 2D system that plays all Nintendo DS and Nintendo 3DS games. Nintendo 2DS is only capable of 2D display.", + "likes": 0, + "downloads": 1046, + "filesize": 5196863, + "upload_date": "2020-09-03T17:46:38Z", + "modify_date": "2020-09-18T20:09:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nintendo_2DS_Crimson_Red/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T17:46:30Z", + "updatedAt": "2024-04-03T09:04:43Z", + "name": "Nikon_1_AW1_w11275mm_Lens_Silver", + "owner": "GoogleResearch", + "description": "Nikon 1 AW1 w/11-27.5mm Lens (Silver)\nOne-Lens-Kit, Nikon 1 AW1 Camera Body, AN-N1000 Strap, UC-E15 USB Cable, EN-EL20 Rechargeable Li-ion Battery, MH-27 Battery Charger, BF-N2000 Body Cap, WP-O2000 O-Ring, PA-N1000 O-Ring Protector, ViewNX 2, Short Movie Creator CD, User's Manual, Reference Manual CD", + "likes": 0, + "downloads": 1221, + "filesize": 11901000, + "upload_date": "2020-09-03T17:46:27Z", + "modify_date": "2020-09-18T20:09:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nikon_1_AW1_w11275mm_Lens_Silver/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Camera" + ] + }, + { + "createdAt": "2020-09-03T17:46:24Z", + "updatedAt": "2024-04-03T10:13:15Z", + "name": "Nightmare_Before_Christmas_Collectors_Edition_Operation", + "owner": "GoogleResearch", + "description": "Nightmare Before Christmas Collector's Edition Operation", + "likes": 0, + "downloads": 1027, + "filesize": 18524724, + "upload_date": "2020-09-03T17:46:20Z", + "modify_date": "2020-09-18T20:09:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nightmare_Before_Christmas_Collectors_Edition_Operation/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T17:46:18Z", + "updatedAt": "2024-04-03T09:04:36Z", + "name": "Nickelodeon_The_Spongebob_Movie_PopAPart_Spongebob", + "owner": "GoogleResearch", + "description": "Nickelodeon The Spongebob Movie Pop-A-Part Spongebob", + "likes": 0, + "downloads": 1045, + "filesize": 9860157, + "upload_date": "2020-09-03T17:46:14Z", + "modify_date": "2020-09-18T20:09:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nickelodeon_The_Spongebob_Movie_PopAPart_Spongebob/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:46:05Z", + "updatedAt": "2024-04-03T19:02:38Z", + "name": "Nickelodeon_Teenage_Mutant_Ninja_Turtles_Raphael", + "owner": "GoogleResearch", + "description": "Nickelodeon Teenage Mutant Ninja Turtles Raphael", + "likes": 0, + "downloads": 1199, + "filesize": 9267784, + "upload_date": "2020-09-03T17:46:01Z", + "modify_date": "2020-09-18T20:09:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nickelodeon_Teenage_Mutant_Ninja_Turtles_Raphael/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-03T17:45:44Z", + "updatedAt": "2024-04-03T08:07:09Z", + "name": "Nickelodeon_Teenage_Mutant_Ninja_Turtles_Michelangelo", + "owner": "GoogleResearch", + "description": "Nickelodeon Teenage Mutant Ninja Turtles Michelangelo", + "likes": 0, + "downloads": 1143, + "filesize": 8792779, + "upload_date": "2020-09-03T17:45:41Z", + "modify_date": "2020-09-18T20:09:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nickelodeon_Teenage_Mutant_Ninja_Turtles_Michelangelo/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-03T17:45:38Z", + "updatedAt": "2024-04-03T08:34:17Z", + "name": "Nickelodeon_Teenage_Mutant_Ninja_Turtles_Leonardo", + "owner": "GoogleResearch", + "description": "Nickelodeon Teenage Mutant Ninja Turtles Leonardo", + "likes": 0, + "downloads": 1311, + "filesize": 8839504, + "upload_date": "2020-09-03T17:45:35Z", + "modify_date": "2020-09-18T20:09:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nickelodeon_Teenage_Mutant_Ninja_Turtles_Leonardo/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-03T17:45:17Z", + "updatedAt": "2024-04-03T10:13:04Z", + "name": "New_Super_Mario_BrosWii_Wii_Game", + "owner": "GoogleResearch", + "description": "New Super Mario Bros.Wii [Wii Game]", + "likes": 0, + "downloads": 1050, + "filesize": 11056192, + "upload_date": "2020-09-03T17:45:14Z", + "modify_date": "2020-09-18T20:09:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/New_Super_Mario_BrosWii_Wii_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T17:45:05Z", + "updatedAt": "2024-04-03T09:39:27Z", + "name": "Netgear_Nighthawk_X6_AC3200_TriBand_Gigabit_Wireless_Router", + "owner": "GoogleResearch", + "description": "Netgear Nighthawk X6 AC3200 Tri-Band Gigabit Wireless Router", + "likes": 0, + "downloads": 1210, + "filesize": 12722003, + "upload_date": "2020-09-03T17:45:01Z", + "modify_date": "2020-09-18T20:09:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Netgear_Nighthawk_X6_AC3200_TriBand_Gigabit_Wireless_Router/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:44:59Z", + "updatedAt": "2024-04-03T09:04:27Z", + "name": "Netgear_N750_Wireless_Dual_Band_Gigabit_Router", + "owner": "GoogleResearch", + "description": "Netgear N750 Wireless Dual Band Gigabit Router", + "likes": 0, + "downloads": 1094, + "filesize": 11399322, + "upload_date": "2020-09-03T17:44:53Z", + "modify_date": "2020-09-18T20:09:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Netgear_N750_Wireless_Dual_Band_Gigabit_Router/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:44:48Z", + "updatedAt": "2024-04-03T09:04:05Z", + "name": "Netgear_Ac1750_Router_Wireless_Dual_Band_Gigabit_Router", + "owner": "GoogleResearch", + "description": "Netgear Ac1750 Router Wireless Dual Band Gigabit Router", + "likes": 0, + "downloads": 1184, + "filesize": 11520927, + "upload_date": "2020-09-03T17:44:45Z", + "modify_date": "2020-09-18T20:09:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Netgear_Ac1750_Router_Wireless_Dual_Band_Gigabit_Router/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T17:44:42Z", + "updatedAt": "2024-04-03T08:42:15Z", + "name": "Nestle_Skinny_Cow_Dreamy_Clusters_Candy_Dark_Chocolate_6_pack_1_oz_pouches", + "owner": "GoogleResearch", + "description": "Nestle Skinny Cow Dreamy Clusters Candy, Dark Chocolate - 6 pack, 1 oz pouches", + "likes": 0, + "downloads": 1154, + "filesize": 11762531, + "upload_date": "2020-09-03T17:44:39Z", + "modify_date": "2020-09-18T20:09:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nestle_Skinny_Cow_Dreamy_Clusters_Candy_Dark_Chocolate_6_pack_1_oz_pouches/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:44:36Z", + "updatedAt": "2024-04-03T09:44:45Z", + "name": "Nestle_Raisinets_Milk_Chocolate_35_oz_992_g", + "owner": "GoogleResearch", + "description": "Nestle Raisinets, Milk Chocolate - 3.5 oz (99.2 g)\nNestle Classic milk chocolate California raisins. Natural source of fruit antioxidants. 30% less fat than the leading chocolate brands. Chocolate covered sunshine. 8 g fat vs 11.4 g fat (average) of the leading chocolate brands. Good food, good life. Good to connect. Gluten free.", + "likes": 0, + "downloads": 1042, + "filesize": 16709993, + "upload_date": "2020-09-03T17:44:32Z", + "modify_date": "2020-09-18T20:09:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nestle_Raisinets_Milk_Chocolate_35_oz_992_g/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:44:06Z", + "updatedAt": "2024-04-03T10:12:53Z", + "name": "Nestle_Pure_Life_Exotics_Sparkling_Water_Strawberry_Dragon_Fruit_8_count_12_fl_oz_can_aX0ygjh3bxi", + "owner": "GoogleResearch", + "description": "Nestle Pure Life Exotics Sparkling Water, Strawberry Dragon Fruit - 8 count, 12 fl oz can", + "likes": 0, + "downloads": 964, + "filesize": 17891422, + "upload_date": "2020-09-03T17:44:02Z", + "modify_date": "2020-09-18T20:09:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nestle_Pure_Life_Exotics_Sparkling_Water_Strawberry_Dragon_Fruit_8_count_12_fl_oz_can_aX0ygjh3bxi/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:44:00Z", + "updatedAt": "2024-04-03T08:14:01Z", + "name": "Nestle_Pure_Life_Exotics_Sparkling_Water_Strawberry_Dragon_Fruit_8_count_12_fl_oz_can", + "owner": "GoogleResearch", + "description": "Nestle Pure Life Exotics Sparkling Water, Strawberry Dragon Fruit - 8 count, 12 fl oz can", + "likes": 0, + "downloads": 1377, + "filesize": 16744656, + "upload_date": "2020-09-03T17:43:56Z", + "modify_date": "2020-09-18T20:09:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nestle_Pure_Life_Exotics_Sparkling_Water_Strawberry_Dragon_Fruit_8_count_12_fl_oz_can/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:43:53Z", + "updatedAt": "2024-04-03T10:12:44Z", + "name": "Nestle_Nips_Hard_Candy_Peanut_Butter", + "owner": "GoogleResearch", + "description": "Nestle Nips Hard Candy Peanut Butter", + "likes": 0, + "downloads": 970, + "filesize": 17941480, + "upload_date": "2020-09-03T17:43:49Z", + "modify_date": "2020-09-18T20:09:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nestle_Nips_Hard_Candy_Peanut_Butter/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:43:46Z", + "updatedAt": "2024-04-03T07:41:15Z", + "name": "Nestle_Nesquik_Chocolate_Powder_Flavored_Milk_Additive_109_Oz_Canister", + "owner": "GoogleResearch", + "description": "Nestle Nesquik Chocolate Powder Flavored Milk Additive 10.9 Oz Canister\n25% less sugar than the leading syrup brand (13 g vs. 20 g sugar/svg in the leading syrup brand. This product contains 25 g of sugar when mixed with 1 cup of milk). 19 servings. Good to compare: 8 fl oz beverage: Nesquik, 25 g total sugars (sugar content is based on mixing Nesquik and the leading syrup brand with 1% milk. Milk contributes 12 g of sugar), 40% DV calcium (percent represents daily value), no high fructose corn syrup; leading chocolate syrup brand (sugar content is based on mixing Nesquik and the leading syrup brand with 1% milk. Milk contributes 12 g of sugar), 32 g total sugars (sugar content is based on mixing Nesquik and the leading syrup brand with 1% milk. Milk contributes 12 g of sugar), 30-40% DV calcium (percent represents daily value), yes high fructose corn syrup; leading juice drinks for kids (average sugar level of kids' juice drink brands. If you compare to 6.75 fl oz of juice drink vs. 6.75 fl oz of Nesquik in milk, the sugar levels are 25 g sugar vs. 21 g respectively), 30 g total sugars (sugar content is based on mixing Nesquik and the leading syrup brand with 1% milk. Milk contributes 12 g of sugar), 0-15% DV calcium (percent represents daily value), yes high fructose corn syrup. Good for active play: Nesquik when mixed with 1 cup lowfat milk is filled with protein, carbs & happiness - to help build strong bodies & fuel active minds. Contains no artificial sweeteners. 99.9% caffeine free.", + "likes": 0, + "downloads": 951, + "filesize": 8145693, + "upload_date": "2020-09-03T17:43:43Z", + "modify_date": "2020-09-18T20:09:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nestle_Nesquik_Chocolate_Powder_Flavored_Milk_Additive_109_Oz_Canister/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:43:31Z", + "updatedAt": "2024-04-03T10:12:33Z", + "name": "Nestle_Carnation_Cinnamon_Coffeecake_Kit_1913OZ", + "owner": "GoogleResearch", + "description": "Nestle Carnation Cinnamon Coffeecake Kit 19.13OZ", + "likes": 0, + "downloads": 1036, + "filesize": 12461326, + "upload_date": "2020-09-03T17:43:28Z", + "modify_date": "2020-09-18T20:09:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nestle_Carnation_Cinnamon_Coffeecake_Kit_1913OZ/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:43:25Z", + "updatedAt": "2024-04-03T08:34:09Z", + "name": "Nestle_Candy_19_oz_Butterfinger_Singles_116567", + "owner": "GoogleResearch", + "description": "Nestle Candy 1.9 oz. Butterfinger Singles 116567", + "likes": 0, + "downloads": 1158, + "filesize": 7035824, + "upload_date": "2020-09-03T17:43:22Z", + "modify_date": "2020-09-18T20:09:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nestle_Candy_19_oz_Butterfinger_Singles_116567/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:43:11Z", + "updatedAt": "2024-04-03T09:13:42Z", + "name": "Nestl_Skinny_Cow_Heavenly_Crisp_Candy_Bar_Chocolate_Raspberry_6_pack_462_oz_total", + "owner": "GoogleResearch", + "description": "Nestl? Skinny Cow Heavenly Crisp Candy Bar ,Chocolate Raspberry - 6 pack, 4.62 oz total", + "likes": 0, + "downloads": 1131, + "filesize": 14301154, + "upload_date": "2020-09-03T17:43:07Z", + "modify_date": "2020-09-18T20:09:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nestl_Skinny_Cow_Heavenly_Crisp_Candy_Bar_Chocolate_Raspberry_6_pack_462_oz_total/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:43:05Z", + "updatedAt": "2024-04-03T09:44:36Z", + "name": "Nestl_Crunch_Girl_Scouts_Cookie_Flavors_Caramel_Coconut_78_oz_box", + "owner": "GoogleResearch", + "description": "Nestl? Crunch Girl Scouts Cookie Flavors, Caramel & Coconut - 7.8 oz box", + "likes": 0, + "downloads": 1052, + "filesize": 14398951, + "upload_date": "2020-09-03T17:43:00Z", + "modify_date": "2020-09-18T20:09:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nestl_Crunch_Girl_Scouts_Cookie_Flavors_Caramel_Coconut_78_oz_box/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:42:58Z", + "updatedAt": "2024-04-03T08:07:04Z", + "name": "Nescafe_Tasters_Choice_Instant_Coffee_Decaf_House_Blend_Light_7_oz", + "owner": "GoogleResearch", + "description": "Nescafe Taster's Choice Instant Coffee, Decaf House Blend, Light - 7 oz", + "likes": 0, + "downloads": 1188, + "filesize": 8463540, + "upload_date": "2020-09-03T17:42:55Z", + "modify_date": "2020-09-18T20:09:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nescafe_Tasters_Choice_Instant_Coffee_Decaf_House_Blend_Light_7_oz/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:42:42Z", + "updatedAt": "2024-04-03T09:44:26Z", + "name": "Nescafe_Momento_Mocha_Specialty_Coffee_Mix_8_ct", + "owner": "GoogleResearch", + "description": "Nescafe Momento Mocha Specialty Coffee Mix 8 ct", + "likes": 0, + "downloads": 1054, + "filesize": 12861517, + "upload_date": "2020-09-03T17:42:38Z", + "modify_date": "2020-09-18T20:09:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nescafe_Momento_Mocha_Specialty_Coffee_Mix_8_ct/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:42:35Z", + "updatedAt": "2024-04-03T08:42:09Z", + "name": "Nescafe_Memento_Latte_Caramel_8_08_oz_23_g_packets_64_oz_184_g", + "owner": "GoogleResearch", + "description": "Nescafe Memento Latte, Caramel - 8 - 0.8 oz (23 g) packets [6.4 oz (184 g)]\nSpecialty coffee beverage. Good food, good life. Good Question: How can I get coffeehouse quality foam that lasts until the final sip? Good to Know: By using real nonfat milk infused with airy bubbles NesCafe Memento brings you the frothy, foamy goodness you love. Natural source of antioxidants. 269 mg of antioxidants per serving. Product of Mexico.", + "likes": 0, + "downloads": 1175, + "filesize": 12431757, + "upload_date": "2020-09-03T17:42:32Z", + "modify_date": "2020-09-18T20:09:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nescafe_Memento_Latte_Caramel_8_08_oz_23_g_packets_64_oz_184_g/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:42:29Z", + "updatedAt": "2024-04-03T08:42:02Z", + "name": "Nescafe_16Count_Dolce_Gusto_Cappuccino_Capsules", + "owner": "GoogleResearch", + "description": "Nescafe 16-Count Dolce Gusto Cappuccino Capsules", + "likes": 0, + "downloads": 1176, + "filesize": 8811916, + "upload_date": "2020-09-03T17:42:26Z", + "modify_date": "2020-09-18T20:09:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Nescafe_16Count_Dolce_Gusto_Cappuccino_Capsules/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:42:24Z", + "updatedAt": "2024-04-04T00:49:35Z", + "name": "NattoMax", + "owner": "GoogleResearch", + "description": "NattoMax", + "likes": 0, + "downloads": 1158, + "filesize": 6359547, + "upload_date": "2020-09-03T17:42:21Z", + "modify_date": "2020-09-18T20:09:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/NattoMax/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:42:02Z", + "updatedAt": "2024-04-03T09:03:56Z", + "name": "NUTS_BOLTS", + "owner": "GoogleResearch", + "description": "NUTS & BOLTS\nEncourage children to create forms and imaginary figures. Children will have fun assembling and reassembling the nuts and bolts transforming them into various mixes and matches.", + "likes": 0, + "downloads": 1049, + "filesize": 9813099, + "upload_date": "2020-09-03T17:41:58Z", + "modify_date": "2020-09-18T20:09:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/NUTS_BOLTS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:41:30Z", + "updatedAt": "2024-04-03T10:12:23Z", + "name": "NESCAFE_NESCAFE_TC_STKS_DECAF_6_CT", + "owner": "GoogleResearch", + "description": "NESCAFE NESCAFE TC STKS DECAF 6 CT", + "likes": 0, + "downloads": 1086, + "filesize": 13764582, + "upload_date": "2020-09-03T17:41:27Z", + "modify_date": "2020-09-18T20:09:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/NESCAFE_NESCAFE_TC_STKS_DECAF_6_CT/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:41:24Z", + "updatedAt": "2024-04-03T07:41:02Z", + "name": "NAPA_VALLEY_NAVAJO_SANDAL", + "owner": "GoogleResearch", + "description": "NAPA VALLEY NAVAJO SANDAL\nJack Rogers signature flat sandal", + "likes": 0, + "downloads": 925, + "filesize": 6566664, + "upload_date": "2020-09-03T17:41:22Z", + "modify_date": "2020-09-18T20:09:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/NAPA_VALLEY_NAVAJO_SANDAL/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:41:17Z", + "updatedAt": "2024-04-03T10:12:13Z", + "name": "My_Monopoly_Board_Game", + "owner": "GoogleResearch", + "description": "My Monopoly Board Game", + "likes": 0, + "downloads": 1117, + "filesize": 16571908, + "upload_date": "2020-09-03T17:41:13Z", + "modify_date": "2020-09-18T20:09:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/My_Monopoly_Board_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T17:40:22Z", + "updatedAt": "2024-04-04T02:33:11Z", + "name": "My_Little_Pony_Princess_Celestia", + "owner": "GoogleResearch", + "description": "My Little Pony Princess Celestia", + "likes": 0, + "downloads": 5140, + "filesize": 11593251, + "upload_date": "2020-09-03T17:40:19Z", + "modify_date": "2020-09-18T20:09:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/My_Little_Pony_Princess_Celestia/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:40:15Z", + "updatedAt": "2024-04-03T09:39:21Z", + "name": "My_First_Wiggle_Crocodile", + "owner": "GoogleResearch", + "description": "My First Wiggle Crocodile", + "likes": 0, + "downloads": 1010, + "filesize": 10282216, + "upload_date": "2020-09-03T17:40:12Z", + "modify_date": "2020-09-18T20:09:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/My_First_Wiggle_Crocodile/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:40:09Z", + "updatedAt": "2024-04-03T19:02:41Z", + "name": "My_First_Rolling_Lion", + "owner": "GoogleResearch", + "description": "My First Rolling Lion", + "likes": 0, + "downloads": 1244, + "filesize": 10742939, + "upload_date": "2020-09-03T17:40:06Z", + "modify_date": "2020-09-18T20:09:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/My_First_Rolling_Lion/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:40:04Z", + "updatedAt": "2024-04-03T09:39:08Z", + "name": "My_First_Animal_Tower", + "owner": "GoogleResearch", + "description": "My First Animal Tower", + "likes": 0, + "downloads": 978, + "filesize": 8108837, + "upload_date": "2020-09-03T17:40:01Z", + "modify_date": "2020-09-18T20:09:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/My_First_Animal_Tower/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:39:52Z", + "updatedAt": "2024-04-03T08:06:46Z", + "name": "Mist_Wipe_Warmer", + "owner": "GoogleResearch", + "description": "Mist Wipe Warmer", + "likes": 0, + "downloads": 1213, + "filesize": 10531961, + "upload_date": "2020-09-03T17:39:49Z", + "modify_date": "2020-09-18T20:09:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mist_Wipe_Warmer/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T17:39:46Z", + "updatedAt": "2024-04-03T09:03:44Z", + "name": "Metallic_Pewter_Tieks_Italian_Leather_Ballet_Flats", + "owner": "GoogleResearch", + "description": "Metallic Pewter Tieks - Italian Leather Ballet Flats\nThese striking, Metallic Pewter ballet flats can jazz up an evening ensemble or add subtle flash to your everyday look. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 1092, + "filesize": 7282557, + "upload_date": "2020-09-03T17:39:44Z", + "modify_date": "2020-09-18T20:09:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Metallic_Pewter_Tieks_Italian_Leather_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:39:35Z", + "updatedAt": "2024-04-03T09:39:02Z", + "name": "Metallic_Gold_Tieks_Italian_Leather_Ballet_Flats", + "owner": "GoogleResearch", + "description": "Metallic Gold Tieks - Italian Leather Ballet Flats\nA softly stunning ballet flat, Metallic Gold Tieks are a basic for any season. Wear these with a fancy dress, or add a fun flash to your everyday look. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 942, + "filesize": 7106600, + "upload_date": "2020-09-03T17:39:32Z", + "modify_date": "2020-09-18T20:09:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Metallic_Gold_Tieks_Italian_Leather_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:38:58Z", + "updatedAt": "2024-04-03T09:38:52Z", + "name": "Mens_Wave_Driver_Kiltie_Moc_in_Tan_Leather", + "owner": "GoogleResearch", + "description": "Men's Wave Driver Kiltie Moc in Tan Leather\nMen's Wave Driver Kiltie Moc", + "likes": 0, + "downloads": 1009, + "filesize": 6494474, + "upload_date": "2020-09-03T17:38:55Z", + "modify_date": "2020-09-18T20:09:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Wave_Driver_Kiltie_Moc_in_Tan_Leather/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:38:52Z", + "updatedAt": "2024-04-03T08:06:15Z", + "name": "Mens_Tremont_Kiltie_Tassel_Loafer_in_Black_Amaretto_rCdzRZqgCnI", + "owner": "GoogleResearch", + "description": "Men's Tremont Kiltie Tassel Loafer in Black Amaretto\nMen's Tremont Kiltie Tassel Loafer", + "likes": 0, + "downloads": 1182, + "filesize": 6539973, + "upload_date": "2020-09-03T17:38:49Z", + "modify_date": "2020-09-18T20:09:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Tremont_Kiltie_Tassel_Loafer_in_Black_Amaretto_rCdzRZqgCnI/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:38:30Z", + "updatedAt": "2024-04-03T09:38:46Z", + "name": "Mens_Tremont_Kiltie_Tassel_Loafer_in_Black_Amaretto_FT0I9OjSA6O", + "owner": "GoogleResearch", + "description": "Men's Tremont Kiltie Tassel Loafer in Black Amaretto\nMen's Tremont Kiltie Tassel Loafer", + "likes": 0, + "downloads": 943, + "filesize": 8867061, + "upload_date": "2020-09-03T17:38:27Z", + "modify_date": "2020-09-18T20:09:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Tremont_Kiltie_Tassel_Loafer_in_Black_Amaretto_FT0I9OjSA6O/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:38:24Z", + "updatedAt": "2024-04-03T08:06:08Z", + "name": "Mens_Tremont_Kiltie_Tassel_Loafer_in_Black_Amaretto", + "owner": "GoogleResearch", + "description": "Men's Tremont Kiltie Tassel Loafer in Black Amaretto\nMen's Tremont Kiltie Tassel Loafer", + "likes": 0, + "downloads": 1143, + "filesize": 7100322, + "upload_date": "2020-09-03T17:38:21Z", + "modify_date": "2020-09-18T20:09:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Tremont_Kiltie_Tassel_Loafer_in_Black_Amaretto/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:38:04Z", + "updatedAt": "2024-04-03T08:06:00Z", + "name": "Mens_Striper_Sneaker_in_White_rnp8HUli59Y", + "owner": "GoogleResearch", + "description": "Men's Striper Sneaker in White\nMen's Striper Sneaker", + "likes": 0, + "downloads": 1152, + "filesize": 6217844, + "upload_date": "2020-09-03T17:38:01Z", + "modify_date": "2020-09-18T20:09:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Striper_Sneaker_in_White_rnp8HUli59Y/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:37:00Z", + "updatedAt": "2024-04-03T10:02:01Z", + "name": "Mens_Santa_Cruz_Thong_in_Tan_r59C69daRPh", + "owner": "GoogleResearch", + "description": "Men's Santa Cruz Thong in Tan\nMen's Santa Cruz Thong", + "likes": 0, + "downloads": 1017, + "filesize": 5875495, + "upload_date": "2020-09-03T17:36:58Z", + "modify_date": "2020-09-18T20:09:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Santa_Cruz_Thong_in_Tan_r59C69daRPh/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:35:24Z", + "updatedAt": "2024-04-03T09:38:38Z", + "name": "Mens_Santa_Cruz_Thong_in_Chocolate_lvxYW7lek6B", + "owner": "GoogleResearch", + "description": "Men's Santa Cruz Thong in Chocolate\nMen's Santa Cruz Thong", + "likes": 0, + "downloads": 951, + "filesize": 5755461, + "upload_date": "2020-09-03T17:35:21Z", + "modify_date": "2020-09-18T20:09:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Santa_Cruz_Thong_in_Chocolate_lvxYW7lek6B/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:35:14Z", + "updatedAt": "2024-04-03T10:01:55Z", + "name": "Mens_Santa_Cruz_Thong_in_Chocolate_La1fo2mAovE", + "owner": "GoogleResearch", + "description": "Men's Santa Cruz Thong in Chocolate\nMen's Santa Cruz Thong", + "likes": 0, + "downloads": 1022, + "filesize": 5690687, + "upload_date": "2020-09-03T17:35:11Z", + "modify_date": "2020-09-18T20:09:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Santa_Cruz_Thong_in_Chocolate_La1fo2mAovE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:34:46Z", + "updatedAt": "2024-04-03T09:38:29Z", + "name": "Mens_RR_Moc_in_Navy_Suede_vmFfijhBzL3", + "owner": "GoogleResearch", + "description": "Men's R&R Moc in Navy Suede\nMen's R&R Moc", + "likes": 0, + "downloads": 945, + "filesize": 7116703, + "upload_date": "2020-09-03T17:34:43Z", + "modify_date": "2020-09-18T20:09:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_RR_Moc_in_Navy_Suede_vmFfijhBzL3/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:33:12Z", + "updatedAt": "2024-04-03T09:38:21Z", + "name": "Mens_Mako_Canoe_Moc_2Eye_Boat_Shoe_in_OysterTaupe_otyRrfvPMiA", + "owner": "GoogleResearch", + "description": "Men's Mako Canoe Moc 2-Eye Boat Shoe in Oyster/Taupe\nMen's Mako Canoe Moc 2-Eye Boat Shoe", + "likes": 0, + "downloads": 957, + "filesize": 8937017, + "upload_date": "2020-09-03T17:33:09Z", + "modify_date": "2020-09-18T20:09:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Mako_Canoe_Moc_2Eye_Boat_Shoe_in_OysterTaupe_otyRrfvPMiA/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:32:01Z", + "updatedAt": "2024-04-03T08:33:27Z", + "name": "Mens_Mako_Canoe_Moc_2Eye_Boat_Shoe_in_Coffee_K9e8FoV73uZ", + "owner": "GoogleResearch", + "description": "Men's Mako Canoe Moc 2-Eye Boat Shoe in Coffee\nMen's Mako Canoe Moc 2-Eye Boat Shoe", + "likes": 0, + "downloads": 1132, + "filesize": 3869207, + "upload_date": "2020-09-03T17:31:59Z", + "modify_date": "2020-09-18T20:09:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Mako_Canoe_Moc_2Eye_Boat_Shoe_in_Coffee_K9e8FoV73uZ/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:31:03Z", + "updatedAt": "2024-04-03T09:03:36Z", + "name": "Mens_Mako_Canoe_Moc_2Eye_Boat_Shoe_in_Coffee_9d05GG33QQQ", + "owner": "GoogleResearch", + "description": "Men's Mako Canoe Moc 2-Eye Boat Shoe in Coffee\nMen's Mako Canoe Moc 2-Eye Boat Shoe", + "likes": 0, + "downloads": 1119, + "filesize": 7565758, + "upload_date": "2020-09-03T17:31:00Z", + "modify_date": "2020-09-18T20:09:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Mako_Canoe_Moc_2Eye_Boat_Shoe_in_Coffee_9d05GG33QQQ/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:30:14Z", + "updatedAt": "2024-04-03T09:38:13Z", + "name": "Mens_Largo_Slip_On_in_Taupe_gooyS417q4R", + "owner": "GoogleResearch", + "description": "Men's Largo Slip On in Taupe\nMen's Largo Slip On", + "likes": 0, + "downloads": 1079, + "filesize": 8943879, + "upload_date": "2020-09-03T17:30:11Z", + "modify_date": "2020-09-18T20:09:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Largo_Slip_On_in_Taupe_gooyS417q4R/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:28:28Z", + "updatedAt": "2024-04-03T08:33:21Z", + "name": "Mens_Gold_Cup_ASV_Dress_Casual_Venetian_in_Dark_Brown_Leather", + "owner": "GoogleResearch", + "description": "Men's Gold Cup ASV Dress Casual Venetian in Dark Brown Leather\nMen's Gold Cup ASV Dress Casual Venetian", + "likes": 0, + "downloads": 1168, + "filesize": 6809858, + "upload_date": "2020-09-03T17:28:25Z", + "modify_date": "2020-09-18T20:09:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Gold_Cup_ASV_Dress_Casual_Venetian_in_Dark_Brown_Leather/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:28:22Z", + "updatedAt": "2024-04-03T09:38:06Z", + "name": "Mens_Gold_Cup_ASV_Capetown_Penny_Loafer_in_Black_GkQBKqABeQN", + "owner": "GoogleResearch", + "description": "Men's Gold Cup ASV Capetown Penny Loafer in Black\nMen's Gold Cup ASV Capetown Penny Loafer", + "likes": 0, + "downloads": 942, + "filesize": 5943061, + "upload_date": "2020-09-03T17:28:19Z", + "modify_date": "2020-09-18T20:09:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Gold_Cup_ASV_Capetown_Penny_Loafer_in_Black_GkQBKqABeQN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:28:17Z", + "updatedAt": "2024-04-03T09:37:58Z", + "name": "Mens_Gold_Cup_ASV_Capetown_Penny_Loafer_in_Black_EjPnk3E8fCs", + "owner": "GoogleResearch", + "description": "Men's Gold Cup ASV Capetown Penny Loafer in Black\nMen's Gold Cup ASV Capetown Penny Loafer", + "likes": 0, + "downloads": 943, + "filesize": 7991667, + "upload_date": "2020-09-03T17:28:13Z", + "modify_date": "2020-09-18T20:09:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Gold_Cup_ASV_Capetown_Penny_Loafer_in_Black_EjPnk3E8fCs/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:28:06Z", + "updatedAt": "2024-04-03T09:37:53Z", + "name": "Mens_Gold_Cup_ASV_2Eye_Boat_Shoe_in_Cognac_Leather", + "owner": "GoogleResearch", + "description": "Men's Gold Cup ASV 2-Eye Boat Shoe in Cognac Leather\nMen's Gold Cup ASV 2-Eye Boat Shoe", + "likes": 0, + "downloads": 941, + "filesize": 5374796, + "upload_date": "2020-09-03T17:28:03Z", + "modify_date": "2020-09-18T20:09:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Gold_Cup_ASV_2Eye_Boat_Shoe_in_Cognac_Leather/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:27:37Z", + "updatedAt": "2024-04-03T10:01:50Z", + "name": "Mens_Billfish_Ultra_Lite_Boat_Shoe_in_Dark_Brown_Blue_c6zDZTtRJr6", + "owner": "GoogleResearch", + "description": "Men's Billfish Ultra Lite Boat Shoe in Dark Brown / Blue\nMen's Billfish Ultra Lite Boat Shoe", + "likes": 0, + "downloads": 1002, + "filesize": 6633401, + "upload_date": "2020-09-03T17:27:34Z", + "modify_date": "2020-09-18T20:09:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Billfish_Ultra_Lite_Boat_Shoe_in_Dark_Brown_Blue_c6zDZTtRJr6/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:26:06Z", + "updatedAt": "2024-04-03T08:33:13Z", + "name": "Mens_Billfish_Slip_On_in_Tan_Beige_aaVUk0tNTv8", + "owner": "GoogleResearch", + "description": "Men's Billfish Slip On in Tan Beige\nMen's Billfish Slip On", + "likes": 0, + "downloads": 1138, + "filesize": 8359493, + "upload_date": "2020-09-03T17:26:03Z", + "modify_date": "2020-09-18T20:09:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Billfish_Slip_On_in_Tan_Beige_aaVUk0tNTv8/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:25:50Z", + "updatedAt": "2024-04-03T08:33:06Z", + "name": "Mens_Billfish_Slip_On_in_Coffee_nK6AJJAHOae", + "owner": "GoogleResearch", + "description": "Men's Billfish Slip On in Coffee\nMen's Billfish Slip On", + "likes": 0, + "downloads": 1139, + "filesize": 7185575, + "upload_date": "2020-09-03T17:25:47Z", + "modify_date": "2020-09-18T20:09:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Billfish_Slip_On_in_Coffee_nK6AJJAHOae/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:25:44Z", + "updatedAt": "2024-04-03T08:05:54Z", + "name": "Mens_Billfish_Slip_On_in_Coffee_e8bPKE9Lfgo", + "owner": "GoogleResearch", + "description": "Men's Billfish Slip On in Coffee\nMen's Billfish Slip On", + "likes": 0, + "downloads": 1187, + "filesize": 6804002, + "upload_date": "2020-09-03T17:25:41Z", + "modify_date": "2020-09-18T20:09:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Billfish_Slip_On_in_Coffee_e8bPKE9Lfgo/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:25:01Z", + "updatedAt": "2024-04-03T08:32:56Z", + "name": "Mens_Billfish_3Eye_Boat_Shoe_in_Dark_Tan_wyns9HRcEuH", + "owner": "GoogleResearch", + "description": "Men's Billfish 3-Eye Boat Shoe in Dark Tan\nMen's Billfish 3-Eye Boat Shoe", + "likes": 0, + "downloads": 1179, + "filesize": 7042511, + "upload_date": "2020-09-03T17:24:58Z", + "modify_date": "2020-09-18T20:09:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Billfish_3Eye_Boat_Shoe_in_Dark_Tan_wyns9HRcEuH/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:22:36Z", + "updatedAt": "2024-04-03T08:32:49Z", + "name": "Mens_Bahama_in_White_vSwvGMCo32f", + "owner": "GoogleResearch", + "description": "Men's Bahama in White\nMen's Bahama", + "likes": 0, + "downloads": 1214, + "filesize": 7652860, + "upload_date": "2020-09-03T17:22:33Z", + "modify_date": "2020-09-18T20:09:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Bahama_in_White_vSwvGMCo32f/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:21:14Z", + "updatedAt": "2024-04-03T09:03:25Z", + "name": "Mens_Bahama_in_Khaki_Oyster_xU2jeqYwhQJ", + "owner": "GoogleResearch", + "description": "Men's Bahama in Khaki Oyster\nMen's Bahama", + "likes": 0, + "downloads": 1059, + "filesize": 9519086, + "upload_date": "2020-09-03T17:21:11Z", + "modify_date": "2020-09-18T20:09:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Bahama_in_Khaki_Oyster_xU2jeqYwhQJ/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:20:11Z", + "updatedAt": "2024-04-03T09:03:17Z", + "name": "Mens_Bahama_in_Black_b4ADzYywRHl", + "owner": "GoogleResearch", + "description": "Men's Bahama in Black\nMen's Bahama", + "likes": 0, + "downloads": 1100, + "filesize": 8432962, + "upload_date": "2020-09-03T17:20:08Z", + "modify_date": "2020-09-18T20:09:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Bahama_in_Black_b4ADzYywRHl/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:19:30Z", + "updatedAt": "2024-04-03T08:05:49Z", + "name": "Mens_Authentic_Original_Boat_Shoe_in_Navy_Leather_xgoEcZtRNmH", + "owner": "GoogleResearch", + "description": "Men's Authentic Original Boat Shoe in Navy Leather\nMen's Authentic Original Boat Shoe", + "likes": 0, + "downloads": 1155, + "filesize": 9128287, + "upload_date": "2020-09-03T17:19:27Z", + "modify_date": "2020-09-18T20:09:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Authentic_Original_Boat_Shoe_in_Navy_Leather_xgoEcZtRNmH/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:19:25Z", + "updatedAt": "2024-04-03T08:32:42Z", + "name": "Mens_Authentic_Original_Boat_Shoe_in_Navy_Leather_RpT4GvUXRRP", + "owner": "GoogleResearch", + "description": "Men's Authentic Original Boat Shoe in Navy Leather\nMen's Authentic Original Boat Shoe", + "likes": 0, + "downloads": 1160, + "filesize": 5670678, + "upload_date": "2020-09-03T17:19:22Z", + "modify_date": "2020-09-18T20:09:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Authentic_Original_Boat_Shoe_in_Navy_Leather_RpT4GvUXRRP/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:19:00Z", + "updatedAt": "2024-04-03T09:03:00Z", + "name": "Mens_Authentic_Original_Boat_Shoe_in_Navy_Leather_NHHQddDLQys", + "owner": "GoogleResearch", + "description": "Men's Authentic Original Boat Shoe in Navy Leather\nMen's Authentic Original Boat Shoe", + "likes": 0, + "downloads": 1079, + "filesize": 6722193, + "upload_date": "2020-09-03T17:18:57Z", + "modify_date": "2020-09-18T20:09:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_Authentic_Original_Boat_Shoe_in_Navy_Leather_NHHQddDLQys/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:18:49Z", + "updatedAt": "2024-04-03T08:32:33Z", + "name": "Mens_ASV_Shock_Light_Bungee_in_Light_Grey_xGCOvtLDnQJ", + "owner": "GoogleResearch", + "description": "Men's ASV Shock Light Bungee in Light Grey\nMen's ASV Shock Light Bungee", + "likes": 0, + "downloads": 1174, + "filesize": 8992849, + "upload_date": "2020-09-03T17:18:46Z", + "modify_date": "2020-09-18T20:09:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_ASV_Shock_Light_Bungee_in_Light_Grey_xGCOvtLDnQJ/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:17:18Z", + "updatedAt": "2024-04-03T08:32:28Z", + "name": "Mens_ASV_Billfish_Boat_Shoe_in_Tan_Leather_wmUJ5PbwANc", + "owner": "GoogleResearch", + "description": "Men's ASV Billfish Boat Shoe in Tan Leather\nMen's ASV Billfish Boat Shoe", + "likes": 0, + "downloads": 1167, + "filesize": 7251776, + "upload_date": "2020-09-03T17:17:15Z", + "modify_date": "2020-09-18T20:09:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_ASV_Billfish_Boat_Shoe_in_Tan_Leather_wmUJ5PbwANc/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:15:12Z", + "updatedAt": "2024-04-03T08:05:44Z", + "name": "Mens_ASV_Billfish_Boat_Shoe_in_Dark_Brown_Leather_zdHVHXueI3w", + "owner": "GoogleResearch", + "description": "Men's ASV Billfish Boat Shoe in Dark Brown Leather\nMen's ASV Billfish Boat Shoe", + "likes": 0, + "downloads": 1238, + "filesize": 9064652, + "upload_date": "2020-09-03T17:15:08Z", + "modify_date": "2020-09-18T20:09:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mens_ASV_Billfish_Boat_Shoe_in_Dark_Brown_Leather_zdHVHXueI3w/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:14:22Z", + "updatedAt": "2024-04-03T08:32:19Z", + "name": "Melissa_Doug_Traffic_Signs_and_Vehicles", + "owner": "GoogleResearch", + "description": "Melissa & Doug Traffic Signs and Vehicles", + "likes": 0, + "downloads": 1200, + "filesize": 8035674, + "upload_date": "2020-09-03T17:14:19Z", + "modify_date": "2020-09-18T20:09:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Melissa_Doug_Traffic_Signs_and_Vehicles/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:14:17Z", + "updatedAt": "2024-04-03T09:37:46Z", + "name": "Melissa_Doug_Shape_Sorting_Clock", + "owner": "GoogleResearch", + "description": "Melissa & Doug Shape Sorting Clock", + "likes": 0, + "downloads": 925, + "filesize": 7048301, + "upload_date": "2020-09-03T17:14:14Z", + "modify_date": "2020-09-18T20:09:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Melissa_Doug_Shape_Sorting_Clock/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T17:14:11Z", + "updatedAt": "2024-04-03T08:31:57Z", + "name": "Melissa_Doug_See_Spell", + "owner": "GoogleResearch", + "description": "Melissa & Doug See & Spell", + "likes": 0, + "downloads": 1300, + "filesize": 12205493, + "upload_date": "2020-09-03T17:14:08Z", + "modify_date": "2020-09-18T20:09:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Melissa_Doug_See_Spell/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:14:05Z", + "updatedAt": "2024-04-03T08:05:39Z", + "name": "Melissa_Doug_Pound_and_Roll", + "owner": "GoogleResearch", + "description": "Melissa & Doug Pound and Roll", + "likes": 0, + "downloads": 1167, + "filesize": 6801940, + "upload_date": "2020-09-03T17:14:03Z", + "modify_date": "2020-09-18T20:09:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Melissa_Doug_Pound_and_Roll/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:14:00Z", + "updatedAt": "2024-04-03T09:02:52Z", + "name": "Melissa_Doug_Pattern_Blocks_and_Boards", + "owner": "GoogleResearch", + "description": "Melissa & Doug Pattern Blocks and Boards", + "likes": 0, + "downloads": 1103, + "filesize": 6902229, + "upload_date": "2020-09-03T17:13:57Z", + "modify_date": "2020-09-18T20:09:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Melissa_Doug_Pattern_Blocks_and_Boards/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:13:55Z", + "updatedAt": "2024-04-03T08:31:51Z", + "name": "Melissa_Doug_Jumbo_Knob_Puzzles_Barnyard_Animals", + "owner": "GoogleResearch", + "description": "Melissa & Doug Jumbo Knob Puzzles, Barnyard Animals", + "likes": 0, + "downloads": 1183, + "filesize": 10797003, + "upload_date": "2020-09-03T17:13:51Z", + "modify_date": "2020-09-18T20:09:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Melissa_Doug_Jumbo_Knob_Puzzles_Barnyard_Animals/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:13:49Z", + "updatedAt": "2024-04-03T08:05:34Z", + "name": "Melissa_Doug_Felt_Food_Pizza_Set", + "owner": "GoogleResearch", + "description": "Melissa & Doug Felt Food, Pizza Set", + "likes": 0, + "downloads": 1193, + "filesize": 8471031, + "upload_date": "2020-09-03T17:13:46Z", + "modify_date": "2020-09-18T20:09:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Melissa_Doug_Felt_Food_Pizza_Set/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T17:13:34Z", + "updatedAt": "2024-04-03T09:02:45Z", + "name": "Melissa_Doug_Chunky_Puzzle_Vehicles", + "owner": "GoogleResearch", + "description": "Melissa & Doug Chunky Puzzle Vehicles", + "likes": 0, + "downloads": 1107, + "filesize": 10328438, + "upload_date": "2020-09-03T17:13:31Z", + "modify_date": "2020-09-18T20:09:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Melissa_Doug_Chunky_Puzzle_Vehicles/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T17:13:28Z", + "updatedAt": "2024-04-03T08:31:44Z", + "name": "Melissa_Doug_Cart_Turtle_Block", + "owner": "GoogleResearch", + "description": "Melissa & Doug Cart, Turtle Block", + "likes": 0, + "downloads": 1171, + "filesize": 6455261, + "upload_date": "2020-09-03T17:13:25Z", + "modify_date": "2020-09-18T20:09:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Melissa_Doug_Cart_Turtle_Block/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T17:13:11Z", + "updatedAt": "2024-04-03T09:02:36Z", + "name": "Mattel_SKIP_BO_Card_Game", + "owner": "GoogleResearch", + "description": "Mattel SKIP BO Card Game", + "likes": 0, + "downloads": 1233, + "filesize": 16912513, + "upload_date": "2020-09-03T17:13:07Z", + "modify_date": "2020-09-18T20:09:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mattel_SKIP_BO_Card_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:13:04Z", + "updatedAt": "2024-04-03T10:01:43Z", + "name": "Matte_Black_Tieks_Italian_Leather_Ballet_Flats", + "owner": "GoogleResearch", + "description": "Matte Black Tieks - Italian Leather Ballet Flats\nThese black ballet flats are a wardrobe essential. Wear them with anything from skinny jeans to your favorite little black dress. Reminiscent of the classic elegance of Jackie O. and Audrey Hepburn, Matte Black Tieks are sure to polish off any look. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 918, + "filesize": 6434929, + "upload_date": "2020-09-03T17:13:01Z", + "modify_date": "2020-09-18T20:09:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Matte_Black_Tieks_Italian_Leather_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:12:58Z", + "updatedAt": "2024-04-03T09:37:38Z", + "name": "Mastic_Gum", + "owner": "GoogleResearch", + "description": "Mastic Gum", + "likes": 0, + "downloads": 934, + "filesize": 5852598, + "upload_date": "2020-09-03T17:12:56Z", + "modify_date": "2020-09-18T20:09:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mastic_Gum/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:12:53Z", + "updatedAt": "2024-04-03T08:05:29Z", + "name": "Marvel_Avengers_Titan_Hero_Series_Doctor_Doom", + "owner": "GoogleResearch", + "description": "Marvel Avengers Titan Hero Series, Doctor Doom", + "likes": 0, + "downloads": 1246, + "filesize": 13202684, + "upload_date": "2020-09-03T17:12:49Z", + "modify_date": "2020-09-18T20:09:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Marvel_Avengers_Titan_Hero_Series_Doctor_Doom/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-03T17:12:47Z", + "updatedAt": "2024-04-03T08:31:36Z", + "name": "Mario_Party_9_Wii_Game", + "owner": "GoogleResearch", + "description": "Mario Party 9 [Wii Game]", + "likes": 0, + "downloads": 1239, + "filesize": 12254649, + "upload_date": "2020-09-03T17:12:43Z", + "modify_date": "2020-09-18T20:09:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mario_Party_9_Wii_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T17:12:41Z", + "updatedAt": "2024-04-03T08:05:21Z", + "name": "Mario_Luigi_Dream_Team_Nintendo_3DS_Game", + "owner": "GoogleResearch", + "description": "Mario & Luigi: Dream Team [Nintendo 3DS Game]", + "likes": 0, + "downloads": 1194, + "filesize": 10005341, + "upload_date": "2020-09-03T17:12:38Z", + "modify_date": "2020-09-18T20:09:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mario_Luigi_Dream_Team_Nintendo_3DS_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T17:12:35Z", + "updatedAt": "2024-04-03T10:01:34Z", + "name": "Marc_Anthony_True_Professional_Strictly_Curls_Curl_Defining_Lotion", + "owner": "GoogleResearch", + "description": "Marc Anthony True Professional Strictly Curls Curl Defining Lotion", + "likes": 0, + "downloads": 996, + "filesize": 10464344, + "upload_date": "2020-09-03T17:12:32Z", + "modify_date": "2020-09-18T20:09:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Marc_Anthony_True_Professional_Strictly_Curls_Curl_Defining_Lotion/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:12:30Z", + "updatedAt": "2024-04-03T09:44:17Z", + "name": "Marc_Anthony_True_Professional_Oil_of_Morocco_Argan_Oil_Treatment", + "owner": "GoogleResearch", + "description": "Marc Anthony True Professional Oil of Morocco Argan Oil Treatment", + "likes": 0, + "downloads": 1052, + "filesize": 12157803, + "upload_date": "2020-09-03T17:12:26Z", + "modify_date": "2020-09-18T20:09:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Marc_Anthony_True_Professional_Oil_of_Morocco_Argan_Oil_Treatment/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:12:24Z", + "updatedAt": "2024-04-03T09:13:31Z", + "name": "Marc_Anthony_Strictly_Curls_Curl_Envy_Perfect_Curl_Cream_6_fl_oz_bottle", + "owner": "GoogleResearch", + "description": "Marc Anthony Strictly Curls Curl Envy Perfect Curl Cream - 6 fl oz bottle", + "likes": 0, + "downloads": 1112, + "filesize": 12581915, + "upload_date": "2020-09-03T17:12:20Z", + "modify_date": "2020-09-18T20:09:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Marc_Anthony_Strictly_Curls_Curl_Envy_Perfect_Curl_Cream_6_fl_oz_bottle/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:12:17Z", + "updatedAt": "2024-04-03T10:01:28Z", + "name": "Marc_Anthony_Skip_Professional_Oil_of_Morocco_Conditioner_with_Argan_Oil", + "owner": "GoogleResearch", + "description": "Marc Anthony Skip Professional Oil of Morocco Conditioner with Argan Oil", + "likes": 0, + "downloads": 930, + "filesize": 8587726, + "upload_date": "2020-09-03T17:12:14Z", + "modify_date": "2020-09-18T20:09:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Marc_Anthony_Skip_Professional_Oil_of_Morocco_Conditioner_with_Argan_Oil/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:11:51Z", + "updatedAt": "2024-04-03T08:05:14Z", + "name": "Mad_Gab_Refresh_Card_Game", + "owner": "GoogleResearch", + "description": "Mad Gab Refresh Card Game", + "likes": 0, + "downloads": 1188, + "filesize": 10317561, + "upload_date": "2020-09-03T17:11:48Z", + "modify_date": "2020-09-18T20:09:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Mad_Gab_Refresh_Card_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T17:11:45Z", + "updatedAt": "2024-04-03T10:12:07Z", + "name": "MOVING_MOUSE_PW_6PCSSET", + "owner": "GoogleResearch", + "description": "MOVING MOUSE (PW) - 6PCS/SET\nPropelled by a gear-box mechanism, the mouse can move forward when it is pulled backward and released.", + "likes": 0, + "downloads": 902, + "filesize": 10226714, + "upload_date": "2020-09-03T17:11:42Z", + "modify_date": "2020-09-18T20:09:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/MOVING_MOUSE_PW_6PCSSET/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:11:04Z", + "updatedAt": "2024-04-03T08:31:25Z", + "name": "MOSAIC", + "owner": "GoogleResearch", + "description": "MOSAIC\nSay it with a mosaic! The set includes 50 two-toned blocks and a two-sided guide that features animal patterns and other various patterns that children can replicate.", + "likes": 0, + "downloads": 1232, + "filesize": 12476827, + "upload_date": "2020-09-03T17:11:01Z", + "modify_date": "2020-09-18T20:09:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/MOSAIC/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:10:58Z", + "updatedAt": "2024-04-03T08:31:17Z", + "name": "MONKEY_BOWLING", + "owner": "GoogleResearch", + "description": "MONKEY BOWLING\nThis game features 5 funky monkey pins and a monkey ball. Knock as many of the pins down to win!", + "likes": 0, + "downloads": 1147, + "filesize": 9968701, + "upload_date": "2020-09-03T17:10:55Z", + "modify_date": "2020-09-18T20:09:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/MONKEY_BOWLING/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:10:52Z", + "updatedAt": "2024-04-03T19:02:46Z", + "name": "MODERN_DOLL_FAMILY", + "owner": "GoogleResearch", + "description": "MODERN DOLL FAMILY\nFashionably clothed dolls scaled to fit PlanDollhouse.", + "likes": 0, + "downloads": 1237, + "filesize": 12615872, + "upload_date": "2020-09-03T17:10:48Z", + "modify_date": "2020-09-18T20:09:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/MODERN_DOLL_FAMILY/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:10:12Z", + "updatedAt": "2024-04-03T07:40:50Z", + "name": "MK7", + "owner": "GoogleResearch", + "description": "MK-7", + "likes": 0, + "downloads": 918, + "filesize": 7439467, + "upload_date": "2020-09-03T17:10:09Z", + "modify_date": "2020-09-18T20:09:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/MK7/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:10:07Z", + "updatedAt": "2024-04-03T08:04:58Z", + "name": "MIRACLE_POUNDING", + "owner": "GoogleResearch", + "description": "MIRACLE POUNDING\nAs the ball is pounded with the wooden mallet, a new ball comes up to replace it. Great for developing hand-eye coordination.", + "likes": 0, + "downloads": 1138, + "filesize": 9339794, + "upload_date": "2020-09-03T17:10:03Z", + "modify_date": "2020-09-18T20:09:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/MIRACLE_POUNDING/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:10:01Z", + "updatedAt": "2024-04-03T08:04:51Z", + "name": "MINI_ROLLER", + "owner": "GoogleResearch", + "description": "MINI ROLLER\nFlatten out those bumps for a smooth ride! The roller on the front provides easy directional control.", + "likes": 0, + "downloads": 1265, + "filesize": 7067807, + "upload_date": "2020-09-03T17:09:58Z", + "modify_date": "2020-09-18T20:09:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/MINI_ROLLER/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:09:56Z", + "updatedAt": "2024-04-03T10:11:56Z", + "name": "MINI_FIRE_ENGINE", + "owner": "GoogleResearch", + "description": "MINI FIRE ENGINE\nThis fiery vehicle features a movable ladder and rotatable cab.", + "likes": 0, + "downloads": 1067, + "filesize": 8003074, + "upload_date": "2020-09-03T17:09:53Z", + "modify_date": "2020-09-18T20:09:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/MINI_FIRE_ENGINE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:09:50Z", + "updatedAt": "2024-04-03T10:11:50Z", + "name": "MINI_EXCAVATOR", + "owner": "GoogleResearch", + "description": "MINI EXCAVATOR\nFeatures an adjustable arm and realistic shovel to make tough digging jobs easy.", + "likes": 0, + "downloads": 1028, + "filesize": 7292360, + "upload_date": "2020-09-03T17:09:47Z", + "modify_date": "2020-09-18T20:09:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/MINI_EXCAVATOR/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:09:45Z", + "updatedAt": "2024-04-03T08:04:46Z", + "name": "MEAT_SET", + "owner": "GoogleResearch", + "description": "MEAT SET\nThis set includes steak, fish, sausage, a chicken drumstick, salami, bologna and a knife.", + "likes": 0, + "downloads": 1160, + "filesize": 7992205, + "upload_date": "2020-09-03T17:09:42Z", + "modify_date": "2020-09-18T20:09:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/MEAT_SET/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:09:40Z", + "updatedAt": "2024-04-03T08:04:37Z", + "name": "MARTIN_WEDGE_LACE_BOOT", + "owner": "GoogleResearch", + "description": "MARTIN WEDGE LACE BOOT\n*Lace boot in waterproof leather upper. *Fully lined. *Leather welt. *Vibram bottom for traction and comfort.", + "likes": 0, + "downloads": 1212, + "filesize": 4704968, + "upload_date": "2020-09-03T17:09:37Z", + "modify_date": "2020-09-18T20:09:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/MARTIN_WEDGE_LACE_BOOT/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:09:35Z", + "updatedAt": "2024-04-03T08:04:07Z", + "name": "Lutein", + "owner": "GoogleResearch", + "description": "Lutein", + "likes": 0, + "downloads": 1205, + "filesize": 5641887, + "upload_date": "2020-09-03T17:09:32Z", + "modify_date": "2020-09-18T20:09:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Lutein/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:09:30Z", + "updatedAt": "2024-04-03T08:04:01Z", + "name": "Luigis_Mansion_Dark_Moon_Nintendo_3DS_Game", + "owner": "GoogleResearch", + "description": "Luigi's Mansion: Dark Moon [Nintendo 3DS Game]", + "likes": 0, + "downloads": 1154, + "filesize": 10028663, + "upload_date": "2020-09-03T17:09:27Z", + "modify_date": "2020-09-18T20:09:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Luigis_Mansion_Dark_Moon_Nintendo_3DS_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T17:09:24Z", + "updatedAt": "2024-04-03T08:03:54Z", + "name": "Lovestruck_Tieks_Glittery_Rose_Gold_Italian_Leather_Ballet_Flats", + "owner": "GoogleResearch", + "description": "Lovestruck Tieks - Glittery Rose Gold Italian Leather Ballet Flats\nCupid's latest creation comes in the form of glittery Lovestruck Tieks! These beautiful, rose gold ballet flats provide a sophisticated sparkle that brings any outfit to life. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 1167, + "filesize": 9520384, + "upload_date": "2020-09-03T17:09:21Z", + "modify_date": "2020-09-18T20:09:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Lovestruck_Tieks_Glittery_Rose_Gold_Italian_Leather_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:09:18Z", + "updatedAt": "2024-04-03T08:03:48Z", + "name": "Logitech_Ultimate_Ears_Boom_Wireless_Speaker_Night_Black", + "owner": "GoogleResearch", + "description": "Logitech Ultimate Ears Boom Wireless Speaker - Night Black", + "likes": 0, + "downloads": 1155, + "filesize": 5696908, + "upload_date": "2020-09-03T17:09:16Z", + "modify_date": "2020-09-18T20:09:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Logitech_Ultimate_Ears_Boom_Wireless_Speaker_Night_Black/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T17:09:13Z", + "updatedAt": "2024-04-03T09:37:28Z", + "name": "Little_House_on_the_Prairie_Season_Two_5_Discs_Includes_Digital", + "owner": "GoogleResearch", + "description": "Little House on the Prairie: Season Two (5 Discs) (Includes Digital", + "likes": 0, + "downloads": 1121, + "filesize": 14537971, + "upload_date": "2020-09-03T17:09:10Z", + "modify_date": "2020-09-18T20:09:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Little_House_on_the_Prairie_Season_Two_5_Discs_Includes_Digital/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T17:08:20Z", + "updatedAt": "2024-04-03T08:41:52Z", + "name": "Little_Debbie_Donut_Sticks_6_cake_donuts_10_oz_total", + "owner": "GoogleResearch", + "description": "Little Debbie Donut, Sticks - 6 cake donuts, 10 oz total", + "likes": 0, + "downloads": 1175, + "filesize": 12689251, + "upload_date": "2020-09-03T17:08:16Z", + "modify_date": "2020-09-18T20:09:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Little_Debbie_Donut_Sticks_6_cake_donuts_10_oz_total/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:08:14Z", + "updatedAt": "2024-04-03T08:41:41Z", + "name": "Little_Debbie_Cloud_Cakes_10_ct", + "owner": "GoogleResearch", + "description": "Little Debbie Cloud Cakes 10 ct", + "likes": 0, + "downloads": 1090, + "filesize": 11916105, + "upload_date": "2020-09-03T17:08:10Z", + "modify_date": "2020-09-18T20:09:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Little_Debbie_Cloud_Cakes_10_ct/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:08:07Z", + "updatedAt": "2024-04-03T09:44:05Z", + "name": "Little_Debbie_Chocolate_Cupcakes_8_ct", + "owner": "GoogleResearch", + "description": "Little Debbie Chocolate Cupcakes 8 ct", + "likes": 0, + "downloads": 973, + "filesize": 15632648, + "upload_date": "2020-09-03T17:08:03Z", + "modify_date": "2020-09-18T20:09:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Little_Debbie_Chocolate_Cupcakes_8_ct/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:07:25Z", + "updatedAt": "2024-04-03T09:37:15Z", + "name": "Little_Big_Planet_3_Plush_Edition", + "owner": "GoogleResearch", + "description": "Little Big Planet 3 Plush Edition", + "likes": 0, + "downloads": 1046, + "filesize": 16685560, + "upload_date": "2020-09-03T17:07:21Z", + "modify_date": "2020-09-18T20:09:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Little_Big_Planet_3_Plush_Edition/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:07:18Z", + "updatedAt": "2024-04-03T08:03:38Z", + "name": "Lenovo_Yoga_2_11", + "owner": "GoogleResearch", + "description": "Lenovo Yoga 2 11", + "likes": 1, + "downloads": 1346, + "filesize": 7961701, + "upload_date": "2020-09-03T17:07:16Z", + "modify_date": "2020-09-18T20:09:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Lenovo_Yoga_2_11/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T17:07:12Z", + "updatedAt": "2024-04-03T10:11:40Z", + "name": "Lego_Friends_Mia", + "owner": "GoogleResearch", + "description": "Lego Friends, Mia", + "likes": 0, + "downloads": 900, + "filesize": 8198626, + "upload_date": "2020-09-03T17:07:08Z", + "modify_date": "2020-09-18T20:09:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Lego_Friends_Mia/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Legos" + ] + }, + { + "createdAt": "2020-09-03T17:06:27Z", + "updatedAt": "2024-04-03T09:02:30Z", + "name": "Lego_Friends_Advent_Calendar", + "owner": "GoogleResearch", + "description": "Lego Friends Advent Calendar", + "likes": 0, + "downloads": 1140, + "filesize": 16570723, + "upload_date": "2020-09-03T17:06:23Z", + "modify_date": "2020-09-18T20:09:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Lego_Friends_Advent_Calendar/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Legos" + ] + }, + { + "createdAt": "2020-09-03T17:06:20Z", + "updatedAt": "2024-04-03T09:02:16Z", + "name": "Leap_Frog_Paint_Dabber_Dot_Art_5_paint_bottles", + "owner": "GoogleResearch", + "description": "Leap Frog Paint Dabber Dot Art - 5 paint bottles", + "likes": 0, + "downloads": 1156, + "filesize": 11703535, + "upload_date": "2020-09-03T17:06:17Z", + "modify_date": "2020-09-18T20:09:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Leap_Frog_Paint_Dabber_Dot_Art_5_paint_bottles/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:05:51Z", + "updatedAt": "2024-04-03T09:02:08Z", + "name": "Lavender_Snake_Tieks_Snake_Print_Ballet_Flats", + "owner": "GoogleResearch", + "description": "Lavender Snake Tieks - Snake Print Ballet Flats\nAttract envious stares with these one-of-a-kind, snake print ballet flats. The lustrous combination of lavender, black, gold and pewter is sure to turn heads. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 1056, + "filesize": 8709532, + "upload_date": "2020-09-03T17:05:48Z", + "modify_date": "2020-09-18T20:09:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Lavender_Snake_Tieks_Snake_Print_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:05:39Z", + "updatedAt": "2024-04-03T10:11:33Z", + "name": "Lalaloopsy_Peanut_Big_Top_Tricycle", + "owner": "GoogleResearch", + "description": "Lalaloopsy Peanut Big Top Tricycle", + "likes": 0, + "downloads": 908, + "filesize": 7785358, + "upload_date": "2020-09-03T17:05:36Z", + "modify_date": "2020-09-18T20:09:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Lalaloopsy_Peanut_Big_Top_Tricycle/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:05:33Z", + "updatedAt": "2024-04-03T09:02:00Z", + "name": "Lactoferrin", + "owner": "GoogleResearch", + "description": "Lactoferrin", + "likes": 0, + "downloads": 1081, + "filesize": 6509518, + "upload_date": "2020-09-03T17:05:30Z", + "modify_date": "2020-09-18T20:09:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Lactoferrin/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:05:28Z", + "updatedAt": "2024-04-03T06:51:47Z", + "name": "LTyrosine", + "owner": "GoogleResearch", + "description": "L-Tyrosine", + "likes": 0, + "downloads": 1139, + "filesize": 6432572, + "upload_date": "2020-09-03T17:05:25Z", + "modify_date": "2020-09-18T20:09:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/LTyrosine/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:05:22Z", + "updatedAt": "2024-04-03T09:01:53Z", + "name": "LEUCIPPUS_ADIPURE", + "owner": "GoogleResearch", + "description": "LEUCIPPUS ADIPURE", + "likes": 0, + "downloads": 1058, + "filesize": 6434121, + "upload_date": "2020-09-03T17:05:19Z", + "modify_date": "2020-09-18T20:09:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/LEUCIPPUS_ADIPURE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T17:05:03Z", + "updatedAt": "2024-04-03T09:37:05Z", + "name": "LEGO_Star_Wars_Advent_Calendar", + "owner": "GoogleResearch", + "description": "LEGO Star Wars Advent Calendar", + "likes": 0, + "downloads": 1019, + "filesize": 17235709, + "upload_date": "2020-09-03T17:04:59Z", + "modify_date": "2020-09-18T20:09:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/LEGO_Star_Wars_Advent_Calendar/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Legos" + ] + }, + { + "createdAt": "2020-09-03T17:04:18Z", + "updatedAt": "2024-04-03T10:01:18Z", + "name": "LEGO_Fusion_Set_Town_Master", + "owner": "GoogleResearch", + "description": "LEGO Fusion Set Town Master", + "likes": 0, + "downloads": 1044, + "filesize": 18969278, + "upload_date": "2020-09-03T17:04:13Z", + "modify_date": "2020-09-18T20:09:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/LEGO_Fusion_Set_Town_Master/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T17:04:10Z", + "updatedAt": "2024-04-03T09:36:58Z", + "name": "LEGO_Duplo_Creative_Animals_10573", + "owner": "GoogleResearch", + "description": "LEGO Duplo Creative Animals (10573)", + "likes": 0, + "downloads": 943, + "filesize": 6938766, + "upload_date": "2020-09-03T17:04:07Z", + "modify_date": "2020-09-18T20:09:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/LEGO_Duplo_Creative_Animals_10573/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Legos" + ] + }, + { + "createdAt": "2020-09-03T17:04:05Z", + "updatedAt": "2024-04-03T09:36:02Z", + "name": "LEGO_Duplo_Build_and_Play_Box_4629", + "owner": "GoogleResearch", + "description": "LEGO Duplo Build and Play Box (4629)", + "likes": 0, + "downloads": 932, + "filesize": 9165573, + "upload_date": "2020-09-03T17:04:01Z", + "modify_date": "2020-09-18T20:09:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/LEGO_Duplo_Build_and_Play_Box_4629/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Legos" + ] + }, + { + "createdAt": "2020-09-03T17:03:58Z", + "updatedAt": "2024-04-03T08:03:31Z", + "name": "LEGO_Creationary_Game_ZJa163wlWp2", + "owner": "GoogleResearch", + "description": "LEGO Creationary Game", + "likes": 0, + "downloads": 1238, + "filesize": 15073619, + "upload_date": "2020-09-03T17:03:54Z", + "modify_date": "2020-09-18T20:09:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/LEGO_Creationary_Game_ZJa163wlWp2/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:03:51Z", + "updatedAt": "2024-04-03T08:03:24Z", + "name": "LEGO_Creationary_Game", + "owner": "GoogleResearch", + "description": "LEGO Creationary Game", + "likes": 0, + "downloads": 1203, + "filesize": 8786148, + "upload_date": "2020-09-03T17:03:48Z", + "modify_date": "2020-09-18T20:09:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/LEGO_Creationary_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:03:46Z", + "updatedAt": "2024-04-03T09:35:54Z", + "name": "LEGO_City_Advent_Calendar", + "owner": "GoogleResearch", + "description": "LEGO City Advent Calendar", + "likes": 0, + "downloads": 1044, + "filesize": 17797622, + "upload_date": "2020-09-03T17:03:42Z", + "modify_date": "2020-09-18T20:09:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/LEGO_City_Advent_Calendar/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Legos" + ] + }, + { + "createdAt": "2020-09-03T17:03:39Z", + "updatedAt": "2024-04-03T09:01:43Z", + "name": "LEGO_Bricks_More_Creative_Suitcase", + "owner": "GoogleResearch", + "description": "LEGO Bricks & More Creative Suitcase", + "likes": 0, + "downloads": 1176, + "filesize": 13987516, + "upload_date": "2020-09-03T17:03:36Z", + "modify_date": "2020-09-18T20:09:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/LEGO_Bricks_More_Creative_Suitcase/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Legos" + ] + }, + { + "createdAt": "2020-09-03T17:03:33Z", + "updatedAt": "2024-04-03T08:31:08Z", + "name": "LEGO_5887_Dino_Defense_HQ", + "owner": "GoogleResearch", + "description": "LEGO 5887 Dino Defense HQ", + "likes": 0, + "downloads": 1203, + "filesize": 10486429, + "upload_date": "2020-09-03T17:03:29Z", + "modify_date": "2020-09-18T20:09:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/LEGO_5887_Dino_Defense_HQ/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Legos" + ] + }, + { + "createdAt": "2020-09-03T17:03:26Z", + "updatedAt": "2024-04-03T10:11:25Z", + "name": "LADYBUG_BEAD", + "owner": "GoogleResearch", + "description": "LADYBUG BEAD\nThis cute grasping toy features rainbow-colored beads which spin and rattle.", + "likes": 0, + "downloads": 940, + "filesize": 6588730, + "upload_date": "2020-09-03T17:03:23Z", + "modify_date": "2020-09-18T20:09:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/LADYBUG_BEAD/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:03:20Z", + "updatedAt": "2024-04-03T09:01:36Z", + "name": "LACING_SHEEP", + "owner": "GoogleResearch", + "description": "LACING SHEEP\nChildren can lace corresponding colors together to form a sheep. The toy helps them learn basic colors and sequence.", + "likes": 0, + "downloads": 1185, + "filesize": 6719903, + "upload_date": "2020-09-03T17:03:17Z", + "modify_date": "2020-09-18T20:09:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/LACING_SHEEP/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:03:14Z", + "updatedAt": "2024-04-03T08:31:00Z", + "name": "Krill_Oil", + "owner": "GoogleResearch", + "description": "Krill Oil", + "likes": 0, + "downloads": 1153, + "filesize": 5819638, + "upload_date": "2020-09-03T17:03:11Z", + "modify_date": "2020-09-18T20:09:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Krill_Oil/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:03:09Z", + "updatedAt": "2024-04-03T09:13:14Z", + "name": "Kotex_U_Tween_Pads_16_pads", + "owner": "GoogleResearch", + "description": "Kotex U Tween Pads - 16 pads\nProtection for smaller sizes. Extra absorbent! Absorbs like our heavy flow pad. Designed to fit smaller bodies for serious protection. Ultra-thin and flexible - bye-bye bulk! Made in China.", + "likes": 0, + "downloads": 1059, + "filesize": 12423531, + "upload_date": "2020-09-03T17:03:05Z", + "modify_date": "2020-09-18T20:09:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Kotex_U_Tween_Pads_16_pads/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:03:03Z", + "updatedAt": "2024-04-03T10:11:18Z", + "name": "Kotex_U_Barely_There_Liners_Thin_60_count", + "owner": "GoogleResearch", + "description": "Kotex U Barely There Liners, Thin - 60 count", + "likes": 0, + "downloads": 1040, + "filesize": 12699992, + "upload_date": "2020-09-03T17:02:58Z", + "modify_date": "2020-09-18T20:09:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Kotex_U_Barely_There_Liners_Thin_60_count/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:02:47Z", + "updatedAt": "2024-04-03T09:01:30Z", + "name": "Kingston_DT4000MR_G2_Management_Ready_USB_64GB", + "owner": "GoogleResearch", + "description": "Kingston DT4000M-R G2 Management Ready USB - 64GB\nKingston?s DataTraveler? 4000 G2 offers high-end security with FIPS 140-2 Level 3 certification and a tamper-evident seal for physical security to detect and respond to attempts at access, use or modification of the cryptographic module. It safeguards 100 percent of even the most sensitive data with 256-bit AES hardware-based encryption in XTS mode. For added peace of mind, the drive locks down and reformats after ten failed intrusion attempts and functions in read-only access mode to avoid malware risks. The drive is available with SafeConsole* management, which allows IT professionals to centrally manage it to meet compliance requirements and provide a higher level of internal support. Activation is easy and can be done manually or with mass deployment tools. DT4000 G2?s industry-leading NAND and controller design allows for NAND to be interchanged without requalification and certification, so customers can add it to their standards list with confidence. DT4000 G2 offers impressive SuperSpeed USB 3.0 technology so users don?t have to compromise speed for security. It?s customizable and available with serial numbering, custom Product Identifier (PID) and other options to meet most frequently requested corporate IT requirements. DataTraveler 4000 G2 is backed by a five-year warranty, free technical support and legendary Kingston? reliability.", + "likes": 0, + "downloads": 1047, + "filesize": 3348248, + "upload_date": "2020-09-03T17:02:45Z", + "modify_date": "2020-09-18T20:09:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Kingston_DT4000MR_G2_Management_Ready_USB_64GB/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T17:02:43Z", + "updatedAt": "2024-04-03T09:01:21Z", + "name": "Kid_Icarus_Uprising_Nintendo_3DS_Game", + "owner": "GoogleResearch", + "description": "Kid Icarus Uprising [Nintendo 3DS Game]", + "likes": 0, + "downloads": 1152, + "filesize": 12108327, + "upload_date": "2020-09-03T17:02:39Z", + "modify_date": "2020-09-18T20:09:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Kid_Icarus_Uprising_Nintendo_3DS_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T17:02:37Z", + "updatedAt": "2024-04-03T08:30:51Z", + "name": "Kanex_MultiSync_Wireless_Keyboard", + "owner": "GoogleResearch", + "description": "Kanex Multi-Sync - Wireless Keyboard", + "likes": 0, + "downloads": 1182, + "filesize": 8370111, + "upload_date": "2020-09-03T17:02:34Z", + "modify_date": "2020-09-18T20:09:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Kanex_MultiSync_Wireless_Keyboard/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Keyboard" + ] + }, + { + "createdAt": "2020-09-03T17:02:22Z", + "updatedAt": "2024-04-03T08:30:41Z", + "name": "KID_ROOM_FURNITURE_SET_1", + "owner": "GoogleResearch", + "description": "KID ROOM (FURNITURE SET 1)\nThe set includes a bunk bed, shelf , table, and chair. Made of Eco-Friendly PlanWood and solid rubber wood.", + "likes": 0, + "downloads": 1214, + "filesize": 10057907, + "upload_date": "2020-09-03T17:02:19Z", + "modify_date": "2020-09-18T20:09:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/KID_ROOM_FURNITURE_SET_1/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T17:01:48Z", + "updatedAt": "2024-04-03T08:30:29Z", + "name": "Justified_The_Complete_Fourth_Season_3_Discs_DVD", + "owner": "GoogleResearch", + "description": "Justified: The Complete Fourth Season [3 Discs] [DVD]", + "likes": 0, + "downloads": 1215, + "filesize": 17212682, + "upload_date": "2020-09-03T17:01:44Z", + "modify_date": "2020-09-18T20:09:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Justified_The_Complete_Fourth_Season_3_Discs_DVD/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T17:01:41Z", + "updatedAt": "2024-04-03T06:51:22Z", + "name": "Just_For_Men_Shampoo_In_Haircolor_Darkest_Brown_50", + "owner": "GoogleResearch", + "description": "Just For Men Shampoo In Haircolor Darkest Brown 50", + "likes": 0, + "downloads": 1206, + "filesize": 13112487, + "upload_date": "2020-09-03T17:01:37Z", + "modify_date": "2020-09-18T20:10:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Just_For_Men_Shampoo_In_Haircolor_Darkest_Brown_50/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:01:29Z", + "updatedAt": "2024-04-03T09:12:16Z", + "name": "Just_For_Men_ShampooIn_Haircolor_Light_Brown_25", + "owner": "GoogleResearch", + "description": "Just For Men Shampoo-In Haircolor Light Brown 25", + "likes": 0, + "downloads": 1125, + "filesize": 17880002, + "upload_date": "2020-09-03T17:01:25Z", + "modify_date": "2020-09-18T20:10:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Just_For_Men_ShampooIn_Haircolor_Light_Brown_25/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:01:22Z", + "updatedAt": "2024-04-03T09:12:07Z", + "name": "Just_For_Men_ShampooIn_Haircolor_Jet_Black_60", + "owner": "GoogleResearch", + "description": "Just For Men Shampoo-In Haircolor Jet Black 60", + "likes": 0, + "downloads": 1131, + "filesize": 14162140, + "upload_date": "2020-09-03T17:01:18Z", + "modify_date": "2020-09-18T20:10:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Just_For_Men_ShampooIn_Haircolor_Jet_Black_60/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:01:16Z", + "updatedAt": "2024-04-03T09:11:58Z", + "name": "Just_For_Men_Mustache_Beard_Brushin_Hair_Color_Gel_MediumDark_Brown_M40", + "owner": "GoogleResearch", + "description": "Just For Men Mustache & Beard Brush-in Hair Color Gel Medium-Dark Brown M-40", + "likes": 0, + "downloads": 1121, + "filesize": 15707347, + "upload_date": "2020-09-03T17:01:11Z", + "modify_date": "2020-09-18T20:10:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Just_For_Men_Mustache_Beard_Brushin_Hair_Color_Gel_MediumDark_Brown_M40/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:01:09Z", + "updatedAt": "2024-04-03T09:11:50Z", + "name": "Just_For_Men_Mustache_Beard_Brushin_Hair_Color_Gel_Kit_Jet_Black_M60", + "owner": "GoogleResearch", + "description": "Just For Men Mustache & Beard Brush-in Hair Color Gel Kit Jet Black M-60", + "likes": 0, + "downloads": 1267, + "filesize": 13150571, + "upload_date": "2020-09-03T17:01:05Z", + "modify_date": "2020-09-18T20:10:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Just_For_Men_Mustache_Beard_Brushin_Hair_Color_Gel_Kit_Jet_Black_M60/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T17:01:03Z", + "updatedAt": "2024-04-03T08:30:24Z", + "name": "Jawbone_UP24_Wireless_Activity_Tracker_Pink_Coral_L", + "owner": "GoogleResearch", + "description": "Jawbone UP24 Wireless Activity Tracker, Pink Coral, L", + "likes": 0, + "downloads": 1144, + "filesize": 1463783, + "upload_date": "2020-09-03T17:01:00Z", + "modify_date": "2020-09-18T20:10:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Jawbone_UP24_Wireless_Activity_Tracker_Pink_Coral_L/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T17:00:58Z", + "updatedAt": "2024-04-03T08:03:19Z", + "name": "Jarrow_Glucosamine_Chondroitin_Combination_120_Caps", + "owner": "GoogleResearch", + "description": "Jarrow Glucosamine + Chondroitin Combination 120 Caps", + "likes": 0, + "downloads": 1178, + "filesize": 6760818, + "upload_date": "2020-09-03T17:00:55Z", + "modify_date": "2020-09-18T20:10:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Jarrow_Glucosamine_Chondroitin_Combination_120_Caps/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:00:53Z", + "updatedAt": "2024-04-03T09:35:47Z", + "name": "Jarrow_Formulas_Glucosamine_Hci_Mega_1000_100_ct", + "owner": "GoogleResearch", + "description": "Jarrow Formulas Glucosamine Hci Mega 1000 - 100 ct", + "likes": 0, + "downloads": 928, + "filesize": 8148348, + "upload_date": "2020-09-03T17:00:49Z", + "modify_date": "2020-09-18T20:10:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Jarrow_Formulas_Glucosamine_Hci_Mega_1000_100_ct/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T17:00:23Z", + "updatedAt": "2024-04-03T09:43:58Z", + "name": "JarroSil_Activated_Silicon_5exdZHIeLAp", + "owner": "GoogleResearch", + "description": "JarroSil, Activated Silicon\nJarroSil is a synergistic formulation of highly bioavailable silicon. A patent pending Activated Silicon formula, JarroSil contains stabilized molecular clusters of silicic acid, which provide a biologically active form of silicon upon dissolution into liquids. JarroSil is manufactured in the USA using the latest technology for enhanced bioavailability, stability and improved taste. Stabilized silicic acid is converted to highly bioavailable ortho- and disilicic acids upon dissolution in liquids and in the stomach. JarroSil?s Activated Silicon improves the strength and elasticity of collagen by stimulating collagen production. Stronger collagen means healthier, more elastic skin, and fewer and shallower wrinkles.* The outer shaft of hair is rich in silicon. Adequate silicon helps hair grow thicker and stronger.* Supplementation with JarroSil also strengthens weak, brittle nails associated with an inadequate silicon intake.* Silicon plays an important role in bone calcification, including during the growth of new bone.* Bone building cells (osteoblasts) start by constructing a connective tissue matrix. When this is done, the osteoblasts switch their function and begin to fill in this matrix with minerals. This process requires silicon.* JarroSil is an essential partner of calcium for bones and antioxidants for supple and healthy arteries.* *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.", + "likes": 0, + "downloads": 999, + "filesize": 10705635, + "upload_date": "2020-09-03T17:00:19Z", + "modify_date": "2020-09-18T20:10:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/JarroSil_Activated_Silicon_5exdZHIeLAp/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:59:49Z", + "updatedAt": "2024-04-03T10:11:10Z", + "name": "JarroSil_Activated_Silicon", + "owner": "GoogleResearch", + "description": "JarroSil, Activated Silicon\nJarroSil is a synergistic formulation of highly bioavailable silicon. A patent pending Activated Silicon formula, JarroSil contains stabilized molecular clusters of silicic acid, which provide a biologically active form of silicon upon dissolution into liquids. JarroSil is manufactured in the USA using the latest technology for enhanced bioavailability, stability and improved taste. Stabilized silicic acid is converted to highly bioavailable ortho- and disilicic acids upon dissolution in liquids and in the stomach. JarroSil?s Activated Silicon improves the strength and elasticity of collagen by stimulating collagen production. Stronger collagen means healthier, more elastic skin, and fewer and shallower wrinkles.* The outer shaft of hair is rich in silicon. Adequate silicon helps hair grow thicker and stronger.* Supplementation with JarroSil also strengthens weak, brittle nails associated with an inadequate silicon intake.* Silicon plays an important role in bone calcification, including during the growth of new bone.* Bone building cells (osteoblasts) start by constructing a connective tissue matrix. When this is done, the osteoblasts switch their function and begin to fill in this matrix with minerals. This process requires silicon.* JarroSil is an essential partner of calcium for bones and antioxidants for supple and healthy arteries.* *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.", + "likes": 0, + "downloads": 934, + "filesize": 13158595, + "upload_date": "2020-09-03T16:59:46Z", + "modify_date": "2020-09-18T20:10:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/JarroSil_Activated_Silicon/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:59:43Z", + "updatedAt": "2024-04-03T10:11:01Z", + "name": "JarroDophilusFOS_Value_Size", + "owner": "GoogleResearch", + "description": "Jarro-Dophilus+FOS - Value Size", + "likes": 0, + "downloads": 906, + "filesize": 7437733, + "upload_date": "2020-09-03T16:59:40Z", + "modify_date": "2020-09-18T20:10:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/JarroDophilusFOS_Value_Size/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:59:38Z", + "updatedAt": "2024-04-04T05:38:02Z", + "name": "Jansport_School_Backpack_Blue_Streak", + "owner": "GoogleResearch", + "description": "Jansport School Backpack, Blue Streak", + "likes": 1, + "downloads": 1066, + "filesize": 8958755, + "upload_date": "2020-09-03T16:59:34Z", + "modify_date": "2020-09-18T20:10:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Jansport_School_Backpack_Blue_Streak/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T16:59:04Z", + "updatedAt": "2024-04-03T10:10:55Z", + "name": "JUNGLE_HEIGHT", + "owner": "GoogleResearch", + "description": "JUNGLE HEIGHT\nChoose Jungle printed canvas growth charts for your kids! This set comes complete with 4 animal measuring clips, which is movable from height to height. Measures heights from 40-160 cm and hangs easily from the attached rope at the top of the chart.", + "likes": 0, + "downloads": 972, + "filesize": 12076113, + "upload_date": "2020-09-03T16:59:00Z", + "modify_date": "2020-09-18T20:10:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/JUNGLE_HEIGHT/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:58:58Z", + "updatedAt": "2024-04-03T09:01:03Z", + "name": "JUICER_SET", + "owner": "GoogleResearch", + "description": "JUICER SET\nHave fresh fruit juice with friends with this Juicer Set! Includes juicer, cup, orange, lemon, and knife.", + "likes": 0, + "downloads": 1196, + "filesize": 10630280, + "upload_date": "2020-09-03T16:58:54Z", + "modify_date": "2020-09-18T20:10:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/JUICER_SET/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:58:51Z", + "updatedAt": "2024-04-03T09:35:40Z", + "name": "JS_WINGS_20_BLACK_FLAG", + "owner": "GoogleResearch", + "description": "JS WINGS 2.0 BLACK FLAG", + "likes": 0, + "downloads": 950, + "filesize": 6617190, + "upload_date": "2020-09-03T16:58:48Z", + "modify_date": "2020-09-18T20:10:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/JS_WINGS_20_BLACK_FLAG/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:58:46Z", + "updatedAt": "2024-04-03T08:03:12Z", + "name": "JBL_Charge_Speaker_portable_wireless_wired_Green", + "owner": "GoogleResearch", + "description": "JBL Charge Speaker - portable - wireless, wired, Green", + "likes": 1, + "downloads": 1262, + "filesize": 8419174, + "upload_date": "2020-09-03T16:58:43Z", + "modify_date": "2020-09-18T20:10:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/JBL_Charge_Speaker_portable_wireless_wired_Green/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:58:35Z", + "updatedAt": "2024-04-03T09:00:56Z", + "name": "IsoRich_Soy", + "owner": "GoogleResearch", + "description": "Iso-Rich Soy", + "likes": 0, + "downloads": 1050, + "filesize": 6773173, + "upload_date": "2020-09-03T16:58:32Z", + "modify_date": "2020-09-18T20:10:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/IsoRich_Soy/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:58:09Z", + "updatedAt": "2024-04-03T09:35:33Z", + "name": "Inositol", + "owner": "GoogleResearch", + "description": "Inositol", + "likes": 0, + "downloads": 929, + "filesize": 6662869, + "upload_date": "2020-09-03T16:58:06Z", + "modify_date": "2020-09-18T20:10:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Inositol/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:58:04Z", + "updatedAt": "2024-04-03T09:35:26Z", + "name": "Imaginext_Castle_Ogre", + "owner": "GoogleResearch", + "description": "Imaginext Castle Ogre", + "likes": 0, + "downloads": 1017, + "filesize": 9786175, + "upload_date": "2020-09-03T16:58:00Z", + "modify_date": "2020-09-18T20:10:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Imaginext_Castle_Ogre/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-03T16:57:58Z", + "updatedAt": "2024-04-03T09:35:14Z", + "name": "HyperX_Cloud_II_Headset_Red", + "owner": "GoogleResearch", + "description": "HyperX Cloud II Headset - Red\nHyperXR Cloud II features a redesigned USB sound card audio control box that amplifies audio and voice for an optimal Hi-Fi gaming experience, so you can hear what you?ve been missing. Open up a world of detail other gamers will never know ? the rustle of a camper?s boot, the scuttle in a distant vent. Its independent audio and microphone volume control lets you adjust not only sound volume but also mic volume and easily toggle Surround Sound 7.1 or the mic sound on and off. This next-generation headset generates virtual 7.1 surround sound with distance and depth to enhance your gaming, movie or music experience. Pinpoint your opponents? location in the game and strike before he sees you coming. It?s hardware driven and plug and play, with no driver needed. HyperX Cloud II has a digitally enhanced, noise-cancelling microphone with automatic gain control functionality and echo cancellation enabled through the USB sound card. The result is clearer voice quality and reduced background noise, with voice volume automatically increasing as in-game sound gets louder, to optimize team communication and in-game chat in intense battles. HyperX Cloud II is certified by TeamSpeak and optimized for Skype and other leading chat programs. HyperX Cloud II is Hi-Fi capable, with 53mm drivers for superior audio performance and rich sound quality with crystal-clear low, mid and high tones and enhanced bass via the sound card. Pro-gaming optimized, HyperX Cloud II is USB-powered for PCs and Macs and 3.5mm stereo-compatible for PS4 and Xbox One1. Its closed cup design helps with noise cancellation in gaming tournaments and other loud environments so players can obliterate the enemy in peace.", + "likes": 0, + "downloads": 982, + "filesize": 11983490, + "upload_date": "2020-09-03T16:57:54Z", + "modify_date": "2020-09-18T20:10:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/HyperX_Cloud_II_Headset_Red/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Headphones" + ] + }, + { + "createdAt": "2020-09-03T16:57:52Z", + "updatedAt": "2024-04-03T09:35:07Z", + "name": "HyperX_Cloud_II_Headset_Gun_Metal", + "owner": "GoogleResearch", + "description": "HyperX Cloud II Headset - Gun Metal\nHyperXR Cloud II features a redesigned USB sound card audio control box that amplifies audio and voice for an optimal Hi-Fi gaming experience, so you can hear what you?ve been missing. Open up a world of detail other gamers will never know ? the rustle of a camper?s boot, the scuttle in a distant vent. Its independent audio and microphone volume control lets you adjust not only sound volume but also mic volume and easily toggle Surround Sound 7.1 or the mic sound on and off. This next-generation headset generates virtual 7.1 surround sound with distance and depth to enhance your gaming, movie or music experience. Pinpoint your opponents? location in the game and strike before he sees you coming. It?s hardware driven and plug and play, with no driver needed. HyperX Cloud II has a digitally enhanced, noise-cancelling microphone with automatic gain control functionality and echo cancellation enabled through the USB sound card. The result is clearer voice quality and reduced background noise, with voice volume automatically increasing as in-game sound gets louder, to optimize team communication and in-game chat in intense battles. HyperX Cloud II is certified by TeamSpeak and optimized for Skype and other leading chat programs. HyperX Cloud II is Hi-Fi capable, with 53mm drivers for superior audio performance and rich sound quality with crystal-clear low, mid and high tones and enhanced bass via the sound card. Pro-gaming optimized, HyperX Cloud II is USB-powered for PCs and Macs and 3.5mm stereo-compatible for PS4 and Xbox One1. Its closed cup design helps with noise cancellation in gaming tournaments and other loud environments so players can obliterate the enemy in peace.", + "likes": 0, + "downloads": 1033, + "filesize": 13006477, + "upload_date": "2020-09-03T16:57:48Z", + "modify_date": "2020-09-18T20:10:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/HyperX_Cloud_II_Headset_Gun_Metal/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Headphones" + ] + }, + { + "createdAt": "2020-09-03T16:57:06Z", + "updatedAt": "2024-04-03T08:03:05Z", + "name": "Hyaluronic_Acid", + "owner": "GoogleResearch", + "description": "Hyaluronic Acid", + "likes": 0, + "downloads": 1218, + "filesize": 7365333, + "upload_date": "2020-09-03T16:57:03Z", + "modify_date": "2020-09-18T20:10:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Hyaluronic_Acid/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:57:01Z", + "updatedAt": "2024-04-03T09:34:58Z", + "name": "House_of_Cards_The_Complete_First_Season_4_Discs_DVD", + "owner": "GoogleResearch", + "description": "House of Cards: The Complete First Season [4 Discs] [DVD]", + "likes": 0, + "downloads": 1095, + "filesize": 11552904, + "upload_date": "2020-09-03T16:56:57Z", + "modify_date": "2020-09-18T20:10:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/House_of_Cards_The_Complete_First_Season_4_Discs_DVD/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T16:56:54Z", + "updatedAt": "2024-04-03T08:02:56Z", + "name": "Horses_in_Pink_Pencil_Case", + "owner": "GoogleResearch", + "description": "Horses in Pink Pencil Case", + "likes": 0, + "downloads": 1273, + "filesize": 15025365, + "upload_date": "2020-09-03T16:56:47Z", + "modify_date": "2020-09-18T20:10:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Horses_in_Pink_Pencil_Case/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T16:56:43Z", + "updatedAt": "2024-04-03T09:00:47Z", + "name": "Horse_Dreams_Pencil_Case", + "owner": "GoogleResearch", + "description": "Horse Dreams Pencil Case", + "likes": 0, + "downloads": 1208, + "filesize": 13082919, + "upload_date": "2020-09-03T16:56:40Z", + "modify_date": "2020-09-18T20:10:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Horse_Dreams_Pencil_Case/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T16:56:37Z", + "updatedAt": "2024-04-03T10:10:48Z", + "name": "Hey_You_Pikachu_Nintendo_64", + "owner": "GoogleResearch", + "description": "Hey You, Pikachu!, Nintendo 64", + "likes": 0, + "downloads": 903, + "filesize": 8823928, + "upload_date": "2020-09-03T16:56:34Z", + "modify_date": "2020-09-18T20:10:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Hey_You_Pikachu_Nintendo_64/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:56:29Z", + "updatedAt": "2024-04-03T09:00:36Z", + "name": "Hasbro_Trivial_Pursuit_Family_Edition_Game", + "owner": "GoogleResearch", + "description": "Hasbro Trivial Pursuit Family Edition Game", + "likes": 0, + "downloads": 1241, + "filesize": 12567970, + "upload_date": "2020-09-03T16:56:21Z", + "modify_date": "2020-09-18T20:10:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Hasbro_Trivial_Pursuit_Family_Edition_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T16:56:18Z", + "updatedAt": "2024-04-03T08:30:15Z", + "name": "Hasbro_Monopoly_Hotels_Game", + "owner": "GoogleResearch", + "description": "Hasbro Monopoly Hotels Game", + "likes": 0, + "downloads": 1276, + "filesize": 15216948, + "upload_date": "2020-09-03T16:56:15Z", + "modify_date": "2020-09-18T20:10:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Hasbro_Monopoly_Hotels_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T16:55:49Z", + "updatedAt": "2024-04-03T09:34:49Z", + "name": "Hasbro_Life_Board_Game", + "owner": "GoogleResearch", + "description": "Hasbro Life Board Game", + "likes": 0, + "downloads": 1214, + "filesize": 15641203, + "upload_date": "2020-09-03T16:55:45Z", + "modify_date": "2020-09-18T20:10:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Hasbro_Life_Board_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:55:11Z", + "updatedAt": "2024-04-03T09:34:36Z", + "name": "Hasbro_Dont_Wake_Daddy_Board_Game_NJnjGna4u1a", + "owner": "GoogleResearch", + "description": "Hasbro Don't Wake Daddy Board Game", + "likes": 0, + "downloads": 926, + "filesize": 7824096, + "upload_date": "2020-09-03T16:55:08Z", + "modify_date": "2020-09-18T20:10:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Hasbro_Dont_Wake_Daddy_Board_Game_NJnjGna4u1a/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:55:06Z", + "updatedAt": "2024-04-03T08:30:06Z", + "name": "Hasbro_Dont_Wake_Daddy_Board_Game", + "owner": "GoogleResearch", + "description": "Hasbro Don't Wake Daddy Board Game", + "likes": 0, + "downloads": 1259, + "filesize": 15738682, + "upload_date": "2020-09-03T16:55:02Z", + "modify_date": "2020-09-18T20:10:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Hasbro_Dont_Wake_Daddy_Board_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:54:37Z", + "updatedAt": "2024-04-03T08:29:55Z", + "name": "Hasbro_Cranium_Performance_and_Acting_Game", + "owner": "GoogleResearch", + "description": "Hasbro Cranium Performance and Acting Game", + "likes": 0, + "downloads": 1323, + "filesize": 12778819, + "upload_date": "2020-09-03T16:54:33Z", + "modify_date": "2020-09-18T20:10:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Hasbro_Cranium_Performance_and_Acting_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:53:58Z", + "updatedAt": "2024-04-03T08:02:49Z", + "name": "HP_Card_Invitation_Kit", + "owner": "GoogleResearch", + "description": "HP Card & Invitation Kit", + "likes": 0, + "downloads": 1282, + "filesize": 10591766, + "upload_date": "2020-09-03T16:53:53Z", + "modify_date": "2020-09-18T20:10:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/HP_Card_Invitation_Kit/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:53:51Z", + "updatedAt": "2024-04-03T09:34:29Z", + "name": "HP_1800_Tablet_8GB_7", + "owner": "GoogleResearch", + "description": "HP 1800 Tablet, 8GB, 7\"", + "likes": 1, + "downloads": 945, + "filesize": 9129905, + "upload_date": "2020-09-03T16:53:47Z", + "modify_date": "2020-09-18T20:10:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/HP_1800_Tablet_8GB_7/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:53:37Z", + "updatedAt": "2024-04-03T09:00:26Z", + "name": "HELICOPTER", + "owner": "GoogleResearch", + "description": "HELICOPTER\nThis little car has been designed to make it easy for small baby hands to push and play with. This series comes with Rescue Car, Fire Truck, and Helicopter.", + "likes": 0, + "downloads": 1111, + "filesize": 8698077, + "upload_date": "2020-09-03T16:53:34Z", + "modify_date": "2020-09-18T20:10:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/HELICOPTER/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:53:23Z", + "updatedAt": "2024-04-03T08:29:49Z", + "name": "HAPPY_ENGINE", + "owner": "GoogleResearch", + "description": "HAPPY ENGINE\nHappy Engine consists of 3 carriages which can be played together or separately as a pull-toy. Each carrier has a different effect while being pulled.", + "likes": 0, + "downloads": 1211, + "filesize": 9335057, + "upload_date": "2020-09-03T16:53:20Z", + "modify_date": "2020-09-18T20:10:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/HAPPY_ENGINE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:53:14Z", + "updatedAt": "2024-04-03T08:29:41Z", + "name": "HAMMER_PEG", + "owner": "GoogleResearch", + "description": "HAMMER PEG\nA four-hole wooden board with a wooden mallet for hammering practice. Children can turn it over and start the fun all over again.", + "likes": 0, + "downloads": 1242, + "filesize": 10148237, + "upload_date": "2020-09-03T16:53:10Z", + "modify_date": "2020-09-18T20:10:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/HAMMER_PEG/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:53:07Z", + "updatedAt": "2024-04-03T09:34:21Z", + "name": "HAMMER_BALL", + "owner": "GoogleResearch", + "description": "HAMMER BALL\nThis toy helps children to improve hand-eye coordination, aligning, slotting and aiming.", + "likes": 0, + "downloads": 942, + "filesize": 8965672, + "upload_date": "2020-09-03T16:53:04Z", + "modify_date": "2020-09-18T20:10:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/HAMMER_BALL/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:52:36Z", + "updatedAt": "2024-04-03T10:10:40Z", + "name": "Guardians_of_the_Galaxy_Galactic_Battlers_Rocket_Raccoon_Figure", + "owner": "GoogleResearch", + "description": "Guardians of the Galaxy Galactic Battlers Rocket Raccoon Figure", + "likes": 0, + "downloads": 986, + "filesize": 8906358, + "upload_date": "2020-09-03T16:52:31Z", + "modify_date": "2020-09-18T20:10:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Guardians_of_the_Galaxy_Galactic_Battlers_Rocket_Raccoon_Figure/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Action Figures" + ] + }, + { + "createdAt": "2020-09-03T16:52:17Z", + "updatedAt": "2024-04-03T09:00:17Z", + "name": "Great_Jones_Wingtip_wxH3dbtlvBC", + "owner": "GoogleResearch", + "description": "Great Jones Wingtip", + "likes": 0, + "downloads": 1070, + "filesize": 7426539, + "upload_date": "2020-09-03T16:52:12Z", + "modify_date": "2020-09-18T20:10:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Great_Jones_Wingtip_wxH3dbtlvBC/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:52:10Z", + "updatedAt": "2024-04-03T10:10:31Z", + "name": "Great_Jones_Wingtip_kAqSg6EgG0I", + "owner": "GoogleResearch", + "description": "Great Jones Wingtip", + "likes": 0, + "downloads": 920, + "filesize": 7282245, + "upload_date": "2020-09-03T16:52:06Z", + "modify_date": "2020-09-18T20:10:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Great_Jones_Wingtip_kAqSg6EgG0I/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:52:04Z", + "updatedAt": "2024-04-03T10:10:25Z", + "name": "Great_Jones_Wingtip_j5NV8GRnitM", + "owner": "GoogleResearch", + "description": "Great Jones Wingtip", + "likes": 0, + "downloads": 927, + "filesize": 8944342, + "upload_date": "2020-09-03T16:51:59Z", + "modify_date": "2020-09-18T20:10:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Great_Jones_Wingtip_j5NV8GRnitM/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:50:24Z", + "updatedAt": "2024-04-03T09:34:16Z", + "name": "Great_Jones_Wingtip", + "owner": "GoogleResearch", + "description": "Great Jones Wingtip", + "likes": 0, + "downloads": 943, + "filesize": 5849790, + "upload_date": "2020-09-03T16:50:22Z", + "modify_date": "2020-09-18T20:10:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Great_Jones_Wingtip/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:50:19Z", + "updatedAt": "2024-04-03T08:29:34Z", + "name": "Grand_Prix", + "owner": "GoogleResearch", + "description": "Grand Prix", + "likes": 0, + "downloads": 1196, + "filesize": 7233149, + "upload_date": "2020-09-03T16:50:16Z", + "modify_date": "2020-09-18T20:10:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Grand_Prix/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:50:03Z", + "updatedAt": "2024-04-03T08:02:44Z", + "name": "Google_Cardboard_Original_package", + "owner": "GoogleResearch", + "description": "Google Cardboard Original (package)", + "likes": 1, + "downloads": 1206, + "filesize": 10355023, + "upload_date": "2020-09-03T16:49:59Z", + "modify_date": "2020-09-18T20:10:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Google_Cardboard_Original_package/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:49:50Z", + "updatedAt": "2024-04-03T08:41:34Z", + "name": "GoPro_HERO3_Composite_Cable", + "owner": "GoogleResearch", + "description": "GoPro HERO3 Composite Cable\nConnect your HERO3 camera to your TV with this composite cable (Mini USB to RCA) for standard definition preview + playback of your GoPro videos and photos.", + "likes": 0, + "downloads": 1189, + "filesize": 3816614, + "upload_date": "2020-09-03T16:49:47Z", + "modify_date": "2020-09-18T20:10:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/GoPro_HERO3_Composite_Cable/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:49:35Z", + "updatedAt": "2024-04-03T10:01:12Z", + "name": "Glycerin_11_Color_BrllntBluSkydvrSlvrBlckWht_Size_80", + "owner": "GoogleResearch", + "description": "Glycerin 11, Color: BrllntBlu/Skydvr/Slvr/Blck/Wht, Size: 8.0\nThink of the Glycerin 11 as your foot's butler, catering to your every want and need with plush, conformable comfort in every step. The luxury begins with an ultra-comformable upper that uses innovative 3D Fit Print overlays to create structure and reduce weight. We've also removed the midfoot shank to optimize ground contact for a transition that puts the \"oo\" in smooth. Finished with fresh colors and hot looks, Mr. Belvedere's got nothing on this shoe. > See the Women's Glycerin 11Category: Neutral Weight: 11.8 oz Platform: Universal Construction: Strobel DNA: Full-length Launch Date: June 1, 2013", + "likes": 0, + "downloads": 961, + "filesize": 8218780, + "upload_date": "2020-09-03T16:49:31Z", + "modify_date": "2020-09-18T20:10:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Glycerin_11_Color_BrllntBluSkydvrSlvrBlckWht_Size_80/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:49:29Z", + "updatedAt": "2024-04-03T09:33:21Z", + "name": "Glycerin_11_Color_AqrsDrsdnBluBlkSlvShckOrng_Size_50", + "owner": "GoogleResearch", + "description": "Glycerin 11, Color: Aqrs/DrsdnBlu/Blk/Slv/ShckOrng, Size: 5.0\nThink of the Glycerin 11 as your foot's butler, catering to your every want and need with plush, conformable comfort in every step. The luxury begins with an ultra-comformable upper that uses innovative 3D Fit Print overlays to create structure and reduce weight. We've also removed the midfoot shank to optimize ground contact for a transition that puts the \"oo\" in smooth. Finished with fresh colors and hot looks, Mr. Belvedere's got nothing on this shoe. > See the Men's Glycerin 11Category: Neutral Weight: 9.6 oz Platform: Universal Construction: Strobel DNA: Full-length Launch Date: June 1, 2013", + "likes": 0, + "downloads": 948, + "filesize": 9229441, + "upload_date": "2020-09-03T16:49:25Z", + "modify_date": "2020-09-18T20:10:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Glycerin_11_Color_AqrsDrsdnBluBlkSlvShckOrng_Size_50/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:49:16Z", + "updatedAt": "2024-04-03T09:00:10Z", + "name": "Ghost_6_GTX_Color_AnthBlckSlvrFernSulphSprng_Size_80", + "owner": "GoogleResearch", + "description": "Ghost 6 GTX, Color: Anth/Blck/Slvr/Fern/SulphSprng, Size: 8.0\nThe awesomely easy-going ride of the Ghost 6 makes a splash with GORE-TEX protection. Get the same award-winning blend of cushion and balance with the added anti-soggy technology of a waterproof, breathable membrane in the upper. You'll be a fair-weather runner no more! > See the Women's Ghost 6GTXCategory: Neutral Weight: 11.5 oz Platform: Universal Construction: Combination DNALaunch Date: August 1, 2013", + "likes": 0, + "downloads": 1076, + "filesize": 8750105, + "upload_date": "2020-09-03T16:49:12Z", + "modify_date": "2020-09-18T20:10:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ghost_6_GTX_Color_AnthBlckSlvrFernSulphSprng_Size_80/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:48:43Z", + "updatedAt": "2024-04-03T09:33:14Z", + "name": "Ghost_6_Color_MdngtDenmPomBrtePnkSlvBlk_Size_50", + "owner": "GoogleResearch", + "description": "Ghost 6, Color: Mdngt/Denm/Pom/BrtePnk/Slv/Blk, Size: 5.0\nThe light, bouncy, and balanced ride of the Ghost has haunted the dreams of many competitors -- and it's about to get frighteningly good. We've taken the transition from silky to ridiculously smooth by removing the midfoot shank and creating full ground contact from heel to toe. The underfoot gets even more love with a horseshoe Segmented Crash Pad that wraps the heel from medial to lateral sides and articulates the laydown. What does all that mean? Looking as good as it feels, you'll fall in love with this friendly ghost. We're not the only people who have fallen in love: Runner's World named the Ghost 6 \"Editor's Choice\" in the Fall Shoe Guide in their September 2013 issue the fourth straight Ghost to earn the honor. They called out the new forefoot overlays welded on rather than stitched, but really loved \"how fluidly the shoe rolls from heel-strike to toe-off.\" In short, the Ghost 6 offers \"a sweet balance of weight, cushioning, and everyday durability\" - and the editors say \"The lightest Ghost we've seen leaves nothing out.\" Can you say \"Four-peat\"? Spooky good. > See the Men's Ghost 6 Love the Ghost but hate running in the rain? The Ghost 6 GTX is also available. Everything you love about the Ghost, but with a waterproof, breathable GORE-TEX membrane to keep your feet dry and comfortable. No more blaming it on the rain! Runner's World is a registered trademark of Rodale Inc. 2013 Rodale Inc. All rights reserved.Category: Neutral Weight: 8.8 oz Platform: Universal Construction: Strobel DNA: Anatomical Launch Date: June 1, 2013", + "likes": 0, + "downloads": 951, + "filesize": 8950412, + "upload_date": "2020-09-03T16:48:39Z", + "modify_date": "2020-09-18T20:10:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ghost_6_Color_MdngtDenmPomBrtePnkSlvBlk_Size_50/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:48:36Z", + "updatedAt": "2024-04-03T09:33:05Z", + "name": "Ghost_6_Color_BlckWhtLavaSlvrCitrus_Size_80", + "owner": "GoogleResearch", + "description": "Ghost 6, Color: Blck/Wht/Lava/Slvr/Citrus, Size: 8.0\nThe light, bouncy, and balanced ride of the Ghost has haunted the dreams of many competitors -- and it's about to get frighteningly good. We've taken the transition from silky to ridiculously smooth by removing the midfoot shank and creating full ground contact from heel to toe. The underfoot gets even more love with a horseshoe Segmented Crash Pad that wraps the heel from medial to lateral sides and articulates the laydown. What does all that mean? Looking as good as it feels, you'll fall in love with this friendly ghost. We're not the only people who have fallen in love: Runner's World named the Ghost 6 \"Editor's Choice\" in the Fall Shoe Guide in their September 2013 issue the fourth straight Ghost to earn the honor. They called out the new forefoot overlays welded on rather than stitched, but really loved \"how fluidly the shoe rolls from heel-strike to toe-off.\" In short, the Ghost 6 offers \"a sweet balance of weight, cushioning, and everyday durability\" - and the editors say \"The lightest Ghost we've seen leaves nothing out.\" Can you say \"Four-peat\"? Spooky good. > See the Women's Ghost 6 Love the Ghost but hate running in the rain? The Ghost 6 GTX is also available. Everything you love about the Ghost, but with a waterproof, breathable GORE-TEX membrane to keep your feet dry and comfortable. No more blaming it on the rain! Runner's World is a registered trademark of Rodale Inc. 2013 Rodale Inc. All rights reserved.Category: Neutral Weight: 10.7 oz Platform: Universal Construction: Strobel DNA: Anatomical Launch Date: June 1, 2013", + "likes": 0, + "downloads": 953, + "filesize": 9319337, + "upload_date": "2020-09-03T16:48:33Z", + "modify_date": "2020-09-18T20:10:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Ghost_6_Color_BlckWhtLavaSlvrCitrus_Size_80/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:48:25Z", + "updatedAt": "2024-04-03T08:02:38Z", + "name": "Germanium_GE132", + "owner": "GoogleResearch", + "description": "Germanium GE-132", + "likes": 0, + "downloads": 1378, + "filesize": 5459176, + "upload_date": "2020-09-03T16:48:22Z", + "modify_date": "2020-09-18T20:10:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Germanium_GE132/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:48:11Z", + "updatedAt": "2024-04-03T10:09:45Z", + "name": "GRANDMOTHER", + "owner": "GoogleResearch", + "description": "GRANDMOTHER", + "likes": 0, + "downloads": 1092, + "filesize": 6883958, + "upload_date": "2020-09-03T16:48:08Z", + "modify_date": "2020-09-18T20:10:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/GRANDMOTHER/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:48:05Z", + "updatedAt": "2024-04-03T09:00:05Z", + "name": "GRANDFATHER_DOLL", + "owner": "GoogleResearch", + "description": "GRANDFATHER DOLL", + "likes": 0, + "downloads": 1167, + "filesize": 6655330, + "upload_date": "2020-09-03T16:48:03Z", + "modify_date": "2020-09-18T20:10:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/GRANDFATHER_DOLL/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:48:00Z", + "updatedAt": "2024-04-03T08:59:57Z", + "name": "GEOMETRIC_PEG_BOARD", + "owner": "GoogleResearch", + "description": "GEOMETRIC PEG BOARD\nThese 16 geometrical pegs (4 different sizes,?shapes and colors) can be sorted, counted, and stacked on a sturdy wooden base.", + "likes": 0, + "downloads": 1059, + "filesize": 7210091, + "upload_date": "2020-09-03T16:47:58Z", + "modify_date": "2020-09-18T20:10:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/GEOMETRIC_PEG_BOARD/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:47:55Z", + "updatedAt": "2024-04-03T08:29:11Z", + "name": "Fujifilm_instax_SHARE_SP1_10_photos", + "owner": "GoogleResearch", + "description": "Fujifilm instax SHARE SP-1 - 10 photos", + "likes": 0, + "downloads": 1159, + "filesize": 4914858, + "upload_date": "2020-09-03T16:47:53Z", + "modify_date": "2020-09-18T20:10:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Fujifilm_instax_SHARE_SP1_10_photos/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:47:50Z", + "updatedAt": "2024-04-03T09:32:51Z", + "name": "Fruity_Friends", + "owner": "GoogleResearch", + "description": "Fruity Friends", + "likes": 0, + "downloads": 932, + "filesize": 7505330, + "upload_date": "2020-09-03T16:47:48Z", + "modify_date": "2020-09-18T20:10:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Fruity_Friends/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:47:45Z", + "updatedAt": "2024-04-03T08:02:29Z", + "name": "Frozen_Scrabble_Jr", + "owner": "GoogleResearch", + "description": "Frozen Scrabble Jr.", + "likes": 0, + "downloads": 1247, + "filesize": 12438103, + "upload_date": "2020-09-03T16:47:42Z", + "modify_date": "2020-09-18T20:10:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Frozen_Scrabble_Jr/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T16:47:26Z", + "updatedAt": "2024-04-03T10:01:04Z", + "name": "Frozen_Olafs_In_Trouble_PopOMatic_Game_OEu83W9T8pD", + "owner": "GoogleResearch", + "description": "Frozen Olaf's In Trouble Pop-O-Matic Game", + "likes": 0, + "downloads": 908, + "filesize": 9497417, + "upload_date": "2020-09-03T16:47:21Z", + "modify_date": "2020-09-18T20:10:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Frozen_Olafs_In_Trouble_PopOMatic_Game_OEu83W9T8pD/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T16:47:13Z", + "updatedAt": "2024-04-03T09:32:43Z", + "name": "Frozen_Olafs_In_Trouble_PopOMatic_Game", + "owner": "GoogleResearch", + "description": "Frozen Olaf's In Trouble Pop-O-Matic Game", + "likes": 0, + "downloads": 1137, + "filesize": 11561860, + "upload_date": "2020-09-03T16:47:09Z", + "modify_date": "2020-09-18T20:10:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Frozen_Olafs_In_Trouble_PopOMatic_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T16:47:06Z", + "updatedAt": "2024-04-03T09:43:50Z", + "name": "Fresca_Peach_Citrus_Sparkling_Flavored_Soda_12_PK", + "owner": "GoogleResearch", + "description": "Fresca Peach Citrus Sparkling Flavored Soda - 12 PK", + "likes": 0, + "downloads": 1082, + "filesize": 14380589, + "upload_date": "2020-09-03T16:47:02Z", + "modify_date": "2020-09-18T20:10:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Fresca_Peach_Citrus_Sparkling_Flavored_Soda_12_PK/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:47:00Z", + "updatedAt": "2024-04-03T10:00:56Z", + "name": "Folic_Acid", + "owner": "GoogleResearch", + "description": "Folic Acid", + "likes": 0, + "downloads": 993, + "filesize": 7292396, + "upload_date": "2020-09-03T16:46:56Z", + "modify_date": "2020-09-18T20:10:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Folic_Acid/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:46:52Z", + "updatedAt": "2024-04-03T08:02:22Z", + "name": "Fisher_price_Classic_Toys_Buzzy_Bee", + "owner": "GoogleResearch", + "description": "Fisher price Classic Toys, Buzzy Bee", + "likes": 0, + "downloads": 1239, + "filesize": 5943770, + "upload_date": "2020-09-03T16:46:49Z", + "modify_date": "2020-09-18T20:10:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Fisher_price_Classic_Toys_Buzzy_Bee/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:46:46Z", + "updatedAt": "2024-04-03T10:00:44Z", + "name": "FisherPrice_Make_A_Match_Game_Thomas_Friends", + "owner": "GoogleResearch", + "description": "Fisher-Price Make A Match Game, Thomas & Friends", + "likes": 0, + "downloads": 1013, + "filesize": 13891349, + "upload_date": "2020-09-03T16:46:42Z", + "modify_date": "2020-09-18T20:10:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/FisherPrice_Make_A_Match_Game_Thomas_Friends/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:46:39Z", + "updatedAt": "2024-04-03T08:29:00Z", + "name": "Firefly_Clue_Board_Game", + "owner": "GoogleResearch", + "description": "Firefly Clue Board Game", + "likes": 0, + "downloads": 1330, + "filesize": 17918692, + "upload_date": "2020-09-03T16:46:35Z", + "modify_date": "2020-09-18T20:10:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Firefly_Clue_Board_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:46:27Z", + "updatedAt": "2024-04-03T08:59:49Z", + "name": "Final_Fantasy_XIV_A_Realm_Reborn_60Day_Subscription", + "owner": "GoogleResearch", + "description": "Final Fantasy XIV: A Realm Reborn, 60-Day Subscription", + "likes": 0, + "downloads": 1133, + "filesize": 12916786, + "upload_date": "2020-09-03T16:46:23Z", + "modify_date": "2020-09-18T20:10:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Final_Fantasy_XIV_A_Realm_Reborn_60Day_Subscription/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T16:46:13Z", + "updatedAt": "2024-04-03T09:43:44Z", + "name": "FemDophilus", + "owner": "GoogleResearch", + "description": "Fem-Dophilus\nFem-dophilus contains two patented and clinically documented probiotic strains, Lactobacillus rhamnosus, GR-1 and Lactobacillus reuteri, RC-14, discovered and developed by Dr. Gregor Reid and Dr. Andrew Bruce at Urex Biotech. Over 20 years of research supports the oral use of GR-1 and RC-14 to colonize and protect the vaginal tract.* Clinical trials have shown that GR-1 and RC-14: Help to maintain or restore healthy vaginal flora that are important in maintaining vaginal health.* Support the health of the urinary tract.* Fem-dophilus is manufactured under pharmaceutical GMP conditions insuring potency and consistency. The probiotic strains in fem-dophilus are in a proprietary polysaccharide matrix, which protects the bacteria from stomach acid and enhances probiotic bacteria survival to the lower intestine.* *These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.", + "likes": 0, + "downloads": 1136, + "filesize": 10601529, + "upload_date": "2020-09-03T16:46:10Z", + "modify_date": "2020-09-18T20:10:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/FemDophilus/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:46:08Z", + "updatedAt": "2024-04-03T08:28:53Z", + "name": "FYW_DIVISION", + "owner": "GoogleResearch", + "description": "FYW DIVISION\nFW-HIGH TOP", + "likes": 0, + "downloads": 1190, + "filesize": 10023250, + "upload_date": "2020-09-03T16:46:04Z", + "modify_date": "2020-09-18T20:10:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/FYW_DIVISION/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:45:35Z", + "updatedAt": "2024-04-03T08:28:44Z", + "name": "FYW_ALTERNATION", + "owner": "GoogleResearch", + "description": "FYW ALTERNATION\nFW-HIGH TOP", + "likes": 0, + "downloads": 1233, + "filesize": 8271213, + "upload_date": "2020-09-03T16:45:32Z", + "modify_date": "2020-09-18T20:10:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/FYW_ALTERNATION/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:45:29Z", + "updatedAt": "2024-04-03T08:59:36Z", + "name": "FRUIT_VEGGIE_MEMO_GRADIENT", + "owner": "GoogleResearch", + "description": "FRUIT & VEGGIE MEMO (GRADIENT)\nThe 28 appetizing wooden domino tiles will delight any child's mind! Features 7 different kinds of fruits and vegetables.", + "likes": 0, + "downloads": 1064, + "filesize": 9355075, + "upload_date": "2020-09-03T16:45:25Z", + "modify_date": "2020-09-18T20:10:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/FRUIT_VEGGIE_MEMO_GRADIENT/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:45:23Z", + "updatedAt": "2024-04-03T09:32:36Z", + "name": "FRUIT_VEGGIE_DOMINO_GRADIENT", + "owner": "GoogleResearch", + "description": "FRUIT & VEGGIE DOMINO (GRADIENT)\nLearn about 12 different kinds of fruits and vegetables with this memory game. The 24 pieces consist of raised and intended details to help with matching.", + "likes": 0, + "downloads": 976, + "filesize": 9682182, + "upload_date": "2020-09-03T16:45:19Z", + "modify_date": "2020-09-18T20:10:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/FRUIT_VEGGIE_DOMINO_GRADIENT/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:45:17Z", + "updatedAt": "2024-04-03T08:28:36Z", + "name": "FISHING_GAME", + "owner": "GoogleResearch", + "description": "FISHING GAME\nGone fishin'! The set includes 6 colorful fish, pond-blue fabric, and 2 fishing rods. Rods can be adjusted from beginner to advanced level.", + "likes": 0, + "downloads": 1173, + "filesize": 8337358, + "upload_date": "2020-09-03T16:45:14Z", + "modify_date": "2020-09-18T20:10:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/FISHING_GAME/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:45:09Z", + "updatedAt": "2024-04-03T10:00:36Z", + "name": "FIRE_TRUCK", + "owner": "GoogleResearch", + "description": "FIRE TRUCK\nThis little car has been designed to make it easy for small baby hands to push and play with. This series comes with Rescue Car, Fire Truck, and Helicopter.", + "likes": 0, + "downloads": 983, + "filesize": 6978825, + "upload_date": "2020-09-03T16:45:06Z", + "modify_date": "2020-09-18T20:10:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/FIRE_TRUCK/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:45:04Z", + "updatedAt": "2024-04-03T10:09:37Z", + "name": "FIRE_ENGINE", + "owner": "GoogleResearch", + "description": "FIRE ENGINE", + "likes": 0, + "downloads": 1043, + "filesize": 6121457, + "upload_date": "2020-09-03T16:45:01Z", + "modify_date": "2020-09-18T20:10:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/FIRE_ENGINE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:44:59Z", + "updatedAt": "2024-04-03T08:59:30Z", + "name": "FAIRY_TALE_BLOCKS", + "owner": "GoogleResearch", + "description": "FAIRY TALE BLOCKS\nCreate your own version of happily ever after with this fairly tale block set. Includes a prince", + "likes": 0, + "downloads": 1175, + "filesize": 12397635, + "upload_date": "2020-09-03T16:44:55Z", + "modify_date": "2020-09-18T20:10:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/FAIRY_TALE_BLOCKS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:44:52Z", + "updatedAt": "2024-04-03T08:59:22Z", + "name": "F5_TRX_FG", + "owner": "GoogleResearch", + "description": "F5 TRX FG", + "likes": 0, + "downloads": 1181, + "filesize": 5102735, + "upload_date": "2020-09-03T16:44:50Z", + "modify_date": "2020-09-18T20:10:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/F5_TRX_FG/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:44:47Z", + "updatedAt": "2024-04-03T10:00:31Z", + "name": "F10_TRX_TF_rH7tmKCdUJq", + "owner": "GoogleResearch", + "description": "F10 TRX TF", + "likes": 0, + "downloads": 927, + "filesize": 4497739, + "upload_date": "2020-09-03T16:44:44Z", + "modify_date": "2020-09-18T20:10:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/F10_TRX_TF_rH7tmKCdUJq/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:44:16Z", + "updatedAt": "2024-04-03T09:32:30Z", + "name": "F10_TRX_FG_ssscuo9tGxb", + "owner": "GoogleResearch", + "description": "F10 TRX FG", + "likes": 0, + "downloads": 942, + "filesize": 4205941, + "upload_date": "2020-09-03T16:44:13Z", + "modify_date": "2020-09-18T20:10:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/F10_TRX_FG_ssscuo9tGxb/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:43:54Z", + "updatedAt": "2024-04-03T10:00:24Z", + "name": "Epson_UltraChrome_T0548_Ink_Cartridge_Matte_Black_1pack", + "owner": "GoogleResearch", + "description": "Epson UltraChrome T0548 Ink Cartridge, Matte Black - 1-pack", + "likes": 0, + "downloads": 913, + "filesize": 8926737, + "upload_date": "2020-09-03T16:43:51Z", + "modify_date": "2020-09-18T20:10:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Epson_UltraChrome_T0548_Ink_Cartridge_Matte_Black_1pack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:43:49Z", + "updatedAt": "2024-04-03T09:32:21Z", + "name": "Epson_UltraChrome_T0543_Ink_Cartridge_Magenta_1pack", + "owner": "GoogleResearch", + "description": "Epson UltraChrome T0543 Ink Cartridge, Magenta - 1-pack", + "likes": 0, + "downloads": 964, + "filesize": 9072411, + "upload_date": "2020-09-03T16:43:46Z", + "modify_date": "2020-09-18T20:10:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Epson_UltraChrome_T0543_Ink_Cartridge_Magenta_1pack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:43:43Z", + "updatedAt": "2024-04-03T09:32:13Z", + "name": "Epson_T5803_Ink_Cartridge_Magenta_1pack", + "owner": "GoogleResearch", + "description": "Epson T5803 Ink Cartridge, Magenta - 1-pack", + "likes": 0, + "downloads": 1023, + "filesize": 12196384, + "upload_date": "2020-09-03T16:43:40Z", + "modify_date": "2020-09-18T20:10:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Epson_T5803_Ink_Cartridge_Magenta_1pack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:43:37Z", + "updatedAt": "2024-04-03T08:28:28Z", + "name": "Epson_LabelWorks_LC5WBN9_Tape_reel_labels_071_x_295_Roll_Black_on_White", + "owner": "GoogleResearch", + "description": "Epson LabelWorks LC-5WBN9 Tape reel labels, 0.71\" x 29.5' Roll, Black on White", + "likes": 0, + "downloads": 1185, + "filesize": 7684406, + "upload_date": "2020-09-03T16:43:35Z", + "modify_date": "2020-09-18T20:10:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Epson_LabelWorks_LC5WBN9_Tape_reel_labels_071_x_295_Roll_Black_on_White/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:43:32Z", + "updatedAt": "2024-04-03T09:32:09Z", + "name": "Epson_LabelWorks_LC4WBN9_Tape_reel_labels_047_x_295_Roll_Black_on_White", + "owner": "GoogleResearch", + "description": "Epson LabelWorks LC-4WBN9 Tape reel labels, 0.47\" x 29.5' Roll, Black on White", + "likes": 0, + "downloads": 950, + "filesize": 7453139, + "upload_date": "2020-09-03T16:43:29Z", + "modify_date": "2020-09-18T20:10:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Epson_LabelWorks_LC4WBN9_Tape_reel_labels_047_x_295_Roll_Black_on_White/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:43:27Z", + "updatedAt": "2024-04-03T08:59:13Z", + "name": "Epson_Ink_Cartridge_Black_200", + "owner": "GoogleResearch", + "description": "Epson Ink Cartridge, Black 200", + "likes": 0, + "downloads": 1070, + "filesize": 9731364, + "upload_date": "2020-09-03T16:43:24Z", + "modify_date": "2020-09-18T20:10:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Epson_Ink_Cartridge_Black_200/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:43:21Z", + "updatedAt": "2024-04-03T09:31:59Z", + "name": "Epson_Ink_Cartridge_126_Yellow", + "owner": "GoogleResearch", + "description": "Epson Ink Cartridge, 126 Yellow", + "likes": 0, + "downloads": 934, + "filesize": 9152518, + "upload_date": "2020-09-03T16:43:17Z", + "modify_date": "2020-09-18T20:10:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Epson_Ink_Cartridge_126_Yellow/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:43:15Z", + "updatedAt": "2024-04-03T08:28:18Z", + "name": "Epson_DURABrite_Ultra_786_Black_Ink_Cartridge_T786120S", + "owner": "GoogleResearch", + "description": "Epson DURABrite Ultra 786 Black Ink Cartridge (T786120-S)", + "likes": 0, + "downloads": 1306, + "filesize": 13601455, + "upload_date": "2020-09-03T16:43:11Z", + "modify_date": "2020-09-18T20:10:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Epson_DURABrite_Ultra_786_Black_Ink_Cartridge_T786120S/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:43:03Z", + "updatedAt": "2024-04-03T10:00:18Z", + "name": "Epson_273XL_Ink_Cartridge_Magenta", + "owner": "GoogleResearch", + "description": "Epson 273XL Ink Cartridge - Magenta", + "likes": 0, + "downloads": 998, + "filesize": 10833579, + "upload_date": "2020-09-03T16:43:00Z", + "modify_date": "2020-09-18T20:10:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Epson_273XL_Ink_Cartridge_Magenta/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:42:57Z", + "updatedAt": "2024-04-03T08:28:09Z", + "name": "Eat_to_Live_The_Amazing_NutrientRich_Program_for_Fast_and_Sustained_Weight_Loss_Revised_Edition_Book", + "owner": "GoogleResearch", + "description": "Eat to Live: The Amazing Nutrient-Rich Program for Fast and Sustained Weight Loss, Revised Edition [Book]", + "likes": 0, + "downloads": 1358, + "filesize": 10910764, + "upload_date": "2020-09-03T16:42:53Z", + "modify_date": "2020-09-18T20:10:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Eat_to_Live_The_Amazing_NutrientRich_Program_for_Fast_and_Sustained_Weight_Loss_Revised_Edition_Book/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:42:30Z", + "updatedAt": "2024-04-03T10:00:12Z", + "name": "ENFR_MID_ENFORCER", + "owner": "GoogleResearch", + "description": "ENFR MID (ENFORCER)", + "likes": 0, + "downloads": 936, + "filesize": 6160056, + "upload_date": "2020-09-03T16:42:27Z", + "modify_date": "2020-09-18T20:10:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ENFR_MID_ENFORCER/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:42:10Z", + "updatedAt": "2024-04-03T10:00:02Z", + "name": "Don_Franciscos_Gourmet_Coffee_Medium_Decaf_100_Colombian_12_oz_340_g", + "owner": "GoogleResearch", + "description": "Don Francisco's Gourmet Coffee, Medium, Decaf, 100% Colombian - 12 oz (340 g)", + "likes": 0, + "downloads": 921, + "filesize": 10086559, + "upload_date": "2020-09-03T16:42:07Z", + "modify_date": "2020-09-18T20:10:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Don_Franciscos_Gourmet_Coffee_Medium_Decaf_100_Colombian_12_oz_340_g/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:41:44Z", + "updatedAt": "2024-04-03T09:59:56Z", + "name": "Digital_Camo_Double_Decker_Lunch_Bag", + "owner": "GoogleResearch", + "description": "Digital Camo Double Decker Lunch Bag", + "likes": 0, + "downloads": 1121, + "filesize": 12403943, + "upload_date": "2020-09-03T16:41:40Z", + "modify_date": "2020-09-18T20:10:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Digital_Camo_Double_Decker_Lunch_Bag/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T16:41:32Z", + "updatedAt": "2024-04-03T08:02:16Z", + "name": "Dell_Series_9_Color_Ink_Cartridge_MK993_High_Yield", + "owner": "GoogleResearch", + "description": "Dell Series 9 Color Ink Cartridge (MK993), High Yield", + "likes": 0, + "downloads": 1198, + "filesize": 10399992, + "upload_date": "2020-09-03T16:41:29Z", + "modify_date": "2020-09-18T20:10:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Dell_Series_9_Color_Ink_Cartridge_MK993_High_Yield/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:41:24Z", + "updatedAt": "2024-04-03T09:31:52Z", + "name": "Dell_Ink_Cartridge_Yellow_31", + "owner": "GoogleResearch", + "description": "Dell Ink Cartridge, Yellow 31", + "likes": 0, + "downloads": 934, + "filesize": 7278375, + "upload_date": "2020-09-03T16:41:21Z", + "modify_date": "2020-09-18T20:10:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Dell_Ink_Cartridge_Yellow_31/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:41:19Z", + "updatedAt": "2024-04-03T09:31:45Z", + "name": "Dell_Ink_Cartridge", + "owner": "GoogleResearch", + "description": "Dell Ink Cartridge", + "likes": 0, + "downloads": 941, + "filesize": 6452496, + "upload_date": "2020-09-03T16:41:16Z", + "modify_date": "2020-09-18T20:10:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Dell_Ink_Cartridge/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:41:08Z", + "updatedAt": "2024-04-03T09:31:38Z", + "name": "D_ROSE_ENGLEWOOD_II", + "owner": "GoogleResearch", + "description": "D ROSE ENGLEWOOD II\nFW-SHOES", + "likes": 0, + "downloads": 1107, + "filesize": 7023234, + "upload_date": "2020-09-03T16:41:05Z", + "modify_date": "2020-09-18T20:10:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/D_ROSE_ENGLEWOOD_II/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:40:47Z", + "updatedAt": "2024-04-03T08:02:11Z", + "name": "D_ROSE_773_II_hvInJwJ5HUD", + "owner": "GoogleResearch", + "description": "D ROSE 773 II", + "likes": 0, + "downloads": 1227, + "filesize": 6510752, + "upload_date": "2020-09-03T16:40:44Z", + "modify_date": "2020-09-18T20:10:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/D_ROSE_773_II_hvInJwJ5HUD/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:40:36Z", + "updatedAt": "2024-04-03T09:31:30Z", + "name": "D_ROSE_773_II_Kqclsph05pE", + "owner": "GoogleResearch", + "description": "D ROSE 773 II", + "likes": 0, + "downloads": 947, + "filesize": 5451868, + "upload_date": "2020-09-03T16:40:33Z", + "modify_date": "2020-09-18T20:10:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/D_ROSE_773_II_Kqclsph05pE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:40:24Z", + "updatedAt": "2024-04-03T09:31:20Z", + "name": "D_ROSE_45", + "owner": "GoogleResearch", + "description": "D ROSE 4.5\nFW-HIGH TOP", + "likes": 0, + "downloads": 957, + "filesize": 9629571, + "upload_date": "2020-09-03T16:40:21Z", + "modify_date": "2020-09-18T20:10:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/D_ROSE_45/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:40:18Z", + "updatedAt": "2024-04-03T09:59:49Z", + "name": "DRAGON_W", + "owner": "GoogleResearch", + "description": "DRAGON W", + "likes": 0, + "downloads": 1051, + "filesize": 5154705, + "upload_date": "2020-09-03T16:40:16Z", + "modify_date": "2020-09-18T20:10:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/DRAGON_W/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:40:13Z", + "updatedAt": "2024-04-03T08:28:04Z", + "name": "DIM_CDG", + "owner": "GoogleResearch", + "description": "DIM + CDG", + "likes": 0, + "downloads": 1216, + "filesize": 5874264, + "upload_date": "2020-09-03T16:40:10Z", + "modify_date": "2020-09-18T20:10:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/DIM_CDG/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:38:13Z", + "updatedAt": "2024-04-03T08:41:26Z", + "name": "Crunch_Girl_Scouts_Candy_Bars_Peanut_Butter_Creme_78_oz_box", + "owner": "GoogleResearch", + "description": "Crunch Girl Scouts Candy Bars, Peanut Butter Creme - 7.8 oz box", + "likes": 0, + "downloads": 1138, + "filesize": 14930513, + "upload_date": "2020-09-03T16:38:09Z", + "modify_date": "2020-09-18T20:10:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Crunch_Girl_Scouts_Candy_Bars_Peanut_Butter_Creme_78_oz_box/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:38:06Z", + "updatedAt": "2024-04-03T09:59:42Z", + "name": "Creatine_Monohydrate", + "owner": "GoogleResearch", + "description": "Creatine Monohydrate", + "likes": 0, + "downloads": 958, + "filesize": 8490208, + "upload_date": "2020-09-03T16:38:03Z", + "modify_date": "2020-09-18T20:10:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Creatine_Monohydrate/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:38:00Z", + "updatedAt": "2024-04-03T08:27:56Z", + "name": "Cream_Tieks_Italian_Leather_Ballet_Flats", + "owner": "GoogleResearch", + "description": "Cream Tieks - Italian Leather Ballet Flats\nOld meets new in this stylish, sexy reinvention of the ballet flat. Return to romance in this lovely Cream color, designed to look exquisite with any outfit. A favorite among brides. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 1200, + "filesize": 6051128, + "upload_date": "2020-09-03T16:37:58Z", + "modify_date": "2020-09-18T20:10:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cream_Tieks_Italian_Leather_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:37:55Z", + "updatedAt": "2024-04-03T08:59:08Z", + "name": "Crazy_Shadow_2_oW4Jd10HFFr", + "owner": "GoogleResearch", + "description": "Crazy Shadow 2", + "likes": 0, + "downloads": 1104, + "filesize": 6103224, + "upload_date": "2020-09-03T16:37:52Z", + "modify_date": "2020-09-18T20:10:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Crazy_Shadow_2_oW4Jd10HFFr/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:37:34Z", + "updatedAt": "2024-04-03T08:59:01Z", + "name": "Crazy_Shadow_2", + "owner": "GoogleResearch", + "description": "Crazy Shadow 2", + "likes": 0, + "downloads": 1145, + "filesize": 6804303, + "upload_date": "2020-09-03T16:37:31Z", + "modify_date": "2020-09-18T20:10:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Crazy_Shadow_2/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:37:20Z", + "updatedAt": "2024-04-03T09:59:35Z", + "name": "Crazy_8", + "owner": "GoogleResearch", + "description": "Crazy 8\nFW-HIGH TOP", + "likes": 0, + "downloads": 970, + "filesize": 7323534, + "upload_date": "2020-09-03T16:37:17Z", + "modify_date": "2020-09-18T20:10:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Crazy_8/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:37:13Z", + "updatedAt": "2024-04-03T08:27:48Z", + "name": "Crayola_Washable_Sidewalk_Chalk_16_pack_wDZECiw7J6s", + "owner": "GoogleResearch", + "description": "Crayola Washable Sidewalk Chalk - 16 pack", + "likes": 0, + "downloads": 1268, + "filesize": 12687679, + "upload_date": "2020-09-03T16:37:10Z", + "modify_date": "2020-09-18T20:10:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Crayola_Washable_Sidewalk_Chalk_16_pack_wDZECiw7J6s/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:37:07Z", + "updatedAt": "2024-04-03T08:02:03Z", + "name": "Crayola_Washable_Sidewalk_Chalk_16_pack", + "owner": "GoogleResearch", + "description": "Crayola Washable Sidewalk Chalk - 16 pack", + "likes": 0, + "downloads": 1267, + "filesize": 10421991, + "upload_date": "2020-09-03T16:37:04Z", + "modify_date": "2020-09-18T20:10:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Crayola_Washable_Sidewalk_Chalk_16_pack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:37:01Z", + "updatedAt": "2024-04-03T09:31:15Z", + "name": "Crayola_Washable_Fingerpaint_Red_Blue_Yellow_3_count_8_fl_oz_bottes_each", + "owner": "GoogleResearch", + "description": "Crayola Washable Fingerpaint, Red, Blue, Yellow - 3 count, 8 fl oz bottes each", + "likes": 0, + "downloads": 936, + "filesize": 9106793, + "upload_date": "2020-09-03T16:36:58Z", + "modify_date": "2020-09-18T20:10:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Crayola_Washable_Fingerpaint_Red_Blue_Yellow_3_count_8_fl_oz_bottes_each/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:36:56Z", + "updatedAt": "2024-04-03T08:01:54Z", + "name": "Crayola_Model_Magic_Modeling_Material_White_3_oz", + "owner": "GoogleResearch", + "description": "Crayola Model Magic Modeling Material, White - 3 oz", + "likes": 0, + "downloads": 1317, + "filesize": 16021012, + "upload_date": "2020-09-03T16:36:52Z", + "modify_date": "2020-09-18T20:10:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Crayola_Model_Magic_Modeling_Material_White_3_oz/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:36:49Z", + "updatedAt": "2024-04-03T09:59:22Z", + "name": "Crayola_Model_Magic_Modeling_Material_Single_Packs_6_pack_05_oz_packs", + "owner": "GoogleResearch", + "description": "Crayola Model Magic Modeling Material, Single Packs - 6 pack, 0.5 oz packs", + "likes": 0, + "downloads": 1033, + "filesize": 14963908, + "upload_date": "2020-09-03T16:36:46Z", + "modify_date": "2020-09-18T20:10:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Crayola_Model_Magic_Modeling_Material_Single_Packs_6_pack_05_oz_packs/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:36:25Z", + "updatedAt": "2024-04-03T08:27:41Z", + "name": "Crayola_Crayons_Washable_24_crayons", + "owner": "GoogleResearch", + "description": "Crayola Crayons, Washable - 24 crayons\nNontoxic. World's most washable. Crayola Washable Crayons are designed to easily wash off walls with just warm water and a sponge. Safety Information: ACMI - AP: Arts & Creative Materials Institute Certified. Conforms to ASTM D 4236. Meets performance standard ANSI Z356.1. All Crayola art materials are nontoxic. Made in USA.", + "likes": 0, + "downloads": 1301, + "filesize": 12608541, + "upload_date": "2020-09-03T16:36:21Z", + "modify_date": "2020-09-18T20:10:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Crayola_Crayons_Washable_24_crayons/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:36:19Z", + "updatedAt": "2024-04-03T08:01:43Z", + "name": "Crayola_Crayons_24_count", + "owner": "GoogleResearch", + "description": "Crayola Crayons - 24 count", + "likes": 0, + "downloads": 1436, + "filesize": 12185762, + "upload_date": "2020-09-03T16:36:15Z", + "modify_date": "2020-09-18T20:10:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Crayola_Crayons_24_count/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:36:13Z", + "updatedAt": "2024-04-03T09:59:13Z", + "name": "Crayola_Crayons_120_crayons", + "owner": "GoogleResearch", + "description": "Crayola Crayons - 120 crayons\nNon-toxic. Surprise inside! Conforms to ASTM D-4236. Meets performance standard ANSI Z356.1. ACMI - Arts & Creative Materials Institute certified. Made in U.S.A.", + "likes": 0, + "downloads": 1031, + "filesize": 15478212, + "upload_date": "2020-09-03T16:36:09Z", + "modify_date": "2020-09-18T20:10:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Crayola_Crayons_120_crayons/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:35:46Z", + "updatedAt": "2024-04-03T09:31:05Z", + "name": "Crayola_Bonus_64_Crayons", + "owner": "GoogleResearch", + "description": "Crayola Bonus 64 Crayons", + "likes": 0, + "downloads": 1029, + "filesize": 11453749, + "upload_date": "2020-09-03T16:35:43Z", + "modify_date": "2020-09-18T20:10:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Crayola_Bonus_64_Crayons/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:35:07Z", + "updatedAt": "2024-04-03T09:59:06Z", + "name": "Court_Attitude", + "owner": "GoogleResearch", + "description": "Court Attitude", + "likes": 0, + "downloads": 929, + "filesize": 5824671, + "upload_date": "2020-09-03T16:35:05Z", + "modify_date": "2020-09-18T20:10:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Court_Attitude/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:35:02Z", + "updatedAt": "2024-04-03T09:58:58Z", + "name": "Copperhead_Snake_Tieks_Brown_Snake_Print_Ballet_Flats", + "owner": "GoogleResearch", + "description": "Copperhead Snake Tieks - Brown Snake Print Ballet Flats\nAdd exotic elegance to your step in these couture-worthy, Italian leather ballet flats. The metallic shine of copper, pewter and black combine forces with the perfect print to create a breathtaking pair of Tieks. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 922, + "filesize": 7122626, + "upload_date": "2020-09-03T16:34:59Z", + "modify_date": "2020-09-18T20:10:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Copperhead_Snake_Tieks_Brown_Snake_Print_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:34:51Z", + "updatedAt": "2024-04-03T09:30:52Z", + "name": "Cootie_Game_tDhURNbfU5J", + "owner": "GoogleResearch", + "description": "Cootie Game", + "likes": 0, + "downloads": 1100, + "filesize": 13486683, + "upload_date": "2020-09-03T16:34:48Z", + "modify_date": "2020-09-18T20:10:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cootie_Game_tDhURNbfU5J/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:34:45Z", + "updatedAt": "2024-04-03T08:01:14Z", + "name": "Cootie_Game", + "owner": "GoogleResearch", + "description": "Cootie Game", + "likes": 0, + "downloads": 1270, + "filesize": 6804056, + "upload_date": "2020-09-03T16:34:42Z", + "modify_date": "2020-09-18T20:10:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cootie_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:34:32Z", + "updatedAt": "2024-04-03T09:58:52Z", + "name": "Connect_4_Launchers", + "owner": "GoogleResearch", + "description": "Connect 4 Launchers", + "likes": 0, + "downloads": 1053, + "filesize": 12333542, + "upload_date": "2020-09-03T16:34:28Z", + "modify_date": "2020-09-18T20:10:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Connect_4_Launchers/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T16:34:26Z", + "updatedAt": "2024-04-03T08:58:54Z", + "name": "Colton_Wntr_Chukka_y4jO0I8JQFW", + "owner": "GoogleResearch", + "description": "Colton Wntr Chukka", + "likes": 0, + "downloads": 1135, + "filesize": 5061340, + "upload_date": "2020-09-03T16:34:23Z", + "modify_date": "2020-09-18T20:10:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Colton_Wntr_Chukka_y4jO0I8JQFW/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:32:38Z", + "updatedAt": "2024-04-03T09:30:46Z", + "name": "CoQ10_wSSVoxVppVD", + "owner": "GoogleResearch", + "description": "Co-Q10", + "likes": 0, + "downloads": 936, + "filesize": 6171294, + "upload_date": "2020-09-03T16:32:35Z", + "modify_date": "2020-09-18T20:10:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CoQ10_wSSVoxVppVD/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:32:33Z", + "updatedAt": "2024-04-03T09:58:47Z", + "name": "CoQ10_BjTLbuRVt1t", + "owner": "GoogleResearch", + "description": "Co-Q10", + "likes": 0, + "downloads": 924, + "filesize": 6117102, + "upload_date": "2020-09-03T16:32:30Z", + "modify_date": "2020-09-18T20:10:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CoQ10_BjTLbuRVt1t/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:32:28Z", + "updatedAt": "2024-04-03T08:58:46Z", + "name": "CoQ10", + "owner": "GoogleResearch", + "description": "Co-Q10", + "likes": 0, + "downloads": 1070, + "filesize": 7825334, + "upload_date": "2020-09-03T16:32:24Z", + "modify_date": "2020-09-18T20:10:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CoQ10/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:32:22Z", + "updatedAt": "2024-04-03T08:58:34Z", + "name": "Clue_Board_Game_Classic_Edition", + "owner": "GoogleResearch", + "description": "Clue Board Game, Classic Edition", + "likes": 0, + "downloads": 1232, + "filesize": 23175517, + "upload_date": "2020-09-03T16:32:17Z", + "modify_date": "2020-09-18T20:10:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Clue_Board_Game_Classic_Edition/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T16:32:14Z", + "updatedAt": "2024-04-03T08:58:24Z", + "name": "ClimaCool_Aerate_2_W_Wide", + "owner": "GoogleResearch", + "description": "ClimaCool Aerate 2 W Wide", + "likes": 0, + "downloads": 1107, + "filesize": 8434696, + "upload_date": "2020-09-03T16:32:11Z", + "modify_date": "2020-09-18T20:10:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ClimaCool_Aerate_2_W_Wide/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:32:09Z", + "updatedAt": "2024-04-03T09:30:41Z", + "name": "Chelsea_lo_fl_rdheel_zAQrnhlEfw8", + "owner": "GoogleResearch", + "description": "Chelsea lo fl rd.heel", + "likes": 0, + "downloads": 1154, + "filesize": 4963495, + "upload_date": "2020-09-03T16:32:06Z", + "modify_date": "2020-09-18T20:10:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Chelsea_lo_fl_rdheel_zAQrnhlEfw8/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:31:34Z", + "updatedAt": "2024-04-03T08:27:35Z", + "name": "Chelsea_lo_fl_rdheel_nQ0LPNF1oMw", + "owner": "GoogleResearch", + "description": "Chelsea lo fl rd.heel", + "likes": 0, + "downloads": 1218, + "filesize": 5390108, + "upload_date": "2020-09-03T16:31:31Z", + "modify_date": "2020-09-18T20:10:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Chelsea_lo_fl_rdheel_nQ0LPNF1oMw/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:30:16Z", + "updatedAt": "2024-04-03T09:58:41Z", + "name": "Chelsea_BlkHeelPMP_DwxLtZNxLZZ", + "owner": "GoogleResearch", + "description": "Chelsea Blk.Heel.PMP", + "likes": 0, + "downloads": 994, + "filesize": 6010051, + "upload_date": "2020-09-03T16:30:13Z", + "modify_date": "2020-09-18T20:10:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Chelsea_BlkHeelPMP_DwxLtZNxLZZ/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:29:26Z", + "updatedAt": "2024-04-03T08:27:27Z", + "name": "Cascadia_8_Color_AquariusHibscsBearingSeaBlk_Size_50", + "owner": "GoogleResearch", + "description": "Cascadia 8, Color: Aquarius/Hibscs/BearingSea/Blk, Size: 5.0\nThe Cascadia 8 was designed from the gritty, wet, and uneven ground up. Engineered to adapt to the surface and your foot, this versatile piece of equipment runs an ultramarathon and then asks for more. We swapped out the midsole for BioMoGo DNA to create a super cohesive transition and deluxe-ified the Segmented Crash Pad on the lateral side to smooth that heel-to-toe even more. The suede geometric pattern on the upper is a shout-out to past Cascadia designs but also serves the function of wrapping the foot for a close fit. Don't just take our word for it: Runner's World named the Cascadia 8 its \"Editor's Choice\" in the Trail Shoe Guide in the April 2013 issue and wrote, \"The Cascadia has that rare combination of road-shoe comfort and trail-shoe ruggedness.\" In short, the Cascadia 8 offers \"A well-cushioned and smooth ride on any surface.\" Please note: The Cascadia is intended as a trail running shoe. It is not pack-rated and may not hold up to the extra weight and demands of long pack hikes. We're your go-to option for trail runs, but a sturdy hiking boot would be better suited for the Pacific Crest Trail, Appalachian Trail, or other long pack trips. Runner's World is a registered trademark of Rodale Inc. 2013 Rodale Inc. All rights reserved. > See the Men's Cascadia 8 Category: Trail/Neutral Weight: 9.8 oz Platform: Universal Sprung Construction: Strobel Brooks DNA: BioMoGo DNA Launch Date: January 1, 2013", + "likes": 0, + "downloads": 1208, + "filesize": 8798987, + "upload_date": "2020-09-03T16:29:23Z", + "modify_date": "2020-09-18T20:10:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Cascadia_8_Color_AquariusHibscsBearingSeaBlk_Size_50/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:29:20Z", + "updatedAt": "2024-04-03T09:30:32Z", + "name": "Canon_Pixma_Ink_Cartridge_Cyan_251", + "owner": "GoogleResearch", + "description": "Canon Pixma Ink Cartridge, Cyan 251", + "likes": 0, + "downloads": 1051, + "filesize": 6883316, + "upload_date": "2020-09-03T16:29:18Z", + "modify_date": "2020-09-18T20:10:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Canon_Pixma_Ink_Cartridge_Cyan_251/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:29:15Z", + "updatedAt": "2024-04-03T09:30:26Z", + "name": "Canon_Pixma_Ink_Cartridge_8_Red", + "owner": "GoogleResearch", + "description": "Canon Pixma Ink Cartridge, 8 Red", + "likes": 0, + "downloads": 943, + "filesize": 7221613, + "upload_date": "2020-09-03T16:29:12Z", + "modify_date": "2020-09-18T20:10:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Canon_Pixma_Ink_Cartridge_8_Red/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:28:36Z", + "updatedAt": "2024-04-03T08:58:16Z", + "name": "Canon_Pixma_Ink_Cartridge_8_Green", + "owner": "GoogleResearch", + "description": "Canon Pixma Ink Cartridge, 8 Green", + "likes": 0, + "downloads": 1126, + "filesize": 8535043, + "upload_date": "2020-09-03T16:28:33Z", + "modify_date": "2020-09-18T20:10:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Canon_Pixma_Ink_Cartridge_8_Green/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:28:30Z", + "updatedAt": "2024-04-03T08:58:06Z", + "name": "Canon_Pixma_Ink_Cartridge_8", + "owner": "GoogleResearch", + "description": "Canon Pixma Ink Cartridge, 8", + "likes": 0, + "downloads": 1092, + "filesize": 7569481, + "upload_date": "2020-09-03T16:28:27Z", + "modify_date": "2020-09-18T20:10:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Canon_Pixma_Ink_Cartridge_8/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:28:25Z", + "updatedAt": "2024-04-03T09:30:18Z", + "name": "Canon_Pixma_Ink_Cartridge_251_M", + "owner": "GoogleResearch", + "description": "Canon Pixma Ink Cartridge, 251 M", + "likes": 0, + "downloads": 1003, + "filesize": 6322793, + "upload_date": "2020-09-03T16:28:22Z", + "modify_date": "2020-09-18T20:10:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Canon_Pixma_Ink_Cartridge_251_M/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:28:20Z", + "updatedAt": "2024-04-03T09:58:33Z", + "name": "Canon_Pixma_Chromalife_100_Magenta_8", + "owner": "GoogleResearch", + "description": "Canon Pixma Chromalife 100, Magenta 8", + "likes": 0, + "downloads": 910, + "filesize": 7101578, + "upload_date": "2020-09-03T16:28:17Z", + "modify_date": "2020-09-18T20:10:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Canon_Pixma_Chromalife_100_Magenta_8/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:28:15Z", + "updatedAt": "2024-04-03T09:58:25Z", + "name": "Canon_Ink_Cartridge_Green_6", + "owner": "GoogleResearch", + "description": "Canon Ink Cartridge, Green 6", + "likes": 0, + "downloads": 1018, + "filesize": 11100536, + "upload_date": "2020-09-03T16:28:11Z", + "modify_date": "2020-09-18T20:10:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Canon_Ink_Cartridge_Green_6/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:28:09Z", + "updatedAt": "2024-04-03T09:30:09Z", + "name": "Canon_225226_Ink_Cartridges_BlackColor_Cyan_Magenta_Yellow_6_count", + "owner": "GoogleResearch", + "description": "Canon 225/226 Ink Cartridges - Black/Color (Cyan, Magenta, Yellow) - 6 count", + "likes": 0, + "downloads": 1045, + "filesize": 10337662, + "upload_date": "2020-09-03T16:28:06Z", + "modify_date": "2020-09-18T20:10:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Canon_225226_Ink_Cartridges_BlackColor_Cyan_Magenta_Yellow_6_count/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:28:03Z", + "updatedAt": "2024-04-03T08:58:02Z", + "name": "California_Navy_Tieks_Italian_Leather_Ballet_Flats", + "owner": "GoogleResearch", + "description": "California Navy Tieks - Italian Leather Ballet Flats\nThese California Navy ballet flats provide an effortless, elegant look for a day on the boat or an evening on the town. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 1106, + "filesize": 6408881, + "upload_date": "2020-09-03T16:28:00Z", + "modify_date": "2020-09-18T20:10:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/California_Navy_Tieks_Italian_Leather_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:27:20Z", + "updatedAt": "2024-04-03T09:58:19Z", + "name": "CREATIVE_BLOCKS_35_MM", + "owner": "GoogleResearch", + "description": "CREATIVE BLOCKS (35 MM.)\nBuild a castle or a city! Let your creativity take over!", + "likes": 0, + "downloads": 923, + "filesize": 9353818, + "upload_date": "2020-09-03T16:27:17Z", + "modify_date": "2020-09-18T20:10:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CREATIVE_BLOCKS_35_MM/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:26:59Z", + "updatedAt": "2024-04-03T09:58:14Z", + "name": "COAST_GUARD_BOAT", + "owner": "GoogleResearch", + "description": "COAST GUARD BOAT\nProtect the shores and rescue those stuck out at sea! Stimulate interactive and imaginative play.", + "likes": 0, + "downloads": 1020, + "filesize": 7324616, + "upload_date": "2020-09-03T16:26:56Z", + "modify_date": "2020-09-18T20:10:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/COAST_GUARD_BOAT/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:26:28Z", + "updatedAt": "2024-04-03T08:27:21Z", + "name": "CLIMACOOL_BOAT_BREEZE_IE6CyqSaDwN", + "owner": "GoogleResearch", + "description": "CLIMACOOL BOAT BREEZE\nFW-SHOES", + "likes": 0, + "downloads": 1227, + "filesize": 5705842, + "upload_date": "2020-09-03T16:26:25Z", + "modify_date": "2020-09-18T20:10:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CLIMACOOL_BOAT_BREEZE_IE6CyqSaDwN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:26:16Z", + "updatedAt": "2024-04-04T05:31:54Z", + "name": "CITY_TAXI_POLICE_CAR", + "owner": "GoogleResearch", + "description": "CITY TAXI & POLICE CAR", + "likes": 0, + "downloads": 1252, + "filesize": 4679700, + "upload_date": "2020-09-03T16:26:14Z", + "modify_date": "2020-09-18T20:10:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CITY_TAXI_POLICE_CAR/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:25:43Z", + "updatedAt": "2024-04-03T08:57:56Z", + "name": "CHILDRENS_ROOM_NEO", + "owner": "GoogleResearch", + "description": "CHILDREN'S ROOM - NEO\nThe set consists of a children?s bunk bed which can be split into 2 beds, a cupboard that can be transformed into a desk, and a chair.", + "likes": 0, + "downloads": 1212, + "filesize": 11679885, + "upload_date": "2020-09-03T16:25:40Z", + "modify_date": "2020-09-18T20:10:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CHILDRENS_ROOM_NEO/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:24:26Z", + "updatedAt": "2024-04-03T09:58:03Z", + "name": "CHICKEN_RACER", + "owner": "GoogleResearch", + "description": "CHICKEN RACER\nHave great fun with Chicken 3cars. They have gently curve design which is easy for children to hold and push", + "likes": 0, + "downloads": 962, + "filesize": 7944393, + "upload_date": "2020-09-03T16:24:23Z", + "modify_date": "2020-09-18T20:10:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CHICKEN_RACER/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:24:20Z", + "updatedAt": "2024-04-03T08:57:47Z", + "name": "CAR_CARRIER_TRAIN", + "owner": "GoogleResearch", + "description": "CAR CARRIER TRAIN\nThe Car Carrier Train is a great eco-friendly addition to any rail set. This item is compatible with the rest of the PlanCity line.", + "likes": 0, + "downloads": 1153, + "filesize": 9550953, + "upload_date": "2020-09-03T16:24:17Z", + "modify_date": "2020-09-18T20:10:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CAR_CARRIER_TRAIN/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:24:15Z", + "updatedAt": "2024-04-03T08:27:08Z", + "name": "CARSII", + "owner": "GoogleResearch", + "description": "CARS-II", + "likes": 0, + "downloads": 1245, + "filesize": 7074480, + "upload_date": "2020-09-03T16:24:12Z", + "modify_date": "2020-09-18T20:10:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/CARSII/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:24:06Z", + "updatedAt": "2024-04-03T08:41:16Z", + "name": "Brisk_Iced_Tea_Lemon_12_12_fl_oz_355_ml_cans_144_fl_oz_426_lt", + "owner": "GoogleResearch", + "description": "Brisk Iced Tea, Lemon - 12 - 12 fl oz (355 ml) cans [144 fl oz (426 lt)]\ndescription 377", + "likes": 0, + "downloads": 1286, + "filesize": 15524398, + "upload_date": "2020-09-03T16:24:03Z", + "modify_date": "2020-09-18T20:10:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Brisk_Iced_Tea_Lemon_12_12_fl_oz_355_ml_cans_144_fl_oz_426_lt/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:24:00Z", + "updatedAt": "2024-04-03T09:57:55Z", + "name": "Borage_GLA240Gamma_Tocopherol", + "owner": "GoogleResearch", + "description": "Borage GLA-240+Gamma Tocopherol", + "likes": 0, + "downloads": 949, + "filesize": 6316391, + "upload_date": "2020-09-03T16:23:57Z", + "modify_date": "2020-09-18T20:10:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Borage_GLA240Gamma_Tocopherol/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:23:55Z", + "updatedAt": "2024-04-03T08:01:07Z", + "name": "Blue_Jasmine_Includes_Digital_Copy_UltraViolet_DVD", + "owner": "GoogleResearch", + "description": "Blue Jasmine [Includes Digital Copy] [UltraViolet] [DVD]", + "likes": 0, + "downloads": 1323, + "filesize": 10610808, + "upload_date": "2020-09-03T16:23:51Z", + "modify_date": "2020-09-18T20:10:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Blue_Jasmine_Includes_Digital_Copy_UltraViolet_DVD/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T16:23:49Z", + "updatedAt": "2024-04-03T08:00:39Z", + "name": "BlueBlack_Nintendo_3DSXL", + "owner": "GoogleResearch", + "description": "Blue/Black Nintendo 3DS?XL\nThe Nintendo 3DS XL system combines next-generation portable gaming with eye-popping 3D\nvisuals?without the need for special glasses. Take 3D photos, connect to friends, other players, or wireless hotspots with the wireless StreetPass? and SpotPass? communication modes. From games to photos and beyond, Nintendo 3DS XL is the ultimate 3D entertainment system. It comes bundled with a 4GB SD card, making it perfect for downloading content from the Nintendo eShop.\n\nThe Nintendo 3DS XL system plays all Nintendo DS games. Nintendo DS games will not appear in 3D.", + "likes": 0, + "downloads": 1247, + "filesize": 4909199, + "upload_date": "2020-09-03T16:23:46Z", + "modify_date": "2020-09-18T20:10:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BlueBlack_Nintendo_3DSXL/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:23:44Z", + "updatedAt": "2024-04-03T09:57:48Z", + "name": "Blackcurrant_Lutein", + "owner": "GoogleResearch", + "description": "Blackcurrant + Lutein", + "likes": 0, + "downloads": 954, + "filesize": 7305562, + "upload_date": "2020-09-03T16:23:40Z", + "modify_date": "2020-09-18T20:10:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Blackcurrant_Lutein/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:22:41Z", + "updatedAt": "2024-04-03T09:57:36Z", + "name": "Black_and_Decker_TR3500SD_2Slice_Toaster", + "owner": "GoogleResearch", + "description": "Black and Decker TR3500SD 2-Slice Toaster", + "likes": 0, + "downloads": 1009, + "filesize": 9507820, + "upload_date": "2020-09-03T16:22:38Z", + "modify_date": "2020-09-18T20:10:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Black_and_Decker_TR3500SD_2Slice_Toaster/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:21:26Z", + "updatedAt": "2024-04-03T08:57:38Z", + "name": "Black_and_Decker_PBJ2000_FusionBlade_Blender_Jars", + "owner": "GoogleResearch", + "description": "Black and Decker PBJ2000 FusionBlade Blender Jars", + "likes": 0, + "downloads": 1196, + "filesize": 12657652, + "upload_date": "2020-09-03T16:21:23Z", + "modify_date": "2020-09-18T20:10:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Black_and_Decker_PBJ2000_FusionBlade_Blender_Jars/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:21:20Z", + "updatedAt": "2024-04-03T09:43:33Z", + "name": "Black_Forest_Fruit_Snacks_Juicy_Filled_Centers_10_pouches_9_oz_total", + "owner": "GoogleResearch", + "description": "Black Forest Fruit Snacks, Juicy Filled Centers - 10 pouches, 9 oz total", + "likes": 0, + "downloads": 1056, + "filesize": 13227325, + "upload_date": "2020-09-03T16:21:17Z", + "modify_date": "2020-09-18T20:10:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Black_Forest_Fruit_Snacks_Juicy_Filled_Centers_10_pouches_9_oz_total/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:21:14Z", + "updatedAt": "2024-04-03T09:43:24Z", + "name": "Black_Forest_Fruit_Snacks_28_Pack_Grape", + "owner": "GoogleResearch", + "description": "Black Forest Fruit Snacks 28 Pack Grape", + "likes": 0, + "downloads": 988, + "filesize": 12633310, + "upload_date": "2020-09-03T16:21:11Z", + "modify_date": "2020-09-18T20:10:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Black_Forest_Fruit_Snacks_28_Pack_Grape/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:21:08Z", + "updatedAt": "2024-04-03T08:13:52Z", + "name": "Black_Elderberry_Syrup_54_oz_Gaia_Herbs", + "owner": "GoogleResearch", + "description": "Black Elderberry Syrup, 5.4 oz, Gaia Herbs", + "likes": 0, + "downloads": 1257, + "filesize": 11713898, + "upload_date": "2020-09-03T16:21:05Z", + "modify_date": "2020-09-18T20:10:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Black_Elderberry_Syrup_54_oz_Gaia_Herbs/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:21:01Z", + "updatedAt": "2024-04-03T08:00:31Z", + "name": "Black_Decker_Stainless_Steel_Toaster_4_Slice", + "owner": "GoogleResearch", + "description": "Black & Decker Stainless Steel Toaster, 4 Slice", + "likes": 0, + "downloads": 1276, + "filesize": 7994220, + "upload_date": "2020-09-03T16:20:58Z", + "modify_date": "2020-09-18T20:11:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Black_Decker_Stainless_Steel_Toaster_4_Slice/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:20:55Z", + "updatedAt": "2024-04-03T09:29:59Z", + "name": "Black_Decker_CM2035B_12Cup_Thermal_Coffeemaker", + "owner": "GoogleResearch", + "description": "Black & Decker CM2035B 12-Cup Thermal Coffeemaker", + "likes": 0, + "downloads": 990, + "filesize": 7125583, + "upload_date": "2020-09-03T16:20:52Z", + "modify_date": "2020-09-18T20:11:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Black_Decker_CM2035B_12Cup_Thermal_Coffeemaker/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:20:50Z", + "updatedAt": "2024-04-03T08:00:26Z", + "name": "BlackBlack_Nintendo_3DSXL", + "owner": "GoogleResearch", + "description": "Black/Black Nintendo 3DS?XL\nThe Nintendo 3DS XL system combines next-generation portable gaming with eye-popping 3D\nvisuals?without the need for special glasses. Take 3D photos, connect to friends, other players, or wireless hotspots with the wireless StreetPass? and SpotPass? communication modes. From games to photos and beyond, Nintendo 3DS XL is the ultimate 3D entertainment system. It comes bundled with a 4GB SD card, making it perfect for downloading content from the Nintendo eShop.\n\nThe Nintendo 3DS XL system plays all Nintendo DS games. Nintendo DS games will not appear in 3D.", + "likes": 0, + "downloads": 1321, + "filesize": 4545899, + "upload_date": "2020-09-03T16:20:47Z", + "modify_date": "2020-09-18T20:11:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BlackBlack_Nintendo_3DSXL/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:20:45Z", + "updatedAt": "2024-04-03T08:57:29Z", + "name": "Big_Dot_Pink_Pencil_Case", + "owner": "GoogleResearch", + "description": "Big Dot Pink Pencil Case", + "likes": 0, + "downloads": 1132, + "filesize": 11241845, + "upload_date": "2020-09-03T16:20:42Z", + "modify_date": "2020-09-18T20:11:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Big_Dot_Pink_Pencil_Case/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T16:20:39Z", + "updatedAt": "2024-04-03T08:57:20Z", + "name": "Big_Dot_Aqua_Pencil_Case", + "owner": "GoogleResearch", + "description": "Big Dot Aqua Pencil Case", + "likes": 0, + "downloads": 1264, + "filesize": 13598313, + "upload_date": "2020-09-03T16:20:35Z", + "modify_date": "2020-09-18T20:11:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Big_Dot_Aqua_Pencil_Case/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bag" + ] + }, + { + "createdAt": "2020-09-03T16:20:33Z", + "updatedAt": "2024-04-03T08:57:05Z", + "name": "Bifidus_Balance_FOS", + "owner": "GoogleResearch", + "description": "Bifidus Balance + FOS", + "likes": 0, + "downloads": 1092, + "filesize": 7690979, + "upload_date": "2020-09-03T16:20:30Z", + "modify_date": "2020-09-18T20:11:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Bifidus_Balance_FOS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:20:27Z", + "updatedAt": "2024-04-03T09:57:29Z", + "name": "Beyonc_Life_is_But_a_Dream_DVD", + "owner": "GoogleResearch", + "description": "Beyonc? - Life is But a Dream [DVD]", + "likes": 0, + "downloads": 1001, + "filesize": 12553055, + "upload_date": "2020-09-03T16:20:24Z", + "modify_date": "2020-09-18T20:11:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Beyonc_Life_is_But_a_Dream_DVD/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:19:25Z", + "updatedAt": "2024-04-03T08:57:00Z", + "name": "Beta_Glucan", + "owner": "GoogleResearch", + "description": "Beta Glucan", + "likes": 0, + "downloads": 1104, + "filesize": 6280843, + "upload_date": "2020-09-03T16:19:22Z", + "modify_date": "2020-09-18T20:11:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Beta_Glucan/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:19:20Z", + "updatedAt": "2024-04-03T09:29:51Z", + "name": "Beetle_Adventure_Racing_Nintendo_64", + "owner": "GoogleResearch", + "description": "Beetle Adventure Racing, Nintendo 64", + "likes": 0, + "downloads": 944, + "filesize": 10273241, + "upload_date": "2020-09-03T16:19:17Z", + "modify_date": "2020-09-18T20:11:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Beetle_Adventure_Racing_Nintendo_64/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:18:39Z", + "updatedAt": "2024-04-03T09:56:43Z", + "name": "Balderdash_Game", + "owner": "GoogleResearch", + "description": "Balderdash Game", + "likes": 0, + "downloads": 1085, + "filesize": 12789836, + "upload_date": "2020-09-03T16:18:36Z", + "modify_date": "2020-09-18T20:11:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Balderdash_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Board Games" + ] + }, + { + "createdAt": "2020-09-03T16:18:33Z", + "updatedAt": "2024-04-03T08:00:17Z", + "name": "BUNNY_RATTLE", + "owner": "GoogleResearch", + "description": "BUNNY RATTLE\nLittle Bunny Rattle makes a bell sound which stimulate baby's sound exploring and also enhances hand-eye coordination.", + "likes": 0, + "downloads": 1277, + "filesize": 7885834, + "upload_date": "2020-09-03T16:18:30Z", + "modify_date": "2020-09-18T20:11:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BUNNY_RATTLE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:17:46Z", + "updatedAt": "2024-04-03T08:56:54Z", + "name": "BUNNY_RACER", + "owner": "GoogleResearch", + "description": "BUNNY RACER\nHave great fun with Rabbit cars. They have gently curve design which is easy for children to hold and push", + "likes": 0, + "downloads": 1216, + "filesize": 9101986, + "upload_date": "2020-09-03T16:17:43Z", + "modify_date": "2020-09-18T20:11:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BUNNY_RACER/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:17:40Z", + "updatedAt": "2024-04-03T08:27:03Z", + "name": "BUILD_A_ZOO", + "owner": "GoogleResearch", + "description": "BUILD A ZOO\nHelp develop fine motor skills by building the zoo and matching the animal to its place using the forceps. It also reinforces color recognition and counting. The set consists of 16 wooden pieces and 5 animals.", + "likes": 0, + "downloads": 1237, + "filesize": 8269812, + "upload_date": "2020-09-03T16:17:37Z", + "modify_date": "2020-09-18T20:11:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BUILD_A_ZOO/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:17:35Z", + "updatedAt": "2024-04-03T08:56:49Z", + "name": "BRAILLE_ALPHABET_AZ", + "owner": "GoogleResearch", + "description": "BRAILLE ALPHABET A-Z\nThis 26 piece Braille Alphabet set can be played 2 sided, one upper case, another one lower case. Each piece has a Braille symbol that represents each letter in the alphabet.", + "likes": 0, + "downloads": 1278, + "filesize": 12056374, + "upload_date": "2020-09-03T16:17:31Z", + "modify_date": "2020-09-18T20:11:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BRAILLE_ALPHABET_AZ/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:16:41Z", + "updatedAt": "2024-04-03T09:29:44Z", + "name": "BIRD_RATTLE", + "owner": "GoogleResearch", + "description": "BIRD RATTLE\nThis cute Bird Rattle provides a source of stimulation. Encourage babies to explore sound, enhance fine motor skills while grasping and develop hand-eye coordination.", + "likes": 0, + "downloads": 948, + "filesize": 8381309, + "upload_date": "2020-09-03T16:16:38Z", + "modify_date": "2020-09-18T20:11:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BIRD_RATTLE/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:16:35Z", + "updatedAt": "2024-04-03T09:29:36Z", + "name": "BEDROOM_NEO", + "owner": "GoogleResearch", + "description": "BEDROOM - NEO\nThis selection of Neo Furniture sets specially designed in fun, bright colors.", + "likes": 0, + "downloads": 986, + "filesize": 7875970, + "upload_date": "2020-09-03T16:16:32Z", + "modify_date": "2020-09-18T20:11:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BEDROOM_NEO/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:16:30Z", + "updatedAt": "2024-04-03T09:56:36Z", + "name": "BALANCING_CACTUS", + "owner": "GoogleResearch", + "description": "BALANCING CACTUS\nIt?s all about strategy! The player that can build and balance the cactus without making it fall is the winner. Ideal for 1 - 4 players.", + "likes": 0, + "downloads": 1053, + "filesize": 7325424, + "upload_date": "2020-09-03T16:16:27Z", + "modify_date": "2020-09-18T20:11:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BALANCING_CACTUS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:16:25Z", + "updatedAt": "2024-04-03T09:29:31Z", + "name": "BABY_CAR", + "owner": "GoogleResearch", + "description": "BABY CAR\nThis colorful toy car has a flexible body that reacts to your baby?s touch.", + "likes": 0, + "downloads": 1044, + "filesize": 7249971, + "upload_date": "2020-09-03T16:16:22Z", + "modify_date": "2020-09-18T20:11:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/BABY_CAR/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:16:20Z", + "updatedAt": "2024-04-03T08:56:42Z", + "name": "Azure_Snake_Tieks_Leather_Snake_Print_Ballet_Flats", + "owner": "GoogleResearch", + "description": "Azure Snake Tieks - Leather Snake Print Ballet Flats\nThese striking ballet flats combine Tiek Blue, cobalt, black and silver in a unique snake print. Made with premium, soft, top-grain Italian leather. Non-elasticized, cushioned back and padded instep. Foldable split-sole design for ultimate portability. Signature Tiek Blue stripes and durable, non-skid rubber soles.", + "likes": 0, + "downloads": 1197, + "filesize": 7480383, + "upload_date": "2020-09-03T16:16:16Z", + "modify_date": "2020-09-18T20:11:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Azure_Snake_Tieks_Leather_Snake_Print_Ballet_Flats/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:16:14Z", + "updatedAt": "2024-04-03T09:29:23Z", + "name": "Avengers_Gamma_Green_Smash_Fists", + "owner": "GoogleResearch", + "description": "Avengers Gamma Green Smash Fists", + "likes": 0, + "downloads": 955, + "filesize": 8966470, + "upload_date": "2020-09-03T16:16:11Z", + "modify_date": "2020-09-18T20:11:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Avengers_Gamma_Green_Smash_Fists/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:16:08Z", + "updatedAt": "2024-04-03T09:56:31Z", + "name": "Asus_Z97IPLUS_Motherboard_Mini_ITX_LGA1150_Socket", + "owner": "GoogleResearch", + "description": "Asus Z97I-PLUS Motherboard Mini ITX LGA1150 Socket", + "likes": 0, + "downloads": 1056, + "filesize": 12760858, + "upload_date": "2020-09-03T16:16:05Z", + "modify_date": "2020-09-18T20:11:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Asus_Z97IPLUS_Motherboard_Mini_ITX_LGA1150_Socket/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:16:01Z", + "updatedAt": "2024-04-03T09:29:14Z", + "name": "Asus_Z97AR_LGA_1150_Intel_ATX_Motherboard", + "owner": "GoogleResearch", + "description": "Asus Z97-AR LGA 1150 Intel ATX Motherboard", + "likes": 0, + "downloads": 1162, + "filesize": 12547359, + "upload_date": "2020-09-03T16:15:58Z", + "modify_date": "2020-09-18T20:11:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Asus_Z97AR_LGA_1150_Intel_ATX_Motherboard/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:15:55Z", + "updatedAt": "2024-04-03T09:29:04Z", + "name": "Asus_Z87PRO_Motherboard_ATX_LGA1150_Socket", + "owner": "GoogleResearch", + "description": "Asus Z87-PRO Motherboard ATX LGA1150 Socket", + "likes": 0, + "downloads": 1120, + "filesize": 15632466, + "upload_date": "2020-09-03T16:15:51Z", + "modify_date": "2020-09-18T20:11:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Asus_Z87PRO_Motherboard_ATX_LGA1150_Socket/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:15:03Z", + "updatedAt": "2024-04-03T08:56:32Z", + "name": "Asus_X99Deluxe_Motherboard_ATX_LGA2011v3_Socket", + "owner": "GoogleResearch", + "description": "Asus X99-Deluxe Motherboard ATX LGA2011-v3 Socket", + "likes": 0, + "downloads": 1216, + "filesize": 16152629, + "upload_date": "2020-09-03T16:14:59Z", + "modify_date": "2020-09-18T20:11:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Asus_X99Deluxe_Motherboard_ATX_LGA2011v3_Socket/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:14:56Z", + "updatedAt": "2024-04-03T08:00:07Z", + "name": "Asus_Sabertooth_Z97_MARK_1_Motherboard_ATX_LGA1150_Socket", + "owner": "GoogleResearch", + "description": "Asus Sabertooth Z97 MARK 1 - Motherboard - ATX - LGA1150 Socket", + "likes": 0, + "downloads": 1391, + "filesize": 15393951, + "upload_date": "2020-09-03T16:14:52Z", + "modify_date": "2020-09-18T20:11:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Asus_Sabertooth_Z97_MARK_1_Motherboard_ATX_LGA1150_Socket/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:13:51Z", + "updatedAt": "2024-04-03T07:59:56Z", + "name": "Asus_Sabertooth_990FX_20_Motherboard_ATX_Socket_AM3", + "owner": "GoogleResearch", + "description": "Asus Sabertooth 990FX 2.0 Motherboard ATX Socket AM3+", + "likes": 0, + "downloads": 1408, + "filesize": 15518095, + "upload_date": "2020-09-03T16:13:47Z", + "modify_date": "2020-09-18T20:11:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Asus_Sabertooth_990FX_20_Motherboard_ATX_Socket_AM3/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:13:44Z", + "updatedAt": "2024-04-03T07:59:49Z", + "name": "Asus_M5A99FX_PRO_R20_Motherboard_ATX_Socket_AM3", + "owner": "GoogleResearch", + "description": "Asus M5A99FX PRO R2.0 Motherboard ATX Socket AM3+", + "likes": 0, + "downloads": 1455, + "filesize": 16430797, + "upload_date": "2020-09-03T16:13:40Z", + "modify_date": "2020-09-18T20:11:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Asus_M5A99FX_PRO_R20_Motherboard_ATX_Socket_AM3/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:13:37Z", + "updatedAt": "2024-04-03T07:59:39Z", + "name": "Asus_M5A78LMUSB3_Motherboard_Micro_ATX_Socket_AM3", + "owner": "GoogleResearch", + "description": "Asus M5A78L-M/USB3 Motherboard Micro ATX Socket AM3+", + "likes": 0, + "downloads": 1429, + "filesize": 13012097, + "upload_date": "2020-09-03T16:13:34Z", + "modify_date": "2020-09-18T20:11:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Asus_M5A78LMUSB3_Motherboard_Micro_ATX_Socket_AM3/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:13:31Z", + "updatedAt": "2024-04-03T08:26:53Z", + "name": "Asus_80211ac_DualBand_Gigabit_Wireless_Router_RTAC68R", + "owner": "GoogleResearch", + "description": "Asus - 802.11ac Dual-Band Gigabit Wireless Router RT-AC68R", + "likes": 0, + "downloads": 1335, + "filesize": 14111668, + "upload_date": "2020-09-03T16:13:28Z", + "modify_date": "2020-09-18T20:11:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Asus_80211ac_DualBand_Gigabit_Wireless_Router_RTAC68R/tip/files/thumbnails/0.jpg", + "private": false + }, + { + "createdAt": "2020-09-03T16:13:25Z", + "updatedAt": "2024-04-03T08:41:05Z", + "name": "Arm_Hammer_Diaper_Pail_Refills_12_Pack_MFWkmoweejt", + "owner": "GoogleResearch", + "description": "Arm Hammer Diaper Pail Refills 12 Pack", + "likes": 0, + "downloads": 1110, + "filesize": 10701031, + "upload_date": "2020-09-03T16:13:22Z", + "modify_date": "2020-09-18T20:11:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Arm_Hammer_Diaper_Pail_Refills_12_Pack_MFWkmoweejt/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:12:51Z", + "updatedAt": "2024-04-03T08:26:45Z", + "name": "Apples_to_Apples_Kids_Edition", + "owner": "GoogleResearch", + "description": "Apples to Apples - Kids Edition", + "likes": 0, + "downloads": 1438, + "filesize": 14903843, + "upload_date": "2020-09-03T16:12:47Z", + "modify_date": "2020-09-18T20:11:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Apples_to_Apples_Kids_Edition/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:12:00Z", + "updatedAt": "2024-04-03T07:59:33Z", + "name": "Animal_Crossing_New_Leaf_Nintendo_3DS_Game", + "owner": "GoogleResearch", + "description": "Animal Crossing: New Leaf [Nintendo 3DS Game]", + "likes": 0, + "downloads": 1503, + "filesize": 10715665, + "upload_date": "2020-09-03T16:11:56Z", + "modify_date": "2020-09-18T20:11:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Animal_Crossing_New_Leaf_Nintendo_3DS_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Media Cases" + ] + }, + { + "createdAt": "2020-09-03T16:11:43Z", + "updatedAt": "2024-04-03T09:56:27Z", + "name": "Android_Figure_Orange", + "owner": "GoogleResearch", + "description": "Android Figure, Orange", + "likes": 0, + "downloads": 1177, + "filesize": 3481992, + "upload_date": "2020-09-03T16:11:41Z", + "modify_date": "2020-09-18T20:11:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Android_Figure_Orange/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:11:35Z", + "updatedAt": "2024-04-03T08:26:40Z", + "name": "Android_Figure_Chrome", + "owner": "GoogleResearch", + "description": "Android Figure, Chrome", + "likes": 0, + "downloads": 1280, + "filesize": 3854751, + "upload_date": "2020-09-03T16:11:33Z", + "modify_date": "2020-09-18T20:11:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Android_Figure_Chrome/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:11:20Z", + "updatedAt": "2024-04-03T08:13:47Z", + "name": "AllergenFree_JarroDophilus", + "owner": "GoogleResearch", + "description": "Allergen-Free Jarro-Dophilus?", + "likes": 0, + "downloads": 1306, + "filesize": 7478211, + "upload_date": "2020-09-03T16:11:17Z", + "modify_date": "2020-09-18T20:11:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/AllergenFree_JarroDophilus/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:11:15Z", + "updatedAt": "2024-04-03T08:13:40Z", + "name": "Adrenaline_GTS_13_Color_WhtObsdianBlckOlmpcSlvr_Size_70", + "owner": "GoogleResearch", + "description": "Adrenaline GTS 13, Color: Wht/Obsdian/Blck/Olmpc/Slvr, Size: 7.0\nLucky 13 is our best Adrenaline GTS yet. We paid special attention to the underfoot flex by adding Omega Flex Grooves and continuing Omni Grooves in the forefoot, allowing the outsole to bend and shape naturally. Continuing with the tradition of a tailored fit, stretch eyelets lock into the medial side to capture the foot better and technologies like Flextra and anatomical Brooks DNA deliver customized stability and cushion. We're not the only Adrenaline junkies out there - Runner's World named the GTS 13 Editor's Choice in the Fall Shoe Guide in their December 2012 issue. They call the GTS 13 a \"classic stability shoe\", and quoted one wear tester as saying, \"it's soft enough that you can feel the road surface below, but there's enough padding that you don't feel as though you're running on concrete blocks.\" No luck here, just purely good design. > See the Women's Adrenaline GTS 13Category: Support Weight: 11.3 oz Platform: Universal Construction: Combination Midsole • Anatomical Brooks DNA - Working with BioMoGo, Brooks DNA responds to your every step, dispersing impact and providing ideal comfort and protection as the pace and surface change. • Full-length BioMoGo - Our midsoles are now more environmentally friendly by adding a non-toxic, natural additive to the MoGo compound that encourages anaerobic microbes to munch away once it hits an enclosed, active landfill. • Progressive Diagonal Rollbar (PDRB) - Our tri-density PDRB midsoles are biomechanically engineered to allow for progressive pronation control and to create smoother transitions from the midstance phase into the propulsion phase. • Omega Flex Grooves - This innovation enhances the flexibility of the midsole and provides an effortless forefoot ride while still offering great cushioning and midsole integrity. The unique shape of the groove allows it to flex dynamically without compromising cushioning. When at rest, it supports the shoe; when it's flexing, the groove opens up to...", + "likes": 0, + "downloads": 1358, + "filesize": 9839081, + "upload_date": "2020-09-03T16:11:11Z", + "modify_date": "2020-09-18T20:11:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Adrenaline_GTS_13_Color_WhtObsdianBlckOlmpcSlvr_Size_70/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:11:08Z", + "updatedAt": "2024-04-03T09:28:57Z", + "name": "Adrenaline_GTS_13_Color_DrkDenimWhtBachlorBttnSlvr_Size_50_yfK40TNjq0V", + "owner": "GoogleResearch", + "description": "Adrenaline GTS 13, Color: DrkDenim/Wht/BachlorBttn/Slvr, Size: 5.0\nLucky 13 is our best Adrenaline GTS yet. We paid special attention to the underfoot flex by adding Omega Flex Grooves and continuing Omni Grooves in the forefoot, allowing the outsole to bend and shape naturally. Continuing with the tradition of a tailored fit, stretch eyelets lock into the medial side to capture the foot better and technologies like Flextra and anatomical Brooks DNA deliver customized stability and cushion. We're not the only Adrenaline junkies out there - Runner's World named the GTS 13 Editor's Choice in the Fall Shoe Guide in their December 2012 issue. They call the GTS 13 a \"classic stability shoe\", and quoted one wear tester as saying, \"it's soft enough that you can feel the road surface below, but there's enough padding that you don't feel as though you're running on concrete blocks.\" No luck here, just purely good design. > See the Men's Adrenaline GTS 13Category: Support Weight: 11.3 oz Platform: Universal Construction: Combination Midsole • Anatomical Brooks DNA - Working with BioMoGo, Brooks DNA responds to your every step, dispersing impact and providing ideal comfort and protection as the pace and surface change. • Full-length BioMoGo - Our midsoles are now more environmentally friendly by adding a non-toxic, natural additive to the MoGo compound that encourages anaerobic microbes to munch away once it hits an enclosed, active landfill. • Progressive Diagonal Rollbar (PDRB) - Our tri-density PDRB midsoles are biomechanically engineered to allow for progressive pronation control and to create smoother transitions from the midstance phase into the propulsion phase. • Omega Flex Grooves - This innovation enhances the flexibility of the midsole and provides an effortless forefoot ride while still offering great cushioning and midsole integrity. The unique shape of the groove allows it to flex dynamically without compromising cushioning. When at rest, it supports the shoe; when it's flexing, the groove opens up to...", + "likes": 0, + "downloads": 963, + "filesize": 7826414, + "upload_date": "2020-09-03T16:11:05Z", + "modify_date": "2020-09-18T20:11:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/Adrenaline_GTS_13_Color_DrkDenimWhtBachlorBttnSlvr_Size_50_yfK40TNjq0V/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:10:57Z", + "updatedAt": "2024-04-03T09:56:23Z", + "name": "ASICS_HyperRocketgirl_SP_5_WhiteMalibu_BlueBlack", + "owner": "GoogleResearch", + "description": "ASICS Hyper-Rocketgirl\u2122 SP 5 - White/Malibu Blue/Black\nSleek and speedy in design, the 5th rendition of the sprint favorite features a combination of mesh and hotmelt TPU overlays in the rearfoot while maintaining it's supportive synthetic leather forefoot. The thin rubber outsole is combined with a lightweight nylon spike plate and five-pin spike design for optimal traction. If you've got a date with velocity, we have the perfect shoes.", + "likes": 0, + "downloads": 955, + "filesize": 8816286, + "upload_date": "2020-09-03T16:10:53Z", + "modify_date": "2020-09-18T20:11:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ASICS_HyperRocketgirl_SP_5_WhiteMalibu_BlueBlack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:10:30Z", + "updatedAt": "2024-04-03T09:28:50Z", + "name": "ASICS_GELTour_Lyte_WhiteOrchidSilver", + "owner": "GoogleResearch", + "description": "ASICS GEL-Tour Lyte\u00ae - White/Orchid/Silver\nA favorite with the weekend golfers and those seeking a softer, more flexible shoe. Combines the comfort and fit of a great running shoe with the stability and support of a great golf shoe.", + "likes": 0, + "downloads": 960, + "filesize": 6484883, + "upload_date": "2020-09-03T16:10:27Z", + "modify_date": "2020-09-18T20:11:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ASICS_GELTour_Lyte_WhiteOrchidSilver/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:10:24Z", + "updatedAt": "2024-04-03T08:40:56Z", + "name": "ASICS_GELResolution_5_Flash_YellowBlackSilver", + "owner": "GoogleResearch", + "description": "ASICS GEL-Resolution\u00ae 5 - Flash Yellow/Black/Silver\nThe pinnacle of the ASICS stability tennis line, the GEL-Resolution\u00ae 5 doesn't disappoint. The newest edition to this series features an improved Flexion Fit\u2122 upper design providing one-of-kind upper comfort, in addition to a re-designed PGuard\u2122 improving upper flexibility. New to this model, a hidden Trusstic System\u00ae has been developed to allow full ground outsole contact all while providing the superb medial stability and torsional rigidity that this series is known for. The best just got better.", + "likes": 0, + "downloads": 1176, + "filesize": 7516878, + "upload_date": "2020-09-03T16:10:21Z", + "modify_date": "2020-09-18T20:11:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ASICS_GELResolution_5_Flash_YellowBlackSilver/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:10:18Z", + "updatedAt": "2024-04-03T08:56:24Z", + "name": "ASICS_GELLinksmaster_WhiteSilverCarolina_Blue", + "owner": "GoogleResearch", + "description": "ASICS GEL-Linksmaster\u00ae - White/Silver/Carolina Blue\nThe traditional golfer's saddle design meets comfort and support in this shoe. Waterproof, for the dew-covered grass of early morning rounds, with a stable, supportive sole for comfort and fit. A great bargain.", + "likes": 0, + "downloads": 1194, + "filesize": 7437405, + "upload_date": "2020-09-03T16:10:14Z", + "modify_date": "2020-09-18T20:11:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ASICS_GELLinksmaster_WhiteSilverCarolina_Blue/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:10:12Z", + "updatedAt": "2024-04-03T09:56:18Z", + "name": "ASICS_GELLinksmaster_WhiteRasberryGunmetal", + "owner": "GoogleResearch", + "description": "ASICS GEL-Linksmaster\u00ae - White/Rasberry/Gunmetal\nThe traditional golfer's saddle design meets comfort and support in this shoe. Waterproof, for the dew-covered grass of early morning rounds, with a stable, supportive sole for comfort and fit. A great bargain.", + "likes": 0, + "downloads": 1009, + "filesize": 7545309, + "upload_date": "2020-09-03T16:10:09Z", + "modify_date": "2020-09-18T20:11:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ASICS_GELLinksmaster_WhiteRasberryGunmetal/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:10:06Z", + "updatedAt": "2024-04-03T08:26:33Z", + "name": "ASICS_GELLinksmaster_WhiteCoffeeSand", + "owner": "GoogleResearch", + "description": "ASICS GEL-Linksmaster\u00ae - White/Coffee/Sand\nThe traditional golfer's saddle design meets comfort and support in this shoe. Waterproof, for the dew-covered grass of early morning rounds, with a stable, supportive sole for comfort and fit. A great bargain.", + "likes": 0, + "downloads": 1400, + "filesize": 6254793, + "upload_date": "2020-09-03T16:10:03Z", + "modify_date": "2020-09-18T20:11:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ASICS_GELLinksmaster_WhiteCoffeeSand/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:10:00Z", + "updatedAt": "2024-04-03T08:26:27Z", + "name": "ASICS_GELDirt_Dog_4_SunFlameBlack", + "owner": "GoogleResearch", + "description": "ASICS GEL-Dirt Dog\u00ae 4 - Sun/Flame/Black\nCross-country racers who like the comfort and platform of a track spike along with superior comfort and durability, will love the all-new amazing upper we've built into this popular performance favorite.", + "likes": 0, + "downloads": 1405, + "filesize": 9212216, + "upload_date": "2020-09-03T16:09:56Z", + "modify_date": "2020-09-18T20:11:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ASICS_GELDirt_Dog_4_SunFlameBlack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:09:53Z", + "updatedAt": "2024-04-03T09:56:13Z", + "name": "ASICS_GELChallenger_9_Royal_BlueWhiteBlack", + "owner": "GoogleResearch", + "description": "ASICS GEL-Challenger\u00ae 9 - Royal Blue/White/Black\nThe GEL-Challenger\u00ae 9 provides exceptional comfort with Rearfoot & Forefoot GEL\u00ae Cushioning Systems and outstanding stability and support with a hidden midfoot Trusstic System\u00ae. Excellent upper fit is addressed with P.H.F.\u2122 in the collar, while synthetic leather and mesh upper materials provide enhanced breathability and flexibility. A perfect choice for that everyday tennis enthusiast.", + "likes": 0, + "downloads": 954, + "filesize": 7517359, + "upload_date": "2020-09-03T16:09:49Z", + "modify_date": "2020-09-18T20:11:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ASICS_GELChallenger_9_Royal_BlueWhiteBlack/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:09:47Z", + "updatedAt": "2024-04-03T08:26:21Z", + "name": "ASICS_GELBlur33_20_GS_Flash_YellowHot_PunchSilver", + "owner": "GoogleResearch", + "description": "ASICS GEL-Blur33\u2122 2.0 GS - Flash Yellow/Hot Punch/Silver\nFast and form fitting, the GEL-Blur33\u2122 2.0 GS delivers great comfort and flexibility in a lightweight package.", + "likes": 0, + "downloads": 1484, + "filesize": 7101548, + "upload_date": "2020-09-03T16:09:42Z", + "modify_date": "2020-09-18T20:11:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ASICS_GELBlur33_20_GS_Flash_YellowHot_PunchSilver/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:09:16Z", + "updatedAt": "2024-04-03T07:59:28Z", + "name": "ASICS_GELBlur33_20_GS_BlackWhiteSafety_Orange", + "owner": "GoogleResearch", + "description": "ASICS GEL-Blur33\u2122 2.0 GS - Black/White/Safety Orange\nFast and form fitting, the GEL-Blur33\u2122 2.0 GS delivers great comfort and flexibility in a lightweight package.", + "likes": 0, + "downloads": 1425, + "filesize": 7975207, + "upload_date": "2020-09-03T16:09:11Z", + "modify_date": "2020-09-18T20:11:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ASICS_GELBlur33_20_GS_BlackWhiteSafety_Orange/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:09:01Z", + "updatedAt": "2024-04-03T08:28:38Z", + "name": "ASICS_GELAce_Pro_Pearl_WhitePink", + "owner": "GoogleResearch", + "description": "ASICS GEL-Ace\u2122 Pro - Pearl White/Pink\nASICS most advanced golf shoe, and the choice of pros the world over. Soft waterproof upper and GEL\u00ae Cushioning System mean comfort, while the supportive Trusstic System\u00ae will give you the stability for a balanced swing.", + "likes": 0, + "downloads": 1473, + "filesize": 8262940, + "upload_date": "2020-09-03T16:08:55Z", + "modify_date": "2020-09-18T20:11:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ASICS_GELAce_Pro_Pearl_WhitePink/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:08:32Z", + "updatedAt": "2024-04-03T08:40:48Z", + "name": "ASICS_GEL1140V_WhiteRoyalSilver", + "owner": "GoogleResearch", + "description": "ASICS GEL-1140V\u2122 - White/Royal/Silver\nHigh on speed and cushioning, this update to our ever-popular 1000V series comes with a breathable mesh upper, the enhanced comfort of a Ventilated Sole Unit, rearfoot GEL\u00ae Cushioning System, a removable sockliner, a the super lightweight comfort of a Solyte\u00ae Midsole Material.", + "likes": 0, + "downloads": 1292, + "filesize": 9722422, + "upload_date": "2020-09-03T16:08:29Z", + "modify_date": "2020-09-18T20:11:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ASICS_GEL1140V_WhiteRoyalSilver/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:08:26Z", + "updatedAt": "2024-04-03T08:26:13Z", + "name": "ASICS_GEL1140V_WhiteBlackSilver", + "owner": "GoogleResearch", + "description": "ASICS GEL-1140V\u2122 - White/Black/Silver\nHigh on speed and cushioning, this update to our ever-popular 1000V series comes with a breathable mesh upper, the enhanced comfort of a Ventilated Sole Unit, rearfoot GEL\u00ae Cushioning System, a removable sockliner, a the super lightweight comfort of a Solyte\u00ae Midsole Material.", + "likes": 0, + "downloads": 1693, + "filesize": 7064663, + "upload_date": "2020-09-03T16:08:23Z", + "modify_date": "2020-09-18T20:11:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/ASICS_GEL1140V_WhiteBlackSilver/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:08:20Z", + "updatedAt": "2024-04-03T09:28:35Z", + "name": "AMBERLIGHT_UP_W", + "owner": "GoogleResearch", + "description": "AMBERLIGHT UP W", + "likes": 0, + "downloads": 973, + "filesize": 6488845, + "upload_date": "2020-09-03T16:08:18Z", + "modify_date": "2020-09-18T20:11:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/AMBERLIGHT_UP_W/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-03T16:07:57Z", + "updatedAt": "2024-04-03T08:55:27Z", + "name": "60_CONSTRUCTION_SET", + "owner": "GoogleResearch", + "description": "60 CONSTRUCTION SET\nThe pieces can be easily assembled and reassembled to create any imaginable form. ?", + "likes": 0, + "downloads": 1349, + "filesize": 10377759, + "upload_date": "2020-09-03T16:07:53Z", + "modify_date": "2020-09-18T20:11:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/60_CONSTRUCTION_SET/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:07:41Z", + "updatedAt": "2024-04-03T08:28:32Z", + "name": "5_HTP", + "owner": "GoogleResearch", + "description": "5 HTP", + "likes": 0, + "downloads": 1595, + "filesize": 6948043, + "upload_date": "2020-09-03T16:07:38Z", + "modify_date": "2020-09-18T20:11:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/5_HTP/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Bottles and Cans and Cups" + ] + }, + { + "createdAt": "2020-09-03T16:07:18Z", + "updatedAt": "2024-04-03T08:28:25Z", + "name": "50_BLOCKS", + "owner": "GoogleResearch", + "description": "50 BLOCKS\nContains 36 natural blocks and 14 color blocks. ?The set reinforces creativity, expands children?s thinking ability, and stimulates their imagination.", + "likes": 0, + "downloads": 1676, + "filesize": 7733465, + "upload_date": "2020-09-03T16:07:15Z", + "modify_date": "2020-09-18T20:11:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/50_BLOCKS/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Toys" + ] + }, + { + "createdAt": "2020-09-03T16:07:12Z", + "updatedAt": "2024-04-03T08:26:29Z", + "name": "2_of_Jenga_Classic_Game", + "owner": "GoogleResearch", + "description": "2 of Jenga Classic Game", + "likes": 0, + "downloads": 1946, + "filesize": 6983494, + "upload_date": "2020-09-03T16:07:08Z", + "modify_date": "2020-09-18T20:11:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/2_of_Jenga_Classic_Game/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Consumer Goods" + ] + }, + { + "createdAt": "2020-09-03T16:07:05Z", + "updatedAt": "2024-04-03T09:28:27Z", + "name": "11pro_SL_TRX_FG", + "owner": "GoogleResearch", + "description": "11pro SL TRX FG\nFW-FIRM GROUND", + "likes": 0, + "downloads": 1143, + "filesize": 5526560, + "upload_date": "2020-09-03T16:07:02Z", + "modify_date": "2020-09-18T20:11:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/GoogleResearch/models/11pro_SL_TRX_FG/tip/files/thumbnails/0.jpg", + "private": false, + "categories": [ + "Shoe" + ] + }, + { + "createdAt": "2020-09-02T19:16:15Z", + "updatedAt": "2024-03-14T13:18:52Z", + "name": "Rescue Randy - relative paths", + "owner": "chapulina", + "description": "A static rescue randy model", + "likes": 0, + "downloads": 49, + "filesize": 9442905, + "upload_date": "2020-09-02T19:16:12Z", + "modify_date": "2020-09-02T19:17:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Rescue%20Randy%20-%20relative%20paths/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2020-09-01T17:25:28Z", + "updatedAt": "2024-04-01T01:40:38Z", + "name": "NIOSH EX Course Shell", + "owner": "OpenRobotics", + "description": "Shell for Segment 02 of the NIOSH tunnel.", + "likes": 0, + "downloads": 794, + "filesize": 259361, + "upload_date": "2020-09-01T17:25:26Z", + "modify_date": "2023-09-27T15:14:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20EX%20Course%20Shell/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T17:25:00Z", + "updatedAt": "2024-04-01T01:40:30Z", + "name": "NIOSH SR Course Shell", + "owner": "OpenRobotics", + "description": "Shell for Segment 01 of the NIOSH tunnel.", + "likes": 0, + "downloads": 746, + "filesize": 118214, + "upload_date": "2020-09-01T17:24:58Z", + "modify_date": "2023-09-27T15:14:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Shell/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:22:31Z", + "updatedAt": "2024-04-01T01:40:44Z", + "name": "NIOSH EX Course Section 02", + "owner": "OpenRobotics", + "description": "Segment 02 Section 02 of NIOSH tunnel.", + "likes": 0, + "downloads": 818, + "filesize": 4797299, + "upload_date": "2020-09-01T13:21:53Z", + "modify_date": "2023-09-27T15:14:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20EX%20Course%20Section%2002/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:22:26Z", + "updatedAt": "2024-04-01T01:40:39Z", + "name": "NIOSH EX Course Section 01", + "owner": "OpenRobotics", + "description": "Segment 02 Section 01 of NIOSH tunnel.", + "likes": 0, + "downloads": 790, + "filesize": 5616959, + "upload_date": "2020-09-01T13:21:47Z", + "modify_date": "2023-09-27T15:14:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20EX%20Course%20Section%2001/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:22:13Z", + "updatedAt": "2024-04-01T01:42:18Z", + "name": "NIOSH SR Course Section 11", + "owner": "OpenRobotics", + "description": "Segment 01 Section 11 of NIOSH tunnel.", + "likes": 0, + "downloads": 895, + "filesize": 6170614, + "upload_date": "2020-09-01T13:21:37Z", + "modify_date": "2023-09-27T15:14:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Section%2011/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:22:03Z", + "updatedAt": "2024-04-01T01:42:38Z", + "name": "NIOSH SR Course Section 10", + "owner": "OpenRobotics", + "description": "Segment 01 Section 10 of NIOSH tunnel.", + "likes": 0, + "downloads": 749, + "filesize": 5492311, + "upload_date": "2020-09-01T13:21:31Z", + "modify_date": "2023-09-27T15:15:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Section%2010/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:21:40Z", + "updatedAt": "2024-04-01T01:42:37Z", + "name": "NIOSH EX Course Section 06", + "owner": "OpenRobotics", + "description": "Segment 02 Section 06 of NIOSH tunnel.", + "likes": 0, + "downloads": 786, + "filesize": 5164499, + "upload_date": "2020-09-01T13:21:09Z", + "modify_date": "2023-09-27T15:15:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20EX%20Course%20Section%2006/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:21:27Z", + "updatedAt": "2024-04-01T01:42:49Z", + "name": "NIOSH EX Course Section 05", + "owner": "OpenRobotics", + "description": "Segment 02 Section 05 of NIOSH tunnel.", + "likes": 0, + "downloads": 727, + "filesize": 3056767, + "upload_date": "2020-09-01T13:20:56Z", + "modify_date": "2023-09-27T15:15:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20EX%20Course%20Section%2005/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:21:14Z", + "updatedAt": "2024-04-01T01:42:18Z", + "name": "NIOSH EX Course Section 04", + "owner": "OpenRobotics", + "description": "Segment 02 Section 04 of NIOSH tunnel.", + "likes": 0, + "downloads": 749, + "filesize": 2813091, + "upload_date": "2020-09-01T13:20:43Z", + "modify_date": "2023-09-27T15:15:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20EX%20Course%20Section%2004/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:21:04Z", + "updatedAt": "2024-04-01T01:42:28Z", + "name": "NIOSH EX Course Section 03", + "owner": "OpenRobotics", + "description": "Segment 02 Section 03 of NIOSH tunnel.", + "likes": 0, + "downloads": 737, + "filesize": 8439754, + "upload_date": "2020-09-01T13:20:27Z", + "modify_date": "2023-09-27T15:16:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20EX%20Course%20Section%2003/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:19:57Z", + "updatedAt": "2024-04-01T01:42:55Z", + "name": "NIOSH SR Course Section 09", + "owner": "OpenRobotics", + "description": "Segment 01 Section 09 of NIOSH tunnel.", + "likes": 0, + "downloads": 790, + "filesize": 3426214, + "upload_date": "2020-09-01T13:19:29Z", + "modify_date": "2023-09-27T15:16:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Section%2009/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:19:42Z", + "updatedAt": "2024-04-01T01:43:01Z", + "name": "NIOSH SR Course Section 08", + "owner": "OpenRobotics", + "description": "Segment 01 Section 08 of NIOSH tunnel.", + "likes": 0, + "downloads": 763, + "filesize": 2852861, + "upload_date": "2020-09-01T13:19:17Z", + "modify_date": "2023-09-27T15:16:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Section%2008/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:18:57Z", + "updatedAt": "2024-04-01T01:44:28Z", + "name": "NIOSH SR Course Section 07", + "owner": "OpenRobotics", + "description": "Segment 01 Section 07 of NIOSH tunnel.", + "likes": 0, + "downloads": 757, + "filesize": 3671222, + "upload_date": "2020-09-01T13:18:31Z", + "modify_date": "2023-09-27T15:16:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Section%2007/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:18:45Z", + "updatedAt": "2024-04-01T01:44:49Z", + "name": "NIOSH SR Course Section 06", + "owner": "OpenRobotics", + "description": "Segment 01 Section 06 of NIOSH tunnel.", + "likes": 0, + "downloads": 740, + "filesize": 4834982, + "upload_date": "2020-09-01T13:18:18Z", + "modify_date": "2023-09-27T15:17:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Section%2006/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:18:27Z", + "updatedAt": "2024-04-01T01:44:50Z", + "name": "NIOSH SR Course Section 05", + "owner": "OpenRobotics", + "description": "Segment 01 Section 05 of NIOSH tunnel.", + "likes": 0, + "downloads": 774, + "filesize": 3553624, + "upload_date": "2020-09-01T13:18:01Z", + "modify_date": "2023-09-27T15:17:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Section%2005/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:18:11Z", + "updatedAt": "2024-04-01T01:44:57Z", + "name": "NIOSH SR Course Section 04", + "owner": "OpenRobotics", + "description": "Segment 04 Section 01 of NIOSH tunnel.", + "likes": 0, + "downloads": 773, + "filesize": 2989280, + "upload_date": "2020-09-01T13:17:43Z", + "modify_date": "2023-09-27T15:17:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Section%2004/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:17:55Z", + "updatedAt": "2024-04-01T01:45:03Z", + "name": "NIOSH SR Course Section 03", + "owner": "OpenRobotics", + "description": "Segment 01 Section 03 of NIOSH tunnel.", + "likes": 0, + "downloads": 752, + "filesize": 2266503, + "upload_date": "2020-09-01T13:17:28Z", + "modify_date": "2023-09-27T15:17:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Section%2003/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:17:37Z", + "updatedAt": "2024-04-01T01:44:59Z", + "name": "NIOSH SR Course Section 02", + "owner": "OpenRobotics", + "description": "Segment 01 Section 02 of NIOSH tunnel.", + "likes": 0, + "downloads": 755, + "filesize": 3406027, + "upload_date": "2020-09-01T13:17:10Z", + "modify_date": "2023-09-27T15:17:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Section%2002/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T13:17:22Z", + "updatedAt": "2024-04-01T01:45:02Z", + "name": "NIOSH SR Course Section 01", + "owner": "OpenRobotics", + "description": "Segment 01 Section 01 of NIOSH tunnel.", + "likes": 0, + "downloads": 812, + "filesize": 5957327, + "upload_date": "2020-09-01T13:16:56Z", + "modify_date": "2023-09-27T15:18:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20SR%20Course%20Section%2001/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-09-01T08:36:20Z", + "updatedAt": "2024-03-30T13:32:37Z", + "name": "MIP robotics Junior 300", + "owner": "MIProbotics", + "description": "**MIP robotics** making industrial robotics accessible !\nThe Junior 300 is an industrial collaborative robotic arm, price starting below 10,000\u20ac.\nIt is easy to program and safe. \nGive it a try ! Compatible with to **Gazebo** and **MoveIt!**\n\nThe full details can be found :\nJunior full details : https://github.com/MIPRobotics/ROS_robotics_simulation", + "likes": 1, + "downloads": 805, + "filesize": 7981249, + "upload_date": "2020-09-01T08:36:16Z", + "modify_date": "2020-09-01T08:36:16Z", + "license_id": 7, + "license_name": "Creative Commons Attribution Non Commercial No Derivatives 4.0 International", + "license_url": "http://creativecommons.org/licenses/by-nc-nd/4.0/", + "license_image": "https://i.creativecommons.org/l/by-nc-nd/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/MIProbotics/models/MIP%20robotics%20Junior%20300/tip/files/thumbnails/MIP 600x600.png", + "private": false, + "tags": [ + "MIP robotics", + "ROS-industrial", + "arm", + "robotic arm", + "collaborative", + "cobot", + "industrial", + "pick and place" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-08-19T17:11:08Z", + "updatedAt": "2024-03-12T02:39:53Z", + "name": "Cave Starting Area Type B", + "owner": "angelamaio", + "description": "Starting area for cave circuit", + "likes": 0, + "downloads": 67, + "filesize": 69034152, + "upload_date": "2020-08-19T17:10:59Z", + "modify_date": "2020-08-19T17:14:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/angelamaio/models/Cave%20Starting%20Area%20Type%20B/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-08-14T10:26:13Z", + "updatedAt": "2024-03-12T13:02:56Z", + "name": "HospitalRobotCharger", + "owner": "OpenRobotics", + "description": "Chargers for Hospi", + "likes": 0, + "downloads": 485, + "filesize": 1051157, + "upload_date": "2020-08-14T10:26:12Z", + "modify_date": "2023-09-27T15:18:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/HospitalRobotCharger/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "robot", + "hospital", + "charger", + "hospitalrobotcharger" + ], + "categories": [ + "Appliance", + "Robots" + ] + }, + { + "createdAt": "2020-08-12T14:57:03Z", + "updatedAt": "2024-03-26T03:39:46Z", + "name": "OceanFloorShipwreck", + "owner": "OpenRobotics", + "description": "An underwater world with a shipwreck and coral.", + "likes": 1, + "downloads": 429, + "filesize": 184823492, + "upload_date": "2020-08-12T14:56:25Z", + "modify_date": "2023-09-27T15:18:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/OceanFloorShipwreck/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "underwater", + "ship", + "shipwreck", + "coral" + ], + "categories": [ + "Nature and Plants", + "Places and Landscapes" + ] + }, + { + "createdAt": "2020-08-06T19:38:35Z", + "updatedAt": "2024-04-01T01:45:21Z", + "name": "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "Absolem robot of CTU-CRAS-Norlab for SubT.", + "likes": 0, + "downloads": 1116, + "filesize": 1999393, + "upload_date": "2020-08-06T19:38:30Z", + "modify_date": "2022-04-22T12:30:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_2/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-08-06T19:36:53Z", + "updatedAt": "2024-04-01T02:26:38Z", + "name": "CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "Absolem robot of CTU-CRAS-Norlab for SubT.", + "likes": 0, + "downloads": 1913, + "filesize": 3267850, + "upload_date": "2020-08-06T19:36:48Z", + "modify_date": "2023-09-27T15:20:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CTU_CRAS_NORLAB_ABSOLEM_SENSOR_CONFIG_1/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-08-06T12:38:30Z", + "updatedAt": "2024-04-01T01:46:52Z", + "name": "CERBERUS_GAGARIN_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "Flyability Elios UAV with sensor configuration #8: 3D medium range lidar, depth sensor, IMU, camera, magnetometer.\n Originally submitted as cerberus_gagarin_sensor_config_1.", + "likes": 0, + "downloads": 1171, + "filesize": 21316375, + "upload_date": "2020-08-06T12:38:21Z", + "modify_date": "2023-09-27T15:21:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CERBERUS_GAGARIN_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-08-06T12:19:32Z", + "updatedAt": "2024-04-01T01:47:33Z", + "name": "CSIRO_DATA61_OZBOT_ATR_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "CSIRO-Data61's primary tracked platform, based on the BIA5 OzBot ATR, with a rotating lidar, imu, cameras and lights.", + "likes": 0, + "downloads": 1104, + "filesize": 892717, + "upload_date": "2020-08-06T12:19:30Z", + "modify_date": "2023-09-27T15:21:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CSIRO_DATA61_OZBOT_ATR_SENSOR_CONFIG_2/tip/files/thumbnails/1.jpg", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-08-06T12:15:36Z", + "updatedAt": "2024-04-01T01:47:24Z", + "name": "CSIRO_DATA61_OZBOT_ATR_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "CSIRO-Data61's primary tracked platform, based on the BIA5 OzBot ATR, with a rotating lidar, imu, cameras and lights.", + "likes": 0, + "downloads": 1100, + "filesize": 892380, + "upload_date": "2020-08-06T12:15:34Z", + "modify_date": "2023-09-27T15:22:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CSIRO_DATA61_OZBOT_ATR_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-08-06T11:53:15Z", + "updatedAt": "2024-03-21T01:27:16Z", + "name": "ScrubsTrolley", + "owner": "OpenRobotics", + "description": "Usually found parked in the linen room.", + "likes": 0, + "downloads": 388, + "filesize": 468145, + "upload_date": "2020-08-06T11:53:13Z", + "modify_date": "2023-09-27T15:22:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ScrubsTrolley/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "scrubs", + "trolley", + "scrubstrolley" + ], + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-08-06T11:43:21Z", + "updatedAt": "2024-03-12T13:04:03Z", + "name": "XRayMachineSmall", + "owner": "OpenRobotics", + "description": "Standing version.", + "likes": 0, + "downloads": 606, + "filesize": 147968, + "upload_date": "2020-08-06T11:43:20Z", + "modify_date": "2023-09-27T15:22:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/XRayMachineSmall/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "xray", + "machine", + "xraymachine", + "small", + "xraymachinesmall" + ], + "categories": [ + "Electronics", + "Appliance" + ] + }, + { + "createdAt": "2020-08-06T11:41:57Z", + "updatedAt": "2024-04-03T16:41:24Z", + "name": "XRayMachine", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 4478, + "filesize": 345665, + "upload_date": "2020-08-06T11:41:56Z", + "modify_date": "2023-09-27T15:22:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/XRayMachine/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "xray", + "machine", + "xraymachine" + ], + "categories": [ + "Electronics", + "Appliance" + ] + }, + { + "createdAt": "2020-08-06T11:41:07Z", + "updatedAt": "2024-03-29T09:12:51Z", + "name": "TVStand", + "owner": "OpenRobotics", + "description": "A generic TV stand with shelves and cabinets", + "likes": 0, + "downloads": 5750, + "filesize": 400499, + "upload_date": "2020-08-06T11:41:05Z", + "modify_date": "2023-09-27T15:22:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/TVStand/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "TV", + "stand", + "tvstand" + ], + "categories": [ + "Furniture and Home", + "Appliance" + ] + }, + { + "createdAt": "2020-08-06T11:40:17Z", + "updatedAt": "2024-04-04T04:10:20Z", + "name": "TrashBin", + "owner": "OpenRobotics", + "description": "Small and portable trash bin", + "likes": 0, + "downloads": 24429, + "filesize": 1045623, + "upload_date": "2020-08-06T11:40:15Z", + "modify_date": "2023-09-27T15:22:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/TrashBin/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "trash", + "bin", + "trashbin" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-08-06T11:39:09Z", + "updatedAt": "2024-04-04T04:11:10Z", + "name": "Sofa", + "owner": "OpenRobotics", + "description": "A grey comfortable sofa", + "likes": 1, + "downloads": 31595, + "filesize": 1311028, + "upload_date": "2020-08-06T11:39:07Z", + "modify_date": "2023-09-27T15:22:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Sofa/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "sofa" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-08-06T11:33:20Z", + "updatedAt": "2024-03-21T12:49:34Z", + "name": "Scrubber", + "owner": "OpenRobotics", + "description": "An electrical floor cleaner / polisher", + "likes": 0, + "downloads": 416, + "filesize": 985614, + "upload_date": "2020-08-06T11:33:18Z", + "modify_date": "2023-09-27T15:22:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Scrubber/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "scrub", + "scrubber" + ], + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-08-06T11:31:31Z", + "updatedAt": "2024-04-04T04:09:37Z", + "name": "NurseDesk", + "owner": "OpenRobotics", + "description": "A generic nurse's desk", + "likes": 0, + "downloads": 33066, + "filesize": 1732115, + "upload_date": "2020-08-06T11:31:29Z", + "modify_date": "2023-09-27T15:22:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NurseDesk/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "nurse", + "desk", + "nursedesk" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-08-06T11:29:12Z", + "updatedAt": "2024-04-04T04:12:27Z", + "name": "MonitorAndKeyboard", + "owner": "OpenRobotics", + "description": "A generic monitor and keyboard\n https://opengameart.org/content/furniture-kit - CC0 license", + "likes": 1, + "downloads": 31016, + "filesize": 32709, + "upload_date": "2020-08-06T11:29:11Z", + "modify_date": "2023-09-27T15:22:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MonitorAndKeyboard/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "monitor", + "keyboard", + "monitorandkeyboard" + ], + "categories": [ + "Computer", + "Keyboard" + ] + }, + { + "createdAt": "2020-08-06T11:28:26Z", + "updatedAt": "2024-03-27T02:20:37Z", + "name": "LockerBig", + "owner": "OpenRobotics", + "description": "row of larger lockers", + "likes": 0, + "downloads": 1636, + "filesize": 2504724, + "upload_date": "2020-08-06T11:28:24Z", + "modify_date": "2023-09-27T15:23:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/LockerBig/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "locker", + "big", + "lockerbig" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-08-06T11:27:32Z", + "updatedAt": "2024-04-04T04:11:20Z", + "name": "LitterBin", + "owner": "OpenRobotics", + "description": "Common Litter Bin found in hospitals", + "likes": 0, + "downloads": 19011, + "filesize": 1222476, + "upload_date": "2020-08-06T11:27:31Z", + "modify_date": "2023-09-27T15:23:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/LitterBin/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "bin", + "litter", + "litterbin" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-08-06T11:26:29Z", + "updatedAt": "2024-04-04T04:10:33Z", + "name": "IVStand", + "owner": "OpenRobotics", + "description": "A generic hospital IV stand", + "likes": 0, + "downloads": 21084, + "filesize": 774855, + "upload_date": "2020-08-06T11:26:28Z", + "modify_date": "2023-09-27T15:23:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/IVStand/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "stand", + "IV", + "IVStand" + ], + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-08-06T11:25:46Z", + "updatedAt": "2024-04-04T04:10:05Z", + "name": "CoffeeTable", + "owner": "OpenRobotics", + "description": "A generic coffee table", + "likes": 0, + "downloads": 50290, + "filesize": 370865, + "upload_date": "2020-08-06T11:25:44Z", + "modify_date": "2023-09-27T15:23:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CoffeeTable/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "table", + "coffee", + "coffeetable" + ], + "categories": [ + "Food and Drink", + "Furniture and Home" + ] + }, + { + "createdAt": "2020-08-06T11:24:33Z", + "updatedAt": "2024-03-26T17:23:22Z", + "name": "CleaningSection", + "owner": "OpenRobotics", + "description": "An area of cleaning carts and buckets", + "likes": 0, + "downloads": 3672, + "filesize": 3183588, + "upload_date": "2020-08-06T11:24:30Z", + "modify_date": "2023-09-27T15:23:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CleaningSection/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "cleaning", + "section", + "cleaningsection" + ], + "categories": [ + "Furniture and Home", + "Appliance" + ] + }, + { + "createdAt": "2020-08-06T11:22:38Z", + "updatedAt": "2024-04-03T16:48:35Z", + "name": "BPCart", + "owner": "OpenRobotics", + "description": "A generic hospital cart", + "likes": 0, + "downloads": 4655, + "filesize": 1659990, + "upload_date": "2020-08-06T11:22:35Z", + "modify_date": "2023-09-27T15:23:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/BPCart/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "bp", + "cart", + "bpcart" + ], + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-08-06T11:21:27Z", + "updatedAt": "2024-04-03T16:45:51Z", + "name": "BloodPressureMonitor", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 4655, + "filesize": 237020, + "upload_date": "2020-08-06T11:21:26Z", + "modify_date": "2023-09-27T15:23:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/BloodPressureMonitor/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "monitor", + "bloodpressure", + "blood", + "bloodpressuremonitor" + ], + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-08-06T11:20:23Z", + "updatedAt": "2024-04-04T04:09:58Z", + "name": "Ambulance2", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 16576, + "filesize": 2809281, + "upload_date": "2020-08-06T11:20:21Z", + "modify_date": "2023-09-27T15:23:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Ambulance2/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2020-07-18T01:02:17Z", + "updatedAt": "2024-04-02T23:05:11Z", + "name": "actor - relative paths", + "owner": "OpenRobotics", + "description": "An animated actor.", + "likes": 0, + "downloads": 956, + "filesize": 11222360, + "upload_date": "2020-07-18T01:02:11Z", + "modify_date": "2023-09-27T15:23:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/actor%20-%20relative%20paths/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "person", + "animation" + ] + }, + { + "createdAt": "2020-07-17T16:22:48Z", + "updatedAt": "2024-04-01T01:47:16Z", + "name": "Robotika_Freyja_Sensor_Config_2", + "owner": "OpenRobotics", + "description": "Robot Freya with two RGBD cameras in low-resolution mode, two planar lidars, four wide-angle cameras, compass, imu altimeter and gas sensor.", + "likes": 0, + "downloads": 1388, + "filesize": 247898, + "upload_date": "2020-07-17T16:22:46Z", + "modify_date": "2023-09-27T15:24:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Robotika_Freyja_Sensor_Config_2/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-07-17T16:14:47Z", + "updatedAt": "2024-04-03T12:38:10Z", + "name": "EXPLORER_R2_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "R2 wheeled UGV submitted by Team Explorer", + "likes": 0, + "downloads": 1506, + "filesize": 4033889, + "upload_date": "2020-07-17T16:14:44Z", + "modify_date": "2023-09-27T15:24:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/EXPLORER_R2_SENSOR_CONFIG_2/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-07-17T15:58:42Z", + "updatedAt": "2024-04-01T01:47:10Z", + "name": "Robotika_Kloubak_Sensor_Config_2", + "owner": "OpenRobotics", + "description": "robot Kloubak - articulated robot, symmetric configuration, two planar lidars, two RGB cameras and two depth cameras.", + "likes": 0, + "downloads": 1167, + "filesize": 3244522, + "upload_date": "2020-07-17T15:58:38Z", + "modify_date": "2023-09-27T15:24:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Robotika_Kloubak_Sensor_Config_2/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-07-17T15:51:38Z", + "updatedAt": "2024-04-01T01:47:18Z", + "name": "MARBLE_HD2_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "Team Marble's hd2 robot for SubT.", + "likes": 0, + "downloads": 1194, + "filesize": 2227778, + "upload_date": "2020-07-17T15:51:34Z", + "modify_date": "2023-09-27T15:24:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MARBLE_HD2_SENSOR_CONFIG_2/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-07-17T15:43:51Z", + "updatedAt": "2024-04-01T01:49:00Z", + "name": "MARBLE_HUSKY_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "CU's husky config with 3 D435i RGBD cameras, a pan-tilt turret, the Ouster OS1 64 channel lidar,\n and an RPLidar S1", + "likes": 0, + "downloads": 1236, + "filesize": 1398845, + "upload_date": "2020-07-17T15:43:47Z", + "modify_date": "2023-09-27T15:24:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MARBLE_HUSKY_SENSOR_CONFIG_2/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-07-17T15:34:48Z", + "updatedAt": "2024-04-01T01:49:15Z", + "name": "CERBERUS_ANYMAL_B_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "CERBERUS' ANYmal quadruped UGV model with a medium range lidar and IMU.", + "likes": 0, + "downloads": 1194, + "filesize": 9037662, + "upload_date": "2020-07-17T15:34:42Z", + "modify_date": "2023-09-27T15:25:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CERBERUS_ANYMAL_B_SENSOR_CONFIG_2/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv", + "legged robot" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-07-16T23:32:20Z", + "updatedAt": "2024-03-12T13:07:50Z", + "name": "ariac part4", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 61, + "filesize": 14193, + "upload_date": "2020-07-16T23:32:19Z", + "modify_date": "2023-09-27T15:25:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ariac%20part4/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-07-16T23:28:48Z", + "updatedAt": "2024-03-12T13:08:59Z", + "name": "ariac part3", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 40, + "filesize": 18286, + "upload_date": "2020-07-16T23:28:46Z", + "modify_date": "2023-09-27T15:25:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ariac%20part3/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-07-16T23:26:15Z", + "updatedAt": "2024-03-12T13:09:26Z", + "name": "ariac part2", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 36, + "filesize": 16067, + "upload_date": "2020-07-16T23:26:14Z", + "modify_date": "2023-09-27T15:25:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ariac%20part2/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-07-16T23:23:13Z", + "updatedAt": "2024-03-12T13:10:54Z", + "name": "ariac part1", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 60, + "filesize": 8174, + "upload_date": "2020-07-16T23:23:12Z", + "modify_date": "2023-09-27T15:25:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ariac%20part1/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-07-14T18:28:34Z", + "updatedAt": "2024-03-13T18:07:51Z", + "name": "Intel RealSense D435", + "owner": "OpenRobotics", + "description": "Intel RealSense D435.", + "likes": 2, + "downloads": 601, + "filesize": 2582073, + "upload_date": "2020-07-14T18:28:32Z", + "modify_date": "2023-09-27T15:25:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Intel%20RealSense%20D435/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "camera", + "intel", + "rgbd" + ], + "categories": [ + "Electronics", + "Science and Technology" + ] + }, + { + "createdAt": "2020-07-13T17:23:44Z", + "updatedAt": "2024-04-01T01:49:25Z", + "name": "EXPLORER_DS1_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "CMU Explorer ds1 #8: 3D medium range lidar, IMU, pressure sensor, magnetometer, up down and forward Realsense Camera.", + "likes": 0, + "downloads": 1182, + "filesize": 4944737, + "upload_date": "2020-07-13T17:23:42Z", + "modify_date": "2023-09-27T15:25:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/EXPLORER_DS1_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-07-08T22:38:55Z", + "updatedAt": "2024-03-12T13:08:04Z", + "name": "Cave Staging Exit Detector", + "owner": "OpenRobotics", + "description": "A proximity detector for the cave staging area.", + "likes": 0, + "downloads": 30, + "filesize": 901, + "upload_date": "2020-07-08T22:38:54Z", + "modify_date": "2023-09-27T15:26:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2020-07-08T19:53:33Z", + "updatedAt": "2024-04-04T01:55:14Z", + "name": "Artifact Proximity Detector", + "owner": "OpenRobotics", + "description": "A proximity detector for SubT artifacts.", + "likes": 0, + "downloads": 8916, + "filesize": 928, + "upload_date": "2020-07-08T19:53:32Z", + "modify_date": "2023-09-27T15:26:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2020-07-06T16:54:12Z", + "updatedAt": "2024-04-04T04:49:45Z", + "name": "MiR100", + "owner": "OpenRobotics", + "description": "Shiny robot named MiR100", + "likes": 0, + "downloads": 1384, + "filesize": 853730, + "upload_date": "2020-07-06T16:54:10Z", + "modify_date": "2023-09-27T15:26:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MiR100/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-07-06T10:39:27Z", + "updatedAt": "2024-04-04T04:12:02Z", + "name": "BathroomSink", + "owner": "OpenRobotics", + "description": "White round sink.", + "likes": 0, + "downloads": 27618, + "filesize": 301870, + "upload_date": "2020-07-06T10:39:26Z", + "modify_date": "2023-09-27T15:26:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/BathroomSink/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-07-06T10:19:54Z", + "updatedAt": "2024-04-04T04:09:09Z", + "name": "Scrubs", + "owner": "OpenRobotics", + "description": "A person in scrubs.", + "likes": 0, + "downloads": 22493, + "filesize": 1028421, + "upload_date": "2020-07-06T10:19:52Z", + "modify_date": "2023-09-27T15:26:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Scrubs/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "People" + ] + }, + { + "createdAt": "2020-07-01T22:53:51Z", + "updatedAt": "2024-04-01T01:49:07Z", + "name": "EXPLORER_R2_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "R2 wheeled UGV submitted by Team Explorer", + "likes": 0, + "downloads": 1164, + "filesize": 4033889, + "upload_date": "2020-07-01T22:53:43Z", + "modify_date": "2023-09-27T15:26:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/EXPLORER_R2_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-06-26T09:39:00Z", + "updatedAt": "2024-04-04T04:07:43Z", + "name": "SurgicalTrolleyMed", + "owner": "OpenRobotics", + "description": "Medium sized surgical trolley.", + "likes": 0, + "downloads": 20806, + "filesize": 860176, + "upload_date": "2020-06-26T09:38:58Z", + "modify_date": "2023-09-27T15:26:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SurgicalTrolleyMed/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-06-26T09:38:14Z", + "updatedAt": "2024-03-12T13:12:57Z", + "name": "CArm", + "owner": "OpenRobotics", + "description": "A C-arm fluoroscopy machine", + "likes": 0, + "downloads": 669, + "filesize": 2276277, + "upload_date": "2020-06-26T09:38:12Z", + "modify_date": "2023-09-27T15:26:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CArm/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-06-26T09:36:40Z", + "updatedAt": "2024-04-03T16:50:46Z", + "name": "BMWCart", + "owner": "OpenRobotics", + "description": "A generic hospital cart", + "likes": 0, + "downloads": 4751, + "filesize": 1607574, + "upload_date": "2020-06-26T09:36:38Z", + "modify_date": "2023-09-27T15:26:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/BMWCart/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-06-26T09:35:49Z", + "updatedAt": "2024-04-03T13:16:42Z", + "name": "AnesthesiaMachine", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 4483, + "filesize": 541299, + "upload_date": "2020-06-26T09:35:47Z", + "modify_date": "2023-09-27T15:27:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/AnesthesiaMachine/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-06-26T02:50:23Z", + "updatedAt": "2024-03-26T04:24:21Z", + "name": "TruckDelivery", + "owner": "OpenRobotics", + "description": "open sided delivery truck", + "likes": 0, + "downloads": 4196, + "filesize": 953913, + "upload_date": "2020-06-26T02:50:21Z", + "modify_date": "2023-09-27T15:27:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/TruckDelivery/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2020-06-26T02:49:44Z", + "updatedAt": "2024-03-25T06:24:00Z", + "name": "TruckBox", + "owner": "OpenRobotics", + "description": "Delivery \"box\" truck", + "likes": 0, + "downloads": 4422, + "filesize": 787118, + "upload_date": "2020-06-26T02:49:42Z", + "modify_date": "2023-09-27T15:27:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/TruckBox/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2020-06-25T10:20:57Z", + "updatedAt": "2024-04-04T04:08:05Z", + "name": "VendingMachine", + "owner": "OpenRobotics", + "description": "Beverage vending device mostly seen across singapore, including hospitals", + "likes": 0, + "downloads": 62496, + "filesize": 619550, + "upload_date": "2020-06-25T10:20:53Z", + "modify_date": "2023-09-27T15:27:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/VendingMachine/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-06-25T10:20:21Z", + "updatedAt": "2024-03-26T10:07:29Z", + "name": "TrolleyBox2", + "owner": "OpenRobotics", + "description": "A generic hand trolley with boxes on top", + "likes": 0, + "downloads": 592, + "filesize": 2708071, + "upload_date": "2020-06-25T10:20:19Z", + "modify_date": "2023-09-27T15:27:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/TrolleyBox2/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Animals", + "Appliance" + ] + }, + { + "createdAt": "2020-06-25T10:19:40Z", + "updatedAt": "2024-03-27T01:24:16Z", + "name": "TrolleyBox1", + "owner": "OpenRobotics", + "description": "A generic hand trolley with boxes on top", + "likes": 0, + "downloads": 7721, + "filesize": 2811821, + "upload_date": "2020-06-25T10:19:38Z", + "modify_date": "2023-09-27T15:27:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/TrolleyBox1/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-06-25T10:18:48Z", + "updatedAt": "2024-04-04T04:08:27Z", + "name": "Toilet", + "owner": "OpenRobotics", + "description": "A generic toilet", + "likes": 0, + "downloads": 60911, + "filesize": 205503, + "upload_date": "2020-06-25T10:18:46Z", + "modify_date": "2023-09-27T15:27:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Toilet/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-25T10:18:19Z", + "updatedAt": "2024-04-04T04:11:44Z", + "name": "Shower", + "owner": "OpenRobotics", + "description": "A generic shower", + "likes": 1, + "downloads": 26822, + "filesize": 568856, + "upload_date": "2020-06-25T10:18:17Z", + "modify_date": "2023-09-27T15:27:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Shower/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-25T10:17:29Z", + "updatedAt": "2024-04-04T04:09:40Z", + "name": "PatientFSit", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 21346, + "filesize": 657045, + "upload_date": "2020-06-25T10:17:27Z", + "modify_date": "2023-09-27T15:27:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/PatientFSit/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "People" + ] + }, + { + "createdAt": "2020-06-25T10:16:43Z", + "updatedAt": "2024-04-04T04:11:13Z", + "name": "NurseTable", + "owner": "OpenRobotics", + "description": "Long desk for two staff.", + "likes": 0, + "downloads": 21348, + "filesize": 599094, + "upload_date": "2020-06-25T10:16:41Z", + "modify_date": "2023-09-27T15:27:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NurseTable/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-25T10:15:53Z", + "updatedAt": "2024-04-04T04:12:33Z", + "name": "Nurse", + "owner": "OpenRobotics", + "description": "Female nurse looking at clipboard.", + "likes": 0, + "downloads": 22459, + "filesize": 575779, + "upload_date": "2020-06-25T10:15:51Z", + "modify_date": "2023-09-27T15:27:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Nurse/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "People" + ] + }, + { + "createdAt": "2020-06-25T10:15:11Z", + "updatedAt": "2024-04-04T04:09:22Z", + "name": "NormalBed", + "owner": "OpenRobotics", + "description": "A generic bed\n https://opengameart.org/content/furniture-kit - CC0 license", + "likes": 0, + "downloads": 52677, + "filesize": 90596, + "upload_date": "2020-06-25T10:15:10Z", + "modify_date": "2023-09-27T15:28:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NormalBed/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-25T10:14:31Z", + "updatedAt": "2024-03-25T10:38:25Z", + "name": "MiRCart", + "owner": "OpenRobotics", + "description": "a cart that will dock with MiR 100", + "likes": 0, + "downloads": 769, + "filesize": 613444, + "upload_date": "2020-06-25T10:14:29Z", + "modify_date": "2023-09-27T15:28:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MiRCart/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-06-25T10:13:35Z", + "updatedAt": "2024-04-04T04:10:12Z", + "name": "MaleVisitorOnPhone", + "owner": "OpenRobotics", + "description": "A man wearing purple shirt, looking at his phone", + "likes": 0, + "downloads": 24742, + "filesize": 1394258, + "upload_date": "2020-06-25T10:13:33Z", + "modify_date": "2023-09-27T15:28:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MaleVisitorOnPhone/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "People", + "Tablet and Smartphone" + ] + }, + { + "createdAt": "2020-06-25T10:12:27Z", + "updatedAt": "2024-04-02T18:18:44Z", + "name": "MalePatientBed", + "owner": "OpenRobotics", + "description": "A male patient lying down on a hospital bed.\nCharacter generated from Autodesk Character Generator - https://charactergenerator.autodesk.com/\nPose from Mixamo - https://www.mixamo.com/\nBed from Cole Biesemeyer.", + "likes": 0, + "downloads": 4735, + "filesize": 2087725, + "upload_date": "2020-06-25T10:12:25Z", + "modify_date": "2023-09-27T15:28:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MalePatientBed/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "People" + ] + }, + { + "createdAt": "2020-06-24T20:43:01Z", + "updatedAt": "2024-04-02T23:05:09Z", + "name": "Gazebo - relative paths", + "owner": "OpenRobotics", + "description": "A gazebo.", + "likes": 0, + "downloads": 844, + "filesize": 1311286, + "upload_date": "2020-06-24T20:42:59Z", + "modify_date": "2023-09-27T15:28:28Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Gazebo%20-%20relative%20paths/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "building", + "gazebo", + "outdoor" + ] + }, + { + "createdAt": "2020-06-22T18:53:22Z", + "updatedAt": "2024-03-30T08:16:59Z", + "name": "NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY", + "owner": "OpenRobotics", + "description": "Visual element for NUS SEDS' omnidirectional ground vehicle.", + "likes": 1, + "downloads": 240, + "filesize": 3156235, + "upload_date": "2020-06-22T18:53:17Z", + "modify_date": "2023-09-27T15:28:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NUS_SEDS_OMNIDIRECTIONAL_GROUND_VEHICLE_VISUALS_ONLY/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2020-06-22T18:32:38Z", + "updatedAt": "2024-04-02T18:44:27Z", + "name": "EXPLORER_R2_VISUALS_ONLY", + "owner": "OpenRobotics", + "description": "Visual elements for Explorer's R2 robot.", + "likes": 0, + "downloads": 144, + "filesize": 4041560, + "upload_date": "2020-06-22T18:32:35Z", + "modify_date": "2023-09-27T15:28:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/EXPLORER_R2_VISUALS_ONLY/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ] + }, + { + "createdAt": "2020-06-22T18:27:25Z", + "updatedAt": "2024-03-26T04:59:38Z", + "name": "ROBOTIKA_KLOUBAK_VISUALS_ONLY", + "owner": "OpenRobotics", + "description": "Visual elements for Robotika's Kloubak - articulated robot, symmetric configuration, two planar lidars, two RGB cameras and two depth cameras.", + "likes": 0, + "downloads": 132, + "filesize": 3237129, + "upload_date": "2020-06-22T18:27:22Z", + "modify_date": "2023-09-27T15:28:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ROBOTIKA_KLOUBAK_VISUALS_ONLY/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ] + }, + { + "createdAt": "2020-06-22T18:22:29Z", + "updatedAt": "2024-03-26T04:59:35Z", + "name": "MARBLE_HD2_VISUALS_ONLY", + "owner": "OpenRobotics", + "description": "Visual elements of Team Marble's HD2 robot for the SubT Challenge.", + "likes": 1, + "downloads": 153, + "filesize": 2207823, + "upload_date": "2020-06-22T18:22:26Z", + "modify_date": "2023-09-27T15:29:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MARBLE_HD2_VISUALS_ONLY/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ] + }, + { + "createdAt": "2020-06-22T18:00:53Z", + "updatedAt": "2024-03-31T13:02:04Z", + "name": "CERBERUS_ANYMAL_B_VISUALS_ONLY", + "owner": "OpenRobotics", + "description": "Visual elements of CERBERUS' ANYmal quadruped UGV model with a medium range lidar and IMU.", + "likes": 0, + "downloads": 299, + "filesize": 5468015, + "upload_date": "2020-06-22T18:00:49Z", + "modify_date": "2023-09-27T15:29:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CERBERUS_ANYMAL_B_VISUALS_ONLY/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ] + }, + { + "createdAt": "2020-06-22T08:57:58Z", + "updatedAt": "2024-04-04T05:16:31Z", + "name": "Coke", + "owner": "OpenRobotics", + "description": "A not healthy version of the Coke can.", + "likes": 0, + "downloads": 41728, + "filesize": 6315011, + "upload_date": "2020-06-22T08:57:56Z", + "modify_date": "2023-09-27T15:29:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Coke/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Food and Drink", + "Bottles and Cans" + ] + }, + { + "createdAt": "2020-06-22T08:41:41Z", + "updatedAt": "2024-03-12T13:17:03Z", + "name": "MopCart4", + "owner": "OpenRobotics", + "description": "Another version of the mop cart on it's own", + "likes": 0, + "downloads": 3051, + "filesize": 830900, + "upload_date": "2020-06-22T08:41:39Z", + "modify_date": "2023-09-27T15:29:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MopCart4/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-06-22T08:41:13Z", + "updatedAt": "2024-04-04T04:10:22Z", + "name": "MopCart3", + "owner": "OpenRobotics", + "description": "Last version of another mop cart", + "likes": 0, + "downloads": 27946, + "filesize": 5787981, + "upload_date": "2020-06-22T08:41:10Z", + "modify_date": "2023-09-27T15:29:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MopCart3/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-06-22T08:40:45Z", + "updatedAt": "2024-04-04T04:12:09Z", + "name": "MopCart2", + "owner": "OpenRobotics", + "description": "Another version of a mop cart", + "likes": 0, + "downloads": 17419, + "filesize": 4435847, + "upload_date": "2020-06-22T08:40:42Z", + "modify_date": "2023-09-27T15:29:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MopCart2/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-06-22T08:40:05Z", + "updatedAt": "2024-04-04T04:09:13Z", + "name": "MopCart1", + "owner": "OpenRobotics", + "description": "First mop cart on the slide with various objects", + "likes": 0, + "downloads": 8134, + "filesize": 2613478, + "upload_date": "2020-06-22T08:40:02Z", + "modify_date": "2023-09-27T15:29:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MopCart1/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Appliance" + ] + }, + { + "createdAt": "2020-06-22T08:38:48Z", + "updatedAt": "2024-04-04T04:07:22Z", + "name": "KitchenSink", + "owner": "OpenRobotics", + "description": "A countertop with a kitchen sink", + "likes": 0, + "downloads": 28475, + "filesize": 41731, + "upload_date": "2020-06-22T08:38:47Z", + "modify_date": "2023-09-27T15:30:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/KitchenSink/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home", + "Kitchen" + ] + }, + { + "createdAt": "2020-06-22T08:38:17Z", + "updatedAt": "2024-04-04T04:08:47Z", + "name": "KitchenCountertop", + "owner": "OpenRobotics", + "description": "A kitchen countertop resembling the one in CHART", + "likes": 1, + "downloads": 35123, + "filesize": 8558030, + "upload_date": "2020-06-22T08:38:14Z", + "modify_date": "2023-09-27T15:30:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/KitchenCountertop/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home", + "Kitchen" + ] + }, + { + "createdAt": "2020-06-19T21:11:25Z", + "updatedAt": "2024-04-01T01:49:13Z", + "name": "CERBERUS_M100_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "M100 UAV with sensor configuration #8: 3D medium range lidar, IMU, camera, magnetometer.\n Originally submitted as cerberus_m100_sensor_config_1.", + "likes": 1, + "downloads": 1384, + "filesize": 18922016, + "upload_date": "2020-06-19T21:11:15Z", + "modify_date": "2023-09-27T15:30:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CERBERUS_M100_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "UAV" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-06-19T16:56:59Z", + "updatedAt": "2024-04-01T01:49:36Z", + "name": "MARBLE_HD2_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "Team Marble's hd2 robot for SubT.", + "likes": 0, + "downloads": 1266, + "filesize": 2227778, + "upload_date": "2020-06-19T16:56:32Z", + "modify_date": "2023-09-27T15:31:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MARBLE_HD2_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-06-18T20:27:16Z", + "updatedAt": "2024-04-03T13:08:23Z", + "name": "MARBLE_HUSKY_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "CU's husky config with 3 D435i RGBD cameras, a pan-tilt turret, the Ouster OS1 64 channel lidar,\n and an RPLidar S1", + "likes": 0, + "downloads": 1698, + "filesize": 1398850, + "upload_date": "2020-06-18T20:27:13Z", + "modify_date": "2023-09-27T15:31:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MARBLE_HUSKY_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-06-18T20:12:23Z", + "updatedAt": "2024-04-01T01:50:32Z", + "name": "CERBERUS_ANYMAL_B_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "CERBERUS' ANYmal quadruped UGV model with a medium range lidar and IMU.", + "likes": 0, + "downloads": 1332, + "filesize": 9037663, + "upload_date": "2020-06-18T20:12:17Z", + "modify_date": "2023-09-27T15:31:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CERBERUS_ANYMAL_B_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv", + "legged robot" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-06-18T19:44:08Z", + "updatedAt": "2024-04-01T01:51:26Z", + "name": "MARBLE_QAV500_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "QAV500 UAV with sensor configuration #1: 3D medium range lidar, IMU, pressure sensor, magnetometer, RGBD camera, 2x pico flexx tof cameras.", + "likes": 1, + "downloads": 1326, + "filesize": 12341674, + "upload_date": "2020-06-18T19:44:01Z", + "modify_date": "2023-09-27T15:31:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MARBLE_QAV500_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-06-16T22:22:20Z", + "updatedAt": "2024-04-01T01:51:00Z", + "name": "Robotika_Freyja_Sensor_Config_1", + "owner": "OpenRobotics", + "description": "Robot Freya with two RGBD cameras in low-resolution mode, two planar lidars, four wide-angle cameras, compass, imu altimeter and gas sensor.", + "likes": 0, + "downloads": 1411, + "filesize": 247898, + "upload_date": "2020-06-16T22:22:18Z", + "modify_date": "2023-09-27T15:32:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Robotika_Freyja_Sensor_Config_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-06-16T21:48:23Z", + "updatedAt": "2024-04-01T01:51:20Z", + "name": "Robotika_Kloubak_Sensor_Config_1", + "owner": "OpenRobotics", + "description": "robot Kloubak - articulated robot, symmetric configuration, two planar lidars, two RGB cameras and two depth cameras.", + "likes": 1, + "downloads": 1257, + "filesize": 3244522, + "upload_date": "2020-06-16T21:48:20Z", + "modify_date": "2023-09-27T15:32:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Robotika_Kloubak_Sensor_Config_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-06-15T22:15:59Z", + "updatedAt": "2024-03-12T13:20:33Z", + "name": "NIOSH Segment 02 Shell", + "owner": "OpenRobotics", + "description": "Shell for Segment 02 of the NIOSH tunnel.", + "likes": 0, + "downloads": 42, + "filesize": 258961, + "upload_date": "2020-06-15T22:15:57Z", + "modify_date": "2023-09-27T15:32:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20Segment%2002%20Shell/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-06-15T22:15:22Z", + "updatedAt": "2024-03-24T01:29:46Z", + "name": "NIOSH Segment 01 Shell", + "owner": "OpenRobotics", + "description": "Shell for Segment 01 of the NIOSH tunnel.", + "likes": 0, + "downloads": 47, + "filesize": 117817, + "upload_date": "2020-06-15T22:15:20Z", + "modify_date": "2023-09-27T15:32:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20Segment%2001%20Shell/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-06-09T14:16:39Z", + "updatedAt": "2024-04-01T01:51:03Z", + "name": "Medium Rock Fall 3", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 1200, + "filesize": 4062868, + "upload_date": "2020-06-09T14:16:36Z", + "modify_date": "2023-09-27T15:32:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Medium%20Rock%20Fall%203/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "obstacle" + ] + }, + { + "createdAt": "2020-06-09T12:17:18Z", + "updatedAt": "2024-04-04T05:08:47Z", + "name": "WhiteCabinet", + "owner": "OpenRobotics", + "description": "Cabinet for office supplies.", + "likes": 1, + "downloads": 32101, + "filesize": 312129, + "upload_date": "2020-06-09T12:17:17Z", + "modify_date": "2023-09-27T15:32:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/WhiteCabinet/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-09T12:16:51Z", + "updatedAt": "2024-04-04T05:08:05Z", + "name": "SquareShelf", + "owner": "OpenRobotics", + "description": "Shelf for office supplies.", + "likes": 1, + "downloads": 35482, + "filesize": 171376, + "upload_date": "2020-06-09T12:16:50Z", + "modify_date": "2023-09-27T15:32:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SquareShelf/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-09T12:15:53Z", + "updatedAt": "2024-04-04T05:09:26Z", + "name": "SmallCubicle", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 50863, + "filesize": 7215943, + "upload_date": "2020-06-09T12:15:51Z", + "modify_date": "2023-09-27T15:32:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SmallCubicle/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-09T12:14:55Z", + "updatedAt": "2024-04-04T05:08:01Z", + "name": "RecTable", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 29655, + "filesize": 1634407, + "upload_date": "2020-06-09T12:14:53Z", + "modify_date": "2023-09-27T15:33:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/RecTable/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-09T12:14:22Z", + "updatedAt": "2024-04-04T05:11:27Z", + "name": "OfficeChairGrey", + "owner": "OpenRobotics", + "description": "Chair from the old office.", + "likes": 0, + "downloads": 81578, + "filesize": 1020547, + "upload_date": "2020-06-09T12:14:20Z", + "modify_date": "2023-09-27T15:33:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/OfficeChairGrey/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-09T12:13:43Z", + "updatedAt": "2024-04-04T05:11:19Z", + "name": "OfficeChairBlue", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 49091, + "filesize": 564908, + "upload_date": "2020-06-09T12:13:41Z", + "modify_date": "2023-09-27T15:33:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/OfficeChairBlue/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-09T12:12:56Z", + "updatedAt": "2024-04-04T05:11:23Z", + "name": "OfficeChairBlack", + "owner": "OpenRobotics", + "description": "Chair from meeting room.", + "likes": 0, + "downloads": 65981, + "filesize": 793096, + "upload_date": "2020-06-09T12:12:54Z", + "modify_date": "2023-09-27T15:33:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/OfficeChairBlack/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-09T12:12:22Z", + "updatedAt": "2024-04-04T05:05:39Z", + "name": "Fridge", + "owner": "OpenRobotics", + "description": "A generic tall fridge with freezer", + "likes": 1, + "downloads": 59236, + "filesize": 724368, + "upload_date": "2020-06-09T12:12:20Z", + "modify_date": "2023-09-27T15:33:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fridge/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home", + "Kitchen" + ] + }, + { + "createdAt": "2020-06-09T12:11:18Z", + "updatedAt": "2024-04-04T05:07:57Z", + "name": "Drawer", + "owner": "OpenRobotics", + "description": "", + "likes": 1, + "downloads": 47294, + "filesize": 135520, + "upload_date": "2020-06-09T12:11:16Z", + "modify_date": "2023-09-27T15:33:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Drawer/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-09T12:10:43Z", + "updatedAt": "2024-04-04T05:07:58Z", + "name": "ConfTable", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 32304, + "filesize": 3883822, + "upload_date": "2020-06-09T12:10:41Z", + "modify_date": "2023-09-27T15:33:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ConfTable/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-09T12:09:07Z", + "updatedAt": "2024-04-04T05:08:42Z", + "name": "BigCubicle", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 37146, + "filesize": 7069537, + "upload_date": "2020-06-09T12:09:05Z", + "modify_date": "2023-09-27T15:33:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/BigCubicle/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-09T12:06:50Z", + "updatedAt": "2024-04-04T05:07:31Z", + "name": "AdjTable", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 1, + "downloads": 80004, + "filesize": 4100585, + "upload_date": "2020-06-09T12:06:48Z", + "modify_date": "2023-09-27T15:33:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/AdjTable/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-06-08T23:31:36Z", + "updatedAt": "2024-04-03T09:24:10Z", + "name": "Male visitor", + "owner": "OpenRobotics", + "description": "Male visitor walking", + "likes": 0, + "downloads": 566, + "filesize": 645777, + "upload_date": "2020-06-08T23:31:34Z", + "modify_date": "2023-09-27T15:34:05Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Male%20visitor/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "actor", + "person", + "animated" + ], + "categories": [ + "People" + ] + }, + { + "createdAt": "2020-06-03T16:32:18Z", + "updatedAt": "2024-04-01T15:15:51Z", + "name": "Large Rock Fall", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 1644, + "filesize": 4066967, + "upload_date": "2020-06-03T16:32:15Z", + "modify_date": "2023-09-27T15:34:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Large%20Rock%20Fall/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "obstacle" + ] + }, + { + "createdAt": "2020-06-03T16:30:29Z", + "updatedAt": "2024-04-01T15:16:54Z", + "name": "Medium Rock Fall", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 1621, + "filesize": 4062867, + "upload_date": "2020-06-03T16:30:25Z", + "modify_date": "2023-09-27T15:34:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Medium%20Rock%20Fall/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "obstacle" + ] + }, + { + "createdAt": "2020-06-03T16:29:27Z", + "updatedAt": "2024-04-01T01:51:48Z", + "name": "Small Rock Fall", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 1108, + "filesize": 4110973, + "upload_date": "2020-06-03T16:29:24Z", + "modify_date": "2023-09-27T15:34:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Small%20Rock%20Fall/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "obstacle" + ] + }, + { + "createdAt": "2020-06-02T19:01:38Z", + "updatedAt": "2024-03-12T13:31:35Z", + "name": "NIOSH Segment 02", + "owner": "OpenRobotics", + "description": "Segment 02 of NIOSH tunnel.", + "likes": 0, + "downloads": 75, + "filesize": 279024911, + "upload_date": "2020-06-02T19:00:51Z", + "modify_date": "2023-09-27T15:34:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20Segment%2002/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-06-02T18:55:04Z", + "updatedAt": "2024-03-12T13:33:02Z", + "name": "NIOSH Segment 01", + "owner": "OpenRobotics", + "description": "Segment 01 of the NIOSH tunnel", + "likes": 0, + "downloads": 427, + "filesize": 144575119, + "upload_date": "2020-06-02T18:54:12Z", + "modify_date": "2020-12-04T21:17:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20Segment%2001/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-06-01T22:41:36Z", + "updatedAt": "2024-04-01T01:53:22Z", + "name": "Falling Rock 6", + "owner": "OpenRobotics", + "description": "Small sized falling rock", + "likes": 0, + "downloads": 1580, + "filesize": 4172886, + "upload_date": "2020-06-01T22:41:32Z", + "modify_date": "2021-03-31T21:22:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Falling%20Rock%206/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "obstacle" + ] + }, + { + "createdAt": "2020-06-01T22:38:53Z", + "updatedAt": "2024-04-01T01:53:00Z", + "name": "Falling Rock 5", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 1569, + "filesize": 4172813, + "upload_date": "2020-06-01T22:38:50Z", + "modify_date": "2023-09-27T15:38:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Falling%20Rock%205/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "obstacle" + ] + }, + { + "createdAt": "2020-05-27T16:41:28Z", + "updatedAt": "2024-04-04T06:02:11Z", + "name": "DeskChair", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 35085, + "filesize": 3163810, + "upload_date": "2020-05-27T16:41:25Z", + "modify_date": "2023-09-27T15:38:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DeskChair/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-05-26T21:24:17Z", + "updatedAt": "2024-03-24T12:40:19Z", + "name": "Dynamic Rocks Test", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 169, + "filesize": 14129559, + "upload_date": "2020-05-26T21:24:14Z", + "modify_date": "2020-05-26T21:32:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2020-05-26T21:16:01Z", + "updatedAt": "2024-04-01T01:53:40Z", + "name": "Falling Rock 4", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 1605, + "filesize": 4172912, + "upload_date": "2020-05-26T21:15:57Z", + "modify_date": "2023-09-27T15:38:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Falling%20Rock%204/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "obstacle" + ] + }, + { + "createdAt": "2020-05-26T21:15:36Z", + "updatedAt": "2024-04-03T07:00:19Z", + "name": "Falling Rock 3", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 1506, + "filesize": 4190623, + "upload_date": "2020-05-26T21:15:33Z", + "modify_date": "2023-09-27T15:38:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Falling%20Rock%203/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "obstacle" + ] + }, + { + "createdAt": "2020-05-26T21:15:06Z", + "updatedAt": "2024-04-01T05:07:51Z", + "name": "Falling Rock 2", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 1508, + "filesize": 4182201, + "upload_date": "2020-05-26T21:15:02Z", + "modify_date": "2023-09-27T15:38:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Falling%20Rock%202/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "obstacle" + ] + }, + { + "createdAt": "2020-05-26T21:14:35Z", + "updatedAt": "2024-04-01T05:07:14Z", + "name": "Falling Rock 1", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 1699, + "filesize": 4204590, + "upload_date": "2020-05-26T21:14:31Z", + "modify_date": "2023-09-27T15:38:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Falling%20Rock%201/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "obstacle" + ] + }, + { + "createdAt": "2020-05-23T23:53:52Z", + "updatedAt": "2024-04-04T00:11:28Z", + "name": "TEAMBASE", + "owner": "OpenRobotics", + "description": "The base station receives the artifact reports from the robots.", + "likes": 0, + "downloads": 25168, + "filesize": 1053104, + "upload_date": "2020-05-23T23:53:50Z", + "modify_date": "2023-09-27T15:39:04Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/TEAMBASE/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-05-21T06:13:26Z", + "updatedAt": "2024-04-04T04:09:32Z", + "name": "ElderMalePatient", + "owner": "OpenRobotics", + "description": "An elder male patient lying down.\nCharacter generated from Autodesk Character Generator - https://charactergenerator.autodesk.com/\nPose from Mixamo - https://www.mixamo.com/", + "likes": 0, + "downloads": 21095, + "filesize": 2918271, + "upload_date": "2020-05-21T06:13:24Z", + "modify_date": "2023-09-27T15:39:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ElderMalePatient/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "People" + ] + }, + { + "createdAt": "2020-05-21T06:09:55Z", + "updatedAt": "2024-04-04T04:09:02Z", + "name": "ElderLadyPatient", + "owner": "OpenRobotics", + "description": "An elder lady patient\nCharacter generated from Autodesk Character Generator - https://charactergenerator.autodesk.com/\nPose from Mixamo - https://www.mixamo.com/", + "likes": 0, + "downloads": 21326, + "filesize": 2731549, + "upload_date": "2020-05-21T06:09:52Z", + "modify_date": "2023-09-27T15:39:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ElderLadyPatient/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "People" + ] + }, + { + "createdAt": "2020-05-21T06:07:03Z", + "updatedAt": "2024-04-04T04:11:01Z", + "name": "Desk", + "owner": "OpenRobotics", + "description": "A generic office desk", + "likes": 1, + "downloads": 51177, + "filesize": 1218556, + "upload_date": "2020-05-21T06:07:01Z", + "modify_date": "2023-09-27T15:39:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Desk/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-05-21T05:53:52Z", + "updatedAt": "2024-04-03T13:15:18Z", + "name": "BedTable", + "owner": "OpenRobotics", + "description": "A generic hospital bed table", + "likes": 0, + "downloads": 8067, + "filesize": 1088303, + "upload_date": "2020-05-21T05:53:49Z", + "modify_date": "2023-09-27T15:39:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/BedTable/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-05-21T05:50:32Z", + "updatedAt": "2024-04-04T04:08:49Z", + "name": "CGMVanguard", + "owner": "OpenRobotics", + "description": "A generic CGMVanguard hospital bed", + "likes": 0, + "downloads": 19168, + "filesize": 1350506, + "upload_date": "2020-05-21T05:50:29Z", + "modify_date": "2023-09-27T15:39:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CGMVanguard/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-05-21T05:27:18Z", + "updatedAt": "2024-04-04T04:11:23Z", + "name": "BedsideTable", + "owner": "OpenRobotics", + "description": "A generic hospital bedside table", + "likes": 0, + "downloads": 21176, + "filesize": 691910, + "upload_date": "2020-05-21T05:27:16Z", + "modify_date": "2023-09-27T15:39:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/BedsideTable/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-05-21T05:22:27Z", + "updatedAt": "2024-03-29T13:19:18Z", + "name": "ArmoredPillars", + "owner": "OpenRobotics", + "description": "Armored pillars, protecting the pillars from getting smashed by trucks", + "likes": 0, + "downloads": 261, + "filesize": 868985, + "upload_date": "2020-05-21T05:22:25Z", + "modify_date": "2023-09-27T15:39:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ArmoredPillars/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2020-05-20T22:17:26Z", + "updatedAt": "2024-04-01T01:53:37Z", + "name": "Cave Transition Type A to and from Type B Lights", + "owner": "OpenRobotics", + "description": "Transition tile for cave environment with lights.", + "likes": 0, + "downloads": 1483, + "filesize": 60851, + "upload_date": "2020-05-20T22:17:24Z", + "modify_date": "2023-09-27T15:39:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Transition%20Type%20A%20to%20and%20from%20Type%20B%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "cave" + ] + }, + { + "createdAt": "2020-05-20T19:38:37Z", + "updatedAt": "2024-04-04T04:10:54Z", + "name": "VisitorKidSit", + "owner": "OpenRobotics", + "description": "Kid sitting down reading a book.", + "likes": 0, + "downloads": 36784, + "filesize": 744956, + "upload_date": "2020-05-20T19:38:35Z", + "modify_date": "2023-09-27T15:39:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/VisitorKidSit/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "People" + ] + }, + { + "createdAt": "2020-05-20T19:37:31Z", + "updatedAt": "2024-04-04T04:07:52Z", + "name": "MiniSofa", + "owner": "OpenRobotics", + "description": "a terrible sofa", + "likes": 0, + "downloads": 26150, + "filesize": 1597334, + "upload_date": "2020-05-20T19:37:29Z", + "modify_date": "2023-09-27T15:40:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MiniSofa/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-05-20T19:36:36Z", + "updatedAt": "2024-04-04T04:11:05Z", + "name": "MaleVisitorSit", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 36819, + "filesize": 596416, + "upload_date": "2020-05-20T19:36:34Z", + "modify_date": "2023-09-27T15:40:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MaleVisitorSit/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "People" + ] + }, + { + "createdAt": "2020-05-20T19:35:30Z", + "updatedAt": "2024-04-04T04:10:45Z", + "name": "LampAndStand", + "owner": "OpenRobotics", + "description": "A lamp on a table", + "likes": 1, + "downloads": 21498, + "filesize": 676942, + "upload_date": "2020-05-20T19:35:28Z", + "modify_date": "2023-09-27T15:40:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/LampAndStand/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "stand", + "lamp" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-05-20T19:34:41Z", + "updatedAt": "2024-04-04T04:08:16Z", + "name": "FemaleVisitorSit", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 37464, + "filesize": 669884, + "upload_date": "2020-05-20T19:34:39Z", + "modify_date": "2023-09-27T15:40:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FemaleVisitorSit/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "People" + ] + }, + { + "createdAt": "2020-05-20T19:33:13Z", + "updatedAt": "2024-04-04T04:10:59Z", + "name": "FemaleVisitor", + "owner": "OpenRobotics", + "description": "Female visitor", + "likes": 0, + "downloads": 44806, + "filesize": 685516, + "upload_date": "2020-05-20T19:33:11Z", + "modify_date": "2023-09-27T15:40:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FemaleVisitor/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "People" + ] + }, + { + "createdAt": "2020-05-20T19:30:13Z", + "updatedAt": "2024-04-04T04:11:37Z", + "name": "Chair", + "owner": "OpenRobotics", + "description": "A generic hospital chair", + "likes": 0, + "downloads": 73979, + "filesize": 2741574, + "upload_date": "2020-05-20T19:30:11Z", + "modify_date": "2023-09-27T15:40:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Chair/tip/files/thumbnails/1.png", + "private": false, + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-05-19T23:45:24Z", + "updatedAt": "2024-04-01T01:54:11Z", + "name": "Cave Vertical Shaft Straight Bottom Lights Type A", + "owner": "OpenRobotics", + "description": "Vertical shaft straight bottom tile for cave environment with lights.", + "likes": 0, + "downloads": 1349, + "filesize": 60602, + "upload_date": "2020-05-19T23:45:22Z", + "modify_date": "2023-09-27T15:40:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Vertical%20Shaft%20Straight%20Bottom%20Lights%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "cave" + ] + }, + { + "createdAt": "2020-05-19T23:41:12Z", + "updatedAt": "2024-04-01T01:55:01Z", + "name": "Cave U Turn Elevation Lights Type A", + "owner": "OpenRobotics", + "description": "U turn elevation tile for cave environment with lights.", + "likes": 0, + "downloads": 1251, + "filesize": 96178, + "upload_date": "2020-05-19T23:41:10Z", + "modify_date": "2023-09-27T15:40:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20U%20Turn%20Elevation%20Lights%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "cave" + ] + }, + { + "createdAt": "2020-05-19T23:36:02Z", + "updatedAt": "2024-04-01T01:55:23Z", + "name": "Cave Straight Lights Type A", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment with lights.", + "likes": 0, + "downloads": 1225, + "filesize": 59807, + "upload_date": "2020-05-19T23:36:00Z", + "modify_date": "2023-09-27T15:40:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%20Lights%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "cave" + ] + }, + { + "createdAt": "2020-05-19T23:31:03Z", + "updatedAt": "2024-04-01T01:55:25Z", + "name": "Cave Elevation Straight Lights Type A", + "owner": "OpenRobotics", + "description": "Elevation straight tile for cave environment with lights.", + "likes": 0, + "downloads": 1365, + "filesize": 43344, + "upload_date": "2020-05-19T23:31:01Z", + "modify_date": "2023-09-27T15:40:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Elevation%20Straight%20Lights%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "cave" + ] + }, + { + "createdAt": "2020-05-19T23:28:47Z", + "updatedAt": "2024-04-01T01:55:36Z", + "name": "Cave Corner 04 Lights Type A", + "owner": "OpenRobotics", + "description": "Corner tile for cave environment with lights.", + "likes": 0, + "downloads": 1230, + "filesize": 61462, + "upload_date": "2020-05-19T23:28:45Z", + "modify_date": "2023-09-27T15:40:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2004%20Lights%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "cave" + ] + }, + { + "createdAt": "2020-05-19T23:26:43Z", + "updatedAt": "2024-04-01T01:55:45Z", + "name": "Cave Corner 02 Lights Type A", + "owner": "OpenRobotics", + "description": "Corner tile for cave environment with lights.", + "likes": 0, + "downloads": 1330, + "filesize": 48013, + "upload_date": "2020-05-19T23:26:42Z", + "modify_date": "2023-09-27T15:40:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2002%20Lights%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "cave" + ] + }, + { + "createdAt": "2020-05-19T23:13:42Z", + "updatedAt": "2024-04-01T01:55:58Z", + "name": "Cave Corner 01 Lights Type A", + "owner": "OpenRobotics", + "description": "Corner tile for cave environment with lights.", + "likes": 0, + "downloads": 1247, + "filesize": 108510, + "upload_date": "2020-05-19T23:13:41Z", + "modify_date": "2023-09-27T15:41:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2001%20Lights%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "cave" + ] + }, + { + "createdAt": "2020-05-19T23:10:53Z", + "updatedAt": "2024-04-01T01:55:57Z", + "name": "Cave 4 Way 01 Lights Type A", + "owner": "OpenRobotics", + "description": "4 way tile for cave environment with lights.", + "likes": 0, + "downloads": 1333, + "filesize": 99762, + "upload_date": "2020-05-19T23:10:51Z", + "modify_date": "2023-09-27T15:41:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%204%20Way%2001%20Lights%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "cave" + ] + }, + { + "createdAt": "2020-05-19T22:55:53Z", + "updatedAt": "2024-04-01T01:56:10Z", + "name": "Cave 3 Way Elevation 02 Lights Type A", + "owner": "OpenRobotics", + "description": "3 way elevation tile for cave environment with lights.", + "likes": 0, + "downloads": 1326, + "filesize": 62828, + "upload_date": "2020-05-19T22:55:51Z", + "modify_date": "2023-09-27T15:41:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%203%20Way%20Elevation%2002%20Lights%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "cave" + ] + }, + { + "createdAt": "2020-05-19T21:28:47Z", + "updatedAt": "2024-04-01T01:57:53Z", + "name": "DronePlatformX1", + "owner": "OpenRobotics", + "description": "A platform for the X1 vehicle capable of holding a drone.", + "likes": 0, + "downloads": 1294, + "filesize": 314693, + "upload_date": "2020-05-19T21:28:45Z", + "modify_date": "2023-09-27T15:41:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DronePlatformX1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "drone", + "subt", + "platform" + ], + "categories": [ + "Science and Technology" + ] + }, + { + "createdAt": "2020-05-18T14:47:50Z", + "updatedAt": "2024-04-01T01:58:03Z", + "name": "Cave Transition Type A to and from Type B", + "owner": "OpenRobotics", + "description": "Transition tile for cave environment.", + "likes": 0, + "downloads": 1570, + "filesize": 715442, + "upload_date": "2020-05-18T14:47:42Z", + "modify_date": "2023-09-27T15:41:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Transition%20Type%20A%20to%20and%20from%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-15T23:56:19Z", + "updatedAt": "2024-03-18T11:56:42Z", + "name": "VRC Grass Plane 2", + "owner": "OpenRobotics", + "description": "A grass textured plane.", + "likes": 0, + "downloads": 8372, + "filesize": 6350, + "upload_date": "2020-05-15T23:56:18Z", + "modify_date": "2023-09-27T15:41:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/VRC%20Grass%20Plane%202/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drcsim" + ], + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2020-05-15T23:54:25Z", + "updatedAt": "2024-03-12T14:04:07Z", + "name": "Fire Hose B", + "owner": "OpenRobotics", + "description": "This model approximates a fire hose.", + "likes": 0, + "downloads": 1775, + "filesize": 19830, + "upload_date": "2020-05-15T23:54:23Z", + "modify_date": "2023-09-27T15:41:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fire%20Hose%20B/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drcsim" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2020-05-15T23:53:48Z", + "updatedAt": "2024-03-12T14:04:15Z", + "name": "Fire Hose A", + "owner": "OpenRobotics", + "description": "This model approximates a fire hose.", + "likes": 0, + "downloads": 69, + "filesize": 942929, + "upload_date": "2020-05-15T23:53:46Z", + "modify_date": "2023-09-27T15:41:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fire%20Hose%20A/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drcsim" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2020-05-15T23:53:03Z", + "updatedAt": "2024-03-12T14:05:06Z", + "name": "Fire Hose", + "owner": "OpenRobotics", + "description": "This model approximates a fire hose.", + "likes": 0, + "downloads": 68, + "filesize": 942230, + "upload_date": "2020-05-15T23:53:01Z", + "modify_date": "2023-09-27T15:41:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fire%20Hose/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drcsim" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2020-05-15T23:49:53Z", + "updatedAt": "2024-03-21T01:44:24Z", + "name": "Pavement Plane", + "owner": "OpenRobotics", + "description": "A pavement textured plane.", + "likes": 0, + "downloads": 169, + "filesize": 746624, + "upload_date": "2020-05-15T23:49:51Z", + "modify_date": "2023-09-27T15:41:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Pavement%20Plane/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drcsim" + ], + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2020-05-15T23:48:56Z", + "updatedAt": "2024-03-21T05:38:56Z", + "name": "Ladder", + "owner": "OpenRobotics", + "description": "A ladder.", + "likes": 0, + "downloads": 104, + "filesize": 10753, + "upload_date": "2020-05-15T23:48:55Z", + "modify_date": "2023-09-27T15:41:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Ladder/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drcsim" + ], + "categories": [ + "Furniture and Home" + ] + }, + { + "createdAt": "2020-05-15T23:47:55Z", + "updatedAt": "2024-03-25T09:30:52Z", + "name": "Grass Plane", + "owner": "OpenRobotics", + "description": "A grass textured plane.", + "likes": 0, + "downloads": 292, + "filesize": 720690, + "upload_date": "2020-05-15T23:47:54Z", + "modify_date": "2023-09-27T15:42:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Grass%20Plane/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drcsim" + ], + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2020-05-15T23:45:55Z", + "updatedAt": "2024-03-12T14:09:31Z", + "name": "DRC Vehicle XP900", + "owner": "OpenRobotics", + "description": "This model approximates the Polaris Ranger XP900.", + "likes": 0, + "downloads": 88, + "filesize": 135989, + "upload_date": "2020-05-15T23:45:54Z", + "modify_date": "2023-09-27T15:42:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Vehicle%20XP900/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drcsim" + ], + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2020-05-15T23:44:35Z", + "updatedAt": "2024-04-01T19:26:44Z", + "name": "DRC Vehicle", + "owner": "OpenRobotics", + "description": "This model approximates the Polaris Ranger EV.", + "likes": 0, + "downloads": 107, + "filesize": 132802, + "upload_date": "2020-05-15T23:44:33Z", + "modify_date": "2023-09-27T15:42:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Vehicle/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drcsim" + ], + "categories": [ + "Cars and Vehicles" + ] + }, + { + "createdAt": "2020-05-15T23:42:39Z", + "updatedAt": "2024-03-21T01:44:59Z", + "name": "Cutout Wall", + "owner": "OpenRobotics", + "description": "A grey wall with simple shapes.", + "likes": 0, + "downloads": 192, + "filesize": 6286823, + "upload_date": "2020-05-15T23:42:37Z", + "modify_date": "2023-09-27T15:42:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cutout%20Wall/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drcsim" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2020-05-15T23:40:47Z", + "updatedAt": "2024-03-12T14:13:07Z", + "name": "Angled Steps", + "owner": "OpenRobotics", + "description": "A collection of cinderblocks in a variable-angle stair formation.", + "likes": 0, + "downloads": 66, + "filesize": 35949, + "upload_date": "2020-05-15T23:40:46Z", + "modify_date": "2023-09-27T15:42:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Angled%20Steps/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drcsim" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2020-05-15T23:38:58Z", + "updatedAt": "2024-03-12T18:11:23Z", + "name": "block_angle_base", + "owner": "OpenRobotics", + "description": "A static base for angled cinderblock steps.", + "likes": 0, + "downloads": 40, + "filesize": 22029, + "upload_date": "2020-05-15T23:38:56Z", + "modify_date": "2023-09-27T15:42:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/block_angle_base/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "drcsim" + ], + "categories": [ + "Architecture" + ] + }, + { + "createdAt": "2020-05-15T13:28:32Z", + "updatedAt": "2024-03-12T07:34:17Z", + "name": "x3_description", + "owner": "nate", + "description": "X3 UAV with sensor configuration #4: VGA RGBD camera, IMU, pressure sensor, magnetometer, ceiling point sensor, floor point sensor.", + "likes": 0, + "downloads": 87, + "filesize": 10836977, + "upload_date": "2020-05-15T13:28:25Z", + "modify_date": "2023-09-22T16:07:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/x3_description/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt", + "UAV", + "x3" + ] + }, + { + "createdAt": "2020-05-14T19:57:04Z", + "updatedAt": "2024-04-02T16:41:19Z", + "name": "Cave 3 Way 01 Type B", + "owner": "OpenRobotics", + "description": "3 way tile for cave environment.", + "likes": 0, + "downloads": 2013, + "filesize": 1055192, + "upload_date": "2020-05-14T19:56:57Z", + "modify_date": "2023-09-27T15:42:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%203%20Way%2001%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:56:56Z", + "updatedAt": "2024-04-02T12:41:48Z", + "name": "Cave Corner 02 Type B", + "owner": "OpenRobotics", + "description": "Corner tile for cave environment.", + "likes": 0, + "downloads": 1978, + "filesize": 560478, + "upload_date": "2020-05-14T19:56:50Z", + "modify_date": "2023-09-27T15:42:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2002%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:56:49Z", + "updatedAt": "2024-04-02T15:35:15Z", + "name": "Cave Cavern Split 01 Type B", + "owner": "OpenRobotics", + "description": "Cavern split 01 tile for cave environment.", + "likes": 0, + "downloads": 1735, + "filesize": 711896, + "upload_date": "2020-05-14T19:56:42Z", + "modify_date": "2023-09-27T15:42:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Cavern%20Split%2001%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:56:39Z", + "updatedAt": "2024-04-02T15:36:19Z", + "name": "Cave Cavern Split 02 Type B", + "owner": "OpenRobotics", + "description": "Cavern split 02 tile for cave environment.", + "likes": 0, + "downloads": 1734, + "filesize": 419656, + "upload_date": "2020-05-14T19:56:32Z", + "modify_date": "2023-09-27T15:42:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Cavern%20Split%2002%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:56:31Z", + "updatedAt": "2024-04-02T12:39:40Z", + "name": "Cave Cap Type B", + "owner": "OpenRobotics", + "description": "Cap tile for cave environment.", + "likes": 0, + "downloads": 1980, + "filesize": 264308, + "upload_date": "2020-05-14T19:56:25Z", + "modify_date": "2023-09-27T15:43:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Cap%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:56:24Z", + "updatedAt": "2024-04-02T16:44:33Z", + "name": "Cave Vertical Shaft Type B", + "owner": "OpenRobotics", + "description": "Vertical shaft tile for cave environment.", + "likes": 0, + "downloads": 1755, + "filesize": 831625, + "upload_date": "2020-05-14T19:56:17Z", + "modify_date": "2023-09-27T15:43:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Vertical%20Shaft%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:56:16Z", + "updatedAt": "2024-04-02T12:42:54Z", + "name": "Cave Elevation Type B", + "owner": "OpenRobotics", + "description": "Elevation tile for cave environment.", + "likes": 0, + "downloads": 1975, + "filesize": 380788, + "upload_date": "2020-05-14T19:56:09Z", + "modify_date": "2023-09-27T15:43:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Elevation%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:56:09Z", + "updatedAt": "2024-04-02T16:43:12Z", + "name": "Cave Straight 05 Type B", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment.", + "likes": 0, + "downloads": 1822, + "filesize": 614619, + "upload_date": "2020-05-14T19:56:02Z", + "modify_date": "2023-09-27T15:43:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2005%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:56:01Z", + "updatedAt": "2024-04-01T02:00:19Z", + "name": "Cave Straight 04 Type B", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment.", + "likes": 0, + "downloads": 1826, + "filesize": 804348, + "upload_date": "2020-05-14T19:55:55Z", + "modify_date": "2023-09-27T15:43:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2004%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:55:54Z", + "updatedAt": "2024-04-02T15:38:28Z", + "name": "Cave Straight 03 Type B", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment.", + "likes": 0, + "downloads": 2294, + "filesize": 692302, + "upload_date": "2020-05-14T19:55:47Z", + "modify_date": "2023-09-27T15:43:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2003%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:55:47Z", + "updatedAt": "2024-04-02T16:42:13Z", + "name": "Cave Straight 02 Type B", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment.", + "likes": 0, + "downloads": 1966, + "filesize": 527819, + "upload_date": "2020-05-14T19:55:40Z", + "modify_date": "2023-09-27T15:43:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2002%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:55:37Z", + "updatedAt": "2024-04-02T15:30:39Z", + "name": "Cave Straight 01 Type B", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment.", + "likes": 0, + "downloads": 1991, + "filesize": 1166398, + "upload_date": "2020-05-14T19:55:30Z", + "modify_date": "2023-09-27T15:43:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2001%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:55:28Z", + "updatedAt": "2024-04-01T02:00:26Z", + "name": "Cave Straight Type B", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment.", + "likes": 0, + "downloads": 992, + "filesize": 940457, + "upload_date": "2020-05-14T19:55:22Z", + "modify_date": "2023-09-27T15:43:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:55:19Z", + "updatedAt": "2024-04-01T02:00:31Z", + "name": "Cave 3 Way Type B", + "owner": "OpenRobotics", + "description": "3 way tile for cave environment.", + "likes": 0, + "downloads": 990, + "filesize": 1121871, + "upload_date": "2020-05-14T19:55:12Z", + "modify_date": "2023-09-27T15:44:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%203%20Way%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:54:53Z", + "updatedAt": "2024-04-01T02:02:45Z", + "name": "Cave Straight 04 Lights Type B", + "owner": "OpenRobotics", + "description": "Straight tile with lights for cave environment.", + "likes": 0, + "downloads": 1396, + "filesize": 118500, + "upload_date": "2020-05-14T19:54:51Z", + "modify_date": "2023-09-27T15:44:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2004%20Lights%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:54:47Z", + "updatedAt": "2024-04-02T15:32:03Z", + "name": "Cave Straight 02 Lights Type B", + "owner": "OpenRobotics", + "description": "Straight tile with lights for cave environment.", + "likes": 0, + "downloads": 1464, + "filesize": 111514, + "upload_date": "2020-05-14T19:54:46Z", + "modify_date": "2023-09-27T15:44:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2002%20Lights%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:54:42Z", + "updatedAt": "2024-04-01T02:02:37Z", + "name": "Cave Corner 30F D Type B", + "owner": "OpenRobotics", + "description": "Corner 30 degree tile for cave environment. (Mirror)", + "likes": 0, + "downloads": 1328, + "filesize": 392642, + "upload_date": "2020-05-14T19:54:35Z", + "modify_date": "2023-09-27T15:44:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2030F%20D%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:54:42Z", + "updatedAt": "2024-04-01T02:02:43Z", + "name": "Cave Straight 01 Lights Type B", + "owner": "OpenRobotics", + "description": "Straight tile with lights for cave environment.", + "likes": 0, + "downloads": 1519, + "filesize": 122158, + "upload_date": "2020-05-14T19:54:40Z", + "modify_date": "2023-09-27T15:44:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2001%20Lights%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:54:37Z", + "updatedAt": "2024-04-01T02:02:30Z", + "name": "Cave Corner 30 D Type B", + "owner": "OpenRobotics", + "description": "Corner 30 degree tile for cave environment.", + "likes": 0, + "downloads": 1369, + "filesize": 383883, + "upload_date": "2020-05-14T19:54:30Z", + "modify_date": "2023-09-27T15:44:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2030%20D%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:54:33Z", + "updatedAt": "2024-04-02T12:34:13Z", + "name": "Cave Starting Area Type B", + "owner": "OpenRobotics", + "description": "Starting area for cave environment.", + "likes": 0, + "downloads": 2142, + "filesize": 1206349, + "upload_date": "2020-05-14T19:54:25Z", + "modify_date": "2023-09-27T15:44:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Starting%20Area%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:54:24Z", + "updatedAt": "2024-04-01T02:02:49Z", + "name": "Cave Corner 30F Type B", + "owner": "OpenRobotics", + "description": "Corner 30 degree tile for cave environment. (Mirror)", + "likes": 0, + "downloads": 1183, + "filesize": 101162, + "upload_date": "2020-05-14T19:54:18Z", + "modify_date": "2023-09-27T15:44:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2030F%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:54:17Z", + "updatedAt": "2024-04-01T02:02:46Z", + "name": "Cave Corner 30 Type B", + "owner": "OpenRobotics", + "description": "Corner 30 degree tile for cave environment.", + "likes": 0, + "downloads": 1188, + "filesize": 101291, + "upload_date": "2020-05-14T19:54:10Z", + "modify_date": "2023-09-27T15:44:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2030%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:54:00Z", + "updatedAt": "2024-04-02T12:40:44Z", + "name": "Cave Corner 01 Type B", + "owner": "OpenRobotics", + "description": "Corner tile for cave environment.", + "likes": 0, + "downloads": 1996, + "filesize": 750041, + "upload_date": "2020-05-14T19:53:53Z", + "modify_date": "2023-09-27T15:44:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2001%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:52:53Z", + "updatedAt": "2024-04-02T15:33:07Z", + "name": "Cave Straight 05 Lights Type B", + "owner": "OpenRobotics", + "description": "Straight tile with lights for cave environment.", + "likes": 0, + "downloads": 1425, + "filesize": 112325, + "upload_date": "2020-05-14T19:52:52Z", + "modify_date": "2023-09-27T15:45:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2005%20Lights%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:52:46Z", + "updatedAt": "2024-04-01T02:04:42Z", + "name": "Cave Corner 01 Lights Type B", + "owner": "OpenRobotics", + "description": "Corner tile with lights for cave environment.", + "likes": 0, + "downloads": 1430, + "filesize": 119132, + "upload_date": "2020-05-14T19:52:44Z", + "modify_date": "2023-09-27T15:45:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2001%20Lights%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:52:38Z", + "updatedAt": "2024-04-01T02:04:44Z", + "name": "Cave Corner 02 Lights Type B", + "owner": "OpenRobotics", + "description": "Corner tile with lights for cave environment.", + "likes": 0, + "downloads": 1437, + "filesize": 126797, + "upload_date": "2020-05-14T19:52:37Z", + "modify_date": "2023-09-27T15:45:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2002%20Lights%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:52:31Z", + "updatedAt": "2024-04-01T02:04:37Z", + "name": "Cave Corner 30 D Lights Type B", + "owner": "OpenRobotics", + "description": "Corner 30 degree tile with lights for cave environment.", + "likes": 0, + "downloads": 1313, + "filesize": 104478, + "upload_date": "2020-05-14T19:52:29Z", + "modify_date": "2023-09-27T15:45:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2030%20D%20Lights%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:52:22Z", + "updatedAt": "2024-04-02T15:41:38Z", + "name": "Cave Corner 30F D Lights Type B", + "owner": "OpenRobotics", + "description": "Corner 30 degree tile with lights for cave environment. (Mirror)", + "likes": 0, + "downloads": 1323, + "filesize": 104356, + "upload_date": "2020-05-14T19:52:20Z", + "modify_date": "2023-09-27T15:45:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2030F%20D%20Lights%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-14T19:52:13Z", + "updatedAt": "2024-04-01T02:04:46Z", + "name": "Cave Elevation Lights Type B", + "owner": "OpenRobotics", + "description": "Elevation tile for cave environment with lights.", + "likes": 0, + "downloads": 1465, + "filesize": 109752, + "upload_date": "2020-05-14T19:52:11Z", + "modify_date": "2023-09-27T15:45:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Elevation%20Lights%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "cave" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2020-05-14T19:52:06Z", + "updatedAt": "2024-04-02T15:34:11Z", + "name": "Cave Vertical Shaft Lights Type B", + "owner": "OpenRobotics", + "description": "Vertical shaft tile for cave environment with lights.", + "likes": 0, + "downloads": 1384, + "filesize": 176006, + "upload_date": "2020-05-14T19:52:04Z", + "modify_date": "2023-09-27T15:45:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Vertical%20Shaft%20Lights%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "cave" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2020-05-14T19:51:57Z", + "updatedAt": "2024-04-02T12:35:30Z", + "name": "Cave 3 Way 01 Lights Type B", + "owner": "OpenRobotics", + "description": "3 way tile for cave environment with lights.", + "likes": 0, + "downloads": 1500, + "filesize": 122872, + "upload_date": "2020-05-14T19:51:55Z", + "modify_date": "2023-09-27T15:45:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%203%20Way%2001%20Lights%20Type%20B/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "cave" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2020-05-12T17:33:38Z", + "updatedAt": "2024-04-02T17:17:47Z", + "name": "Starting Area Type A", + "owner": "OpenRobotics", + "description": "A starting area designed for SUBT cave scenarios.", + "likes": 0, + "downloads": 56, + "filesize": 70143621, + "upload_date": "2020-05-12T17:33:26Z", + "modify_date": "2023-09-27T15:45:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Starting%20Area%20Type%20A/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-05-08T22:00:17Z", + "updatedAt": "2024-04-01T02:06:29Z", + "name": "Cave 3 Way 02 Type A", + "owner": "OpenRobotics", + "description": "3 way tile for cave environment.", + "likes": 0, + "downloads": 1381, + "filesize": 838019, + "upload_date": "2020-05-08T22:00:07Z", + "modify_date": "2023-09-27T15:46:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%203%20Way%2002%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-01T01:24:05Z", + "updatedAt": "2024-04-01T02:06:40Z", + "name": "Cave Vertical Shaft Type A", + "owner": "OpenRobotics", + "description": "Vertical shaft tile for cave environment.", + "likes": 0, + "downloads": 1350, + "filesize": 72674, + "upload_date": "2020-05-01T01:24:01Z", + "modify_date": "2023-09-27T15:46:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Vertical%20Shaft%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-01T01:16:30Z", + "updatedAt": "2024-04-01T02:06:31Z", + "name": "Cave Vertical Shaft Straight Top Type A", + "owner": "OpenRobotics", + "description": "Vertical shaft straight top tile for cave environment.", + "likes": 0, + "downloads": 1411, + "filesize": 852880, + "upload_date": "2020-05-01T01:16:19Z", + "modify_date": "2023-09-27T15:46:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Vertical%20Shaft%20Straight%20Top%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-01T01:14:38Z", + "updatedAt": "2024-04-01T02:07:02Z", + "name": "Cave Vertical Shaft Straight Bottom Type A", + "owner": "OpenRobotics", + "description": "Vertical shaft straight bottom tile for cave environment.", + "likes": 0, + "downloads": 1447, + "filesize": 763295, + "upload_date": "2020-05-01T01:14:28Z", + "modify_date": "2023-09-27T15:46:48Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Vertical%20Shaft%20Straight%20Bottom%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-01T01:12:35Z", + "updatedAt": "2024-04-01T02:06:26Z", + "name": "Cave Vertical Shaft Dead End Type A", + "owner": "OpenRobotics", + "description": "Vertical shaft dead end tile for cave environment.", + "likes": 0, + "downloads": 1325, + "filesize": 66279, + "upload_date": "2020-05-01T01:12:30Z", + "modify_date": "2023-09-27T15:46:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Vertical%20Shaft%20Dead%20End%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-01T01:11:32Z", + "updatedAt": "2024-04-01T02:06:25Z", + "name": "Cave Vertical Shaft Cantilevered Type A", + "owner": "OpenRobotics", + "description": "Vertical shaft cantilevered tile for cave environment.", + "likes": 0, + "downloads": 1372, + "filesize": 72007, + "upload_date": "2020-05-01T01:11:27Z", + "modify_date": "2023-09-27T15:46:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Vertical%20Shaft%20Cantilevered%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-01T00:45:46Z", + "updatedAt": "2024-04-01T02:06:37Z", + "name": "Cave U Turn Elevation Type A", + "owner": "OpenRobotics", + "description": "U turn elevation tile for cave environment.", + "likes": 0, + "downloads": 1479, + "filesize": 2015452, + "upload_date": "2020-05-01T00:45:36Z", + "modify_date": "2023-09-27T15:47:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20U%20Turn%20Elevation%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-01T00:31:09Z", + "updatedAt": "2024-04-01T02:08:19Z", + "name": "Cave U Turn 01 Type A", + "owner": "OpenRobotics", + "description": "U turn tile for cave environment.", + "likes": 0, + "downloads": 1491, + "filesize": 1817424, + "upload_date": "2020-05-01T00:30:59Z", + "modify_date": "2023-09-27T15:47:16Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20U%20Turn%2001%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-05-01T00:27:43Z", + "updatedAt": "2024-04-03T22:51:16Z", + "name": "Cave Straight Type A", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment.", + "likes": 0, + "downloads": 8423, + "filesize": 38607532, + "upload_date": "2020-05-01T00:27:33Z", + "modify_date": "2023-09-27T15:47:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%20Type%20A/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-04-30T23:13:32Z", + "updatedAt": "2024-04-01T02:08:31Z", + "name": "Cave Straight Shift Type A", + "owner": "OpenRobotics", + "description": "Straight shift tile for cave environment.", + "likes": 0, + "downloads": 1423, + "filesize": 1521761, + "upload_date": "2020-04-30T23:13:22Z", + "modify_date": "2023-09-27T15:47:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%20Shift%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T22:26:49Z", + "updatedAt": "2024-04-01T02:08:16Z", + "name": "Cave Split Type A", + "owner": "OpenRobotics", + "description": "Split tile for cave environment.", + "likes": 0, + "downloads": 1460, + "filesize": 777679, + "upload_date": "2020-04-30T22:26:39Z", + "modify_date": "2023-09-27T15:48:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Split%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T22:17:54Z", + "updatedAt": "2024-04-01T02:08:30Z", + "name": "Cave Elevation Straight Type A", + "owner": "OpenRobotics", + "description": "Elevation straight tile for cave environment.", + "likes": 0, + "downloads": 1419, + "filesize": 1225113, + "upload_date": "2020-04-30T22:17:44Z", + "modify_date": "2023-09-27T15:48:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Elevation%20Straight%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:59:59Z", + "updatedAt": "2024-04-01T02:08:20Z", + "name": "Cave Elevation Corner Type A", + "owner": "OpenRobotics", + "description": "Elevation corner tile for cave environment.", + "likes": 0, + "downloads": 1370, + "filesize": 1833087, + "upload_date": "2020-04-30T20:59:49Z", + "modify_date": "2023-09-27T15:48:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Elevation%20Corner%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:57:54Z", + "updatedAt": "2024-04-01T02:08:45Z", + "name": "Cave Elevation 01 Type A", + "owner": "OpenRobotics", + "description": "Elevation tile for cave environment.", + "likes": 0, + "downloads": 1354, + "filesize": 381991, + "upload_date": "2020-04-30T20:57:45Z", + "modify_date": "2023-09-27T15:48:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Elevation%2001%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:55:42Z", + "updatedAt": "2024-04-01T02:08:33Z", + "name": "Cave Elevation 02 Type A", + "owner": "OpenRobotics", + "description": "Elevation tile for cave environment.", + "likes": 0, + "downloads": 1409, + "filesize": 304948, + "upload_date": "2020-04-30T20:55:32Z", + "modify_date": "2023-09-27T15:48:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Elevation%2002%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:48:42Z", + "updatedAt": "2024-04-01T02:10:02Z", + "name": "Cave Corner 04 Type A", + "owner": "OpenRobotics", + "description": "Corner tile for cave environment.", + "likes": 0, + "downloads": 1391, + "filesize": 1958650, + "upload_date": "2020-04-30T20:48:31Z", + "modify_date": "2023-09-27T15:48:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2004%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:46:52Z", + "updatedAt": "2024-04-01T02:10:05Z", + "name": "Cave Corner 03 Type A", + "owner": "OpenRobotics", + "description": "Corner tile for cave environment.", + "likes": 0, + "downloads": 1738, + "filesize": 1065791, + "upload_date": "2020-04-30T20:46:42Z", + "modify_date": "2023-09-27T15:48:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2003%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:45:09Z", + "updatedAt": "2024-04-01T02:10:12Z", + "name": "Cave Corner 02 Type A", + "owner": "OpenRobotics", + "description": "Corner tile for cave environment.", + "likes": 0, + "downloads": 1431, + "filesize": 349845, + "upload_date": "2020-04-30T20:44:59Z", + "modify_date": "2023-09-27T15:48:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2002%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:43:17Z", + "updatedAt": "2024-04-01T02:10:05Z", + "name": "Cave Corner 01 Type A", + "owner": "OpenRobotics", + "description": "Corner tile for cave environment.", + "likes": 0, + "downloads": 1518, + "filesize": 1206531, + "upload_date": "2020-04-30T20:43:07Z", + "modify_date": "2023-09-27T15:49:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2001%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:41:35Z", + "updatedAt": "2024-04-01T02:09:52Z", + "name": "Cave Cavern Type A", + "owner": "OpenRobotics", + "description": "Cavern tile for cave environment.", + "likes": 0, + "downloads": 1369, + "filesize": 3133521, + "upload_date": "2020-04-30T20:41:24Z", + "modify_date": "2023-09-27T15:49:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Cavern%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:39:29Z", + "updatedAt": "2024-04-01T02:10:00Z", + "name": "Cave Cap Type A", + "owner": "OpenRobotics", + "description": "Cap tile for cave environment.", + "likes": 0, + "downloads": 1524, + "filesize": 54099, + "upload_date": "2020-04-30T20:39:24Z", + "modify_date": "2023-09-27T15:49:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Cap%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:38:47Z", + "updatedAt": "2024-04-01T02:10:20Z", + "name": "Cave 4 Way 01 Type A", + "owner": "OpenRobotics", + "description": "4 way tile for cave environment.", + "likes": 0, + "downloads": 1506, + "filesize": 864371, + "upload_date": "2020-04-30T20:38:37Z", + "modify_date": "2023-09-27T15:49:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%204%20Way%2001%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:36:54Z", + "updatedAt": "2024-04-01T02:10:17Z", + "name": "Cave 3 Way Elevation 03 Type A", + "owner": "OpenRobotics", + "description": "3 way elevation tile for cave environment.", + "likes": 0, + "downloads": 1370, + "filesize": 733973, + "upload_date": "2020-04-30T20:36:44Z", + "modify_date": "2023-09-27T15:49:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%203%20Way%20Elevation%2003%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:35:09Z", + "updatedAt": "2024-04-01T02:11:41Z", + "name": "Cave 3 Way Elevation 02 Type A", + "owner": "OpenRobotics", + "description": "3 way elevation tile for cave environment.", + "likes": 0, + "downloads": 1408, + "filesize": 703225, + "upload_date": "2020-04-30T20:34:59Z", + "modify_date": "2023-09-27T15:49:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%203%20Way%20Elevation%2002%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:33:27Z", + "updatedAt": "2024-04-01T02:11:35Z", + "name": "Cave 3 Way Elevation 01 Type A", + "owner": "OpenRobotics", + "description": "3 way elevation tile for cave environment.", + "likes": 0, + "downloads": 1411, + "filesize": 903049, + "upload_date": "2020-04-30T20:33:17Z", + "modify_date": "2023-09-27T15:49:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%203%20Way%20Elevation%2001%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:30:58Z", + "updatedAt": "2024-04-01T02:11:47Z", + "name": "Cave 3 Way 01 Type A", + "owner": "OpenRobotics", + "description": "3 way tile for cave environment.", + "likes": 0, + "downloads": 1473, + "filesize": 839715, + "upload_date": "2020-04-30T20:30:48Z", + "modify_date": "2023-09-27T15:49:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%203%20Way%2001%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-30T20:28:53Z", + "updatedAt": "2024-04-01T02:11:42Z", + "name": "Cave 2 Way 01 Type A", + "owner": "OpenRobotics", + "description": "2 way tile for cave environment.", + "likes": 0, + "downloads": 1457, + "filesize": 969625, + "upload_date": "2020-04-30T20:28:43Z", + "modify_date": "2023-09-27T15:50:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%202%20Way%2001%20Type%20A/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2020-04-16T20:59:47Z", + "updatedAt": "2024-04-01T02:11:38Z", + "name": "X2 Config 9", + "owner": "OpenRobotics", + "description": "The X2 robot for SubT with breadcrumbs.", + "likes": 0, + "downloads": 1192, + "filesize": 725794, + "upload_date": "2020-04-16T20:59:44Z", + "modify_date": "2023-09-27T15:50:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X2%20Config%209/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv", + "x2" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-04-16T20:55:00Z", + "updatedAt": "2024-04-01T02:11:39Z", + "name": "EXPLORER_X1_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "Team Explorer's X1 robot for SubT with breadcrumbs.", + "likes": 0, + "downloads": 1247, + "filesize": 1235246, + "upload_date": "2020-04-16T20:54:57Z", + "modify_date": "2023-09-27T15:50:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/EXPLORER_X1_SENSOR_CONFIG_2/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-04-16T20:49:46Z", + "updatedAt": "2024-04-01T02:11:37Z", + "name": "COSTAR_HUSKY_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "CoSTAR's Husky UGV model with an RGBD camera, a medium range lidar, cliff sensor, IMU, and breadcrumbs.", + "likes": 0, + "downloads": 1265, + "filesize": 1429057, + "upload_date": "2020-04-16T20:49:42Z", + "modify_date": "2023-09-27T15:50:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/COSTAR_HUSKY_SENSOR_CONFIG_2/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-04-16T20:33:24Z", + "updatedAt": "2024-04-01T02:11:29Z", + "name": "X2 Config 8", + "owner": "OpenRobotics", + "description": "The X2 robot for SubT with breadcrumbs.", + "likes": 0, + "downloads": 1179, + "filesize": 725823, + "upload_date": "2020-04-16T20:33:21Z", + "modify_date": "2023-09-27T15:50:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X2%20Config%208/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv", + "x2" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-04-16T14:37:23Z", + "updatedAt": "2024-04-01T02:13:14Z", + "name": "X1 Config 8", + "owner": "OpenRobotics", + "description": "The X1 robot for SubT with breadcrumbs.", + "likes": 0, + "downloads": 1216, + "filesize": 973228, + "upload_date": "2020-04-16T14:37:21Z", + "modify_date": "2023-09-27T15:51:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X1%20Config%208/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv", + "x1" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-04-16T14:09:16Z", + "updatedAt": "2024-04-01T02:13:09Z", + "name": "X1 Config 7", + "owner": "OpenRobotics", + "description": "The X1 robot for SubT with breadcrumbs.", + "likes": 0, + "downloads": 1252, + "filesize": 973155, + "upload_date": "2020-04-16T14:09:14Z", + "modify_date": "2023-09-27T15:51:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X1%20Config%207/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv", + "x1" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2020-04-14T03:49:52Z", + "updatedAt": "2024-03-24T01:32:41Z", + "name": "Cave 3 Way 01 Lights", + "owner": "OpenRobotics", + "description": "3 way tile for cave environment with lights.", + "likes": 0, + "downloads": 88, + "filesize": 503505, + "upload_date": "2020-04-14T03:49:43Z", + "modify_date": "2023-09-27T15:51:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%203%20Way%2001%20Lights/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "cave" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2020-04-14T03:48:47Z", + "updatedAt": "2024-03-12T14:57:05Z", + "name": "Cave Vertical Shaft Lights", + "owner": "OpenRobotics", + "description": "Vertical shaft tile for cave environment with lights.", + "likes": 0, + "downloads": 82, + "filesize": 735789, + "upload_date": "2020-04-14T03:48:38Z", + "modify_date": "2023-09-27T15:51:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Vertical%20Shaft%20Lights/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "cave" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2020-04-14T03:46:57Z", + "updatedAt": "2024-03-12T14:57:30Z", + "name": "Cave Elevation Lights", + "owner": "OpenRobotics", + "description": "Elevation tile for cave environment with lights.", + "likes": 0, + "downloads": 78, + "filesize": 438037, + "upload_date": "2020-04-14T03:46:49Z", + "modify_date": "2023-09-27T15:51:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Elevation%20Lights/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "cave" + ], + "categories": [ + "Places and Landscapes" + ] + }, + { + "createdAt": "2020-04-14T02:08:51Z", + "updatedAt": "2024-03-12T14:57:54Z", + "name": "Cave Corner 30F D Lights", + "owner": "OpenRobotics", + "description": "Corner 30 degree tile with lights for cave environment. (Mirror)", + "likes": 0, + "downloads": 71, + "filesize": 416416, + "upload_date": "2020-04-14T02:08:50Z", + "modify_date": "2023-09-27T15:51:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2030F%20D%20Lights/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-04-14T02:07:45Z", + "updatedAt": "2024-03-12T14:58:21Z", + "name": "Cave Corner 30 D Lights", + "owner": "OpenRobotics", + "description": "Corner 30 degree tile with lights for cave environment.", + "likes": 0, + "downloads": 72, + "filesize": 423239, + "upload_date": "2020-04-14T02:07:43Z", + "modify_date": "2023-09-27T15:51:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2030%20D%20Lights/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-04-14T02:06:25Z", + "updatedAt": "2024-03-12T14:58:44Z", + "name": "Cave Corner 02 Lights", + "owner": "OpenRobotics", + "description": "Corner tile with lights for cave environment.", + "likes": 0, + "downloads": 74, + "filesize": 524041, + "upload_date": "2020-04-14T02:06:24Z", + "modify_date": "2023-09-27T15:51:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2002%20Lights/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-04-14T02:05:53Z", + "updatedAt": "2024-03-12T14:58:59Z", + "name": "Cave Corner 01 Lights", + "owner": "OpenRobotics", + "description": "Corner tile with lights for cave environment.", + "likes": 0, + "downloads": 74, + "filesize": 492948, + "upload_date": "2020-04-14T02:05:51Z", + "modify_date": "2023-09-27T15:51:58Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2001%20Lights/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-04-10T21:00:34Z", + "updatedAt": "2024-04-01T02:13:20Z", + "name": "Climbing Helmet With Light", + "owner": "OpenRobotics", + "description": "A climbing helmet with a headlamp attached.", + "likes": 0, + "downloads": 2396, + "filesize": 4864260, + "upload_date": "2020-04-10T21:00:31Z", + "modify_date": "2023-09-27T15:52:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Climbing%20Helmet%20With%20Light/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "artifact" + ], + "categories": [ + "Sports and Fitness" + ] + }, + { + "createdAt": "2020-04-10T20:08:23Z", + "updatedAt": "2024-04-01T02:13:15Z", + "name": "Climbing Rope", + "owner": "OpenRobotics", + "description": "A coiled climbing rope.", + "likes": 1, + "downloads": 2303, + "filesize": 4875037, + "upload_date": "2020-04-10T20:08:19Z", + "modify_date": "2023-09-27T15:52:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Climbing%20Rope/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "artifact" + ], + "categories": [ + "Sports and Fitness" + ] + }, + { + "createdAt": "2020-04-10T00:56:34Z", + "updatedAt": "2024-03-12T14:59:47Z", + "name": "Cave Straight 05 Lights", + "owner": "OpenRobotics", + "description": "Straight tile with lights for cave environment.", + "likes": 0, + "downloads": 82, + "filesize": 470229, + "upload_date": "2020-04-10T00:56:32Z", + "modify_date": "2023-09-27T15:52:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2005%20Lights/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-04-10T00:56:04Z", + "updatedAt": "2024-03-12T15:00:08Z", + "name": "Cave Straight 04 Lights", + "owner": "OpenRobotics", + "description": "Straight tile with lights for cave environment.", + "likes": 0, + "downloads": 78, + "filesize": 498952, + "upload_date": "2020-04-10T00:56:02Z", + "modify_date": "2023-09-27T15:52:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2004%20Lights/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-04-10T00:55:04Z", + "updatedAt": "2024-03-12T15:00:26Z", + "name": "Cave Straight 02 Lights", + "owner": "OpenRobotics", + "description": "Straight tile with lights for cave environment.", + "likes": 0, + "downloads": 74, + "filesize": 460182, + "upload_date": "2020-04-10T00:55:02Z", + "modify_date": "2023-09-27T15:52:36Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2002%20Lights/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-04-10T00:53:57Z", + "updatedAt": "2024-03-29T09:31:12Z", + "name": "Cave Straight 01 Lights", + "owner": "OpenRobotics", + "description": "Straight tile with lights for cave environment.", + "likes": 0, + "downloads": 80, + "filesize": 514489, + "upload_date": "2020-04-10T00:53:55Z", + "modify_date": "2023-09-27T15:52:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2001%20Lights/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-04-07T23:16:32Z", + "updatedAt": "2024-04-01T02:13:03Z", + "name": "Breadcrumb Node", + "owner": "OpenRobotics", + "description": "Wireless repeater node designed to be dropped by robot.", + "likes": 0, + "downloads": 1307, + "filesize": 57276, + "upload_date": "2020-04-07T23:16:30Z", + "modify_date": "2023-09-27T15:52:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Breadcrumb%20Node/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "wireless", + "transmitter" + ], + "categories": [ + "Electronics", + "Science and Technology" + ] + }, + { + "createdAt": "2020-03-27T22:39:49Z", + "updatedAt": "2024-03-12T15:01:17Z", + "name": "Cave Corner 30F D", + "owner": "OpenRobotics", + "description": "Corner 30 degree tile for cave environment. (Mirror)", + "likes": 0, + "downloads": 87, + "filesize": 49193802, + "upload_date": "2020-03-27T22:39:40Z", + "modify_date": "2023-09-27T15:53:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2030F%20D/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-27T22:38:19Z", + "updatedAt": "2024-03-12T15:01:43Z", + "name": "Cave Corner 30 D", + "owner": "OpenRobotics", + "description": "Corner 30 degree tile for cave environment.", + "likes": 0, + "downloads": 88, + "filesize": 49191761, + "upload_date": "2020-03-27T22:38:10Z", + "modify_date": "2023-09-27T15:54:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2030%20D/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-20T02:29:23Z", + "updatedAt": "2024-03-12T15:02:08Z", + "name": "Cave Starting Area", + "owner": "OpenRobotics", + "description": "Starting area for cave environment.", + "likes": 0, + "downloads": 303, + "filesize": 69033821, + "upload_date": "2020-03-20T02:29:11Z", + "modify_date": "2023-09-27T15:55:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Starting%20Area/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-20T02:26:57Z", + "updatedAt": "2024-03-12T15:02:36Z", + "name": "Cave Corner 30F", + "owner": "OpenRobotics", + "description": "Corner 30 degree tile for cave environment. (Mirror)", + "likes": 0, + "downloads": 147, + "filesize": 48869851, + "upload_date": "2020-03-20T02:26:48Z", + "modify_date": "2023-09-27T15:55:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2030F/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-20T02:25:29Z", + "updatedAt": "2024-03-12T15:02:56Z", + "name": "Cave Corner 30", + "owner": "OpenRobotics", + "description": "Corner 30 degree tile for cave environment.", + "likes": 0, + "downloads": 135, + "filesize": 48872012, + "upload_date": "2020-03-20T02:25:21Z", + "modify_date": "2023-09-27T16:02:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2030/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-20T00:35:55Z", + "updatedAt": "2024-03-12T15:03:25Z", + "name": "Cave Corner 01", + "owner": "OpenRobotics", + "description": "Corner tile for cave environment.", + "likes": 0, + "downloads": 243, + "filesize": 49612969, + "upload_date": "2020-03-20T00:35:47Z", + "modify_date": "2023-09-27T16:02:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2001/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-20T00:05:50Z", + "updatedAt": "2024-03-24T01:32:53Z", + "name": "Cave 3 Way 01", + "owner": "OpenRobotics", + "description": "3 way tile for cave environment.", + "likes": 0, + "downloads": 238, + "filesize": 49924625, + "upload_date": "2020-03-20T00:05:41Z", + "modify_date": "2023-09-27T16:03:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%203%20Way%2001/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-19T23:52:47Z", + "updatedAt": "2024-03-12T15:04:34Z", + "name": "Cave Corner 02", + "owner": "OpenRobotics", + "description": "Corner tile for cave environment.", + "likes": 0, + "downloads": 228, + "filesize": 49446830, + "upload_date": "2020-03-19T23:52:38Z", + "modify_date": "2023-09-27T16:03:54Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Corner%2002/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-18T22:31:05Z", + "updatedAt": "2024-03-12T15:05:13Z", + "name": "Cave Cavern Split 01", + "owner": "OpenRobotics", + "description": "Cavern split 01 tile for cave environment.", + "likes": 0, + "downloads": 213, + "filesize": 49540909, + "upload_date": "2020-03-18T22:30:56Z", + "modify_date": "2023-09-27T16:04:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Cavern%20Split%2001/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-18T22:28:49Z", + "updatedAt": "2024-03-12T15:05:30Z", + "name": "Cave Cavern Split 02", + "owner": "OpenRobotics", + "description": "Cavern split 02 tile for cave environment.", + "likes": 0, + "downloads": 222, + "filesize": 49336124, + "upload_date": "2020-03-18T22:28:40Z", + "modify_date": "2023-09-27T16:05:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Cavern%20Split%2002/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-16T10:39:39Z", + "updatedAt": "2024-03-28T17:46:29Z", + "name": "X4 UAV", + "owner": "dreamerql", + "description": "X4 robot with the following payload:\n\n* Front RGBD camera (320x240)\n* Upward point lidar (40m)\n* Downward point lidar (40m)\n* IMU\n* Pressure sensor\n* Magnetometer\n* Gas sensor", + "likes": 0, + "downloads": 246, + "filesize": 5893301, + "upload_date": "2020-03-16T10:39:34Z", + "modify_date": "2020-03-16T10:39:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/dreamerql/models/X4%20UAV/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt", + "UAV", + "x4" + ] + }, + { + "createdAt": "2020-03-16T10:15:19Z", + "updatedAt": "2024-03-15T18:43:48Z", + "name": "SSCI_X4_SENSOR_CONFIG_2", + "owner": "dreamerql", + "description": "X4 UAV with the following payload:\n\n* 2D medium range LIDAR (25m, 360-degree FOV)\n* VGA RGBD camera (640x480, 5m)\n* Upward point lidar (40m)\n* Downward point lidar (40m)\n* IMU\n* Pressure sensor\n* Magnetometer\n* Gas detector", + "likes": 0, + "downloads": 97, + "filesize": 5896461, + "upload_date": "2020-03-16T10:15:14Z", + "modify_date": "2020-03-16T10:15:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/dreamerql/models/SSCI_X4_SENSOR_CONFIG_2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt", + "UAV", + "ssco" + ] + }, + { + "createdAt": "2020-03-10T00:58:06Z", + "updatedAt": "2024-03-12T15:05:52Z", + "name": "Cave Cap", + "owner": "OpenRobotics", + "description": "Cap tile for cave environment.", + "likes": 0, + "downloads": 255, + "filesize": 49021536, + "upload_date": "2020-03-10T00:57:58Z", + "modify_date": "2023-09-27T16:05:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Cap/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-10T00:55:56Z", + "updatedAt": "2024-03-12T15:06:13Z", + "name": "Cave Vertical Shaft", + "owner": "OpenRobotics", + "description": "Vertical shaft tile for cave environment.", + "likes": 0, + "downloads": 230, + "filesize": 49880255, + "upload_date": "2020-03-10T00:55:47Z", + "modify_date": "2023-09-27T16:06:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Vertical%20Shaft/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-10T00:55:00Z", + "updatedAt": "2024-03-12T15:06:32Z", + "name": "Cave Elevation", + "owner": "OpenRobotics", + "description": "Elevation tile for cave environment.", + "likes": 0, + "downloads": 244, + "filesize": 49197931, + "upload_date": "2020-03-10T00:54:51Z", + "modify_date": "2023-09-27T16:06:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Elevation/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-10T00:51:38Z", + "updatedAt": "2024-03-12T15:06:55Z", + "name": "Cave Straight 05", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment.", + "likes": 0, + "downloads": 310, + "filesize": 49461630, + "upload_date": "2020-03-10T00:51:29Z", + "modify_date": "2023-09-27T16:07:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2005/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-10T00:51:05Z", + "updatedAt": "2024-03-12T15:07:23Z", + "name": "Cave Straight 04", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment.", + "likes": 0, + "downloads": 228, + "filesize": 49673923, + "upload_date": "2020-03-10T00:50:56Z", + "modify_date": "2023-09-27T16:07:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2004/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-10T00:50:24Z", + "updatedAt": "2024-03-12T15:07:53Z", + "name": "Cave Straight 03", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment.", + "likes": 0, + "downloads": 228, + "filesize": 49527373, + "upload_date": "2020-03-10T00:50:15Z", + "modify_date": "2023-09-27T16:08:21Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2003/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-10T00:49:38Z", + "updatedAt": "2024-03-12T15:08:28Z", + "name": "Cave Straight 02", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment.", + "likes": 0, + "downloads": 258, + "filesize": 49365618, + "upload_date": "2020-03-10T00:49:29Z", + "modify_date": "2023-09-27T16:08:55Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2002/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-03-10T00:48:39Z", + "updatedAt": "2024-03-29T09:35:34Z", + "name": "Cave Straight 01", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment.", + "likes": 0, + "downloads": 331, + "filesize": 50047882, + "upload_date": "2020-03-10T00:48:30Z", + "modify_date": "2023-09-27T16:09:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight%2001/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-02-22T01:37:15Z", + "updatedAt": "2024-03-24T22:33:09Z", + "name": "Cave Straight", + "owner": "OpenRobotics", + "description": "Straight tile for cave environment.", + "likes": 0, + "downloads": 106, + "filesize": 49542278, + "upload_date": "2020-02-22T01:37:06Z", + "modify_date": "2023-09-27T16:10:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Straight/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-02-22T01:36:33Z", + "updatedAt": "2024-03-28T10:39:16Z", + "name": "Cave 3 Way", + "owner": "OpenRobotics", + "description": "3 way tile for cave environment.", + "likes": 0, + "downloads": 65, + "filesize": 49811739, + "upload_date": "2020-02-22T01:36:23Z", + "modify_date": "2023-09-27T16:10:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%203%20Way/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-02-10T16:38:19Z", + "updatedAt": "2024-03-12T07:25:30Z", + "name": "Slamtec RPLIDAR A3", + "owner": "mjcarroll", + "description": "", + "likes": 0, + "downloads": 62, + "filesize": 1152, + "upload_date": "2020-02-10T16:38:15Z", + "modify_date": "2020-02-10T16:38:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2020-02-10T16:28:48Z", + "updatedAt": "2024-03-12T07:26:09Z", + "name": "Slamtec RPLIDAR S1", + "owner": "mjcarroll", + "description": "", + "likes": 0, + "downloads": 35, + "filesize": 3263163, + "upload_date": "2020-02-10T16:28:45Z", + "modify_date": "2020-02-10T19:56:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2020-02-10T15:38:32Z", + "updatedAt": "2024-03-12T07:26:41Z", + "name": "Sick LMS511", + "owner": "mjcarroll", + "description": "", + "likes": 0, + "downloads": 36, + "filesize": 1367912, + "upload_date": "2020-02-10T15:38:30Z", + "modify_date": "2020-02-10T15:38:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2020-02-10T15:37:54Z", + "updatedAt": "2024-03-12T07:27:07Z", + "name": "Sick LMS111", + "owner": "mjcarroll", + "description": "", + "likes": 0, + "downloads": 23, + "filesize": 262805, + "upload_date": "2020-02-10T15:37:52Z", + "modify_date": "2020-02-10T15:37:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2020-02-10T15:32:15Z", + "updatedAt": "2024-03-17T18:21:42Z", + "name": "Hokuyo UTM30LX", + "owner": "mjcarroll", + "description": "", + "likes": 0, + "downloads": 70, + "filesize": 804401, + "upload_date": "2020-02-10T15:32:12Z", + "modify_date": "2020-02-10T20:00:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/mjcarroll/models/Hokuyo%20UTM30LX/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "sensor", + "lidar" + ] + }, + { + "createdAt": "2020-02-10T15:31:50Z", + "updatedAt": "2024-03-12T07:27:55Z", + "name": "Hokuyo UST20LX", + "owner": "mjcarroll", + "description": "", + "likes": 0, + "downloads": 40, + "filesize": 440481, + "upload_date": "2020-02-10T15:31:47Z", + "modify_date": "2020-02-10T19:59:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/mjcarroll/models/Hokuyo%20UST20LX/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "sensor", + "lidar" + ] + }, + { + "createdAt": "2020-02-10T15:31:20Z", + "updatedAt": "2024-03-12T07:28:26Z", + "name": "Hokuyo UST10LX", + "owner": "mjcarroll", + "description": "", + "likes": 0, + "downloads": 34, + "filesize": 440481, + "upload_date": "2020-02-10T15:31:17Z", + "modify_date": "2020-02-10T15:31:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/mjcarroll/models/Hokuyo%20UST10LX/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "sensor", + "lidar" + ] + }, + { + "createdAt": "2020-02-10T15:30:48Z", + "updatedAt": "2024-03-12T07:28:40Z", + "name": "Hokuyo URG04LX", + "owner": "mjcarroll", + "description": "", + "likes": 0, + "downloads": 47, + "filesize": 440490, + "upload_date": "2020-02-10T15:30:45Z", + "modify_date": "2020-02-10T15:30:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/mjcarroll/models/Hokuyo%20URG04LX/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "sensor", + "lidar" + ] + }, + { + "createdAt": "2020-01-23T04:16:41Z", + "updatedAt": "2024-03-28T07:50:22Z", + "name": "PR2_SDF17", + "owner": "OpenRobotics", + "description": "The Willow Garage PR2 model with SDFormat 1.7 frame semantics.", + "likes": 2, + "downloads": 452, + "filesize": 14547731, + "upload_date": "2020-01-23T04:16:25Z", + "modify_date": "2023-09-27T16:11:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/PR2_SDF17/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2020-01-05T09:26:36Z", + "updatedAt": "2024-03-24T01:22:17Z", + "name": "start", + "owner": "Amangupta", + "description": "trial review", + "likes": 0, + "downloads": 490, + "filesize": 1441635, + "upload_date": "2020-01-05T09:26:31Z", + "modify_date": "2020-01-05T09:26:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Amangupta/models/start/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-12-16T21:43:25Z", + "updatedAt": "2024-04-01T02:12:59Z", + "name": "SOPHISTICATED_ENGINEERING_X2_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "The Sohisticated Engineering X2 UGV with sensor configuration 1: HD camera, HD camera, IMU, pressure sensor, magnetometer.\n This configuration is the same as the X2 Config 5 with only bigger camera and light cone angle.", + "likes": 0, + "downloads": 1404, + "filesize": 723186, + "upload_date": "2019-12-16T21:43:21Z", + "modify_date": "2023-09-27T16:12:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SOPHISTICATED_ENGINEERING_X2_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv", + "x2", + "sophisticated engineering" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-12-14T01:51:31Z", + "updatedAt": "2024-04-01T02:13:07Z", + "name": "ROBOTIKA_X2_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "The X2 robot configuration with RealSense D435i RGBD camera (640x360, 69deg-FoV), 30m 270-deg planar lidar, IMU and Gas detector", + "likes": 1, + "downloads": 1451, + "filesize": 726997, + "upload_date": "2019-12-14T01:51:26Z", + "modify_date": "2023-09-27T16:12:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ROBOTIKA_X2_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv", + "x2", + "robotika" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-12-14T01:32:45Z", + "updatedAt": "2024-04-01T09:44:00Z", + "name": "SSCI_X4_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "X4 UAV with sensor configuration #8: 3D medium range lidar, IMU, pressure sensor, magnetometer, up and down Lidar Lite V3.\n Originally submitted as ssci_x4_sensor_config_8.", + "likes": 0, + "downloads": 1526, + "filesize": 4648478, + "upload_date": "2019-12-14T01:32:37Z", + "modify_date": "2023-09-27T16:13:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SSCI_X4_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "UAV", + "ssci", + "x4" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-12-14T01:30:50Z", + "updatedAt": "2024-04-01T02:14:17Z", + "name": "SSCI_X4_SENSOR_CONFIG_2", + "owner": "OpenRobotics", + "description": "An X4 air vehicle robot with the following sensors:\n\t\t- Upward and downward facing lidars to be modeled after the lidar lite v3, \n - 2D lidar to be modeled off of the RPLidar S1 360 degrees \n - RGBD Camera\n - Magnetometer\n - IMU\n - Air pressure\n (Originally submitted as ssci_x4_sensor_config_6)", + "likes": 0, + "downloads": 1612, + "filesize": 4651267, + "upload_date": "2019-12-14T01:30:42Z", + "modify_date": "2023-09-27T16:13:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SSCI_X4_SENSOR_CONFIG_2/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "UAV", + "ssco" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-12-13T22:11:24Z", + "updatedAt": "2024-04-01T09:34:49Z", + "name": "COSTAR_HUSKY_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "CoSTAR's Husky UGV model with an RGBD camera, a medium range lidar, cliff sensor, and IMU", + "likes": 4, + "downloads": 2281, + "filesize": 1429045, + "upload_date": "2019-12-13T22:11:18Z", + "modify_date": "2023-09-27T16:13:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/COSTAR_HUSKY_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv", + "husky" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-12-13T21:36:45Z", + "updatedAt": "2024-04-01T02:14:21Z", + "name": "SOPHISTICATED_ENGINEERING_X4_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "X4 UAV with sensor configuration #9: HD camera, HD camera, IMU, pressure sensor, magnetometer.\n This configuration is the same as the X4 Config 5 with only bigger light cone angle and changed camera positions.", + "likes": 0, + "downloads": 1371, + "filesize": 4650815, + "upload_date": "2019-12-13T21:36:37Z", + "modify_date": "2023-09-27T16:13:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SOPHISTICATED_ENGINEERING_X4_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "UAV", + "x4", + "sophisticated engineering" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-12-13T16:43:51Z", + "updatedAt": "2024-04-01T02:14:27Z", + "name": "SSCI_X2_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "An X2 ground robot with the following sensors:\n\t\t - 2D lidar (based on RPLidar S1, 360 degrees)\n\t\t - 2 VGA RGBD cameras: one facing up about 20 deg and one facing down 20 deg. \n\t\t - An upward facing point lidar for measuring height to ceiling.", + "likes": 0, + "downloads": 1419, + "filesize": 727125, + "upload_date": "2019-12-13T16:43:47Z", + "modify_date": "2023-09-27T16:14:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SSCI_X2_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv", + "x2", + "ssci" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-12-12T20:04:45Z", + "updatedAt": "2024-04-01T02:14:19Z", + "name": "X2 Config 7", + "owner": "OpenRobotics", + "description": "The X2 robot for SubT.", + "likes": 1, + "downloads": 1517, + "filesize": 726834, + "upload_date": "2019-12-12T20:04:41Z", + "modify_date": "2023-09-27T16:14:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X2%20Config%207/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv", + "x2" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-12-12T19:59:28Z", + "updatedAt": "2024-04-01T02:14:30Z", + "name": "X1 Config 6", + "owner": "OpenRobotics", + "description": "The X1 robot for SubT.", + "likes": 0, + "downloads": 1517, + "filesize": 974283, + "upload_date": "2019-12-12T19:59:23Z", + "modify_date": "2023-09-27T16:14:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X1%20Config%206/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv", + "x1" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-12-11T23:05:26Z", + "updatedAt": "2024-04-01T02:14:15Z", + "name": "X4 UAV Config 6", + "owner": "OpenRobotics", + "description": "X4 UAV with sensor configuration #6: VGA RGBD camera, IMU, pressure sensor, magnetometer, ceiling point sensor, floor point sensor.", + "likes": 0, + "downloads": 1412, + "filesize": 4647980, + "upload_date": "2019-12-11T23:05:19Z", + "modify_date": "2023-09-27T16:14:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X4%20UAV%20Config%206/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "UAV", + "x4" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-12-11T23:04:49Z", + "updatedAt": "2024-04-01T02:14:27Z", + "name": "X3 UAV Config 5", + "owner": "OpenRobotics", + "description": "X3 UAV with sensor configuration #4: VGA RGBD camera, IMU, pressure sensor, magnetometer, ceiling point sensor, floor point sensor.", + "likes": 0, + "downloads": 1481, + "filesize": 9547682, + "upload_date": "2019-12-11T23:04:31Z", + "modify_date": "2023-09-27T16:15:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X3%20UAV%20Config%205/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "UAV", + "x3" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-12-09T16:11:08Z", + "updatedAt": "2024-04-03T18:12:09Z", + "name": "EXPLORER_X1_SENSOR_CONFIG_1", + "owner": "OpenRobotics", + "description": "Team Explorer's X1 robot for SubT.", + "likes": 1, + "downloads": 1446, + "filesize": 1235208, + "upload_date": "2019-12-09T16:11:02Z", + "modify_date": "2023-09-27T16:15:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/EXPLORER_X1_SENSOR_CONFIG_1/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-11-26T02:20:09Z", + "updatedAt": "2024-04-01T02:15:53Z", + "name": "Gas", + "owner": "OpenRobotics", + "description": "Gas leak using the gas emitter plugin", + "likes": 0, + "downloads": 1797, + "filesize": 921, + "upload_date": "2019-11-26T02:20:06Z", + "modify_date": "2023-09-27T16:15:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false, + "tags": [ + "subt", + "artifact" + ] + }, + { + "createdAt": "2019-11-26T01:21:36Z", + "updatedAt": "2024-04-01T02:15:39Z", + "name": "Urban Straight Door Right Flipped Lights", + "owner": "OpenRobotics", + "description": "A lit straight urban tunnel with door opening on the right and flipped tunnel geometry", + "likes": 0, + "downloads": 1502, + "filesize": 44748, + "upload_date": "2019-11-26T01:21:33Z", + "modify_date": "2023-09-27T16:15:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Straight%20Door%20Right%20Flipped%20Lights/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2019-11-26T01:17:39Z", + "updatedAt": "2024-04-01T02:15:47Z", + "name": "Urban Straight Lights", + "owner": "OpenRobotics", + "description": "A lit straight section of subway tunnel.", + "likes": 0, + "downloads": 1436, + "filesize": 37367, + "upload_date": "2019-11-26T01:17:36Z", + "modify_date": "2023-09-27T16:15:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Straight%20Lights/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-26T01:15:16Z", + "updatedAt": "2024-04-01T02:16:01Z", + "name": "Urban Service Room Lights", + "owner": "OpenRobotics", + "description": "A lit service room.", + "likes": 0, + "downloads": 1507, + "filesize": 74421, + "upload_date": "2019-11-26T01:15:14Z", + "modify_date": "2023-09-27T16:16:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Service%20Room%20Lights/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-26T01:09:53Z", + "updatedAt": "2024-04-01T19:32:02Z", + "name": "Urban Straight Door Right Extension Lights", + "owner": "OpenRobotics", + "description": "A lit straight urban tunnel with door opening on the right and a hallway extension.", + "likes": 0, + "downloads": 1573, + "filesize": 57876, + "upload_date": "2019-11-26T01:09:50Z", + "modify_date": "2023-09-27T16:16:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Straight%20Door%20Right%20Extension%20Lights/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-26T01:07:42Z", + "updatedAt": "2024-04-01T02:15:54Z", + "name": "Urban Stairwell Platform Centered Lights", + "owner": "OpenRobotics", + "description": "A lit stairwell connecting two urban tiles.", + "likes": 0, + "downloads": 1623, + "filesize": 86292, + "upload_date": "2019-11-26T01:07:39Z", + "modify_date": "2023-09-27T16:16:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Stairwell%20Platform%20Centered%20Lights/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-26T01:05:44Z", + "updatedAt": "2024-04-01T02:15:39Z", + "name": "Urban Service Room Straight Lights", + "owner": "OpenRobotics", + "description": "A lit service room with 2 entry points.", + "likes": 0, + "downloads": 1660, + "filesize": 83383, + "upload_date": "2019-11-26T01:05:41Z", + "modify_date": "2023-09-27T16:16:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Service%20Room%20Straight%20Lights/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-26T01:03:42Z", + "updatedAt": "2024-04-01T02:16:40Z", + "name": "Urban Service Room Centered Lights", + "owner": "OpenRobotics", + "description": "A lit service room with its entrance centered to connect to other urban tiles.", + "likes": 0, + "downloads": 1594, + "filesize": 74552, + "upload_date": "2019-11-26T01:03:39Z", + "modify_date": "2023-09-27T16:16:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Service%20Room%20Centered%20Lights/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-26T01:00:35Z", + "updatedAt": "2024-04-01T02:16:35Z", + "name": "Urban Large Room Split Lights", + "owner": "OpenRobotics", + "description": "A lit 2 part tile that forms a single large room.", + "likes": 0, + "downloads": 1682, + "filesize": 127662, + "upload_date": "2019-11-26T01:00:32Z", + "modify_date": "2023-09-27T16:16:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Large%20Room%20Split%20Lights/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-26T00:58:06Z", + "updatedAt": "2024-04-01T02:16:40Z", + "name": "Urban Elevation Up Lights", + "owner": "OpenRobotics", + "description": "A lit straight section of urban tunnel with increasing elevation.", + "likes": 0, + "downloads": 1390, + "filesize": 51732, + "upload_date": "2019-11-26T00:58:04Z", + "modify_date": "2023-09-27T16:16:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Elevation%20Up%20Lights/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-26T00:54:53Z", + "updatedAt": "2024-04-01T02:16:59Z", + "name": "Urban Bend Left Lights", + "owner": "OpenRobotics", + "description": "A lit left bend subway tunnel.", + "likes": 0, + "downloads": 1378, + "filesize": 78618, + "upload_date": "2019-11-26T00:54:50Z", + "modify_date": "2023-09-27T16:16:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Bend%20Left%20Lights/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-26T00:52:15Z", + "updatedAt": "2024-04-01T02:16:44Z", + "name": "Urban 2 Story Lights", + "owner": "OpenRobotics", + "description": "A lit 2 story room with stairs and elevator shaft.", + "likes": 2, + "downloads": 1745, + "filesize": 180119, + "upload_date": "2019-11-26T00:52:12Z", + "modify_date": "2023-09-27T16:16:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%202%20Story%20Lights/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-26T00:49:33Z", + "updatedAt": "2024-04-01T02:17:05Z", + "name": "Urban 2 Story Large Side 2 Lights", + "owner": "OpenRobotics", + "description": "A lit large 2 story room comprised of two conjoined tiles.", + "likes": 0, + "downloads": 1302, + "filesize": 206612, + "upload_date": "2019-11-26T00:49:30Z", + "modify_date": "2023-09-27T16:16:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%202%20Story%20Large%20Side%202%20Lights/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-26T00:45:06Z", + "updatedAt": "2024-04-01T02:16:48Z", + "name": "Urban 2 Story Large Side 1 Lights", + "owner": "OpenRobotics", + "description": "A lit large 2 story area comprised of two conjoined tiles.", + "likes": 0, + "downloads": 1424, + "filesize": 174920, + "upload_date": "2019-11-26T00:45:03Z", + "modify_date": "2023-09-27T16:16:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%202%20Story%20Large%20Side%201%20Lights/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-19T22:16:30Z", + "updatedAt": "2024-04-01T02:17:00Z", + "name": "Urban Service Room Straight", + "owner": "OpenRobotics", + "description": "Service room with 2 entry points.", + "likes": 0, + "downloads": 1764, + "filesize": 2051574, + "upload_date": "2019-11-19T22:15:48Z", + "modify_date": "2023-09-27T16:16:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Service%20Room%20Straight/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-19T00:34:41Z", + "updatedAt": "2024-04-01T02:17:58Z", + "name": "Urban Large Room Split", + "owner": "OpenRobotics", + "description": "2 part tile that forms a single large room.", + "likes": 0, + "downloads": 1737, + "filesize": 1286108, + "upload_date": "2019-11-19T00:34:37Z", + "modify_date": "2023-09-27T16:17:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Large%20Room%20Split/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-15T23:32:37Z", + "updatedAt": "2024-04-01T02:17:56Z", + "name": "Urban 2 Story Large Side 2", + "owner": "OpenRobotics", + "description": "Large 2 story room comprised of two conjoined tiles.", + "likes": 0, + "downloads": 1564, + "filesize": 3186013, + "upload_date": "2019-11-15T23:32:34Z", + "modify_date": "2023-09-27T16:17:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%202%20Story%20Large%20Side%202/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-15T23:31:47Z", + "updatedAt": "2024-04-01T02:17:56Z", + "name": "Urban 2 Story Large Side 1", + "owner": "OpenRobotics", + "description": "Large 2 story area comprised of two conjoined tiles.", + "likes": 0, + "downloads": 1610, + "filesize": 3514696, + "upload_date": "2019-11-15T23:31:44Z", + "modify_date": "2023-09-27T16:17:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%202%20Story%20Large%20Side%201/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-12T22:52:32Z", + "updatedAt": "2024-04-01T02:18:04Z", + "name": "Urban Stairwell Platform Centered", + "owner": "OpenRobotics", + "description": "A stairwell connecting two urban tiles.", + "likes": 0, + "downloads": 1721, + "filesize": 570217, + "upload_date": "2019-11-12T22:52:19Z", + "modify_date": "2023-09-27T16:17:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Stairwell%20Platform%20Centered/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-12T22:49:25Z", + "updatedAt": "2024-04-01T02:17:52Z", + "name": "Urban Service Room Centered", + "owner": "OpenRobotics", + "description": "A service room with its entrance centered to connect to other urban tiles.", + "likes": 0, + "downloads": 1776, + "filesize": 1960936, + "upload_date": "2019-11-12T22:48:55Z", + "modify_date": "2023-09-27T16:17:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Service%20Room%20Centered/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-12T22:46:46Z", + "updatedAt": "2024-04-01T02:17:54Z", + "name": "Urban Straight Door Right Extension", + "owner": "OpenRobotics", + "description": "A straight urban tunnel with door opening on the right and a hallway extension.", + "likes": 0, + "downloads": 1589, + "filesize": 940806, + "upload_date": "2019-11-12T22:46:26Z", + "modify_date": "2023-09-27T16:17:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Straight%20Door%20Right%20Extension/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-08T22:49:12Z", + "updatedAt": "2024-03-24T01:33:47Z", + "name": "Urban Room 2 Way", + "owner": "OpenRobotics", + "description": "An urban room with 2 openings", + "likes": 0, + "downloads": 68, + "filesize": 10111, + "upload_date": "2019-11-08T22:49:09Z", + "modify_date": "2023-09-27T16:18:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Room%202%20Way/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-11-08T22:48:27Z", + "updatedAt": "2024-04-01T02:17:47Z", + "name": "Urban 2 Story", + "owner": "OpenRobotics", + "description": "2 story room with stairs and elevator shaft.", + "likes": 0, + "downloads": 1868, + "filesize": 3673059, + "upload_date": "2019-11-08T22:48:23Z", + "modify_date": "2023-09-27T16:18:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%202%20Story/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-11-07T18:59:59Z", + "updatedAt": "2024-04-01T02:17:47Z", + "name": "Vent", + "owner": "OpenRobotics", + "description": "Vent", + "likes": 0, + "downloads": 1835, + "filesize": 1349660, + "upload_date": "2019-11-07T18:59:54Z", + "modify_date": "2023-09-27T16:18:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Vent/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "artifact" + ] + }, + { + "createdAt": "2019-11-01T00:19:57Z", + "updatedAt": "2024-04-02T04:11:38Z", + "name": "Tube Light", + "owner": "OpenRobotics", + "description": "A tube light fixture", + "likes": 0, + "downloads": 310, + "filesize": 6361507, + "upload_date": "2019-11-01T00:19:52Z", + "modify_date": "2023-09-27T16:18:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tube%20Light/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-10-28T06:48:13Z", + "updatedAt": "2024-04-04T04:11:12Z", + "name": "WhiteChipChair", + "owner": "OpenRobotics", + "description": "White row of seats", + "likes": 0, + "downloads": 40069, + "filesize": 792333, + "upload_date": "2019-10-28T06:48:10Z", + "modify_date": "2023-09-27T16:18:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/WhiteChipChair/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital", + "furniture" + ] + }, + { + "createdAt": "2019-10-28T06:47:24Z", + "updatedAt": "2024-03-12T15:38:14Z", + "name": "WalkingCane", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 114, + "filesize": 598115, + "upload_date": "2019-10-28T06:47:21Z", + "modify_date": "2023-09-27T16:18:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/WalkingCane/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:46:31Z", + "updatedAt": "2024-03-12T15:38:57Z", + "name": "Walker", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 292, + "filesize": 596781, + "upload_date": "2019-10-28T06:46:28Z", + "modify_date": "2023-09-27T16:18:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Walker/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:45:54Z", + "updatedAt": "2024-03-29T13:13:43Z", + "name": "VisitorChair", + "owner": "OpenRobotics", + "description": "Blue chair for visitors", + "likes": 0, + "downloads": 1025, + "filesize": 451130, + "upload_date": "2019-10-28T06:45:51Z", + "modify_date": "2023-09-27T16:18:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/VisitorChair/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital", + "furniture" + ] + }, + { + "createdAt": "2019-10-28T06:45:05Z", + "updatedAt": "2024-04-02T18:17:42Z", + "name": "TrolleyBedPatient", + "owner": "OpenRobotics", + "description": "Trolley Bed with patient", + "likes": 0, + "downloads": 4202, + "filesize": 1479205, + "upload_date": "2019-10-28T06:45:01Z", + "modify_date": "2023-09-27T16:19:05Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/TrolleyBedPatient/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "person", + "hospital", + "furniture" + ] + }, + { + "createdAt": "2019-10-28T06:44:09Z", + "updatedAt": "2024-03-12T15:41:48Z", + "name": "SurgicalTrolleyGuards", + "owner": "OpenRobotics", + "description": "Surgical supply trolley with \"guard rails\"", + "likes": 0, + "downloads": 448, + "filesize": 984932, + "upload_date": "2019-10-28T06:44:06Z", + "modify_date": "2023-09-27T16:19:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SurgicalTrolleyGuards/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:43:28Z", + "updatedAt": "2024-04-03T17:11:58Z", + "name": "SurgicalTrolley", + "owner": "OpenRobotics", + "description": "Surgical supply trolley", + "likes": 0, + "downloads": 4048, + "filesize": 849805, + "upload_date": "2019-10-28T06:43:25Z", + "modify_date": "2023-09-27T16:19:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SurgicalTrolley/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:42:26Z", + "updatedAt": "2024-04-02T18:17:59Z", + "name": "StorageRackCovered", + "owner": "OpenRobotics", + "description": "Storage rack covered.", + "likes": 0, + "downloads": 21770, + "filesize": 536807, + "upload_date": "2019-10-28T06:42:22Z", + "modify_date": "2023-09-27T16:19:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/StorageRackCovered/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:41:39Z", + "updatedAt": "2024-04-02T18:18:50Z", + "name": "StorageRackCoverOpen", + "owner": "OpenRobotics", + "description": "Storage rack with blue cover, open.", + "likes": 0, + "downloads": 20096, + "filesize": 635216, + "upload_date": "2019-10-28T06:41:36Z", + "modify_date": "2023-09-27T16:19:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/StorageRackCoverOpen/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:40:47Z", + "updatedAt": "2024-04-04T04:08:23Z", + "name": "StorageRack", + "owner": "OpenRobotics", + "description": "Empty Grilled Storage Rack", + "likes": 0, + "downloads": 59965, + "filesize": 70905, + "upload_date": "2019-10-28T06:40:44Z", + "modify_date": "2023-09-27T16:19:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/StorageRack/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:36:24Z", + "updatedAt": "2024-03-24T22:38:04Z", + "name": "SmallTrolley", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 175, + "filesize": 642118, + "upload_date": "2019-10-28T06:36:21Z", + "modify_date": "2023-09-27T16:19:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SmallTrolley/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:35:30Z", + "updatedAt": "2024-03-12T02:15:17Z", + "name": "RollingWalker", + "owner": "OpenRobotics", + "description": "A red walker with wheels.", + "likes": 0, + "downloads": 141, + "filesize": 680272, + "upload_date": "2019-10-28T06:35:26Z", + "modify_date": "2023-09-27T16:20:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/RollingWalker/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:34:44Z", + "updatedAt": "2024-04-04T04:11:40Z", + "name": "PotatoChipChair", + "owner": "OpenRobotics", + "description": "Three-seater bench for waiting outpatients", + "likes": 0, + "downloads": 47762, + "filesize": 824743, + "upload_date": "2019-10-28T06:34:41Z", + "modify_date": "2023-09-27T16:20:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/PotatoChipChair/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital", + "furniture" + ] + }, + { + "createdAt": "2019-10-28T06:33:50Z", + "updatedAt": "2024-04-04T04:11:27Z", + "name": "PatientWheelChair", + "owner": "OpenRobotics", + "description": "Elderly patient on a wheelchair", + "likes": 0, + "downloads": 21189, + "filesize": 1175273, + "upload_date": "2019-10-28T06:33:46Z", + "modify_date": "2023-09-27T16:20:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/PatientWheelChair/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "person", + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:31:59Z", + "updatedAt": "2024-04-02T18:18:22Z", + "name": "ParkingTrolleyMin", + "owner": "OpenRobotics", + "description": "Trolley and carts parking area with bags, this one has less bags", + "likes": 0, + "downloads": 3852, + "filesize": 1946726, + "upload_date": "2019-10-28T06:31:55Z", + "modify_date": "2023-09-27T16:20:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ParkingTrolleyMin/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:30:59Z", + "updatedAt": "2024-04-04T04:07:05Z", + "name": "ParkingTrolleyMax", + "owner": "OpenRobotics", + "description": "Trolley and carts parking area with bags, this one has more bags", + "likes": 0, + "downloads": 28074, + "filesize": 778398, + "upload_date": "2019-10-28T06:30:55Z", + "modify_date": "2023-09-27T16:20:32Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ParkingTrolleyMax/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:29:48Z", + "updatedAt": "2024-03-15T15:04:59Z", + "name": "OrangeDoors", + "owner": "OpenRobotics", + "description": "Orange swing doors", + "likes": 0, + "downloads": 199, + "filesize": 1088901, + "upload_date": "2019-10-28T06:29:45Z", + "modify_date": "2023-09-27T16:20:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/OrangeDoors/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:28:14Z", + "updatedAt": "2024-04-04T04:10:48Z", + "name": "OpScrubs", + "owner": "OpenRobotics", + "description": "A doctor wearing operating room scrubs", + "likes": 0, + "downloads": 17060, + "filesize": 2337873, + "upload_date": "2019-10-28T06:28:10Z", + "modify_date": "2023-09-27T16:20:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/OpScrubs/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "person", + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:24:46Z", + "updatedAt": "2024-04-04T04:49:43Z", + "name": "MetalCabinetYellow", + "owner": "OpenRobotics", + "description": "Tall yellow metal cabinet", + "likes": 0, + "downloads": 1074, + "filesize": 26707, + "upload_date": "2019-10-28T06:24:43Z", + "modify_date": "2023-09-27T16:20:52Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MetalCabinetYellow/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital", + "furniture" + ] + }, + { + "createdAt": "2019-10-28T06:23:41Z", + "updatedAt": "2024-04-04T04:12:15Z", + "name": "MetalCabinet", + "owner": "OpenRobotics", + "description": "Tall grey metal cabinet", + "likes": 0, + "downloads": 28441, + "filesize": 29065, + "upload_date": "2019-10-28T06:23:37Z", + "modify_date": "2023-09-27T16:20:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MetalCabinet/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:22:51Z", + "updatedAt": "2024-03-25T07:57:02Z", + "name": "ManualFireAlarmButton", + "owner": "OpenRobotics", + "description": "Manual call point fire alarm button", + "likes": 0, + "downloads": 3931, + "filesize": 489986, + "upload_date": "2019-10-28T06:22:48Z", + "modify_date": "2023-09-27T16:21:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ManualFireAlarmButton/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:20:48Z", + "updatedAt": "2024-04-04T04:11:33Z", + "name": "MainTable", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 50212, + "filesize": 1868912, + "upload_date": "2019-10-28T06:20:45Z", + "modify_date": "2023-09-27T16:21:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MainTable/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:19:44Z", + "updatedAt": "2024-04-03T16:09:59Z", + "name": "InstrumentCart2", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 4001, + "filesize": 702606, + "upload_date": "2019-10-28T06:19:41Z", + "modify_date": "2023-09-27T16:21:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/InstrumentCart2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:19:00Z", + "updatedAt": "2024-04-03T17:00:01Z", + "name": "InstrumentCart1", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 4728, + "filesize": 135677, + "upload_date": "2019-10-28T06:18:57Z", + "modify_date": "2023-09-27T16:21:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/InstrumentCart1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:17:23Z", + "updatedAt": "2024-03-12T02:15:26Z", + "name": "HospitalPillow", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 132, + "filesize": 397106, + "upload_date": "2019-10-28T06:17:20Z", + "modify_date": "2023-09-27T16:21:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/HospitalPillow/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital", + "bedroom" + ] + }, + { + "createdAt": "2019-10-28T06:16:24Z", + "updatedAt": "2024-03-12T02:15:26Z", + "name": "Handrail", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 122, + "filesize": 20569, + "upload_date": "2019-10-28T06:16:20Z", + "modify_date": "2023-09-27T16:21:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Handrail/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:15:45Z", + "updatedAt": "2024-03-12T02:15:27Z", + "name": "GarbagePileV2", + "owner": "OpenRobotics", + "description": "Version 2 of Pile of Garbage Bags for variety", + "likes": 0, + "downloads": 98, + "filesize": 2332627, + "upload_date": "2019-10-28T06:15:40Z", + "modify_date": "2023-09-27T16:21:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/GarbagePileV2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:14:51Z", + "updatedAt": "2024-03-12T02:15:28Z", + "name": "GarbagePileV1", + "owner": "OpenRobotics", + "description": "Version 1 of Pile of Garbage Bags for variety", + "likes": 0, + "downloads": 103, + "filesize": 2334893, + "upload_date": "2019-10-28T06:14:48Z", + "modify_date": "2023-09-27T16:21:49Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/GarbagePileV1/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:13:29Z", + "updatedAt": "2024-03-12T02:15:29Z", + "name": "FreezerCondenser", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 115, + "filesize": 597182, + "upload_date": "2019-10-28T06:13:26Z", + "modify_date": "2023-09-27T16:21:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FreezerCondenser/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:12:31Z", + "updatedAt": "2024-03-12T02:15:29Z", + "name": "FreezerComp", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 111, + "filesize": 634328, + "upload_date": "2019-10-28T06:12:27Z", + "modify_date": "2023-09-27T16:22:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FreezerComp/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:11:07Z", + "updatedAt": "2024-03-31T23:26:24Z", + "name": "Extinguisher cabinet", + "owner": "OpenRobotics", + "description": "Fire extinguisher cabinet", + "likes": 0, + "downloads": 216, + "filesize": 555689, + "upload_date": "2019-10-28T06:11:04Z", + "modify_date": "2023-09-27T16:22:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Extinguisher%20cabinet/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:08:29Z", + "updatedAt": "2024-03-28T07:15:07Z", + "name": "ExitSign", + "owner": "OpenRobotics", + "description": "Double-sided emergency exit sign", + "likes": 0, + "downloads": 152, + "filesize": 952881, + "upload_date": "2019-10-28T06:08:25Z", + "modify_date": "2023-09-27T16:22:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ExitSign/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "sign", + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:07:10Z", + "updatedAt": "2024-04-04T04:07:29Z", + "name": "ElectronicsRecycling", + "owner": "OpenRobotics", + "description": "Electronics Recycling Bin", + "likes": 0, + "downloads": 21897, + "filesize": 1084493, + "upload_date": "2019-10-28T06:07:06Z", + "modify_date": "2023-09-27T16:22:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ElectronicsRecycling/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T06:02:48Z", + "updatedAt": "2024-03-12T02:15:32Z", + "name": "ColBumper", + "owner": "OpenRobotics", + "description": "Description of the model", + "likes": 0, + "downloads": 77, + "filesize": 766037, + "upload_date": "2019-10-28T06:02:44Z", + "modify_date": "2023-09-27T16:22:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/ColBumper/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital" + ] + }, + { + "createdAt": "2019-10-28T05:53:59Z", + "updatedAt": "2024-04-03T16:52:45Z", + "name": "CGMClassic", + "owner": "OpenRobotics", + "description": "A CGMClassic hospital bed", + "likes": 0, + "downloads": 4686, + "filesize": 1597545, + "upload_date": "2019-10-28T05:53:56Z", + "modify_date": "2023-09-27T16:22:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/CGMClassic/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital", + "bed" + ] + }, + { + "createdAt": "2019-10-28T05:52:01Z", + "updatedAt": "2024-03-28T06:46:20Z", + "name": "BedsideTable2", + "owner": "OpenRobotics", + "description": "Beige and blue patient bedside table with lock", + "likes": 0, + "downloads": 275, + "filesize": 1075914, + "upload_date": "2019-10-28T05:51:57Z", + "modify_date": "2023-09-27T16:22:43Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/BedsideTable2/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "hospital", + "table" + ] + }, + { + "createdAt": "2019-10-26T00:14:40Z", + "updatedAt": "2024-04-01T02:18:37Z", + "name": "Urban Elevation Up", + "owner": "OpenRobotics", + "description": "A straight section of urban tunnel with increasing elevation.", + "likes": 0, + "downloads": 1812, + "filesize": 1012818, + "upload_date": "2019-10-26T00:14:31Z", + "modify_date": "2023-09-27T16:22:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Elevation%20Up/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-10-26T00:13:18Z", + "updatedAt": "2024-04-01T02:18:53Z", + "name": "Urban Elevation Down", + "owner": "OpenRobotics", + "description": "A straight section of urban tunnel with decreasing elevation.", + "likes": 0, + "downloads": 1422, + "filesize": 1011225, + "upload_date": "2019-10-26T00:13:08Z", + "modify_date": "2023-09-27T16:23:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Elevation%20Down/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-10-25T09:22:08Z", + "updatedAt": "2024-04-03T17:10:36Z", + "name": "TrolleyBed", + "owner": "OpenRobotics", + "description": "Bed to transport patients.", + "likes": 0, + "downloads": 4732, + "filesize": 1015682, + "upload_date": "2019-10-25T09:22:04Z", + "modify_date": "2023-09-27T16:23:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/TrolleyBed/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "static", + "hospital", + "bed" + ] + }, + { + "createdAt": "2019-10-23T21:57:41Z", + "updatedAt": "2024-04-01T02:19:03Z", + "name": "Urban Service Room", + "owner": "OpenRobotics", + "description": "Service room.", + "likes": 0, + "downloads": 1744, + "filesize": 1960793, + "upload_date": "2019-10-23T21:57:22Z", + "modify_date": "2023-09-27T16:23:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Service%20Room/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-10-23T21:55:43Z", + "updatedAt": "2024-04-01T02:19:02Z", + "name": "Urban Superpose", + "owner": "OpenRobotics", + "description": "Overlapped tunnel section.", + "likes": 0, + "downloads": 1395, + "filesize": 1402783, + "upload_date": "2019-10-23T21:55:32Z", + "modify_date": "2023-09-27T16:23:29Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Superpose/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-10-23T21:54:46Z", + "updatedAt": "2024-04-01T02:19:00Z", + "name": "Urban 3-Way Right Intersection", + "owner": "OpenRobotics", + "description": "3-way subway intersection with crossing system.", + "likes": 0, + "downloads": 1624, + "filesize": 1432053, + "upload_date": "2019-10-23T21:54:29Z", + "modify_date": "2023-09-27T16:23:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%203-Way%20Right%20Intersection/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-10-22T21:03:54Z", + "updatedAt": "2024-04-01T02:18:35Z", + "name": "Urban Straight Door Right", + "owner": "OpenRobotics", + "description": "A straight urban tunnel with door opening on the right", + "likes": 0, + "downloads": 1655, + "filesize": 923727, + "upload_date": "2019-10-22T21:03:35Z", + "modify_date": "2023-09-27T16:23:51Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Straight%20Door%20Right/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-10-22T21:02:52Z", + "updatedAt": "2024-04-01T02:18:51Z", + "name": "Urban Straight Door Right Flipped", + "owner": "OpenRobotics", + "description": "A straight urban tunnel with door opening on the right and flipped tunnel geometry", + "likes": 0, + "downloads": 1749, + "filesize": 971463, + "upload_date": "2019-10-22T21:02:33Z", + "modify_date": "2023-09-27T16:24:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Straight%20Door%20Right%20Flipped/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-10-22T21:01:36Z", + "updatedAt": "2024-04-01T02:18:45Z", + "name": "Urban Straight Door Left Flipped", + "owner": "OpenRobotics", + "description": "A straight urban tunnel with door opening on the left and flipped tunnel geometry", + "likes": 0, + "downloads": 1731, + "filesize": 969583, + "upload_date": "2019-10-22T21:01:18Z", + "modify_date": "2023-09-27T16:24:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Straight%20Door%20Left%20Flipped/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-10-22T21:00:38Z", + "updatedAt": "2024-04-01T02:19:49Z", + "name": "Urban Straight Door Left", + "owner": "OpenRobotics", + "description": "A straight urban tunnel with door opening on the left", + "likes": 0, + "downloads": 1710, + "filesize": 925269, + "upload_date": "2019-10-22T21:00:20Z", + "modify_date": "2023-09-27T16:24:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Straight%20Door%20Left/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-10-15T17:24:11Z", + "updatedAt": "2024-04-01T02:19:56Z", + "name": "Urban Platform Open", + "owner": "OpenRobotics", + "description": "A platform in urban circuit.", + "likes": 0, + "downloads": 1671, + "filesize": 1139076, + "upload_date": "2019-10-15T17:23:54Z", + "modify_date": "2023-09-27T16:24:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Platform%20Open/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-10-08T01:27:43Z", + "updatedAt": "2024-04-01T09:15:36Z", + "name": "Urban Stairwell Platform", + "owner": "OpenRobotics", + "description": "A stairwell connecting two platforms in urban circuit.", + "likes": 0, + "downloads": 1673, + "filesize": 570790, + "upload_date": "2019-10-08T01:27:32Z", + "modify_date": "2023-09-27T16:24:37Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Stairwell%20Platform/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-10-02T21:22:04Z", + "updatedAt": "2024-04-01T02:19:56Z", + "name": "Urban Stairwell Straight", + "owner": "OpenRobotics", + "description": "A straight stairwell connecting tunnels in urban circuit.", + "likes": 0, + "downloads": 1043, + "filesize": 2969144, + "upload_date": "2019-10-02T21:21:51Z", + "modify_date": "2023-09-27T16:24:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Stairwell%20Straight/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-10-01T20:03:52Z", + "updatedAt": "2024-04-01T09:13:51Z", + "name": "Urban Starting Area", + "owner": "OpenRobotics", + "description": "A starting area for urban circuit.", + "likes": 0, + "downloads": 2036, + "filesize": 1831308, + "upload_date": "2019-10-01T20:03:28Z", + "modify_date": "2023-09-27T16:25:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Starting%20Area/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-09-20T19:55:49Z", + "updatedAt": "2024-03-12T02:57:59Z", + "name": "Gazebo - relative paths", + "owner": "chapulina", + "description": "Uses relative paths within `model.sdf` and `gazebo.dae`.", + "likes": 0, + "downloads": 158, + "filesize": 1311286, + "upload_date": "2019-09-20T19:55:45Z", + "modify_date": "2019-09-20T20:00:51Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Gazebo%20-%20relative%20paths/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "building", + "gazebo", + "outdoor" + ] + }, + { + "createdAt": "2019-09-20T19:55:29Z", + "updatedAt": "2024-03-12T02:58:14Z", + "name": "Gazebo", + "owner": "chapulina", + "description": "A gazebo.", + "likes": 0, + "downloads": 146, + "filesize": 1311334, + "upload_date": "2019-09-20T19:55:26Z", + "modify_date": "2019-09-20T19:55:26Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Gazebo/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-09-18T05:24:42Z", + "updatedAt": "2024-04-01T19:22:41Z", + "name": "bicycle", + "owner": "athackst", + "description": "An un-articulated bicycle", + "likes": 1, + "downloads": 864, + "filesize": 1891407, + "upload_date": "2019-09-18T05:24:39Z", + "modify_date": "2019-09-18T05:40:07Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/athackst/models/bicycle/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "suburb" + ] + }, + { + "createdAt": "2019-09-16T22:24:11Z", + "updatedAt": "2024-03-25T08:33:31Z", + "name": "Double pendulum with base", + "owner": "scpeters", + "description": "A double pendulum with cylindrical shapes and rotation on the x axis.\r\nThe pendulum is attached to a heavy base that rests on the ground.", + "likes": 0, + "downloads": 305, + "filesize": 32521, + "upload_date": "2019-09-16T22:24:09Z", + "modify_date": "2019-09-16T22:24:09Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/scpeters/models/Double%20pendulum%20with%20base/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-09-05T19:50:54Z", + "updatedAt": "2024-03-12T02:58:26Z", + "name": "actor - relative paths", + "owner": "chapulina", + "description": "Copied from Mingfei's actor, converted `model://actor` into relative paths.", + "likes": 0, + "downloads": 156, + "filesize": 11222360, + "upload_date": "2019-09-05T19:50:46Z", + "modify_date": "2019-09-05T19:52:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/actor%20-%20relative%20paths/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "person", + "animation" + ] + }, + { + "createdAt": "2019-09-05T01:56:40Z", + "updatedAt": "2024-03-12T02:58:43Z", + "name": "X1 Config 1 - relative paths", + "owner": "chapulina", + "description": "X1 robot with sensor configuration #1.\r\n\r\nSee [the SubT wiki](https://bitbucket.org/osrf/subt/wiki/api) for more details.", + "likes": 0, + "downloads": 90, + "filesize": 1843838, + "upload_date": "2019-09-05T01:56:35Z", + "modify_date": "2019-09-05T01:58:29Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/X1%20Config%201%20-%20relative%20paths/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "subt", + "ground" + ] + }, + { + "createdAt": "2019-08-26T21:26:32Z", + "updatedAt": "2024-03-30T00:46:10Z", + "name": "X2 Config 6", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 86, + "filesize": 1705576, + "upload_date": "2019-08-26T21:26:28Z", + "modify_date": "2019-08-26T21:26:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X2%20Config%206/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-08-26T21:26:06Z", + "updatedAt": "2024-03-12T02:47:04Z", + "name": "X2 Config 5", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 44, + "filesize": 1705341, + "upload_date": "2019-08-26T21:26:03Z", + "modify_date": "2019-08-26T21:26:03Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X2%20Config%205/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-08-26T21:21:06Z", + "updatedAt": "2024-03-12T02:47:52Z", + "name": "X1 Config 5", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 44, + "filesize": 1843781, + "upload_date": "2019-08-26T21:21:02Z", + "modify_date": "2019-08-26T21:21:02Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X1%20Config%205/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-08-24T01:57:03Z", + "updatedAt": "2024-03-31T11:13:45Z", + "name": "X1 Config 4 Test", + "owner": "CarnesT", + "description": "", + "likes": 0, + "downloads": 349, + "filesize": 1843804, + "upload_date": "2019-08-24T01:56:59Z", + "modify_date": "2019-08-24T01:56:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/CarnesT/models/X1%20Config%204%20Test/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-08-23T03:31:03Z", + "updatedAt": "2024-03-31T16:00:25Z", + "name": "actor_gesture", + "owner": "Mingfei", + "description": "", + "likes": 0, + "downloads": 296, + "filesize": 1733301, + "upload_date": "2019-08-23T03:31:00Z", + "modify_date": "2019-08-23T03:31:00Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Mingfei/models/actor_gesture/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-08-21T07:41:46Z", + "updatedAt": "2024-04-04T05:42:41Z", + "name": "actor", + "owner": "Mingfei", + "description": "", + "likes": 0, + "downloads": 8375, + "filesize": 11222368, + "upload_date": "2019-08-21T07:41:39Z", + "modify_date": "2019-08-21T07:41:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Mingfei/models/actor/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "person", + "animation" + ] + }, + { + "createdAt": "2019-08-16T09:13:08Z", + "updatedAt": "2024-03-24T21:35:07Z", + "name": "actor_walk", + "owner": "Mingfei", + "description": "", + "likes": 0, + "downloads": 357, + "filesize": 919100, + "upload_date": "2019-08-16T09:13:06Z", + "modify_date": "2019-08-16T09:13:06Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Mingfei/models/actor_walk/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-08-16T09:12:20Z", + "updatedAt": "2024-03-24T01:16:40Z", + "name": "actor_talk_b", + "owner": "Mingfei", + "description": "", + "likes": 0, + "downloads": 99, + "filesize": 2885320, + "upload_date": "2019-08-16T09:12:17Z", + "modify_date": "2019-08-16T09:12:17Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Mingfei/models/actor_talk_b/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-08-16T09:09:38Z", + "updatedAt": "2024-03-24T01:15:19Z", + "name": "actor_talk_a", + "owner": "Mingfei", + "description": "", + "likes": 0, + "downloads": 86, + "filesize": 2891884, + "upload_date": "2019-08-16T09:09:35Z", + "modify_date": "2019-08-16T09:09:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Mingfei/models/actor_talk_a/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-08-16T09:07:47Z", + "updatedAt": "2024-03-13T19:11:53Z", + "name": "actor_stand_up", + "owner": "Mingfei", + "description": "", + "likes": 0, + "downloads": 101, + "filesize": 1221029, + "upload_date": "2019-08-16T09:07:45Z", + "modify_date": "2019-08-16T09:07:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Mingfei/models/actor_stand_up/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-08-16T09:07:11Z", + "updatedAt": "2024-03-24T22:52:29Z", + "name": "actor_stand", + "owner": "Mingfei", + "description": "", + "likes": 0, + "downloads": 122, + "filesize": 908043, + "upload_date": "2019-08-16T09:07:08Z", + "modify_date": "2019-08-16T09:07:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Mingfei/models/actor_stand/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-08-16T09:06:40Z", + "updatedAt": "2024-03-12T07:14:43Z", + "name": "actor_sitting", + "owner": "Mingfei", + "description": "", + "likes": 0, + "downloads": 109, + "filesize": 861099, + "upload_date": "2019-08-16T09:06:38Z", + "modify_date": "2019-08-16T09:06:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Mingfei/models/actor_sitting/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-08-16T09:06:04Z", + "updatedAt": "2024-03-12T07:14:57Z", + "name": "actor_sit_down", + "owner": "Mingfei", + "description": "", + "likes": 0, + "downloads": 97, + "filesize": 1263517, + "upload_date": "2019-08-16T09:06:01Z", + "modify_date": "2019-08-16T09:06:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Mingfei/models/actor_sit_down/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-08-16T09:04:16Z", + "updatedAt": "2024-03-13T19:12:35Z", + "name": "actor_run", + "owner": "Mingfei", + "description": "", + "likes": 0, + "downloads": 152, + "filesize": 979595, + "upload_date": "2019-08-16T09:04:14Z", + "modify_date": "2019-08-16T09:04:14Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Mingfei/models/actor_run/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-08-16T09:03:26Z", + "updatedAt": "2024-03-20T08:00:47Z", + "name": "actor_moonwalk", + "owner": "Mingfei", + "description": "", + "likes": 1, + "downloads": 144, + "filesize": 896130, + "upload_date": "2019-08-16T09:03:23Z", + "modify_date": "2019-08-16T09:03:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/Mingfei/models/actor_moonwalk/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-08-07T21:37:17Z", + "updatedAt": "2024-04-01T02:19:53Z", + "name": "Rail Tunnel Straight", + "owner": "OpenRobotics", + "description": "Straight rail section for a tunnel.", + "likes": 0, + "downloads": 1341, + "filesize": 24504, + "upload_date": "2019-08-07T21:37:14Z", + "modify_date": "2023-09-27T16:25:11Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rail%20Tunnel%20Straight/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-08-07T21:37:08Z", + "updatedAt": "2024-04-01T02:20:00Z", + "name": "Rail Tunnel End", + "owner": "OpenRobotics", + "description": "End to tunnel rail section.", + "likes": 0, + "downloads": 1009, + "filesize": 17628, + "upload_date": "2019-08-07T21:37:05Z", + "modify_date": "2023-09-27T16:25:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rail%20Tunnel%20End/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-08-07T21:36:59Z", + "updatedAt": "2024-04-01T02:19:30Z", + "name": "Rail Tunnel Corner", + "owner": "OpenRobotics", + "description": "A corner section of a tunnel with rails.", + "likes": 0, + "downloads": 1421, + "filesize": 14215275, + "upload_date": "2019-08-07T21:36:56Z", + "modify_date": "2023-09-27T16:25:22Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rail%20Tunnel%20Corner/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-08-07T21:36:50Z", + "updatedAt": "2024-04-01T02:20:22Z", + "name": "Rail Tunnel Elevation", + "owner": "OpenRobotics", + "description": "Elevation rail section for a tunnel.", + "likes": 0, + "downloads": 1420, + "filesize": 41533, + "upload_date": "2019-08-07T21:36:47Z", + "modify_date": "2023-09-27T16:25:33Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rail%20Tunnel%20Elevation/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-08-07T21:36:41Z", + "updatedAt": "2024-04-01T02:20:40Z", + "name": "Rail Tunnel Straight Overlap", + "owner": "OpenRobotics", + "description": "Straight overlapping rail section for a tunnel.", + "likes": 0, + "downloads": 1343, + "filesize": 70377, + "upload_date": "2019-08-07T21:36:38Z", + "modify_date": "2023-09-27T16:25:39Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rail%20Tunnel%20Straight%20Overlap/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-08-06T05:15:21Z", + "updatedAt": "2024-04-02T14:18:26Z", + "name": "fence", + "owner": "athackst", + "description": "A wooden fence", + "likes": 0, + "downloads": 588, + "filesize": 756606, + "upload_date": "2019-08-06T05:15:19Z", + "modify_date": "2019-09-18T05:15:35Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/athackst/models/fence/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "suburb", + "yard" + ] + }, + { + "createdAt": "2019-07-25T01:26:59Z", + "updatedAt": "2024-04-04T03:21:03Z", + "name": "Walking actor", + "owner": "chapulina", + "description": "", + "likes": 0, + "downloads": 22808, + "filesize": 759053, + "upload_date": "2019-07-25T01:26:57Z", + "modify_date": "2020-07-14T22:33:25Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Walking%20actor/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "actor", + "person", + "human", + "moving", + "animation", + "skeleton" + ], + "categories": [ + "People", + "Action Figures" + ] + }, + { + "createdAt": "2019-07-23T08:46:26Z", + "updatedAt": "2024-04-02T17:17:08Z", + "name": "EdgarMineVirtualSTIXFull", + "owner": "EkinBear", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 0, + "downloads": 404, + "filesize": 84672628, + "upload_date": "2019-07-23T08:46:08Z", + "modify_date": "2019-07-23T08:46:08Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/EkinBear/models/EdgarMineVirtualSTIXFull/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-07-20T00:50:20Z", + "updatedAt": "2024-04-02T17:20:35Z", + "name": "NIOSH Staging Area", + "owner": "OpenRobotics", + "description": "A staging area designed for subt NIOSH tunnel scenarios.", + "likes": 0, + "downloads": 4670, + "filesize": 110877895, + "upload_date": "2019-07-20T00:50:16Z", + "modify_date": "2023-09-27T16:25:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 1, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIOSH%20Staging%20Area/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2019-07-08T07:53:24Z", + "updatedAt": "2024-04-01T05:31:14Z", + "name": "clf_walls", + "owner": "tmarkmann", + "description": "", + "likes": 0, + "downloads": 511, + "filesize": 4040, + "upload_date": "2019-07-08T07:53:22Z", + "modify_date": "2019-07-08T07:53:22Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2019-06-26T21:03:46Z", + "updatedAt": "2024-04-01T02:20:43Z", + "name": "X2 Config 6", + "owner": "OpenRobotics", + "description": "The X2 robot for SubT.", + "likes": 0, + "downloads": 2325, + "filesize": 725887, + "upload_date": "2019-06-26T21:03:42Z", + "modify_date": "2023-09-27T16:27:18Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X2%20Config%206/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-06-26T20:19:38Z", + "updatedAt": "2024-04-01T02:20:36Z", + "name": "X2 Config 5", + "owner": "OpenRobotics", + "description": "The X2 robot for SubT.", + "likes": 0, + "downloads": 2222, + "filesize": 722863, + "upload_date": "2019-06-26T20:19:35Z", + "modify_date": "2023-09-27T16:27:28Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X2%20Config%205/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "vehicle", + "subt", + "ugv", + "ground" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-06-26T19:07:48Z", + "updatedAt": "2024-04-01T02:20:45Z", + "name": "X1 Config 5", + "owner": "OpenRobotics", + "description": "The X1 robot for SubT.", + "likes": 0, + "downloads": 2303, + "filesize": 971476, + "upload_date": "2019-06-26T19:07:44Z", + "modify_date": "2023-09-27T16:27:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X1%20Config%205/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "vehicle", + "subt", + "ugv", + "ground" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-06-25T18:55:36Z", + "updatedAt": "2024-04-01T18:02:25Z", + "name": "X4 UAV Config 5", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 74, + "filesize": 5891798, + "upload_date": "2019-06-25T18:55:30Z", + "modify_date": "2019-06-25T18:55:30Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X4%20UAV%20Config%205/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:55:15Z", + "updatedAt": "2024-03-15T18:29:04Z", + "name": "X4 UAV Config 4", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 35, + "filesize": 5891906, + "upload_date": "2019-06-25T18:55:08Z", + "modify_date": "2019-06-25T18:55:08Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X4%20UAV%20Config%204/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:54:31Z", + "updatedAt": "2024-03-15T17:19:25Z", + "name": "X4 UAV Config 3", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 29, + "filesize": 5891908, + "upload_date": "2019-06-25T18:54:24Z", + "modify_date": "2019-06-25T18:54:24Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X4%20UAV%20Config%203/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:53:31Z", + "updatedAt": "2024-03-17T12:00:49Z", + "name": "X4 UAV Config 2", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 35, + "filesize": 5891758, + "upload_date": "2019-06-25T18:53:25Z", + "modify_date": "2019-06-25T18:53:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X4%20UAV%20Config%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:53:10Z", + "updatedAt": "2024-03-12T02:49:30Z", + "name": "X4 UAV Config 1", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 31, + "filesize": 5891795, + "upload_date": "2019-06-25T18:53:04Z", + "modify_date": "2019-06-25T18:53:04Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X4%20UAV%20Config%201/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:52:36Z", + "updatedAt": "2024-03-28T17:47:28Z", + "name": "X3 UAV Config 4", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 24, + "filesize": 10835500, + "upload_date": "2019-06-25T18:52:27Z", + "modify_date": "2019-06-25T18:52:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X3%20UAV%20Config%204/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:48:41Z", + "updatedAt": "2024-03-12T02:49:53Z", + "name": "X3 UAV Config 3", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 29, + "filesize": 10835500, + "upload_date": "2019-06-25T18:48:33Z", + "modify_date": "2019-06-25T18:48:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X3%20UAV%20Config%203/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:47:58Z", + "updatedAt": "2024-03-12T02:50:05Z", + "name": "X3 UAV Config 2", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 19, + "filesize": 10835492, + "upload_date": "2019-06-25T18:47:50Z", + "modify_date": "2019-06-25T18:47:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X3%20UAV%20Config%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:47:33Z", + "updatedAt": "2024-03-12T02:50:16Z", + "name": "X3 UAV Config 1", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 33, + "filesize": 10835536, + "upload_date": "2019-06-25T18:47:25Z", + "modify_date": "2019-06-25T18:47:25Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X3%20UAV%20Config%201/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:47:01Z", + "updatedAt": "2024-03-12T02:50:27Z", + "name": "X2 Config 4", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 23, + "filesize": 1705467, + "upload_date": "2019-06-25T18:46:57Z", + "modify_date": "2019-08-26T21:24:39Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X2%20Config%204/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:46:46Z", + "updatedAt": "2024-03-15T17:19:48Z", + "name": "X2 Config 3", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 20, + "filesize": 1705466, + "upload_date": "2019-06-25T18:46:42Z", + "modify_date": "2019-08-26T21:23:33Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X2%20Config%203/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:46:26Z", + "updatedAt": "2024-03-12T02:50:47Z", + "name": "X2 Config 2", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 13, + "filesize": 1705466, + "upload_date": "2019-06-25T18:46:22Z", + "modify_date": "2019-08-26T21:21:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X2%20Config%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:45:58Z", + "updatedAt": "2024-03-30T00:45:45Z", + "name": "X2 Config 1", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 22, + "filesize": 1705465, + "upload_date": "2019-06-25T18:45:54Z", + "modify_date": "2019-08-26T21:12:10Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X2%20Config%201/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:18:08Z", + "updatedAt": "2024-03-12T02:51:08Z", + "name": "X1 Config 4", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 24, + "filesize": 1843989, + "upload_date": "2019-06-25T18:18:05Z", + "modify_date": "2019-08-26T21:19:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X1%20Config%204/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:17:47Z", + "updatedAt": "2024-03-12T02:51:18Z", + "name": "X1 Config 3", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 16, + "filesize": 1843987, + "upload_date": "2019-06-25T18:17:44Z", + "modify_date": "2019-08-26T21:13:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X1%20Config%203/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:17:22Z", + "updatedAt": "2024-03-12T02:51:27Z", + "name": "X1 Config 2", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 18, + "filesize": 1843853, + "upload_date": "2019-06-25T18:17:18Z", + "modify_date": "2019-08-26T21:13:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X1%20Config%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-06-25T18:17:01Z", + "updatedAt": "2024-03-12T02:51:37Z", + "name": "X1 Config 1", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 32, + "filesize": 1843850, + "upload_date": "2019-06-25T18:16:57Z", + "modify_date": "2019-08-26T20:23:11Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X1%20Config%201/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-29T23:12:10Z", + "updatedAt": "2024-03-24T00:54:04Z", + "name": "Tunnel Tile 7", + "owner": "iche033", + "description": "A vertical shaft tunnel tile segment", + "likes": 0, + "downloads": 150, + "filesize": 28630979, + "upload_date": "2019-05-29T23:12:03Z", + "modify_date": "2023-09-21T01:07:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/iche033/models/Tunnel%20Tile%207/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-29T23:06:33Z", + "updatedAt": "2024-03-24T00:53:02Z", + "name": "Tunnel Tile 6", + "owner": "iche033", + "description": "A straight tunnel tile with elevation change", + "likes": 0, + "downloads": 80, + "filesize": 28733653, + "upload_date": "2019-05-29T23:06:26Z", + "modify_date": "2023-09-21T01:08:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/iche033/models/Tunnel%20Tile%206/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-29T20:57:56Z", + "updatedAt": "2024-04-01T17:44:30Z", + "name": "Tunnel Tile 5", + "owner": "iche033", + "description": "A straight tunnel tile", + "likes": 0, + "downloads": 77, + "filesize": 28636452, + "upload_date": "2019-05-29T20:57:48Z", + "modify_date": "2023-09-21T01:08:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/iche033/models/Tunnel%20Tile%205/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-29T20:49:56Z", + "updatedAt": "2024-03-24T00:51:43Z", + "name": "Tunnel Tile 2", + "owner": "iche033", + "description": "A 90 degree bend tunnel tile", + "likes": 0, + "downloads": 68, + "filesize": 28784814, + "upload_date": "2019-05-29T20:49:48Z", + "modify_date": "2023-09-21T01:08:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/iche033/models/Tunnel%20Tile%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-29T18:44:54Z", + "updatedAt": "2024-03-28T10:48:29Z", + "name": "Tunnel Tile 1", + "owner": "iche033", + "description": "A 4 way intersection tunnel tile", + "likes": 0, + "downloads": 116, + "filesize": 103825061, + "upload_date": "2019-05-29T18:44:46Z", + "modify_date": "2023-09-21T01:09:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/iche033/models/Tunnel%20Tile%201/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-05-24T07:47:22Z", + "updatedAt": "2024-03-25T05:43:17Z", + "name": "EdgarMineVirtualSTIXFull", + "owner": "stan911", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 0, + "downloads": 605, + "filesize": 84672628, + "upload_date": "2019-05-24T07:47:04Z", + "modify_date": "2019-05-24T07:47:04Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/stan911/models/EdgarMineVirtualSTIXFull/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-23T20:16:06Z", + "updatedAt": "2024-04-01T02:20:32Z", + "name": "Edgar Mine Virtual STIX 6", + "owner": "OpenRobotics", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 0, + "downloads": 600, + "filesize": 1766391, + "upload_date": "2019-05-23T20:15:52Z", + "modify_date": "2023-09-27T16:27:49Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Edgar%20Mine%20Virtual%20STIX%206/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-23T19:13:27Z", + "updatedAt": "2024-03-22T14:39:15Z", + "name": "JanSport Backpack Red", + "owner": "chapulina", + "description": "Red JanSport backpack.", + "likes": 0, + "downloads": 62, + "filesize": 1864367, + "upload_date": "2019-05-23T19:13:24Z", + "modify_date": "2019-05-23T19:13:24Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/JanSport%20Backpack%20Red/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-22T23:26:29Z", + "updatedAt": "2024-04-01T02:20:51Z", + "name": "Edgar Mine Virtual STIX 2", + "owner": "OpenRobotics", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 0, + "downloads": 573, + "filesize": 2304698, + "upload_date": "2019-05-22T23:26:16Z", + "modify_date": "2023-09-27T16:28:00Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Edgar%20Mine%20Virtual%20STIX%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-22T23:26:00Z", + "updatedAt": "2024-04-01T02:20:31Z", + "name": "Edgar Mine Virtual STIX 3", + "owner": "OpenRobotics", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 0, + "downloads": 570, + "filesize": 1048055, + "upload_date": "2019-05-22T23:25:47Z", + "modify_date": "2023-09-27T16:28:10Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Edgar%20Mine%20Virtual%20STIX%203/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-22T23:25:31Z", + "updatedAt": "2024-04-01T02:21:33Z", + "name": "Edgar Mine Virtual STIX 9", + "owner": "OpenRobotics", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 0, + "downloads": 557, + "filesize": 915881, + "upload_date": "2019-05-22T23:25:19Z", + "modify_date": "2023-09-27T16:28:17Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Edgar%20Mine%20Virtual%20STIX%209/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-22T23:25:04Z", + "updatedAt": "2024-04-01T02:21:23Z", + "name": "Edgar Mine Virtual STIX 4", + "owner": "OpenRobotics", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 0, + "downloads": 557, + "filesize": 1378085, + "upload_date": "2019-05-22T23:24:51Z", + "modify_date": "2023-09-27T16:28:25Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Edgar%20Mine%20Virtual%20STIX%204/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-22T23:24:35Z", + "updatedAt": "2024-04-01T02:21:31Z", + "name": "Edgar Mine Virtual STIX 7", + "owner": "OpenRobotics", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 0, + "downloads": 564, + "filesize": 1680785, + "upload_date": "2019-05-22T23:24:21Z", + "modify_date": "2023-09-27T16:28:33Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Edgar%20Mine%20Virtual%20STIX%207/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-22T23:24:05Z", + "updatedAt": "2024-04-01T02:21:32Z", + "name": "Edgar Mine Virtual STIX Staging", + "owner": "OpenRobotics", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 0, + "downloads": 563, + "filesize": 198984, + "upload_date": "2019-05-22T23:23:52Z", + "modify_date": "2023-09-27T16:28:41Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Edgar%20Mine%20Virtual%20STIX%20Staging/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-22T23:23:32Z", + "updatedAt": "2024-04-01T02:21:43Z", + "name": "Edgar Mine Virtual STIX 8", + "owner": "OpenRobotics", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 0, + "downloads": 578, + "filesize": 1078995, + "upload_date": "2019-05-22T23:23:19Z", + "modify_date": "2023-09-27T16:28:48Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Edgar%20Mine%20Virtual%20STIX%208/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-22T23:23:04Z", + "updatedAt": "2024-04-01T02:21:21Z", + "name": "Edgar Mine Virtual STIX 10", + "owner": "OpenRobotics", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 0, + "downloads": 558, + "filesize": 2440946, + "upload_date": "2019-05-22T23:22:49Z", + "modify_date": "2023-09-27T16:28:56Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Edgar%20Mine%20Virtual%20STIX%2010/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-22T23:22:27Z", + "updatedAt": "2024-04-01T02:21:30Z", + "name": "Edgar Mine Virtual STIX 1", + "owner": "OpenRobotics", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 0, + "downloads": 584, + "filesize": 2489750, + "upload_date": "2019-05-22T23:22:11Z", + "modify_date": "2023-09-27T16:29:07Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Edgar%20Mine%20Virtual%20STIX%201/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-22T23:21:53Z", + "updatedAt": "2024-04-01T02:21:21Z", + "name": "Edgar Mine Virtual STIX 5", + "owner": "OpenRobotics", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 0, + "downloads": 570, + "filesize": 1388883, + "upload_date": "2019-05-22T23:21:40Z", + "modify_date": "2023-09-27T16:29:18Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Edgar%20Mine%20Virtual%20STIX%205/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-22T21:44:45Z", + "updatedAt": "2024-04-01T02:22:19Z", + "name": "X4 UAV Config 5", + "owner": "OpenRobotics", + "description": "X4 UAV with sensor configuration #5: HD camera, HDCamera, IMU, pressure sensor, magnetometer.", + "likes": 1, + "downloads": 2389, + "filesize": 4645262, + "upload_date": "2019-05-22T21:44:25Z", + "modify_date": "2023-09-27T16:29:27Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X4%20UAV%20Config%205/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "drone", + "subt", + "air", + "UAV", + "robot", + "hexacopter" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-22T21:43:28Z", + "updatedAt": "2024-04-01T02:22:11Z", + "name": "X4 UAV Config 4", + "owner": "OpenRobotics", + "description": "X4 UAV with sensor configuration #4: HD camera, 2D medium range lidar, IMU, pressure sensor, magnetometer.", + "likes": 0, + "downloads": 2267, + "filesize": 4647151, + "upload_date": "2019-05-22T21:43:12Z", + "modify_date": "2023-09-27T16:29:50Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X4%20UAV%20Config%204/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "UAV" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-22T21:42:45Z", + "updatedAt": "2024-04-01T02:22:20Z", + "name": "X4 UAV Config 3", + "owner": "OpenRobotics", + "description": "X4 UAV with sensor configuration #3: QVGA camera, 2D short range lidar, IMU, pressure sensor, magnetometer.", + "likes": 0, + "downloads": 2251, + "filesize": 4647151, + "upload_date": "2019-05-22T21:42:30Z", + "modify_date": "2023-09-27T16:30:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X4%20UAV%20Config%203/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "drone", + "subt", + "air", + "UAV", + "robot", + "hexacopter" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-22T21:41:52Z", + "updatedAt": "2024-04-01T02:22:13Z", + "name": "X4 UAV Config 2", + "owner": "OpenRobotics", + "description": "X4 UAV with sensor configuration #2: VGA RGBD camera, IMU, pressure sensor, magnetometer.", + "likes": 0, + "downloads": 2349, + "filesize": 4647020, + "upload_date": "2019-05-22T21:41:36Z", + "modify_date": "2023-09-27T16:30:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X4%20UAV%20Config%202/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "drone", + "subt", + "UAV", + "robot", + "hexacopter" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-22T21:40:08Z", + "updatedAt": "2024-04-03T14:48:46Z", + "name": "X4 UAV Config 1", + "owner": "OpenRobotics", + "description": "X4 UAV with sensor configuration #1: HD camera, IMU, pressure sensor, magnetometer.", + "likes": 0, + "downloads": 3106, + "filesize": 4647033, + "upload_date": "2019-05-22T21:39:53Z", + "modify_date": "2023-09-27T16:30:56Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X4%20UAV%20Config%201/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "drone", + "subt", + "UAV", + "robot", + "hexacopter" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-22T21:24:44Z", + "updatedAt": "2024-04-03T08:34:19Z", + "name": "X3 UAV Config 4", + "owner": "OpenRobotics", + "description": "X3 UAV with sensor configuration #4: VGA RGBD camera, IMU, pressure sensor, magnetometer.", + "likes": 0, + "downloads": 2358, + "filesize": 9546435, + "upload_date": "2019-05-22T21:24:29Z", + "modify_date": "2023-09-27T16:31:20Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X3%20UAV%20Config%204/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-22T21:23:12Z", + "updatedAt": "2024-04-01T02:22:12Z", + "name": "X3 UAV Config 3", + "owner": "OpenRobotics", + "description": "X3 UAV with sensor configuration #3: QVGA RGBD camera, IMU, pressure sensor, magnetometer.", + "likes": 0, + "downloads": 2349, + "filesize": 9546434, + "upload_date": "2019-05-22T21:22:56Z", + "modify_date": "2023-09-27T16:31:53Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X3%20UAV%20Config%203/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "air", + "UAV", + "quadcopter" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-22T21:22:37Z", + "updatedAt": "2024-04-03T07:59:00Z", + "name": "X3 UAV Config 2", + "owner": "OpenRobotics", + "description": "X3 UAV with sensor configuration #2: HD camera, IMU, pressure sensor, magnetometer.", + "likes": 0, + "downloads": 2313, + "filesize": 9546401, + "upload_date": "2019-05-22T21:22:22Z", + "modify_date": "2023-09-27T16:32:26Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X3%20UAV%20Config%202/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "drone", + "subt", + "air", + "UAV", + "quadcopter", + "robot" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-22T21:21:18Z", + "updatedAt": "2024-04-03T08:47:40Z", + "name": "X3 UAV Config 1", + "owner": "OpenRobotics", + "description": "X3 UAV with sensor configuration #1: QVGA camera, IMU, pressure sensor, magnetometer.", + "likes": 0, + "downloads": 3102, + "filesize": 9546446, + "upload_date": "2019-05-22T21:21:04Z", + "modify_date": "2023-09-27T16:32:59Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X3%20UAV%20Config%201/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "drone", + "subt", + "air", + "UAV", + "quadcopter", + "robot" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-21T20:20:35Z", + "updatedAt": "2024-03-12T02:51:47Z", + "name": "X2_test", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 54, + "filesize": 1704544, + "upload_date": "2019-05-21T20:20:31Z", + "modify_date": "2019-05-21T20:20:31Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X2_test/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-20T20:04:41Z", + "updatedAt": "2024-04-01T02:23:10Z", + "name": "X2 Config 4", + "owner": "OpenRobotics", + "description": "The X2 robot for SubT.", + "likes": 0, + "downloads": 2282, + "filesize": 725782, + "upload_date": "2019-05-20T20:04:35Z", + "modify_date": "2023-09-27T16:33:29Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X2%20Config%204/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "vehicle", + "subt", + "ugv", + "ground" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-20T18:57:23Z", + "updatedAt": "2024-04-01T02:22:50Z", + "name": "X2 Config 3", + "owner": "OpenRobotics", + "description": "The X2 robot for SubT.", + "likes": 0, + "downloads": 2246, + "filesize": 725780, + "upload_date": "2019-05-20T18:57:18Z", + "modify_date": "2023-09-27T16:33:38Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X2%20Config%203/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "vehicle", + "subt", + "ugv", + "ground" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-20T18:47:05Z", + "updatedAt": "2024-04-01T02:22:55Z", + "name": "X2 Config 2", + "owner": "OpenRobotics", + "description": "The X2 robot for SubT.", + "likes": 0, + "downloads": 2312, + "filesize": 725782, + "upload_date": "2019-05-20T18:46:59Z", + "modify_date": "2023-09-27T16:33:48Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X2%20Config%202/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "vehicle", + "subt", + "ugv", + "ground" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-18T02:02:23Z", + "updatedAt": "2024-04-04T04:14:34Z", + "name": "X2 Config 1", + "owner": "OpenRobotics", + "description": "The X2 robot for SubT.", + "likes": 0, + "downloads": 95395, + "filesize": 725779, + "upload_date": "2019-05-18T02:02:18Z", + "modify_date": "2023-09-27T16:34:13Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X2%20Config%201/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "vehicle", + "subt", + "ugv", + "ground" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-18T01:31:37Z", + "updatedAt": "2024-04-01T02:23:02Z", + "name": "X1 Config 4", + "owner": "OpenRobotics", + "description": "The X1 robot for SubT.", + "likes": 0, + "downloads": 2452, + "filesize": 973221, + "upload_date": "2019-05-18T01:31:32Z", + "modify_date": "2023-09-27T16:34:25Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X1%20Config%204/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "vehicle", + "subt", + "ugv", + "ground" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-18T01:25:11Z", + "updatedAt": "2024-04-01T02:22:48Z", + "name": "X1 Config 3", + "owner": "OpenRobotics", + "description": "The X1 robot for SubT.", + "likes": 0, + "downloads": 2416, + "filesize": 973216, + "upload_date": "2019-05-18T01:25:07Z", + "modify_date": "2023-09-27T16:34:38Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X1%20Config%203/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "vehicle", + "subt", + "ugv", + "ground" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-18T00:32:17Z", + "updatedAt": "2024-04-01T02:23:01Z", + "name": "X1 Config 2", + "owner": "OpenRobotics", + "description": "The X1 robot for SubT.", + "likes": 0, + "downloads": 2381, + "filesize": 971154, + "upload_date": "2019-05-18T00:32:13Z", + "modify_date": "2023-09-27T16:34:48Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X1%20Config%202/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "vehicle", + "subt", + "ugv", + "ground" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-18T00:17:24Z", + "updatedAt": "2024-04-01T02:23:35Z", + "name": "X1 Config 1", + "owner": "OpenRobotics", + "description": "The X1 robot for SubT.", + "likes": 0, + "downloads": 3494, + "filesize": 971144, + "upload_date": "2019-05-18T00:17:20Z", + "modify_date": "2023-09-27T16:34:59Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X1%20Config%201/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "vehicle", + "subt", + "ugv", + "ground" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-15T02:36:33Z", + "updatedAt": "2024-03-12T02:51:56Z", + "name": "X4_test", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 65, + "filesize": 8430036, + "upload_date": "2019-05-15T02:36:17Z", + "modify_date": "2019-05-22T00:40:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X4_test/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-15T02:35:35Z", + "updatedAt": "2024-03-12T02:52:07Z", + "name": "X3_test", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 65, + "filesize": 10834873, + "upload_date": "2019-05-15T02:35:21Z", + "modify_date": "2019-05-22T00:38:46Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X3_test/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-15T02:31:44Z", + "updatedAt": "2024-03-12T02:52:22Z", + "name": "X1_test", + "owner": "azeey", + "description": "", + "likes": 0, + "downloads": 73, + "filesize": 1843084, + "upload_date": "2019-05-15T02:31:40Z", + "modify_date": "2019-05-15T02:31:40Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/azeey/models/X1_test/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-05-14T00:18:26Z", + "updatedAt": "2024-04-02T18:06:03Z", + "name": "Samsung J8 Black", + "owner": "OpenRobotics", + "description": "A black Samsung J8 phone.", + "likes": 0, + "downloads": 4955, + "filesize": 353130, + "upload_date": "2019-05-14T00:18:23Z", + "modify_date": "2023-09-27T16:35:09Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Samsung%20J8%20Black/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "artifact" + ] + }, + { + "createdAt": "2019-05-13T23:25:36Z", + "updatedAt": "2024-04-01T18:48:06Z", + "name": "JanSport Backpack Red", + "owner": "OpenRobotics", + "description": "Red JanSport backpack.", + "likes": 0, + "downloads": 4780, + "filesize": 485259, + "upload_date": "2019-05-13T23:25:33Z", + "modify_date": "2023-09-27T16:35:15Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/JanSport%20Backpack%20Red/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "artifact" + ] + }, + { + "createdAt": "2019-05-13T23:25:11Z", + "updatedAt": "2024-04-03T22:43:34Z", + "name": "Rescue Randy Sitting", + "owner": "OpenRobotics", + "description": "A static rescue randy model in the sitting position.", + "likes": 0, + "downloads": 8136, + "filesize": 2951678, + "upload_date": "2019-05-13T23:25:08Z", + "modify_date": "2023-09-27T16:35:22Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rescue%20Randy%20Sitting/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "artifact" + ] + }, + { + "createdAt": "2019-05-13T23:24:46Z", + "updatedAt": "2024-04-02T18:02:56Z", + "name": "Black and Decker Cordless Drill", + "owner": "OpenRobotics", + "description": "An orange Black and Decker cordless drill.", + "likes": 1, + "downloads": 3814, + "filesize": 424710, + "upload_date": "2019-05-13T23:24:43Z", + "modify_date": "2023-09-27T16:35:29Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Black%20and%20Decker%20Cordless%20Drill/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "artifact" + ] + }, + { + "createdAt": "2019-05-13T23:24:22Z", + "updatedAt": "2024-04-03T17:26:57Z", + "name": "Fire Extinguisher", + "owner": "OpenRobotics", + "description": "A fire extinguisher", + "likes": 0, + "downloads": 3926, + "filesize": 273945, + "upload_date": "2019-05-13T23:24:19Z", + "modify_date": "2023-09-27T16:35:34Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fire%20Extinguisher/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "artifact" + ] + }, + { + "createdAt": "2019-05-10T22:29:16Z", + "updatedAt": "2024-04-01T02:23:34Z", + "name": "Urban Straight", + "owner": "OpenRobotics", + "description": "Straight section of subway tunnel.", + "likes": 0, + "downloads": 1893, + "filesize": 690042, + "upload_date": "2019-05-10T22:29:11Z", + "modify_date": "2023-09-27T16:35:41Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Straight/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-05-06T23:34:53Z", + "updatedAt": "2024-04-01T02:23:32Z", + "name": "Edgar Mine Virtual STIX", + "owner": "OpenRobotics", + "description": "A section of the Edgar Mine for use during the SubT Challenge Virtual STIX competition.", + "likes": 1, + "downloads": 5262, + "filesize": 29381431, + "upload_date": "2019-05-06T23:34:40Z", + "modify_date": "2023-09-27T16:35:55Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Edgar%20Mine%20Virtual%20STIX/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-05-01T22:10:05Z", + "updatedAt": "2024-04-03T03:27:08Z", + "name": "Rescue Randy", + "owner": "OpenRobotics", + "description": "A static rescue randy model.", + "likes": 0, + "downloads": 4364, + "filesize": 10967168, + "upload_date": "2019-05-01T22:10:01Z", + "modify_date": "2023-09-27T16:36:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rescue%20Randy/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2019-05-01T21:45:27Z", + "updatedAt": "2024-04-01T17:52:58Z", + "name": "X4 UAV", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 1105, + "filesize": 21828428, + "upload_date": "2019-05-01T21:45:11Z", + "modify_date": "2023-09-27T16:39:45Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X4%20UAV/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "UAV" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-05-01T21:44:11Z", + "updatedAt": "2024-04-04T05:20:57Z", + "name": "X3 UAV", + "owner": "OpenRobotics", + "description": "", + "likes": 2, + "downloads": 10934, + "filesize": 21555096, + "upload_date": "2019-05-01T21:43:56Z", + "modify_date": "2023-09-27T16:40:38Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X3%20UAV/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "UAV" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-04-22T23:55:33Z", + "updatedAt": "2024-03-31T03:32:38Z", + "name": "Rescue Randy", + "owner": "iche033", + "description": "A static rescue randy model.", + "likes": 0, + "downloads": 5465, + "filesize": 9442906, + "upload_date": "2019-04-22T23:55:28Z", + "modify_date": "2023-09-21T01:10:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/iche033/models/Rescue%20Randy/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-03-28T20:41:23Z", + "updatedAt": "2024-04-01T02:24:19Z", + "name": "X1 UGV", + "owner": "OpenRobotics", + "description": "The X1 robot for SubT.", + "likes": 0, + "downloads": 1617, + "filesize": 918595, + "upload_date": "2019-03-28T20:41:19Z", + "modify_date": "2023-09-27T16:41:39Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X1%20UGV/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-03-28T20:40:29Z", + "updatedAt": "2024-04-01T02:24:12Z", + "name": "X2 UGV", + "owner": "OpenRobotics", + "description": "The X2 robot for SubT.", + "likes": 0, + "downloads": 1066, + "filesize": 711897, + "upload_date": "2019-03-28T20:40:25Z", + "modify_date": "2023-09-27T16:42:01Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/X2%20UGV/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "ugv" + ], + "categories": [ + "Robots" + ] + }, + { + "createdAt": "2019-03-28T00:21:24Z", + "updatedAt": "2024-03-12T14:59:33Z", + "name": "Caving Helmet", + "owner": "OpenRobotics", + "description": "A caving helmet", + "likes": 0, + "downloads": 62, + "filesize": 4076475, + "upload_date": "2019-03-28T00:21:21Z", + "modify_date": "2023-09-27T16:42:13Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Caving%20Helmet/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "static", + "helmet", + "cave" + ] + }, + { + "createdAt": "2019-03-27T16:55:03Z", + "updatedAt": "2024-04-01T04:02:05Z", + "name": "Exit sign", + "owner": "OpenRobotics", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 982, + "filesize": 216236, + "upload_date": "2019-03-27T16:55:00Z", + "modify_date": "2023-09-27T16:42:19Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Exit%20sign/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "static", + "building", + "sign", + "interior" + ] + }, + { + "createdAt": "2019-03-21T21:50:50Z", + "updatedAt": "2024-03-12T14:59:20Z", + "name": "edgar", + "owner": "OpenRobotics", + "description": "A section of the Edgar Experimental Mine.", + "likes": 0, + "downloads": 99, + "filesize": 60811172, + "upload_date": "2019-03-21T21:50:34Z", + "modify_date": "2023-09-27T16:42:32Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/edgar/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-03-05T17:30:48Z", + "updatedAt": "2024-04-01T02:24:11Z", + "name": "Urban Bend Left", + "owner": "OpenRobotics", + "description": "Left bend subway tunnel.", + "likes": 0, + "downloads": 1733, + "filesize": 1343363, + "upload_date": "2019-03-05T17:30:42Z", + "modify_date": "2023-09-27T16:43:20Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Bend%20Left/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-03-05T17:30:33Z", + "updatedAt": "2024-04-01T02:24:04Z", + "name": "Urban Bend Right", + "owner": "OpenRobotics", + "description": "Right bend subway tunnel.", + "likes": 0, + "downloads": 1719, + "filesize": 1293864, + "upload_date": "2019-03-05T17:30:27Z", + "modify_date": "2023-09-27T16:43:28Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Bend%20Right/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-03-05T17:30:18Z", + "updatedAt": "2024-04-02T20:19:25Z", + "name": "Urban Station", + "owner": "OpenRobotics", + "description": "A subway station.", + "likes": 0, + "downloads": 1514, + "filesize": 6264837, + "upload_date": "2019-03-05T17:30:06Z", + "modify_date": "2023-09-27T16:43:38Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%20Station/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-03-05T17:29:48Z", + "updatedAt": "2024-04-01T02:24:37Z", + "name": "Urban 4way Intersection", + "owner": "OpenRobotics", + "description": "4-way subway intersection.", + "likes": 0, + "downloads": 1010, + "filesize": 1511950, + "upload_date": "2019-03-05T17:29:42Z", + "modify_date": "2023-09-27T16:43:57Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Urban%204way%20Intersection/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-30T16:37:48Z", + "updatedAt": "2024-03-12T02:16:55Z", + "name": "Tunnel Bend Right(copy)", + "owner": "OpenRobotics", + "description": "A bend right section of a tunnel", + "likes": 0, + "downloads": 34, + "filesize": 6006861, + "upload_date": "2019-01-30T16:37:45Z", + "modify_date": "2023-09-27T16:44:57Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Bend%20Right%28copy%29/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T23:20:32Z", + "updatedAt": "2024-04-03T17:18:11Z", + "name": "subt_tunnel_staging_area", + "owner": "OpenRobotics", + "description": "A staging area designed for subt tunnel scenarios.", + "likes": 0, + "downloads": 6863, + "filesize": 5696730, + "upload_date": "2019-01-29T23:20:28Z", + "modify_date": "2023-09-27T16:45:10Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/subt_tunnel_staging_area/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:49:44Z", + "updatedAt": "2024-03-12T02:16:57Z", + "name": "Cave Tile 10", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 34, + "filesize": 115596, + "upload_date": "2019-01-29T18:49:42Z", + "modify_date": "2023-09-27T16:45:19Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tile%2010/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:49:36Z", + "updatedAt": "2024-03-12T02:16:58Z", + "name": "Rocky Tunnel Tile 1", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 36, + "filesize": 104943, + "upload_date": "2019-01-29T18:49:32Z", + "modify_date": "2023-09-27T16:45:23Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rocky%20Tunnel%20Tile%201/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:49:25Z", + "updatedAt": "2024-03-12T02:16:59Z", + "name": "Cave Tile 4", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 32, + "filesize": 97289, + "upload_date": "2019-01-29T18:49:22Z", + "modify_date": "2023-09-27T16:45:29Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tile%204/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:49:17Z", + "updatedAt": "2024-03-12T02:16:59Z", + "name": "cave_3way_20m", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 29, + "filesize": 534468, + "upload_date": "2019-01-29T18:49:15Z", + "modify_date": "2023-09-27T16:45:35Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/cave_3way_20m/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:49:09Z", + "updatedAt": "2024-03-12T02:17:00Z", + "name": "Cave Tile 6", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 33, + "filesize": 101068, + "upload_date": "2019-01-29T18:49:06Z", + "modify_date": "2023-09-27T16:45:40Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tile%206/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:49:01Z", + "updatedAt": "2024-03-12T02:17:01Z", + "name": "Cave Tile 8", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 26, + "filesize": 108266, + "upload_date": "2019-01-29T18:48:59Z", + "modify_date": "2023-09-27T16:45:47Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tile%208/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:48:53Z", + "updatedAt": "2024-03-28T21:21:21Z", + "name": "Tunnel Entrance", + "owner": "OpenRobotics", + "description": "An entrace to a tunnel.", + "likes": 0, + "downloads": 417, + "filesize": 47622, + "upload_date": "2019-01-29T18:48:50Z", + "modify_date": "2023-09-27T16:45:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Entrance/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:48:43Z", + "updatedAt": "2024-04-01T02:24:45Z", + "name": "Cave Tile Blocker", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 905, + "filesize": 67279, + "upload_date": "2019-01-29T18:48:41Z", + "modify_date": "2023-09-27T16:45:56Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tile%20Blocker/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:48:36Z", + "updatedAt": "2024-04-01T02:24:32Z", + "name": "Lidar 2d v1", + "owner": "OpenRobotics", + "description": "A generic planar lidar.", + "likes": 0, + "downloads": 994, + "filesize": 127556, + "upload_date": "2019-01-29T18:48:33Z", + "modify_date": "2023-09-27T16:46:01Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Lidar%202d%20v1/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:48:28Z", + "updatedAt": "2024-04-01T02:24:47Z", + "name": "Tunnel Bend Right", + "owner": "OpenRobotics", + "description": "A bend right section of a tunnel", + "likes": 0, + "downloads": 939, + "filesize": 234504, + "upload_date": "2019-01-29T18:48:24Z", + "modify_date": "2023-09-27T16:46:07Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Bend%20Right/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:48:18Z", + "updatedAt": "2024-04-01T02:24:52Z", + "name": "Rough Tunnel Tile Vertical Shaft", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 2358, + "filesize": 705715, + "upload_date": "2019-01-29T18:48:15Z", + "modify_date": "2023-09-27T16:46:14Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rough%20Tunnel%20Tile%20Vertical%20Shaft/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel" + ] + }, + { + "createdAt": "2019-01-29T18:47:59Z", + "updatedAt": "2024-04-03T08:40:21Z", + "name": "Radio", + "owner": "OpenRobotics", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 4127, + "filesize": 203820, + "upload_date": "2019-01-29T18:47:57Z", + "modify_date": "2023-09-27T16:46:22Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Radio/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:47:51Z", + "updatedAt": "2024-04-03T10:51:32Z", + "name": "Constrained Tunnel Tile Tall", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 3217, + "filesize": 128904, + "upload_date": "2019-01-29T18:47:45Z", + "modify_date": "2023-09-27T16:46:28Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Constrained%20Tunnel%20Tile%20Tall/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel" + ] + }, + { + "createdAt": "2019-01-29T18:47:36Z", + "updatedAt": "2024-04-01T02:25:12Z", + "name": "Cave Tile 5", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 897, + "filesize": 59855, + "upload_date": "2019-01-29T18:47:34Z", + "modify_date": "2023-09-27T16:46:33Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tile%205/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:47:29Z", + "updatedAt": "2024-04-01T02:25:21Z", + "name": "Lidar 3d v2", + "owner": "OpenRobotics", + "description": "A generic 3d lidar.", + "likes": 1, + "downloads": 997, + "filesize": 605098, + "upload_date": "2019-01-29T18:47:26Z", + "modify_date": "2023-09-27T16:46:39Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Lidar%203d%20v2/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:47:20Z", + "updatedAt": "2024-03-12T02:17:08Z", + "name": "Cave Tile Ramp", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 35, + "filesize": 92799, + "upload_date": "2019-01-29T18:47:18Z", + "modify_date": "2023-09-27T16:46:44Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tile%20Ramp/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:47:12Z", + "updatedAt": "2024-04-01T02:25:42Z", + "name": "Cave Tile 7", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 890, + "filesize": 59500, + "upload_date": "2019-01-29T18:47:10Z", + "modify_date": "2023-09-27T16:46:49Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tile%207/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:47:05Z", + "updatedAt": "2024-04-03T08:44:37Z", + "name": "Valve", + "owner": "OpenRobotics", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 1465, + "filesize": 4064300, + "upload_date": "2019-01-29T18:47:02Z", + "modify_date": "2023-09-27T16:46:57Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Valve/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:46:55Z", + "updatedAt": "2024-04-01T02:25:47Z", + "name": "Rough Tunnel Tile 90-degree Turn", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 4042, + "filesize": 791895, + "upload_date": "2019-01-29T18:46:53Z", + "modify_date": "2023-09-27T16:47:05Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rough%20Tunnel%20Tile%2090-degree%20Turn/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel" + ] + }, + { + "createdAt": "2019-01-29T18:46:46Z", + "updatedAt": "2024-03-12T02:17:12Z", + "name": "cave_straight_40m", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 29, + "filesize": 381983, + "upload_date": "2019-01-29T18:46:44Z", + "modify_date": "2023-09-27T16:47:17Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/cave_straight_40m/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:46:38Z", + "updatedAt": "2024-04-01T02:25:20Z", + "name": "Tunnel Corner Left", + "owner": "OpenRobotics", + "description": "A left corner section of a tunnel.", + "likes": 0, + "downloads": 940, + "filesize": 170104, + "upload_date": "2019-01-29T18:46:35Z", + "modify_date": "2023-09-27T16:47:22Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Corner%20Left/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:46:28Z", + "updatedAt": "2024-04-01T02:25:18Z", + "name": "RGBD Camera", + "owner": "OpenRobotics", + "description": "A generic RGBD camera.", + "likes": 0, + "downloads": 1003, + "filesize": 105525, + "upload_date": "2019-01-29T18:46:26Z", + "modify_date": "2023-09-27T16:47:27Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/RGBD%20Camera/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:46:20Z", + "updatedAt": "2024-04-02T12:35:23Z", + "name": "Base Station", + "owner": "OpenRobotics", + "description": "The base station receives the artifact reports from the robots.", + "likes": 1, + "downloads": 4763, + "filesize": 376029, + "upload_date": "2019-01-29T18:46:17Z", + "modify_date": "2023-09-27T16:47:39Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Base%20Station/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:46:11Z", + "updatedAt": "2024-03-23T21:33:12Z", + "name": "Gate", + "owner": "OpenRobotics", + "description": "A colored gateway.", + "likes": 1, + "downloads": 100, + "filesize": 301738, + "upload_date": "2019-01-29T18:46:08Z", + "modify_date": "2023-09-27T16:47:48Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Gate/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:46:02Z", + "updatedAt": "2024-04-01T02:25:16Z", + "name": "Rough Tunnel Tile Ramp", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 3295, + "filesize": 657575, + "upload_date": "2019-01-29T18:46:00Z", + "modify_date": "2023-09-27T16:47:57Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rough%20Tunnel%20Tile%20Ramp/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel" + ] + }, + { + "createdAt": "2019-01-29T18:45:53Z", + "updatedAt": "2024-03-12T02:17:17Z", + "name": "Staging Area", + "owner": "OpenRobotics", + "description": "A staging area designed for tunnel scenarios.", + "likes": 0, + "downloads": 384, + "filesize": 81965, + "upload_date": "2019-01-29T18:45:51Z", + "modify_date": "2023-09-27T16:48:04Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Staging%20Area/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:44:54Z", + "updatedAt": "2024-03-12T02:17:17Z", + "name": "Duct", + "owner": "OpenRobotics", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 61, + "filesize": 1198033, + "upload_date": "2019-01-29T18:44:51Z", + "modify_date": "2023-09-27T16:48:11Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Duct/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:44:45Z", + "updatedAt": "2024-04-03T08:42:16Z", + "name": "Toolbox", + "owner": "OpenRobotics", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 1664, + "filesize": 1576101, + "upload_date": "2019-01-29T18:44:43Z", + "modify_date": "2023-09-27T16:48:19Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Toolbox/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:44:37Z", + "updatedAt": "2024-03-12T02:17:19Z", + "name": "Survivor Female", + "owner": "OpenRobotics", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 1, + "downloads": 150, + "filesize": 1556517, + "upload_date": "2019-01-29T18:44:34Z", + "modify_date": "2023-09-27T16:48:26Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Survivor%20Female/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:44:28Z", + "updatedAt": "2024-03-12T02:17:20Z", + "name": "Subway Station", + "owner": "OpenRobotics", + "description": "A subway station", + "likes": 0, + "downloads": 47, + "filesize": 1376977, + "upload_date": "2019-01-29T18:44:25Z", + "modify_date": "2023-09-27T16:48:34Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Subway%20Station/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:44:18Z", + "updatedAt": "2024-04-01T02:25:31Z", + "name": "Lidar 2d v2", + "owner": "OpenRobotics", + "description": "A generic planar lidar.", + "likes": 0, + "downloads": 1034, + "filesize": 257266, + "upload_date": "2019-01-29T18:44:15Z", + "modify_date": "2023-09-27T16:48:41Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Lidar%202d%20v2/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:44:09Z", + "updatedAt": "2024-04-03T10:50:28Z", + "name": "Tunnel Tile 5", + "owner": "OpenRobotics", + "description": "A straight tunnel tile", + "likes": 1, + "downloads": 4775, + "filesize": 433361, + "upload_date": "2019-01-29T18:44:07Z", + "modify_date": "2023-09-27T16:48:47Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%205/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel" + ] + }, + { + "createdAt": "2019-01-29T18:44:01Z", + "updatedAt": "2024-04-03T10:56:53Z", + "name": "Constrained Tunnel Tile Short", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 3947, + "filesize": 123703, + "upload_date": "2019-01-29T18:43:59Z", + "modify_date": "2023-09-27T16:48:53Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Constrained%20Tunnel%20Tile%20Short/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel" + ] + }, + { + "createdAt": "2019-01-29T18:43:53Z", + "updatedAt": "2024-04-04T03:11:02Z", + "name": "Backpack", + "owner": "OpenRobotics", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 112023, + "filesize": 1778225, + "upload_date": "2019-01-29T18:43:50Z", + "modify_date": "2023-09-27T16:49:00Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Backpack/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:43:44Z", + "updatedAt": "2024-03-31T03:30:08Z", + "name": "hatch", + "owner": "OpenRobotics", + "description": "A hatch used in the DARPA Subterranean Challenge (SubT).", + "likes": 0, + "downloads": 65, + "filesize": 3590850, + "upload_date": "2019-01-29T18:43:41Z", + "modify_date": "2023-09-27T16:49:08Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/hatch/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:43:35Z", + "updatedAt": "2024-03-12T02:17:24Z", + "name": "cave_straight_80m", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 36, + "filesize": 484372, + "upload_date": "2019-01-29T18:43:33Z", + "modify_date": "2023-09-27T16:49:15Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/cave_straight_80m/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:43:27Z", + "updatedAt": "2024-04-01T02:25:39Z", + "name": "Tunnel Intersection T", + "owner": "OpenRobotics", + "description": "Tunnel intersection T.", + "likes": 0, + "downloads": 935, + "filesize": 150911, + "upload_date": "2019-01-29T18:43:23Z", + "modify_date": "2023-09-27T16:49:20Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Intersection%20T/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:43:17Z", + "updatedAt": "2024-04-01T02:25:42Z", + "name": "Tunnel Straight", + "owner": "OpenRobotics", + "description": "A straight section of a tunnel.", + "likes": 0, + "downloads": 928, + "filesize": 159116, + "upload_date": "2019-01-29T18:43:13Z", + "modify_date": "2023-09-27T16:49:24Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Straight/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:43:06Z", + "updatedAt": "2024-03-28T10:59:14Z", + "name": "Cave Tile 1", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 32, + "filesize": 104943, + "upload_date": "2019-01-29T18:43:04Z", + "modify_date": "2023-09-27T16:49:29Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tile%201/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:42:59Z", + "updatedAt": "2024-03-12T02:17:27Z", + "name": "Survivor Male", + "owner": "OpenRobotics", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 1, + "downloads": 126, + "filesize": 1476330, + "upload_date": "2019-01-29T18:42:56Z", + "modify_date": "2023-09-27T16:49:36Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Survivor%20Male/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:42:50Z", + "updatedAt": "2024-03-12T02:17:28Z", + "name": "cave_L_20m", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 38, + "filesize": 419919, + "upload_date": "2019-01-29T18:42:47Z", + "modify_date": "2023-09-27T16:49:43Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/cave_L_20m/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:42:41Z", + "updatedAt": "2024-04-03T10:55:49Z", + "name": "Tunnel Tile 7", + "owner": "OpenRobotics", + "description": "A vertical shaft tunnel tile segment", + "likes": 0, + "downloads": 4246, + "filesize": 376185, + "upload_date": "2019-01-29T18:42:39Z", + "modify_date": "2023-09-27T16:49:49Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%207/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel" + ] + }, + { + "createdAt": "2019-01-29T18:42:33Z", + "updatedAt": "2024-03-12T02:17:30Z", + "name": "cave_4way_20m", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 30, + "filesize": 1750069, + "upload_date": "2019-01-29T18:42:30Z", + "modify_date": "2023-09-27T16:49:56Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/cave_4way_20m/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:42:24Z", + "updatedAt": "2024-03-28T21:51:36Z", + "name": "Cave Tile Start", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 25, + "filesize": 100545, + "upload_date": "2019-01-29T18:42:21Z", + "modify_date": "2023-09-27T16:50:02Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tile%20Start/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:42:16Z", + "updatedAt": "2024-04-01T02:26:16Z", + "name": "Lidar 3d v1", + "owner": "OpenRobotics", + "description": "A generic 3d lidar.", + "likes": 0, + "downloads": 1169, + "filesize": 240637, + "upload_date": "2019-01-29T18:42:13Z", + "modify_date": "2023-09-27T16:50:07Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Lidar%203d%20v1/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:42:07Z", + "updatedAt": "2024-04-03T10:54:41Z", + "name": "Tunnel Tile 6", + "owner": "OpenRobotics", + "description": "A straight tunnel tile with elevation change", + "likes": 0, + "downloads": 3794, + "filesize": 499902, + "upload_date": "2019-01-29T18:42:05Z", + "modify_date": "2023-09-27T16:50:13Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%206/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel", + "ramp" + ] + }, + { + "createdAt": "2019-01-29T18:41:59Z", + "updatedAt": "2024-04-01T02:26:08Z", + "name": "Rough Tunnel Tile 4-way Intersection", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 4450, + "filesize": 1149886, + "upload_date": "2019-01-29T18:41:56Z", + "modify_date": "2023-09-27T16:50:21Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rough%20Tunnel%20Tile%204-way%20Intersection/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel" + ] + }, + { + "createdAt": "2019-01-29T18:41:49Z", + "updatedAt": "2024-04-03T08:42:12Z", + "name": "Phone", + "owner": "OpenRobotics", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 1656, + "filesize": 1120073, + "upload_date": "2019-01-29T18:41:47Z", + "modify_date": "2023-09-27T16:50:30Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Phone/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:41:41Z", + "updatedAt": "2024-04-04T05:46:06Z", + "name": "Electrical Box", + "owner": "OpenRobotics", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 5866, + "filesize": 564257, + "upload_date": "2019-01-29T18:41:38Z", + "modify_date": "2023-09-27T16:50:36Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Electrical%20Box/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:41:33Z", + "updatedAt": "2024-04-01T02:26:04Z", + "name": "Tunnel Tile 3", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 2073, + "filesize": 272946, + "upload_date": "2019-01-29T18:41:30Z", + "modify_date": "2023-09-27T16:50:41Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%203/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2019-01-29T18:41:24Z", + "updatedAt": "2024-04-03T17:25:56Z", + "name": "Fiducial", + "owner": "OpenRobotics", + "description": "A fiducial.", + "likes": 0, + "downloads": 5090, + "filesize": 508, + "upload_date": "2019-01-29T18:41:23Z", + "modify_date": "2023-09-27T16:50:45Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2019-01-29T18:41:18Z", + "updatedAt": "2024-04-03T17:28:23Z", + "name": "Tunnel Tile Blocker", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 6475, + "filesize": 165295, + "upload_date": "2019-01-29T18:41:16Z", + "modify_date": "2023-09-27T16:50:48Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%20Blocker/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2019-01-29T18:41:10Z", + "updatedAt": "2024-04-01T02:26:14Z", + "name": "Tunnel Corner Right", + "owner": "OpenRobotics", + "description": "A right corner section of a tunnel", + "likes": 0, + "downloads": 917, + "filesize": 170093, + "upload_date": "2019-01-29T18:41:06Z", + "modify_date": "2023-09-27T16:50:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Corner%20Right/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:41:00Z", + "updatedAt": "2024-04-01T02:26:15Z", + "name": "Tunnel Tile 4", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 2845, + "filesize": 930521, + "upload_date": "2019-01-29T18:40:57Z", + "modify_date": "2023-09-27T16:50:58Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%204/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel" + ] + }, + { + "createdAt": "2019-01-29T18:40:51Z", + "updatedAt": "2024-04-03T08:42:20Z", + "name": "Extinguisher", + "owner": "OpenRobotics", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 1574, + "filesize": 457496, + "upload_date": "2019-01-29T18:40:49Z", + "modify_date": "2023-09-27T16:51:05Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Extinguisher/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:40:43Z", + "updatedAt": "2024-03-12T02:17:39Z", + "name": "cave_straight_20m", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 31, + "filesize": 386945, + "upload_date": "2019-01-29T18:40:41Z", + "modify_date": "2023-09-27T16:51:10Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/cave_straight_20m/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:40:35Z", + "updatedAt": "2024-03-12T02:17:40Z", + "name": "Cave Tile 2", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 29, + "filesize": 83237, + "upload_date": "2019-01-29T18:40:33Z", + "modify_date": "2023-09-27T16:51:14Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tile%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:40:27Z", + "updatedAt": "2024-04-01T02:26:30Z", + "name": "Tunnel Intersection", + "owner": "OpenRobotics", + "description": "Tunnel intersection.", + "likes": 0, + "downloads": 925, + "filesize": 180028, + "upload_date": "2019-01-29T18:40:24Z", + "modify_date": "2023-09-27T16:51:19Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Intersection/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:40:17Z", + "updatedAt": "2024-04-01T02:26:33Z", + "name": "Rough Tunnel Tile Straight", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 3539, + "filesize": 680489, + "upload_date": "2019-01-29T18:40:15Z", + "modify_date": "2023-09-27T16:51:24Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rough%20Tunnel%20Tile%20Straight/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel" + ] + }, + { + "createdAt": "2019-01-29T18:40:08Z", + "updatedAt": "2024-03-12T02:17:42Z", + "name": "Cave Tile 3", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 33, + "filesize": 78562, + "upload_date": "2019-01-29T18:40:06Z", + "modify_date": "2023-09-27T16:51:30Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tile%203/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:40:00Z", + "updatedAt": "2024-04-03T08:36:11Z", + "name": "Tunnel Tile 2", + "owner": "OpenRobotics", + "description": "A 90 degree bend tunnel tile", + "likes": 0, + "downloads": 5504, + "filesize": 463564, + "upload_date": "2019-01-29T18:39:58Z", + "modify_date": "2023-09-27T16:51:35Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Tile%202/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt", + "tunnel" + ] + }, + { + "createdAt": "2019-01-29T18:39:52Z", + "updatedAt": "2024-04-01T02:26:27Z", + "name": "Tunnel Elevation", + "owner": "OpenRobotics", + "description": "Tunnel elevation.", + "likes": 0, + "downloads": 935, + "filesize": 156325, + "upload_date": "2019-01-29T18:39:48Z", + "modify_date": "2023-09-27T16:51:41Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tunnel%20Elevation/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:39:42Z", + "updatedAt": "2024-03-28T22:00:02Z", + "name": "indian_tunnel", + "owner": "OpenRobotics", + "description": "A sample model of the Indian Tunnel, the world's biggest lava tube on Earth.", + "likes": 0, + "downloads": 74, + "filesize": 352010, + "upload_date": "2019-01-29T18:39:40Z", + "modify_date": "2023-09-27T16:51:46Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/indian_tunnel/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2019-01-29T18:39:34Z", + "updatedAt": "2024-04-01T02:26:34Z", + "name": "Cave Tile 9", + "owner": "OpenRobotics", + "description": "", + "likes": 0, + "downloads": 903, + "filesize": 80083, + "upload_date": "2019-01-29T18:39:32Z", + "modify_date": "2023-09-27T16:51:50Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cave%20Tile%209/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2019-01-29T18:29:33Z", + "updatedAt": "2024-04-01T02:26:34Z", + "name": "tunnel_bend_left", + "owner": "OpenRobotics", + "description": "A bend left section of a tunnel", + "likes": 0, + "downloads": 923, + "filesize": 534598, + "upload_date": "2019-01-29T18:29:29Z", + "modify_date": "2023-09-27T16:51:57Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/tunnel_bend_left/tip/files/thumbnails/1.jpg", + "private": false, + "tags": [ + "subt" + ] + }, + { + "createdAt": "2018-12-05T06:08:27Z", + "updatedAt": "2024-04-01T15:51:06Z", + "name": "Bumper", + "owner": "rahulbhadani", + "description": "A road bumper for speed break", + "likes": 1, + "downloads": 792, + "filesize": 7699725, + "upload_date": "2018-12-05T06:08:23Z", + "modify_date": "2018-12-05T06:08:23Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/rahulbhadani/models/Bumper/tip/files/thumbnails/bumperthumb.png", + "private": false, + "tags": [ + "road", + "bumper", + "traffic" + ] + }, + { + "createdAt": "2018-09-25T23:40:37Z", + "updatedAt": "2024-03-12T07:34:31Z", + "name": "Lidar 3d v2", + "owner": "nate", + "description": "A generic 3d lidar.", + "likes": 0, + "downloads": 126, + "filesize": 1102456, + "upload_date": "2018-09-25T23:40:34Z", + "modify_date": "2023-09-22T16:07:33Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Lidar%203d%20v2/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:40:13Z", + "updatedAt": "2024-03-31T19:45:02Z", + "name": "Valve", + "owner": "nate", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 164, + "filesize": 4064300, + "upload_date": "2018-09-25T23:40:10Z", + "modify_date": "2023-09-22T16:07:42Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Valve/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:40:02Z", + "updatedAt": "2024-03-12T07:35:04Z", + "name": "cave_straight_40m", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 69, + "filesize": 381983, + "upload_date": "2018-09-25T23:40:00Z", + "modify_date": "2023-09-22T16:07:48Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/cave_straight_40m/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:39:44Z", + "updatedAt": "2024-03-12T07:35:29Z", + "name": "slide-mine", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 54, + "filesize": 23854, + "upload_date": "2018-09-25T23:39:42Z", + "modify_date": "2023-09-22T16:07:53Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/slide-mine/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:39:36Z", + "updatedAt": "2024-03-12T07:35:51Z", + "name": "slide-starterkit", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 32, + "filesize": 21641, + "upload_date": "2018-09-25T23:39:34Z", + "modify_date": "2023-09-22T16:07:57Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/slide-starterkit/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:39:29Z", + "updatedAt": "2024-03-12T07:36:12Z", + "name": "slide-score", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 28, + "filesize": 50957, + "upload_date": "2018-09-25T23:39:26Z", + "modify_date": "2023-09-22T16:08:02Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/slide-score/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:39:21Z", + "updatedAt": "2024-03-29T05:35:26Z", + "name": "RGBD Camera", + "owner": "nate", + "description": "A generic RGBD camera.", + "likes": 0, + "downloads": 115, + "filesize": 451354, + "upload_date": "2018-09-25T23:39:19Z", + "modify_date": "2023-09-22T16:08:08Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/RGBD%20Camera/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:39:13Z", + "updatedAt": "2024-03-21T00:03:40Z", + "name": "Gate", + "owner": "nate", + "description": "A colored gateway.", + "likes": 0, + "downloads": 250, + "filesize": 301738, + "upload_date": "2018-09-25T23:39:10Z", + "modify_date": "2023-09-22T16:08:14Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Gate/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:39:05Z", + "updatedAt": "2024-03-24T01:19:36Z", + "name": "slide-urban", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 72, + "filesize": 30988, + "upload_date": "2018-09-25T23:39:02Z", + "modify_date": "2023-09-22T16:08:20Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/slide-urban/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:38:57Z", + "updatedAt": "2024-03-12T07:37:24Z", + "name": "Duct", + "owner": "nate", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 154, + "filesize": 1198033, + "upload_date": "2018-09-25T23:38:54Z", + "modify_date": "2023-09-22T16:08:26Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Duct/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:38:48Z", + "updatedAt": "2024-03-23T11:14:18Z", + "name": "Toolbox", + "owner": "nate", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 1, + "downloads": 213, + "filesize": 1576101, + "upload_date": "2018-09-25T23:38:46Z", + "modify_date": "2023-09-22T16:08:35Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Toolbox/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:38:40Z", + "updatedAt": "2024-03-21T00:03:29Z", + "name": "Subway Station", + "owner": "nate", + "description": "A subway station", + "likes": 0, + "downloads": 85, + "filesize": 1376977, + "upload_date": "2018-09-25T23:38:36Z", + "modify_date": "2023-09-22T16:08:44Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Subway%20Station/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:38:30Z", + "updatedAt": "2024-03-17T18:20:51Z", + "name": "Lidar 2d v2", + "owner": "nate", + "description": "A generic planar lidar.", + "likes": 0, + "downloads": 78, + "filesize": 804227, + "upload_date": "2018-09-25T23:38:27Z", + "modify_date": "2023-09-22T16:08:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Lidar%202d%20v2/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:38:05Z", + "updatedAt": "2024-03-12T07:38:23Z", + "name": "cave_straight_80m", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 54, + "filesize": 484372, + "upload_date": "2018-09-25T23:38:02Z", + "modify_date": "2023-09-22T16:08:59Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/cave_straight_80m/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:37:38Z", + "updatedAt": "2024-03-12T07:38:35Z", + "name": "Cave Tile 1", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 31, + "filesize": 4970524, + "upload_date": "2018-09-25T23:37:35Z", + "modify_date": "2023-09-22T16:09:09Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Cave%20Tile%201/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:37:28Z", + "updatedAt": "2024-03-12T07:38:50Z", + "name": "cave_L_20m", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 48, + "filesize": 419919, + "upload_date": "2018-09-25T23:37:26Z", + "modify_date": "2023-09-22T16:09:17Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/cave_L_20m/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:37:13Z", + "updatedAt": "2024-03-12T07:39:04Z", + "name": "cave_4way_20m", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 36, + "filesize": 1750069, + "upload_date": "2018-09-25T23:37:10Z", + "modify_date": "2023-09-22T16:09:22Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/cave_4way_20m/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:37:04Z", + "updatedAt": "2024-03-12T07:39:19Z", + "name": "Cave Tile Start", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 20, + "filesize": 4940691, + "upload_date": "2018-09-25T23:37:00Z", + "modify_date": "2023-09-22T16:09:31Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Cave%20Tile%20Start/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:36:54Z", + "updatedAt": "2024-03-12T07:39:34Z", + "name": "Lidar 3d v1", + "owner": "nate", + "description": "A generic 3d lidar.", + "likes": 0, + "downloads": 112, + "filesize": 659099, + "upload_date": "2018-09-25T23:36:52Z", + "modify_date": "2023-09-22T16:09:40Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Lidar%203d%20v1/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:36:46Z", + "updatedAt": "2024-03-12T07:39:48Z", + "name": "x1_description", + "owner": "nate", + "description": "", + "likes": 1, + "downloads": 41, + "filesize": 1843483, + "upload_date": "2018-09-25T23:36:43Z", + "modify_date": "2023-09-22T16:09:50Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/x1_description/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:36:28Z", + "updatedAt": "2024-03-12T07:40:05Z", + "name": "slide-incline", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 42, + "filesize": 29373, + "upload_date": "2018-09-25T23:36:26Z", + "modify_date": "2023-09-22T16:09:58Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/slide-incline/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:36:20Z", + "updatedAt": "2024-03-12T07:40:18Z", + "name": "x2_description", + "owner": "nate", + "description": "", + "likes": 1, + "downloads": 29, + "filesize": 1683336, + "upload_date": "2018-09-25T23:36:17Z", + "modify_date": "2023-09-22T16:10:06Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/x2_description/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:36:11Z", + "updatedAt": "2024-03-22T20:47:55Z", + "name": "Phone", + "owner": "nate", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 271, + "filesize": 162880, + "upload_date": "2018-09-25T23:36:08Z", + "modify_date": "2023-09-22T16:10:15Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Phone/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:36:03Z", + "updatedAt": "2024-03-12T07:40:48Z", + "name": "Electrical Box", + "owner": "nate", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 1, + "downloads": 110, + "filesize": 564254, + "upload_date": "2018-09-25T23:36:00Z", + "modify_date": "2023-09-22T16:10:21Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Electrical%20Box/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:35:29Z", + "updatedAt": "2024-03-12T07:41:02Z", + "name": "Tunnel Tile 4", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 42, + "filesize": 930518, + "upload_date": "2018-09-25T23:35:26Z", + "modify_date": "2023-09-22T16:10:28Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Tunnel%20Tile%204/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2018-09-25T23:35:21Z", + "updatedAt": "2024-03-22T20:48:07Z", + "name": "Extinguisher", + "owner": "nate", + "description": "Generated with mesh_to_sdf\n https://bitbucket.org/osrf/mesh_to_sdf", + "likes": 0, + "downloads": 132, + "filesize": 457496, + "upload_date": "2018-09-25T23:35:18Z", + "modify_date": "2023-09-22T16:10:35Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Extinguisher/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:35:12Z", + "updatedAt": "2024-03-24T01:18:34Z", + "name": "cave_straight_20m", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 46, + "filesize": 386945, + "upload_date": "2018-09-25T23:35:10Z", + "modify_date": "2023-09-22T16:10:41Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/cave_straight_20m/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:35:04Z", + "updatedAt": "2024-03-12T07:41:41Z", + "name": "Cave Tile 2", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 41, + "filesize": 83212, + "upload_date": "2018-09-25T23:35:02Z", + "modify_date": "2023-09-22T16:10:47Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Cave%20Tile%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:34:46Z", + "updatedAt": "2024-03-12T07:41:56Z", + "name": "Cave Tile 3", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 24, + "filesize": 4927154, + "upload_date": "2018-09-25T23:34:43Z", + "modify_date": "2023-09-22T16:10:55Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Cave%20Tile%203/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:34:29Z", + "updatedAt": "2024-03-12T07:42:13Z", + "name": "slide-deadend", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 26, + "filesize": 23105, + "upload_date": "2018-09-25T23:34:26Z", + "modify_date": "2023-09-22T16:11:02Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/slide-deadend/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:34:12Z", + "updatedAt": "2024-03-24T01:18:59Z", + "name": "indian_tunnel", + "owner": "nate", + "description": "A sample model of the Indian Tunnel, the world's biggest lava tube on Earth.", + "likes": 0, + "downloads": 105, + "filesize": 352010, + "upload_date": "2018-09-25T23:34:10Z", + "modify_date": "2023-09-22T16:11:08Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/indian_tunnel/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:34:04Z", + "updatedAt": "2024-03-12T07:42:46Z", + "name": "Cave Tile 9", + "owner": "nate", + "description": "", + "likes": 0, + "downloads": 30, + "filesize": 137874, + "upload_date": "2018-09-25T23:34:02Z", + "modify_date": "2023-09-22T16:11:13Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Cave%20Tile%209/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-09-25T23:31:36Z", + "updatedAt": "2024-03-24T01:17:50Z", + "name": "Tunnel Bend Left", + "owner": "nate", + "description": "A bend left section of a tunnel", + "likes": 0, + "downloads": 48, + "filesize": 6002909, + "upload_date": "2018-09-25T23:31:33Z", + "modify_date": "2023-09-22T16:11:22Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/nate/models/Tunnel%20Bend%20Left/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-05-29T19:45:48Z", + "updatedAt": "2024-03-22T20:54:07Z", + "name": "Coffee Maker", + "owner": "chapulina", + "description": "", + "likes": 0, + "downloads": 181, + "filesize": 309282, + "upload_date": "2018-05-29T19:45:45Z", + "modify_date": "2020-12-08T23:15:47Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Coffee%20Maker/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "kitchen", + "object", + "Fuel URL", + "ServiceSim" + ] + }, + { + "createdAt": "2018-03-28T18:02:55Z", + "updatedAt": "2024-04-04T06:20:16Z", + "name": "Test box", + "owner": "chapulina", + "description": "Just a unit box, intended to be used by automated testing of Ignition Fuel.", + "likes": 0, + "downloads": 25827, + "filesize": 15422, + "upload_date": "2018-03-28T18:02:55Z", + "modify_date": "2018-03-28T18:02:55Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Test%20box/tip/files/thumbnails/0.png", + "private": false, + "tags": [ + "box", + "test", + "primitive" + ] + }, + { + "createdAt": "2018-01-27T00:54:23Z", + "updatedAt": "2024-03-22T06:02:33Z", + "name": "RoboCup 3D Simulation Field", + "owner": "OpenRobotics", + "description": "A RoboCup 3D Simulation League field according to the 2014 rules.", + "likes": 0, + "downloads": 89, + "filesize": 2795099, + "upload_date": "2018-01-27T00:54:22Z", + "modify_date": "2023-09-27T16:52:04Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/RoboCup%203D%20Simulation%20Field/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:54:14Z", + "updatedAt": "2024-04-03T09:32:52Z", + "name": "Construction Barrel", + "owner": "OpenRobotics", + "description": "An orange construction barrel", + "likes": 0, + "downloads": 955, + "filesize": 1644935, + "upload_date": "2018-01-27T00:54:14Z", + "modify_date": "2023-09-27T16:52:14Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Construction%20Barrel/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:54:07Z", + "updatedAt": "2024-03-12T02:17:48Z", + "name": "Ladder 75 Degrees 1 Handrails", + "owner": "OpenRobotics", + "description": "A ladder with 1 handrails and a 75 degree incline from the floor.", + "likes": 0, + "downloads": 55, + "filesize": 48794, + "upload_date": "2018-01-27T00:54:07Z", + "modify_date": "2023-09-27T16:52:20Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Ladder%2075%20Degrees%201%20Handrails/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:54:01Z", + "updatedAt": "2024-03-13T00:37:48Z", + "name": "Cordless Drill", + "owner": "OpenRobotics", + "description": "A cordless drill..", + "likes": 0, + "downloads": 93, + "filesize": 2020483, + "upload_date": "2018-01-27T00:54:00Z", + "modify_date": "2023-09-27T16:52:26Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cordless%20Drill/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:53:54Z", + "updatedAt": "2024-03-31T10:11:26Z", + "name": "Simple Arm", + "owner": "OpenRobotics", + "description": "A simple SCARA arm.", + "likes": 0, + "downloads": 172, + "filesize": 19880, + "upload_date": "2018-01-27T00:53:54Z", + "modify_date": "2023-09-27T16:52:32Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Simple%20Arm/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:53:48Z", + "updatedAt": "2024-03-16T10:15:43Z", + "name": "DRC Practice: Wheel valve wall", + "owner": "OpenRobotics", + "description": "A combination of drc_practice_wall and multiple drc_practice_wheel_valve models.", + "likes": 0, + "downloads": 46, + "filesize": 203673, + "upload_date": "2018-01-27T00:53:48Z", + "modify_date": "2023-09-27T16:52:36Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Wheel%20valve%20wall/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:53:42Z", + "updatedAt": "2024-03-15T15:18:50Z", + "name": "Mailbox", + "owner": "OpenRobotics", + "description": "A mailbox.", + "likes": 0, + "downloads": 170, + "filesize": 787984, + "upload_date": "2018-01-27T00:53:41Z", + "modify_date": "2023-09-27T16:52:40Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Mailbox/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:53:34Z", + "updatedAt": "2024-03-12T02:17:52Z", + "name": "Power Plant", + "owner": "OpenRobotics", + "description": "A power plant.", + "likes": 0, + "downloads": 110, + "filesize": 3170258, + "upload_date": "2018-01-27T00:53:32Z", + "modify_date": "2023-09-27T16:52:51Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Power%20Plant/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:53:25Z", + "updatedAt": "2024-03-24T02:44:52Z", + "name": "Beer", + "owner": "OpenRobotics", + "description": "Beer", + "likes": 0, + "downloads": 391, + "filesize": 2812111, + "upload_date": "2018-01-27T00:53:24Z", + "modify_date": "2023-09-27T16:53:14Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Beer/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:53:17Z", + "updatedAt": "2024-04-03T14:08:55Z", + "name": "Lunar Tranquillitatis Pit", + "owner": "OpenRobotics", + "description": "This model uses data from\nhttp://wms.lroc.asu.edu/lroc/view_rdr/NAC_DTM_TRANQPIT1\nhttp://lroc.sese.asu.edu/data/LRO-L-LROC-5-RDR-V1.0/LROLRC_2001/DATA/SDP/NAC_DTM/TRANQPIT1/NAC_DTM_TRANQPIT1_E080N0330.IMG\nhttp://lroc.sese.asu.edu/data/LRO-L-LROC-5-RDR-V1.0/LROLRC_2001/DATA/SDP/NAC_DTM/TRANQPIT1/NAC_DTM_TRANQPIT1_M152662021_50CM.IMG\nsee http://lroc.sese.asu.edu/posts/230 for scientific background\n\n\n./dtm_to_heightmap2.py NAC_DTM_TRANQPIT1_E080N0330.IMG NAC_DTM_TRANQPIT1_M152662021_50CM.IMG --longitude 33.221 --latitude 8.3330 --output-dir lunar_tranquillitatis_pit\n\nPVLModule([\n (u'PDS_VERSION_ID', u'PDS3')\n (u'RECORD_TYPE', u'FIXED_LENGTH')\n (u'RECORD_BYTES', 8828)\n (u'FILE_RECORDS', 14364)\n (u'LABEL_RECORDS', 1)\n (u'^IMAGE', 2)\n (u'DATA_SET_ID', u'LRO-L-LROC-5-RDR-V1.0')\n (u'DATA_SET_NAME', u'LRO MOON LROC 5 RDR V1.0')\n (u'VOLUME_ID', u'LROLRC_2001')\n (u'PRODUCER_INSTITUTION_NAME', u'ARIZONA STATE UNIVERSITY')\n (u'PRODUCER_ID', u'LRO_LROC_TEAM')\n (u'PRODUCER_FULL_NAME', u'MARK ROBINSON, PH.D')\n (u'PRODUCT_ID', u'NAC_DTM_TRANQPIT1_E080N0330')\n (u'PRODUCT_VERSION_ID', u'v1.1')\n (u'PRODUCT_TYPE', u'RDR')\n (u'INSTRUMENT_HOST_NAME', u'LUNAR RECONNAISSANCE ORBITER')\n (u'INSTRUMENT_HOST_ID', u'LRO')\n (u'INSTRUMENT_NAME', u'LUNAR RECONNAISSANCE ORBITER CAMERA')\n (u'INSTRUMENT_ID', u'LROC')\n (u'TARGET_NAME', u'MOON')\n (u'MISSION_PHASE_NAME',\n u'NOMINAL MISSION, SCIENCE MISSION, EXTENDED SCIENCE MISSION')\n (u'RATIONALE_DESC',\n u\"Created at the request of NASA's Exploration Systems Mission Directorate to support future human exploration\")\n (u'SOFTWARE_NAME',\n u'ISIS 3.2.1 with SER enhancements | SOCET SET v5.5 (c) BAE Systems')\n (u'START_TIME', u'N/A')\n (u'STOP_TIME', u'N/A')\n (u'SPACECRAFT_CLOCK_START_COUNT', u'N/A')\n (u'SPACECRAFT_CLOCK_STOP_COUNT', u'N/A')\n (u'PRODUCT_CREATION_TIME', datetime.datetime(2011, 4, 5, 21, 24, 14))\n (u'IMAGE_MAP_PROJECTION',\n PVLObject([\n (u'^DATA_SET_MAP_PROJECTION', u'DSMAP.CAT')\n (u'MAP_PROJECTION_TYPE', u'EQUIRECTANGULAR')\n (u'PROJECTION_LATITUDE_TYPE', u'PLANETOCENTRIC')\n (u'A_AXIS_RADIUS', Units(value=1737.4, units=u'KM'))\n (u'B_AXIS_RADIUS', Units(value=1737.4, units=u'KM'))\n (u'C_AXIS_RADIUS', Units(value=1737.4, units=u'KM'))\n (u'COORDINATE_SYSTEM_NAME', u'PLANETOCENTRIC')\n (u'POSITIVE_LONGITUDE_DIRECTION', u'EAST')\n (u'KEYWORD_LATITUDE_TYPE', u'PLANETOCENTRIC')\n (u'CENTER_LATITUDE', Units(value=8.0, units=u'DEG'))\n (u'CENTER_LONGITUDE', Units(value=180.0, units=u'DEG'))\n (u'LINE_FIRST_PIXEL', 1)\n (u'LINE_LAST_PIXEL', 14363)\n (u'SAMPLE_FIRST_PIXEL', 1)\n (u'SAMPLE_LAST_PIXEL', 2207)\n (u'MAP_PROJECTION_ROTATION', Units(value=0.0, units=u'DEG'))\n (u'MAP_RESOLUTION', Units(value=15161.67521207, units=u'PIX/DEG'))\n (u'MAP_SCALE', Units(value=2.0000000000006, units=u'METERS/PIXEL'))\n (u'MAXIMUM_LATITUDE', Units(value=8.86270799, units=u'DEG'))\n (u'MINIMUM_LATITUDE', Units(value=7.91545118, units=u'DEG'))\n (u'EASTERNMOST_LONGITUDE', Units(value=33.26679388, units=u'DEG'))\n (u'WESTERNMOST_LONGITUDE', Units(value=33.119851, units=u'DEG'))\n (u'LINE_PROJECTION_OFFSET', Units(value=134373.5, units=u'PIXEL'))\n (u'SAMPLE_PROJECTION_OFFSET', Units(value=2205276.5, units=u'PIXEL'))\n ]))\n (u'IMAGE',\n PVLObject([\n (u'DESCRIPTION',\n u'High-resolution NAC digital terrain models of high-priority targets')\n (u'LINES', 14363)\n (u'LINE_SAMPLES', 2207)\n (u'SAMPLE_TYPE', u'PC_REAL')\n (u'SAMPLE_BITS', 32)\n (u'SAMPLE_BIT_MASK', 4294967295)\n (u'CORE_NULL', 4286578683)\n (u'CORE_LOW_REPR_SATURATION', 4286578684)\n (u'CORE_LOW_INSTR_SATURATION', 4286578685)\n (u'CORE_HIGH_REPR_SATURATION', 4286578687)\n (u'CORE_HIGH_INSTR_SATURATION', 4286578686)\n (u'BAND_STORAGE_TYPE', u'BAND_SEQUENTIAL')\n (u'BANDS', 1)\n ]))\n])", + "likes": 0, + "downloads": 87, + "filesize": 493372, + "upload_date": "2018-01-27T00:53:16Z", + "modify_date": "2023-09-27T16:53:21Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2018-01-27T00:53:11Z", + "updatedAt": "2024-03-12T02:17:55Z", + "name": "Robonaut 2", + "owner": "OpenRobotics", + "description": "Robonaut 2 model update 6/29/17.", + "likes": 0, + "downloads": 84, + "filesize": 4206209, + "upload_date": "2018-01-27T00:53:08Z", + "modify_date": "2023-09-27T16:53:27Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Robonaut%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:52:55Z", + "updatedAt": "2024-03-12T02:17:56Z", + "name": "Wooden case with wooden peg", + "owner": "OpenRobotics", + "description": "The wooden ARAT case with with a single wooden peg.", + "likes": 0, + "downloads": 58, + "filesize": 586822, + "upload_date": "2018-01-27T00:52:55Z", + "modify_date": "2023-09-27T16:54:01Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Wooden%20case%20with%20wooden%20peg/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:52:49Z", + "updatedAt": "2024-03-12T02:17:57Z", + "name": "Gasket Part", + "owner": "OpenRobotics", + "description": "A hypothetical gasket part that might exist in an industrial manufacturing setting.", + "likes": 0, + "downloads": 82, + "filesize": 122813, + "upload_date": "2018-01-27T00:52:48Z", + "modify_date": "2023-09-27T16:54:06Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Gasket%20Part/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:52:43Z", + "updatedAt": "2024-03-12T02:17:57Z", + "name": "Cloverleaf Interchange", + "owner": "OpenRobotics", + "description": "A model of a cloverleaf highway interchange.", + "likes": 0, + "downloads": 52, + "filesize": 5830914, + "upload_date": "2018-01-27T00:52:42Z", + "modify_date": "2023-09-27T16:54:15Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cloverleaf%20Interchange/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:52:33Z", + "updatedAt": "2024-04-04T04:07:37Z", + "name": "Cafe table", + "owner": "OpenRobotics", + "description": "A model of a cafe table.", + "likes": 0, + "downloads": 38689, + "filesize": 384211, + "upload_date": "2018-01-27T00:52:33Z", + "modify_date": "2023-09-27T16:54:23Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cafe%20table/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:52:27Z", + "updatedAt": "2024-03-12T02:17:59Z", + "name": "Number1", + "owner": "OpenRobotics", + "description": "A box that displays the number 1.", + "likes": 0, + "downloads": 119, + "filesize": 44413, + "upload_date": "2018-01-27T00:52:26Z", + "modify_date": "2023-09-27T16:54:28Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Number1/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:52:21Z", + "updatedAt": "2024-03-26T14:27:34Z", + "name": "House 3", + "owner": "OpenRobotics", + "description": "A model of a residential house.", + "likes": 0, + "downloads": 139, + "filesize": 1092756, + "upload_date": "2018-01-27T00:52:20Z", + "modify_date": "2023-09-27T16:54:34Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/House%203/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:52:14Z", + "updatedAt": "2024-03-12T02:18:01Z", + "name": "Piston Rod Part", + "owner": "OpenRobotics", + "description": "A hypothetical piston rod part that might exist in an industrial manufacturing setting.", + "likes": 0, + "downloads": 132, + "filesize": 84838, + "upload_date": "2018-01-27T00:52:14Z", + "modify_date": "2023-09-27T16:54:42Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Piston%20Rod%20Part/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:52:08Z", + "updatedAt": "2024-03-12T02:18:01Z", + "name": "Reactor", + "owner": "OpenRobotics", + "description": "A nuclear reactor stack.", + "likes": 0, + "downloads": 164, + "filesize": 1636221, + "upload_date": "2018-01-27T00:52:07Z", + "modify_date": "2023-09-27T16:54:47Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Reactor/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:52:01Z", + "updatedAt": "2024-04-03T17:50:44Z", + "name": "Pioneer 2DX", + "owner": "OpenRobotics", + "description": "A model of the pioneer 2 dx robot.", + "likes": 2, + "downloads": 301, + "filesize": 611271, + "upload_date": "2018-01-27T00:52:00Z", + "modify_date": "2023-09-27T16:54:53Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Pioneer%202DX/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:51:54Z", + "updatedAt": "2024-03-21T13:49:21Z", + "name": "Clearpath Robotics Husky A200", + "owner": "OpenRobotics", + "description": "Clearpath Robotics Husky A200 - Base Model", + "likes": 0, + "downloads": 244, + "filesize": 1324750, + "upload_date": "2018-01-27T00:51:53Z", + "modify_date": "2023-09-27T16:55:03Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Clearpath%20Robotics%20Husky%20A200/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:51:47Z", + "updatedAt": "2024-03-12T02:18:04Z", + "name": "Grey tote", + "owner": "OpenRobotics", + "description": "A grey tote.", + "likes": 0, + "downloads": 71, + "filesize": 228759, + "upload_date": "2018-01-27T00:51:46Z", + "modify_date": "2023-09-27T16:55:10Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Grey%20tote/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:51:40Z", + "updatedAt": "2024-03-12T02:18:04Z", + "name": "Police station", + "owner": "OpenRobotics", + "description": "A police station.", + "likes": 0, + "downloads": 306, + "filesize": 1142160, + "upload_date": "2018-01-27T00:51:40Z", + "modify_date": "2023-09-27T16:55:15Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Police%20station/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:51:33Z", + "updatedAt": "2024-03-15T15:18:57Z", + "name": "NIST stairs 120", + "owner": "OpenRobotics", + "description": "1.2m high NIST standard test arena stairs", + "likes": 0, + "downloads": 54, + "filesize": 592177, + "upload_date": "2018-01-27T00:51:33Z", + "modify_date": "2023-09-27T16:55:21Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIST%20stairs%20120/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:51:27Z", + "updatedAt": "2024-03-28T08:28:47Z", + "name": "DRC Practice: Hand wheel valve", + "owner": "OpenRobotics", + "description": "This model approximates a valve with a hand wheel for the DRC Trials Task 7 which involves locating and closing a valve.", + "likes": 0, + "downloads": 40, + "filesize": 393722, + "upload_date": "2018-01-27T00:51:27Z", + "modify_date": "2023-09-27T16:55:27Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Hand%20wheel%20valve/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:51:20Z", + "updatedAt": "2024-03-12T02:18:07Z", + "name": "DRC Practice: 45 degree barriers", + "owner": "OpenRobotics", + "description": "An series of jersey barriers angled toward 45 degrees, used in DRC Practice.", + "likes": 0, + "downloads": 41, + "filesize": 24946, + "upload_date": "2018-01-27T00:51:19Z", + "modify_date": "2023-09-27T16:55:32Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%2045%20degree%20barriers/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:51:14Z", + "updatedAt": "2024-03-12T02:18:07Z", + "name": "Wood cube 2.5cm", + "owner": "OpenRobotics", + "description": "A 2.5 x 2.5 x 2.5 cm wooden cube.", + "likes": 0, + "downloads": 69, + "filesize": 1434597, + "upload_date": "2018-01-27T00:51:13Z", + "modify_date": "2023-09-27T16:55:37Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Wood%20cube%202.5cm/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:51:07Z", + "updatedAt": "2024-03-19T02:58:17Z", + "name": "RoboCup 2014 SPL Goal", + "owner": "OpenRobotics", + "description": "A RoboCup Standard Platform League goal according to 2014 rules.", + "likes": 0, + "downloads": 299, + "filesize": 303391, + "upload_date": "2018-01-27T00:51:07Z", + "modify_date": "2023-09-27T16:55:41Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/RoboCup%202014%20SPL%20Goal/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:51:01Z", + "updatedAt": "2024-04-02T07:37:37Z", + "name": "Cessna C-172", + "owner": "OpenRobotics", + "description": "Cessna C-172.\n\n An example world file that uses the cessna and ships with Gazebo is:\n $ gazebo worlds/cessna.world\n\n The meshes have been imported and adapted from:\n https://3dwarehouse.sketchup.com/model.html?id=5178440145d1d2c2d77055f14f845370\n\n All the internal specifications have been extracted and adapted from:\n https://github.com/tridge/jsbsim/blob/master/aircraft/c172p/c172p.xml", + "likes": 0, + "downloads": 112, + "filesize": 288183, + "upload_date": "2018-01-27T00:51:00Z", + "modify_date": "2023-09-27T16:55:45Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cessna%20C-172/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:50:54Z", + "updatedAt": "2024-03-12T02:18:10Z", + "name": "Fire hydrant", + "owner": "OpenRobotics", + "description": "A fire hydrant.", + "likes": 0, + "downloads": 141, + "filesize": 874132, + "upload_date": "2018-01-27T00:50:53Z", + "modify_date": "2023-09-27T16:55:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fire%20hydrant/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:50:47Z", + "updatedAt": "2024-04-04T06:23:48Z", + "name": "Cardboard box", + "owner": "OpenRobotics", + "description": "A closed cardboard box.", + "likes": 3, + "downloads": 38704, + "filesize": 1022747, + "upload_date": "2018-01-27T00:50:47Z", + "modify_date": "2023-09-27T16:56:09Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cardboard%20box/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:50:41Z", + "updatedAt": "2024-04-03T13:55:56Z", + "name": "PR2 Gripper", + "owner": "OpenRobotics", + "description": "The Willow Garage PR2 gripper model.", + "likes": 0, + "downloads": 750, + "filesize": 115456, + "upload_date": "2018-01-27T00:50:40Z", + "modify_date": "2023-09-27T16:56:15Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/PR2%20Gripper/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:50:35Z", + "updatedAt": "2024-03-12T02:18:12Z", + "name": "Submarine (buoyant)", + "owner": "OpenRobotics", + "description": "An underwater submarine model that will float. You can view this model in underwater.world environment: gazebo worlds/underwater.world", + "likes": 0, + "downloads": 41, + "filesize": 16465, + "upload_date": "2018-01-27T00:50:35Z", + "modify_date": "2023-09-27T16:56:19Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Submarine%20%28buoyant%29/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:50:29Z", + "updatedAt": "2024-03-28T02:01:19Z", + "name": "Bowl", + "owner": "OpenRobotics", + "description": "A simple bowl.", + "likes": 0, + "downloads": 265, + "filesize": 120023, + "upload_date": "2018-01-27T00:50:29Z", + "modify_date": "2023-09-27T16:56:23Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Bowl/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:50:23Z", + "updatedAt": "2024-04-04T04:06:58Z", + "name": "Lamp Post", + "owner": "OpenRobotics", + "description": "A lamp post", + "likes": 0, + "downloads": 23247, + "filesize": 2467975, + "upload_date": "2018-01-27T00:50:22Z", + "modify_date": "2023-09-27T16:56:56Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Lamp%20Post/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:50:16Z", + "updatedAt": "2024-04-02T16:05:49Z", + "name": "Quadrotor", + "owner": "OpenRobotics", + "description": "A simple quadrotor.", + "likes": 0, + "downloads": 312, + "filesize": 56767, + "upload_date": "2018-01-27T00:50:16Z", + "modify_date": "2023-09-27T16:57:03Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Quadrotor/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:50:10Z", + "updatedAt": "2024-03-25T08:16:00Z", + "name": "Monkey Wrench", + "owner": "OpenRobotics", + "description": "A monkey wrench.", + "likes": 0, + "downloads": 78, + "filesize": 48781, + "upload_date": "2018-01-27T00:50:10Z", + "modify_date": "2023-09-27T16:57:08Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Monkey%20Wrench/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:50:04Z", + "updatedAt": "2024-03-12T02:18:15Z", + "name": "Speed limit sign", + "owner": "OpenRobotics", + "description": "A speed limit sign", + "likes": 0, + "downloads": 83, + "filesize": 3670019, + "upload_date": "2018-01-27T00:50:02Z", + "modify_date": "2023-09-27T16:57:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Speed%20limit%20sign/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:49:55Z", + "updatedAt": "2024-03-17T19:59:13Z", + "name": "Demo Joint Types", + "owner": "OpenRobotics", + "description": "This model demonstrates all joint types available in gazebo.", + "likes": 0, + "downloads": 90, + "filesize": 74225, + "upload_date": "2018-01-27T00:49:54Z", + "modify_date": "2023-09-27T16:57:28Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Demo%20Joint%20Types/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:49:49Z", + "updatedAt": "2024-03-12T02:18:17Z", + "name": "Number7", + "owner": "OpenRobotics", + "description": "A box that displays the number 7.", + "likes": 0, + "downloads": 97, + "filesize": 68991, + "upload_date": "2018-01-27T00:49:48Z", + "modify_date": "2023-09-27T16:57:34Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Number7/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:49:43Z", + "updatedAt": "2024-03-12T02:18:17Z", + "name": "Number4", + "owner": "OpenRobotics", + "description": "A box that displays the number 4.", + "likes": 0, + "downloads": 83, + "filesize": 65164, + "upload_date": "2018-01-27T00:49:42Z", + "modify_date": "2023-09-27T16:57:39Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Number4/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:49:37Z", + "updatedAt": "2024-03-23T21:35:31Z", + "name": "Dumpster", + "owner": "OpenRobotics", + "description": "A dumpster.", + "likes": 0, + "downloads": 238, + "filesize": 2630841, + "upload_date": "2018-01-27T00:49:36Z", + "modify_date": "2023-09-27T16:57:45Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Dumpster/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:49:29Z", + "updatedAt": "2024-03-12T02:18:19Z", + "name": "DRC Practice: 135 degree barriers", + "owner": "OpenRobotics", + "description": "An series of jersey barriers angled toward 135 degrees, used in DRC Practice.", + "likes": 0, + "downloads": 44, + "filesize": 23686, + "upload_date": "2018-01-27T00:49:29Z", + "modify_date": "2023-09-27T16:57:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20135%20degree%20barriers/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:49:23Z", + "updatedAt": "2024-03-15T15:05:31Z", + "name": "Collapsed police station", + "owner": "OpenRobotics", + "description": "A collapsed police station.", + "likes": 0, + "downloads": 115, + "filesize": 1613330, + "upload_date": "2018-01-27T00:49:22Z", + "modify_date": "2023-09-27T16:57:57Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Collapsed%20police%20station/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:49:16Z", + "updatedAt": "2024-04-02T19:07:49Z", + "name": "NIST maze wall 120", + "owner": "OpenRobotics", + "description": "1.2m high NIST standard test arena maze wall", + "likes": 0, + "downloads": 297, + "filesize": 520625, + "upload_date": "2018-01-27T00:49:15Z", + "modify_date": "2023-09-27T16:58:05Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIST%20maze%20wall%20120/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:49:09Z", + "updatedAt": "2024-03-12T02:18:21Z", + "name": "iRobot Create", + "owner": "OpenRobotics", + "description": "A model of the iRobot Create.", + "likes": 1, + "downloads": 107, + "filesize": 440389, + "upload_date": "2018-01-27T00:49:09Z", + "modify_date": "2023-09-27T16:58:11Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/iRobot%20Create/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:49:02Z", + "updatedAt": "2024-03-12T02:18:22Z", + "name": "Number3", + "owner": "OpenRobotics", + "description": "A box that displays the number 3.", + "likes": 0, + "downloads": 122, + "filesize": 99179, + "upload_date": "2018-01-27T00:49:02Z", + "modify_date": "2023-09-27T16:58:18Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Number3/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:48:57Z", + "updatedAt": "2024-04-03T09:58:25Z", + "name": "Warehouse Robot", + "owner": "OpenRobotics", + "description": "A generic warehouse robot.", + "likes": 0, + "downloads": 178, + "filesize": 494956, + "upload_date": "2018-01-27T00:48:56Z", + "modify_date": "2023-09-27T16:58:23Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Warehouse%20Robot/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:48:50Z", + "updatedAt": "2024-04-04T04:12:22Z", + "name": "Table", + "owner": "OpenRobotics", + "description": "A wooden table.", + "likes": 0, + "downloads": 42338, + "filesize": 899222, + "upload_date": "2018-01-27T00:48:50Z", + "modify_date": "2023-09-27T16:58:28Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Table/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:48:44Z", + "updatedAt": "2024-03-26T11:59:04Z", + "name": "NIST maze wall 240", + "owner": "OpenRobotics", + "description": "2.4m high NIST standard test arena maze wall", + "likes": 0, + "downloads": 84, + "filesize": 363656, + "upload_date": "2018-01-27T00:48:43Z", + "modify_date": "2023-09-27T16:58:34Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIST%20maze%20wall%20240/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:48:38Z", + "updatedAt": "2024-03-12T02:18:24Z", + "name": "Polaris Ranger XP900 without roll cage", + "owner": "OpenRobotics", + "description": "A model of the Polaris Ranger XP900 without roll cage.", + "likes": 0, + "downloads": 495, + "filesize": 280991, + "upload_date": "2018-01-27T00:48:37Z", + "modify_date": "2023-09-27T16:58:39Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Polaris%20Ranger%20XP900%20without%20roll%20cage/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:48:31Z", + "updatedAt": "2024-03-28T08:45:38Z", + "name": "Telephone pole", + "owner": "OpenRobotics", + "description": "A telephone pole.", + "likes": 1, + "downloads": 76, + "filesize": 230628, + "upload_date": "2018-01-27T00:48:30Z", + "modify_date": "2023-09-27T16:58:44Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Telephone%20pole/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:48:24Z", + "updatedAt": "2024-03-12T02:18:26Z", + "name": "DRC Practice: 4x8 Doorway", + "owner": "OpenRobotics", + "description": "This model approximates a the DRC Trials 4 by 8 ft doorway past debris.", + "likes": 0, + "downloads": 94, + "filesize": 22731, + "upload_date": "2018-01-27T00:48:24Z", + "modify_date": "2023-09-27T16:58:50Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%204x8%20Doorway/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:48:18Z", + "updatedAt": "2024-03-12T02:18:27Z", + "name": "FRC 2016 Low Bar", + "owner": "OpenRobotics", + "description": "Low bar game component for the 2016 FIRST Robotics Competition.", + "likes": 0, + "downloads": 41, + "filesize": 16774, + "upload_date": "2018-01-27T00:48:18Z", + "modify_date": "2023-09-27T16:58:54Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FRC%202016%20Low%20Bar/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:48:13Z", + "updatedAt": "2024-03-12T02:18:28Z", + "name": "Walkway Metal Straight", + "owner": "OpenRobotics", + "description": "A straight metal walkway section. This model can be stitched together to create longer paths.", + "likes": 0, + "downloads": 63, + "filesize": 266369, + "upload_date": "2018-01-27T00:48:12Z", + "modify_date": "2023-09-27T16:58:57Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Walkway%20Metal%20Straight/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:48:06Z", + "updatedAt": "2024-03-12T02:18:29Z", + "name": "Radio tower", + "owner": "OpenRobotics", + "description": "A radio tower.", + "likes": 1, + "downloads": 95, + "filesize": 701271, + "upload_date": "2018-01-27T00:48:06Z", + "modify_date": "2023-09-27T16:59:04Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Radio%20tower/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:48:00Z", + "updatedAt": "2024-03-12T02:18:30Z", + "name": "Wooden board", + "owner": "OpenRobotics", + "description": "A wooden board with no pegs. Part of the ARAT set.", + "likes": 0, + "downloads": 71, + "filesize": 88174, + "upload_date": "2018-01-27T00:47:59Z", + "modify_date": "2023-09-27T16:59:10Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Wooden%20board/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:47:54Z", + "updatedAt": "2024-03-12T02:18:30Z", + "name": "FRC 2016 Moat", + "owner": "OpenRobotics", + "description": "Moat game component for the 2016 FIRST Robotics Competition.", + "likes": 0, + "downloads": 43, + "filesize": 7115, + "upload_date": "2018-01-27T00:47:53Z", + "modify_date": "2023-09-27T16:59:13Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FRC%202016%20Moat/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:47:48Z", + "updatedAt": "2024-03-12T02:18:31Z", + "name": "FRC 2016 Ball", + "owner": "OpenRobotics", + "description": "Game ball for the 2016 FIRST Robotics Competition.", + "likes": 0, + "downloads": 53, + "filesize": 74259, + "upload_date": "2018-01-27T00:47:48Z", + "modify_date": "2023-09-27T16:59:17Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FRC%202016%20Ball/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:47:43Z", + "updatedAt": "2024-03-28T08:25:54Z", + "name": "Apollo15 Landing Site Heightmap 1000x1000 meters", + "owner": "OpenRobotics", + "description": "Terrain generated from http://wms.lroc.asu.edu/lroc/view_rdr_product/NAC_DTM_APOLLO15", + "likes": 0, + "downloads": 83, + "filesize": 106872, + "upload_date": "2018-01-27T00:47:42Z", + "modify_date": "2023-09-27T16:59:20Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2018-01-27T00:47:37Z", + "updatedAt": "2024-04-02T19:02:06Z", + "name": "Grey Wall", + "owner": "OpenRobotics", + "description": "A grey wall.", + "likes": 0, + "downloads": 847, + "filesize": 3647438, + "upload_date": "2018-01-27T00:47:36Z", + "modify_date": "2023-09-27T16:59:25Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Grey%20Wall/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:47:29Z", + "updatedAt": "2024-03-23T21:15:38Z", + "name": "Fast Food", + "owner": "OpenRobotics", + "description": "A model of a fast food restaurant.", + "likes": 0, + "downloads": 106, + "filesize": 3584094, + "upload_date": "2018-01-27T00:47:28Z", + "modify_date": "2023-09-27T16:59:33Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fast%20Food/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:47:21Z", + "updatedAt": "2024-04-02T18:59:08Z", + "name": "Wood cube 7.5cm", + "owner": "OpenRobotics", + "description": "A 7.5 x 7.5 x 7.5 cm wooden cube.", + "likes": 0, + "downloads": 67, + "filesize": 1434601, + "upload_date": "2018-01-27T00:47:21Z", + "modify_date": "2023-09-27T16:59:43Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Wood%20cube%207.5cm/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:47:14Z", + "updatedAt": "2024-03-31T04:19:14Z", + "name": "Metal Peg", + "owner": "OpenRobotics", + "description": "An 6cm high metal peg.", + "likes": 0, + "downloads": 60, + "filesize": 8938, + "upload_date": "2018-01-27T00:47:14Z", + "modify_date": "2023-09-27T16:59:47Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Metal%20Peg/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:47:09Z", + "updatedAt": "2024-04-01T17:53:19Z", + "name": "Wooden case", + "owner": "OpenRobotics", + "description": "An open wooden box. Part of the ARAT set.", + "likes": 0, + "downloads": 111, + "filesize": 586447, + "upload_date": "2018-01-27T00:47:08Z", + "modify_date": "2023-09-27T16:59:51Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Wooden%20case/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:47:03Z", + "updatedAt": "2024-03-30T22:51:53Z", + "name": "Pickup", + "owner": "OpenRobotics", + "description": "A pickup truck.", + "likes": 1, + "downloads": 923, + "filesize": 435284, + "upload_date": "2018-01-27T00:47:02Z", + "modify_date": "2023-09-27T16:59:56Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Pickup/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2018-01-27T00:46:56Z", + "updatedAt": "2024-03-23T19:36:00Z", + "name": "Plastic Cup", + "owner": "OpenRobotics", + "description": "A 13cm high plastic cup.", + "likes": 1, + "downloads": 192, + "filesize": 31500, + "upload_date": "2018-01-27T00:46:56Z", + "modify_date": "2023-09-27T17:00:02Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Plastic%20Cup/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:46:51Z", + "updatedAt": "2024-04-01T22:01:17Z", + "name": "Universal Robotics UR10 robot arm", + "owner": "OpenRobotics", + "description": "The UR10 robot arm model built by Kelsey Hawkins.\n Taken from git@github.com:ros-industrial/universal_robot.git for Gazebo testing and integration purposes.", + "likes": 1, + "downloads": 232, + "filesize": 3091891, + "upload_date": "2018-01-27T00:46:50Z", + "modify_date": "2018-01-27T00:46:50Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2018-01-27T00:46:43Z", + "updatedAt": "2024-03-12T02:18:39Z", + "name": "iRobot Hand", + "owner": "OpenRobotics", + "description": "iRobot hand model.", + "likes": 0, + "downloads": 61, + "filesize": 4581374, + "upload_date": "2018-01-27T00:46:42Z", + "modify_date": "2023-09-27T17:00:13Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/iRobot%20Hand/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:46:31Z", + "updatedAt": "2024-03-12T02:18:40Z", + "name": "DRC Practice: 4x4x40 Lumber", + "owner": "OpenRobotics", + "description": "This model approximates a the DRC Trials 4 by 4 by 40 inch Wood.", + "likes": 0, + "downloads": 697, + "filesize": 347200, + "upload_date": "2018-01-27T00:46:30Z", + "modify_date": "2023-09-27T17:00:22Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%204x4x40%20Lumber/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:46:24Z", + "updatedAt": "2024-03-12T02:18:41Z", + "name": "Intel RealSense R200", + "owner": "OpenRobotics", + "description": "The Intel RealSense R200 medium-range depth camera. Range: 0.5-3.5m indoors,\n 0.5-10m outdoors. http://www.intel.com/realsense", + "likes": 0, + "downloads": 83, + "filesize": 51454, + "upload_date": "2018-01-27T00:46:24Z", + "modify_date": "2023-09-27T17:00:27Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Intel%20RealSense%20R200/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:46:18Z", + "updatedAt": "2024-03-28T09:34:47Z", + "name": "Thrift shop", + "owner": "OpenRobotics", + "description": "A downtown thrift shop.", + "likes": 0, + "downloads": 153, + "filesize": 1650819, + "upload_date": "2018-01-27T00:46:18Z", + "modify_date": "2023-09-27T17:00:36Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Thrift%20shop/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:46:11Z", + "updatedAt": "2024-03-12T02:18:43Z", + "name": "FRC Field 2016", + "owner": "OpenRobotics", + "description": "FIRST Robotics Competition field for the 2016 challenge.", + "likes": 0, + "downloads": 44, + "filesize": 2839884, + "upload_date": "2018-01-27T00:46:11Z", + "modify_date": "2023-09-27T17:00:47Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FRC%20Field%202016/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:46:02Z", + "updatedAt": "2024-03-24T22:42:28Z", + "name": "Stone 10 x 2.5 x 1 cm", + "owner": "OpenRobotics", + "description": "A 10 x 2.5 x 1 cm sharpening stone.", + "likes": 0, + "downloads": 75, + "filesize": 5817, + "upload_date": "2018-01-27T00:46:02Z", + "modify_date": "2023-09-27T17:00:56Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Stone%2010%20x%202.5%20x%201%20cm/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:45:56Z", + "updatedAt": "2024-03-16T14:46:58Z", + "name": "Door handle", + "owner": "OpenRobotics", + "description": "A lever style door handle.", + "likes": 1, + "downloads": 60, + "filesize": 73214, + "upload_date": "2018-01-27T00:45:56Z", + "modify_date": "2023-09-27T17:01:00Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Door%20handle/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:45:50Z", + "updatedAt": "2024-03-29T03:20:52Z", + "name": "Collapsed industrial building", + "owner": "OpenRobotics", + "description": "A collapsed industrial building.", + "likes": 0, + "downloads": 148, + "filesize": 1810833, + "upload_date": "2018-01-27T00:45:49Z", + "modify_date": "2023-09-27T17:01:06Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Collapsed%20industrial%20building/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:45:42Z", + "updatedAt": "2024-03-12T02:18:46Z", + "name": "Pulley Part", + "owner": "OpenRobotics", + "description": "A hypothetical pulley part that might exist in an industrial manufacturing setting.", + "likes": 0, + "downloads": 85, + "filesize": 305892, + "upload_date": "2018-01-27T00:45:41Z", + "modify_date": "2023-09-27T17:01:14Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Pulley%20Part/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:45:35Z", + "updatedAt": "2024-03-12T02:18:47Z", + "name": "Number8", + "owner": "OpenRobotics", + "description": "A box that displays the number 8.", + "likes": 0, + "downloads": 84, + "filesize": 120349, + "upload_date": "2018-01-27T00:45:35Z", + "modify_date": "2023-09-27T17:01:18Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Number8/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:45:30Z", + "updatedAt": "2024-03-28T07:46:50Z", + "name": "Pier", + "owner": "OpenRobotics", + "description": "A wooden pier.", + "likes": 0, + "downloads": 100, + "filesize": 1125022, + "upload_date": "2018-01-27T00:45:29Z", + "modify_date": "2023-09-27T17:01:25Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Pier/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:45:23Z", + "updatedAt": "2024-03-12T02:18:48Z", + "name": "Stereo Camera", + "owner": "OpenRobotics", + "description": "A stereo camera.", + "likes": 0, + "downloads": 106, + "filesize": 8646, + "upload_date": "2018-01-27T00:45:22Z", + "modify_date": "2023-09-27T17:01:30Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Stereo%20Camera/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:45:17Z", + "updatedAt": "2024-03-28T09:55:26Z", + "name": "School", + "owner": "OpenRobotics", + "description": "A school.", + "likes": 0, + "downloads": 212, + "filesize": 1230387, + "upload_date": "2018-01-27T00:45:16Z", + "modify_date": "2023-09-27T17:01:35Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/School/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:45:10Z", + "updatedAt": "2024-03-25T14:53:49Z", + "name": "Velodyne HDL-32", + "owner": "OpenRobotics", + "description": "A model of a Velodyne HDL-32 LiDAR sensor.", + "likes": 0, + "downloads": 112, + "filesize": 210125, + "upload_date": "2018-01-27T00:45:09Z", + "modify_date": "2023-09-27T17:01:41Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Velodyne%20HDL-32/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:45:03Z", + "updatedAt": "2024-03-12T02:18:51Z", + "name": "Polaris Ranger EV", + "owner": "OpenRobotics", + "description": "A model of the Polaris Ranger EV.", + "likes": 1, + "downloads": 261, + "filesize": 4129697, + "upload_date": "2018-01-27T00:45:00Z", + "modify_date": "2023-09-27T17:01:48Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Polaris%20Ranger%20EV/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2018-01-27T00:44:52Z", + "updatedAt": "2024-03-19T12:09:20Z", + "name": "House 1", + "owner": "OpenRobotics", + "description": "A model of a residential house.", + "likes": 0, + "downloads": 569, + "filesize": 2215743, + "upload_date": "2018-01-27T00:44:51Z", + "modify_date": "2023-09-27T17:01:58Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/House%201/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:44:44Z", + "updatedAt": "2024-03-12T02:18:52Z", + "name": "Ladder 60 Degrees 1 Handrails", + "owner": "OpenRobotics", + "description": "A ladder with 1 handrail and a 60 degree incline from the floor.", + "likes": 0, + "downloads": 44, + "filesize": 60863, + "upload_date": "2018-01-27T00:44:43Z", + "modify_date": "2023-09-27T17:02:05Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Ladder%2060%20Degrees%201%20Handrails/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:44:38Z", + "updatedAt": "2024-03-12T02:18:53Z", + "name": "RoboCup 3D Simulation Ball", + "owner": "OpenRobotics", + "description": "A RoboCup 3D simulation ball.", + "likes": 0, + "downloads": 103, + "filesize": 328934, + "upload_date": "2018-01-27T00:44:37Z", + "modify_date": "2023-09-27T17:02:13Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/RoboCup%203D%20Simulation%20Ball/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:44:31Z", + "updatedAt": "2024-03-12T02:18:53Z", + "name": "Fire hose (damping test)", + "owner": "OpenRobotics", + "description": "This model approximates a fire hose.", + "likes": 0, + "downloads": 27, + "filesize": 133644, + "upload_date": "2018-01-27T00:44:30Z", + "modify_date": "2023-09-27T17:02:19Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fire%20hose%20%28damping%20test%29/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:44:24Z", + "updatedAt": "2024-03-12T02:18:54Z", + "name": "Walkway Metal 45 degree", + "owner": "OpenRobotics", + "description": "A 45 degree turn metal walkway section. This model can be stitched together to create longer paths.", + "likes": 0, + "downloads": 50, + "filesize": 148411, + "upload_date": "2018-01-27T00:44:24Z", + "modify_date": "2023-09-27T17:02:25Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Walkway%20Metal%2045%20degree/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:44:18Z", + "updatedAt": "2024-03-12T02:18:55Z", + "name": "Tube 2.25 cm", + "owner": "OpenRobotics", + "description": "A 2.25 cm diameter metal tube.", + "likes": 0, + "downloads": 51, + "filesize": 17324, + "upload_date": "2018-01-27T00:44:18Z", + "modify_date": "2023-09-27T17:02:29Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tube%202.25%20cm/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:44:13Z", + "updatedAt": "2024-03-12T02:18:55Z", + "name": "International Space Station", + "owner": "OpenRobotics", + "description": "International Space Station", + "likes": 0, + "downloads": 281, + "filesize": 17595067, + "upload_date": "2018-01-27T00:44:01Z", + "modify_date": "2023-09-27T17:02:37Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/International%20Space%20Station/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:43:15Z", + "updatedAt": "2024-03-12T02:18:57Z", + "name": "Tower crane", + "owner": "OpenRobotics", + "description": "A tower crane.", + "likes": 0, + "downloads": 99, + "filesize": 825126, + "upload_date": "2018-01-27T00:43:14Z", + "modify_date": "2018-01-27T00:43:14Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tower%20crane/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:43:08Z", + "updatedAt": "2024-03-30T07:16:30Z", + "name": "Cart: soft suspension", + "owner": "OpenRobotics", + "description": "A 4-wheel cart with soft suspension, no steering.", + "likes": 0, + "downloads": 54, + "filesize": 18740, + "upload_date": "2018-01-27T00:43:07Z", + "modify_date": "2018-01-27T00:43:07Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cart:%20soft%20suspension/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:43:02Z", + "updatedAt": "2024-03-28T19:16:33Z", + "name": "Gimbal Small 2D", + "owner": "OpenRobotics", + "description": "2D gimbal for small camera (go pro size) on drone.\n 3D mesh: http://www.thingiverse.com/thing:397579\n by: http://www.thingiverse.com/Motorpixiegimbals/about", + "likes": 0, + "downloads": 76, + "filesize": 3548896, + "upload_date": "2018-01-27T00:43:00Z", + "modify_date": "2018-01-27T00:43:00Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Gimbal%20Small%202D/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:42:44Z", + "updatedAt": "2024-03-12T02:18:59Z", + "name": "FRC 2016 Sally Port", + "owner": "OpenRobotics", + "description": "Sally port game component for the 2016 FIRST Robotics Competition.", + "likes": 0, + "downloads": 44, + "filesize": 154867, + "upload_date": "2018-01-27T00:42:43Z", + "modify_date": "2023-09-27T17:06:46Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FRC%202016%20Sally%20Port/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:42:38Z", + "updatedAt": "2024-04-04T06:27:10Z", + "name": "Playground", + "owner": "OpenRobotics", + "description": "A playground.", + "likes": 0, + "downloads": 44276, + "filesize": 915162, + "upload_date": "2018-01-27T00:42:37Z", + "modify_date": "2023-09-27T17:06:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Playground/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:42:31Z", + "updatedAt": "2024-03-12T02:19:01Z", + "name": "DRC Practice: 2x6 Lumber", + "owner": "OpenRobotics", + "description": "This model approximates a the DRC Trials 2 by 6 inch Wood.", + "likes": 0, + "downloads": 473, + "filesize": 342368, + "upload_date": "2018-01-27T00:42:31Z", + "modify_date": "2023-09-27T17:06:59Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%202x6%20Lumber/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:42:25Z", + "updatedAt": "2024-03-29T03:20:06Z", + "name": "Office Building", + "owner": "OpenRobotics", + "description": "A model of a office building.", + "likes": 0, + "downloads": 100, + "filesize": 116888, + "upload_date": "2018-01-27T00:42:25Z", + "modify_date": "2023-09-27T17:07:04Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Office%20Building/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:42:19Z", + "updatedAt": "2024-03-12T02:19:02Z", + "name": "Cricket ball", + "owner": "OpenRobotics", + "description": "A cricket ball.", + "likes": 0, + "downloads": 84, + "filesize": 87049, + "upload_date": "2018-01-27T00:42:18Z", + "modify_date": "2023-09-27T17:07:09Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cricket%20ball/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:42:13Z", + "updatedAt": "2024-03-18T05:01:04Z", + "name": "Wood cube 10cm", + "owner": "OpenRobotics", + "description": "A 10x10x10 cm wooden cube.", + "likes": 0, + "downloads": 1431, + "filesize": 1434587, + "upload_date": "2018-01-27T00:42:13Z", + "modify_date": "2023-09-27T17:07:13Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Wood%20cube%2010cm/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:42:06Z", + "updatedAt": "2024-04-04T04:12:26Z", + "name": "Coke Can", + "owner": "OpenRobotics", + "description": "A can of Coke.", + "likes": 0, + "downloads": 24379, + "filesize": 1878384, + "upload_date": "2018-01-27T00:42:06Z", + "modify_date": "2023-09-27T17:07:20Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Coke%20Can/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:41:59Z", + "updatedAt": "2024-04-04T04:11:51Z", + "name": "Pine Tree", + "owner": "OpenRobotics", + "description": "A conifer evergreen tree.", + "likes": 0, + "downloads": 59097, + "filesize": 877470, + "upload_date": "2018-01-27T00:41:59Z", + "modify_date": "2023-09-27T17:07:29Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Pine%20Tree/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:41:53Z", + "updatedAt": "2024-03-12T02:19:05Z", + "name": "Cross Joint Part", + "owner": "OpenRobotics", + "description": "A hypothetical cross joint part that might exist in an industrial manufacturing setting.", + "likes": 0, + "downloads": 62, + "filesize": 320340, + "upload_date": "2018-01-27T00:41:52Z", + "modify_date": "2023-09-27T17:07:36Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cross%20Joint%20Part/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:41:47Z", + "updatedAt": "2024-03-27T18:10:05Z", + "name": "DRC Practice: White Jersey Barrier", + "owner": "OpenRobotics", + "description": "A white jersey barrier used in DRC Practice.", + "likes": 0, + "downloads": 162, + "filesize": 23947, + "upload_date": "2018-01-27T00:41:46Z", + "modify_date": "2023-09-27T17:07:40Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20White%20Jersey%20Barrier/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:41:41Z", + "updatedAt": "2024-03-12T02:19:06Z", + "name": "DRC Practice: Yellow parking block", + "owner": "OpenRobotics", + "description": "A yellow parking block used in DRC Practice.", + "likes": 0, + "downloads": 60, + "filesize": 18161, + "upload_date": "2018-01-27T00:41:40Z", + "modify_date": "2023-09-27T17:07:44Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Yellow%20parking%20block/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:41:35Z", + "updatedAt": "2024-03-12T02:19:07Z", + "name": "Standpipe", + "owner": "OpenRobotics", + "description": "Approximate model of a standpipe.", + "likes": 0, + "downloads": 80, + "filesize": 577716, + "upload_date": "2018-01-27T00:41:34Z", + "modify_date": "2023-09-27T17:07:49Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Standpipe/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:41:29Z", + "updatedAt": "2024-03-12T02:19:07Z", + "name": "Wooden peg board", + "owner": "OpenRobotics", + "description": "A wooden board with a single wooden peg. Part of the ARAT set.", + "likes": 0, + "downloads": 47, + "filesize": 102778, + "upload_date": "2018-01-27T00:41:28Z", + "modify_date": "2023-09-27T17:07:56Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Wooden%20peg%20board/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:41:23Z", + "updatedAt": "2024-04-03T22:38:25Z", + "name": "Jersey Barrier", + "owner": "OpenRobotics", + "description": "A model of a jersey barrier.", + "likes": 1, + "downloads": 8048, + "filesize": 166551, + "upload_date": "2018-01-27T00:41:22Z", + "modify_date": "2023-09-27T17:08:00Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Jersey%20Barrier/tip/files/thumbnails/1.jpg", + "private": false + }, + { + "createdAt": "2018-01-27T00:41:17Z", + "updatedAt": "2024-04-04T04:09:22Z", + "name": "Standing person", + "owner": "OpenRobotics", + "description": "A standing person. Model created with Makehuman (http://www.makehuman.org/)", + "likes": 0, + "downloads": 29193, + "filesize": 26080565, + "upload_date": "2018-01-27T00:41:15Z", + "modify_date": "2023-09-27T17:08:08Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Standing%20person/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:40:58Z", + "updatedAt": "2024-03-20T23:10:30Z", + "name": "Cube 20k", + "owner": "OpenRobotics", + "description": "A cube composed of 20,000 triangles. This is used for testing.", + "likes": 0, + "downloads": 65, + "filesize": 105768, + "upload_date": "2018-01-27T00:40:57Z", + "modify_date": "2023-09-27T17:08:28Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cube%2020k/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:40:51Z", + "updatedAt": "2024-03-25T07:57:31Z", + "name": "MPL right arm", + "owner": "OpenRobotics", + "description": "A model of Johns Hopkins Applied Physics Lab (APL) Modular Prosthetic Limb (MPL) arm. This model is of a right arm.", + "likes": 0, + "downloads": 140, + "filesize": 1200357, + "upload_date": "2018-01-27T00:40:50Z", + "modify_date": "2023-09-27T17:08:36Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MPL%20right%20arm/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:40:43Z", + "updatedAt": "2024-03-12T02:19:12Z", + "name": "U Joint Part", + "owner": "OpenRobotics", + "description": "A hypothetical U joint part that might exist in an industrial manufacturing setting.", + "likes": 0, + "downloads": 69, + "filesize": 197440, + "upload_date": "2018-01-27T00:40:43Z", + "modify_date": "2023-09-27T17:08:49Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/U%20Joint%20Part/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:40:37Z", + "updatedAt": "2024-03-30T22:51:50Z", + "name": "Hatchback blue", + "owner": "OpenRobotics", + "description": "A blue hatchback", + "likes": 1, + "downloads": 689, + "filesize": 686301, + "upload_date": "2018-01-27T00:40:36Z", + "modify_date": "2023-09-27T17:08:54Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Hatchback%20blue/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2018-01-27T00:40:31Z", + "updatedAt": "2024-04-04T01:03:32Z", + "name": "Parrot Bebop 2", + "owner": "OpenRobotics", + "description": "A model of the Parrot Bebop 2 drone.", + "likes": 1, + "downloads": 294, + "filesize": 923390, + "upload_date": "2018-01-27T00:40:30Z", + "modify_date": "2023-09-27T17:09:01Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Parrot%20Bebop%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:40:23Z", + "updatedAt": "2024-04-04T04:08:05Z", + "name": "Bookshelf", + "owner": "OpenRobotics", + "description": "A wooden bookshelf.", + "likes": 1, + "downloads": 33195, + "filesize": 839527, + "upload_date": "2018-01-27T00:40:22Z", + "modify_date": "2023-09-27T17:09:08Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Bookshelf/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:40:16Z", + "updatedAt": "2024-04-04T04:09:48Z", + "name": "Cafe", + "owner": "OpenRobotics", + "description": "A model of a cafe.", + "likes": 0, + "downloads": 17591, + "filesize": 513662, + "upload_date": "2018-01-27T00:40:15Z", + "modify_date": "2023-09-27T17:09:13Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cafe/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:40:08Z", + "updatedAt": "2024-03-24T12:10:34Z", + "name": "Zephyr Delta Wing", + "owner": "OpenRobotics", + "description": "A model of a Zephyr delta wing.", + "likes": 1, + "downloads": 84, + "filesize": 286901, + "upload_date": "2018-01-27T00:40:07Z", + "modify_date": "2023-09-27T17:09:23Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Zephyr%20Delta%20Wing/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:39:57Z", + "updatedAt": "2024-03-12T02:19:16Z", + "name": "Gas Station", + "owner": "OpenRobotics", + "description": "A model of a gas station.", + "likes": 0, + "downloads": 84, + "filesize": 1690909, + "upload_date": "2018-01-27T00:39:56Z", + "modify_date": "2023-09-27T17:09:30Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Gas%20Station/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:39:50Z", + "updatedAt": "2024-03-12T02:19:17Z", + "name": "DRC Practice: Hinged door", + "owner": "OpenRobotics", + "description": "A hinged door with two handles and no threshold.", + "likes": 0, + "downloads": 164, + "filesize": 98511, + "upload_date": "2018-01-27T00:39:49Z", + "modify_date": "2023-09-27T17:09:38Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Hinged%20door/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:39:44Z", + "updatedAt": "2024-03-25T08:18:42Z", + "name": "MPL right forearm", + "owner": "OpenRobotics", + "description": "A model of Johns Hopkins Applied Physics Lab (APL) Modular Prosthetic Limb (MPL) arm. This model is of a right forearm.", + "likes": 0, + "downloads": 52, + "filesize": 49776, + "upload_date": "2018-01-27T00:39:43Z", + "modify_date": "2023-09-27T17:09:42Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/MPL%20right%20forearm/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:39:37Z", + "updatedAt": "2024-03-28T10:41:06Z", + "name": "Stop Sign", + "owner": "OpenRobotics", + "description": "A stop sign.", + "likes": 0, + "downloads": 90, + "filesize": 695629, + "upload_date": "2018-01-27T00:39:37Z", + "modify_date": "2023-09-27T17:09:49Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Stop%20Sign/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:39:31Z", + "updatedAt": "2024-03-12T02:19:19Z", + "name": "Parking garage", + "owner": "OpenRobotics", + "description": "A parking garage.", + "likes": 0, + "downloads": 98, + "filesize": 1250690, + "upload_date": "2018-01-27T00:39:30Z", + "modify_date": "2023-09-27T17:10:04Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Parking%20garage/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:39:24Z", + "updatedAt": "2024-03-19T16:22:05Z", + "name": "Hokuyo", + "owner": "OpenRobotics", + "description": "Hokuyo model", + "likes": 0, + "downloads": 238, + "filesize": 65120, + "upload_date": "2018-01-27T00:39:23Z", + "modify_date": "2023-09-27T17:10:11Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Hokuyo/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:39:18Z", + "updatedAt": "2024-04-03T18:06:44Z", + "name": "Box target (green)", + "owner": "OpenRobotics", + "description": "A green box target that can be used to mark a location.", + "likes": 1, + "downloads": 52, + "filesize": 78404, + "upload_date": "2018-01-27T00:39:17Z", + "modify_date": "2023-09-27T17:10:15Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Box%20target%20%28green%29/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:39:12Z", + "updatedAt": "2024-04-01T18:47:49Z", + "name": "Polaris Ranger XP900", + "owner": "OpenRobotics", + "description": "A model of the Polaris Ranger XP900.", + "likes": 0, + "downloads": 109, + "filesize": 1411360, + "upload_date": "2018-01-27T00:39:11Z", + "modify_date": "2023-09-27T17:10:23Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Polaris%20Ranger%20XP900/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2018-01-27T00:39:04Z", + "updatedAt": "2024-03-12T02:19:22Z", + "name": "DRC Practice: Ladder", + "owner": "OpenRobotics", + "description": "This model approximates a the DRC Trials Industrial Ladder.", + "likes": 0, + "downloads": 34, + "filesize": 134542, + "upload_date": "2018-01-27T00:39:04Z", + "modify_date": "2023-09-27T17:10:30Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Ladder/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:38:58Z", + "updatedAt": "2024-03-12T02:19:23Z", + "name": "Round tin (top)", + "owner": "OpenRobotics", + "description": "The top piece of a cylindrical metal tin with a diameter of 8.4cm and a height of 1.15cm. Part of the ARAT set.", + "likes": 0, + "downloads": 34, + "filesize": 60013, + "upload_date": "2018-01-27T00:38:58Z", + "modify_date": "2023-09-27T17:10:35Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Round%20tin%20%28top%29/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:38:52Z", + "updatedAt": "2024-03-12T15:20:46Z", + "name": "RegionEventBox", + "owner": "OpenRobotics", + "description": "A transparent box which creates events when another model enters or exits its bounds.", + "likes": 0, + "downloads": 82, + "filesize": 5639, + "upload_date": "2018-01-27T00:38:52Z", + "modify_date": "2023-09-27T17:10:39Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/RegionEventBox/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:38:47Z", + "updatedAt": "2024-03-21T12:32:54Z", + "name": "PR2", + "owner": "OpenRobotics", + "description": "The Willow Garage PR2 model.", + "likes": 0, + "downloads": 296, + "filesize": 14559745, + "upload_date": "2018-01-27T00:38:40Z", + "modify_date": "2023-09-27T17:10:48Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/PR2/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:38:23Z", + "updatedAt": "2024-03-12T02:19:26Z", + "name": "NIST fiducial barrel", + "owner": "OpenRobotics", + "description": "NIST standard test arena fiducial barrel", + "likes": 0, + "downloads": 46, + "filesize": 49798, + "upload_date": "2018-01-27T00:38:23Z", + "modify_date": "2023-09-27T17:12:26Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIST%20fiducial%20barrel/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:38:17Z", + "updatedAt": "2024-03-12T02:19:26Z", + "name": "FRC Field 2015", + "owner": "OpenRobotics", + "description": "FIRST Robotics Competition field for the 2015 challenge.", + "likes": 0, + "downloads": 44, + "filesize": 3744577, + "upload_date": "2018-01-27T00:38:16Z", + "modify_date": "2023-09-27T17:12:33Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FRC%20Field%202015/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:38:03Z", + "updatedAt": "2024-03-18T12:18:13Z", + "name": "Wooden case with metal peg", + "owner": "OpenRobotics", + "description": "The wooden ARAT case with with a single metal peg.", + "likes": 0, + "downloads": 49, + "filesize": 584448, + "upload_date": "2018-01-27T00:38:03Z", + "modify_date": "2023-09-27T17:12:44Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Wooden%20case%20with%20metal%20peg/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:37:57Z", + "updatedAt": "2024-03-12T02:19:28Z", + "name": "Saucepan", + "owner": "OpenRobotics", + "description": "A saucepan.", + "likes": 0, + "downloads": 114, + "filesize": 40983, + "upload_date": "2018-01-27T00:37:56Z", + "modify_date": "2023-09-27T17:12:48Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Saucepan/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:37:51Z", + "updatedAt": "2024-04-04T05:52:45Z", + "name": "Gazebo", + "owner": "OpenRobotics", + "description": "A gazebo.", + "likes": 0, + "downloads": 20918, + "filesize": 1311334, + "upload_date": "2018-01-27T00:37:50Z", + "modify_date": "2023-09-27T17:12:53Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Gazebo/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:37:44Z", + "updatedAt": "2024-03-26T09:57:01Z", + "name": "Rag Doll", + "owner": "OpenRobotics", + "description": "A humanoid rag doll.", + "likes": 0, + "downloads": 78, + "filesize": 25074, + "upload_date": "2018-01-27T00:37:44Z", + "modify_date": "2023-09-27T17:12:58Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Rag%20Doll/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:37:38Z", + "updatedAt": "2024-03-12T02:19:30Z", + "name": "Submarine (sinking)", + "owner": "OpenRobotics", + "description": "An underwater submarine model that will sink in water. You can view this model in underwater.world environment: gazebo worlds/underwater.world", + "likes": 0, + "downloads": 48, + "filesize": 14191, + "upload_date": "2018-01-27T00:37:38Z", + "modify_date": "2023-09-27T17:13:02Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Submarine%20%28sinking%29/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:37:32Z", + "updatedAt": "2024-03-12T02:19:31Z", + "name": "DRC Practice: Ball Valve", + "owner": "OpenRobotics", + "description": "This model approximates a ball valve for the DRC Trials Task 7 which involves locating and closing a valve.", + "likes": 0, + "downloads": 35, + "filesize": 274696, + "upload_date": "2018-01-27T00:37:32Z", + "modify_date": "2023-09-27T17:13:06Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Ball%20Valve/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:37:25Z", + "updatedAt": "2024-03-12T02:19:31Z", + "name": "Ladder 75 Degrees 2 Handrails", + "owner": "OpenRobotics", + "description": "A ladder with 2 handrails and a 75 degree incline from the floor.", + "likes": 0, + "downloads": 50, + "filesize": 71900, + "upload_date": "2018-01-27T00:37:25Z", + "modify_date": "2023-09-27T17:13:12Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Ladder%2075%20Degrees%202%20Handrails/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:37:19Z", + "updatedAt": "2024-03-27T18:07:20Z", + "name": "RoboCup SPL Ball", + "owner": "OpenRobotics", + "description": "A RoboCup SPL ball.", + "likes": 0, + "downloads": 73, + "filesize": 185645, + "upload_date": "2018-01-27T00:37:19Z", + "modify_date": "2023-09-27T17:13:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/RoboCup%20SPL%20Ball/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:37:14Z", + "updatedAt": "2024-04-03T12:27:18Z", + "name": "Double pendulum with base", + "owner": "OpenRobotics", + "description": "A double pendulum with cylindrical shapes and rotation on the x axis.\n The pendulum is attached to a heavy base that rests on the ground.", + "likes": 0, + "downloads": 1031, + "filesize": 34092, + "upload_date": "2018-01-27T00:37:13Z", + "modify_date": "2023-09-27T17:13:19Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Double%20pendulum%20with%20base/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:37:08Z", + "updatedAt": "2024-03-12T02:19:33Z", + "name": "RoboCup 3D Simulator Goal", + "owner": "OpenRobotics", + "description": "A RoboCup 3D Simulator League goal according to 2014 rules.", + "likes": 0, + "downloads": 327, + "filesize": 201716, + "upload_date": "2018-01-27T00:37:07Z", + "modify_date": "2023-09-27T17:13:23Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/RoboCup%203D%20Simulator%20Goal/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:37:02Z", + "updatedAt": "2024-03-31T23:26:49Z", + "name": "Textured Shapes", + "owner": "OpenRobotics", + "description": "Model with links of simple shapes and texture applied.", + "likes": 0, + "downloads": 79, + "filesize": 84063, + "upload_date": "2018-01-27T00:37:02Z", + "modify_date": "2023-09-27T17:13:27Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Textured%20Shapes/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:36:56Z", + "updatedAt": "2024-04-04T04:09:03Z", + "name": "SUV", + "owner": "OpenRobotics", + "description": "An SUV.", + "likes": 1, + "downloads": 30190, + "filesize": 1895140, + "upload_date": "2018-01-27T00:36:56Z", + "modify_date": "2023-09-27T17:13:33Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SUV/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2018-01-27T00:36:49Z", + "updatedAt": "2024-03-23T21:16:20Z", + "name": "NIST maze wall triple holes 120", + "owner": "OpenRobotics", + "description": "1.2m high NIST standard test arena maze wall with 3 triple victim holes", + "likes": 0, + "downloads": 64, + "filesize": 511618, + "upload_date": "2018-01-27T00:36:48Z", + "modify_date": "2023-09-27T17:13:40Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIST%20maze%20wall%20triple%20holes%20120/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:36:42Z", + "updatedAt": "2024-03-12T02:19:36Z", + "name": "Box target (red)", + "owner": "OpenRobotics", + "description": "A red box target that can be used to mark a location.", + "likes": 1, + "downloads": 56, + "filesize": 69602, + "upload_date": "2018-01-27T00:36:42Z", + "modify_date": "2023-09-27T17:13:46Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Box%20target%20%28red%29/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:36:37Z", + "updatedAt": "2024-03-12T02:19:37Z", + "name": "FRC 2016 Ramparts", + "owner": "OpenRobotics", + "description": "Ramparts game component for the 2016 FIRST Robotics Competition.", + "likes": 0, + "downloads": 42, + "filesize": 8728, + "upload_date": "2018-01-27T00:36:36Z", + "modify_date": "2023-09-27T17:13:51Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FRC%202016%20Ramparts/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:36:31Z", + "updatedAt": "2024-04-04T04:11:20Z", + "name": "Oak tree", + "owner": "OpenRobotics", + "description": "An oak tree.", + "likes": 1, + "downloads": 41544, + "filesize": 589364, + "upload_date": "2018-01-27T00:36:30Z", + "modify_date": "2023-09-27T17:13:55Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Oak%20tree/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:36:24Z", + "updatedAt": "2024-03-31T14:23:29Z", + "name": "TurtleBot", + "owner": "OpenRobotics", + "description": "A model of the turtlebot", + "likes": 1, + "downloads": 838, + "filesize": 1441635, + "upload_date": "2018-01-27T00:36:23Z", + "modify_date": "2023-09-27T17:14:03Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/TurtleBot/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:36:13Z", + "updatedAt": "2024-04-03T13:42:05Z", + "name": "Brick Box 3x1x3", + "owner": "OpenRobotics", + "description": "Brick Box 3x1x3", + "likes": 0, + "downloads": 140, + "filesize": 3947790, + "upload_date": "2018-01-27T00:36:13Z", + "modify_date": "2023-09-27T17:14:18Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Brick%20Box%203x1x3/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:36:06Z", + "updatedAt": "2024-03-28T00:00:41Z", + "name": "RoboCup 2009 SPL Field", + "owner": "OpenRobotics", + "description": "A RoboCup Standard Platform League field according to 2009 rules.", + "likes": 0, + "downloads": 63, + "filesize": 2034430, + "upload_date": "2018-01-27T00:36:05Z", + "modify_date": "2023-09-27T17:14:27Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/RoboCup%202009%20SPL%20Field/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:35:58Z", + "updatedAt": "2024-03-12T02:19:41Z", + "name": "Number6", + "owner": "OpenRobotics", + "description": "A box that displays the number 6.", + "likes": 0, + "downloads": 82, + "filesize": 116517, + "upload_date": "2018-01-27T00:35:57Z", + "modify_date": "2023-09-27T17:14:35Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Number6/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:35:51Z", + "updatedAt": "2024-03-16T10:16:41Z", + "name": "FRC 2016 Rockwall", + "owner": "OpenRobotics", + "description": "Rockwall game component for the 2016 FIRST Robotics Competition.", + "likes": 0, + "downloads": 53, + "filesize": 6763, + "upload_date": "2018-01-27T00:35:51Z", + "modify_date": "2023-09-27T17:14:39Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FRC%202016%20Rockwall/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:35:46Z", + "updatedAt": "2024-03-24T16:01:54Z", + "name": "Asphalt Plane", + "owner": "OpenRobotics", + "description": "An asphalt textured plane.", + "likes": 2, + "downloads": 457, + "filesize": 2995714, + "upload_date": "2018-01-27T00:35:45Z", + "modify_date": "2023-09-27T17:14:45Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Asphalt%20Plane/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:35:38Z", + "updatedAt": "2024-03-27T05:50:30Z", + "name": "NIST elevated floor 120", + "owner": "OpenRobotics", + "description": "1.2m high NIST standard test arena elevated floor", + "likes": 0, + "downloads": 46, + "filesize": 869425, + "upload_date": "2018-01-27T00:35:37Z", + "modify_date": "2023-09-27T17:14:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIST%20elevated%20floor%20120/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:35:31Z", + "updatedAt": "2024-03-12T02:19:44Z", + "name": "Ladder 60 Degrees 0 Handrails", + "owner": "OpenRobotics", + "description": "A ladder with 0 handrails and a 60 degree incline from the floor.", + "likes": 0, + "downloads": 45, + "filesize": 30520, + "upload_date": "2018-01-27T00:35:31Z", + "modify_date": "2023-09-27T17:14:57Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Ladder%2060%20Degrees%200%20Handrails/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:35:25Z", + "updatedAt": "2024-03-27T14:25:21Z", + "name": "DRC Practive: Valve wall", + "owner": "OpenRobotics", + "description": "This model approximates a the DRC Trials \"5-dice patteren\" wall with components for ball valve.", + "likes": 0, + "downloads": 50, + "filesize": 336519, + "upload_date": "2018-01-27T00:35:25Z", + "modify_date": "2023-09-27T17:15:02Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practive:%20Valve%20wall/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:35:19Z", + "updatedAt": "2024-03-28T09:13:03Z", + "name": "Post office", + "owner": "OpenRobotics", + "description": "A post office.", + "likes": 0, + "downloads": 81, + "filesize": 536325, + "upload_date": "2018-01-27T00:35:19Z", + "modify_date": "2023-09-27T17:15:09Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Post%20office/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:35:13Z", + "updatedAt": "2024-03-25T10:38:52Z", + "name": "Cart: front steering", + "owner": "OpenRobotics", + "description": "A 4-wheel cart with rigid suspension\n and front-wheel steering.", + "likes": 0, + "downloads": 94, + "filesize": 18189, + "upload_date": "2018-01-27T00:35:12Z", + "modify_date": "2023-09-27T17:15:14Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cart:%20front%20steering/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:35:07Z", + "updatedAt": "2024-03-12T02:19:46Z", + "name": "Ball Bearing", + "owner": "OpenRobotics", + "description": "A 6mm diameter ball bearing.", + "likes": 0, + "downloads": 56, + "filesize": 154343, + "upload_date": "2018-01-27T00:35:06Z", + "modify_date": "2023-09-27T17:15:18Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Ball%20Bearing/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:35:01Z", + "updatedAt": "2024-03-29T10:48:47Z", + "name": "Simple Gripper", + "owner": "OpenRobotics", + "description": "A simple pinch gripper.", + "likes": 0, + "downloads": 45, + "filesize": 13540, + "upload_date": "2018-01-27T00:35:00Z", + "modify_date": "2023-09-27T17:15:21Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Simple%20Gripper/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:34:55Z", + "updatedAt": "2024-03-28T08:18:35Z", + "name": "Truss bridge", + "owner": "OpenRobotics", + "description": "A truss bridge.", + "likes": 0, + "downloads": 71, + "filesize": 934277, + "upload_date": "2018-01-27T00:34:54Z", + "modify_date": "2023-09-27T17:15:27Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Truss%20bridge/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:34:48Z", + "updatedAt": "2024-03-31T04:45:29Z", + "name": "Wood block 10 x 2.5 x 1 cm", + "owner": "OpenRobotics", + "description": "A 10 x 2.5 x 1 cm wooden block.", + "likes": 0, + "downloads": 62, + "filesize": 98152, + "upload_date": "2018-01-27T00:34:47Z", + "modify_date": "2023-09-27T17:15:33Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Wood%20block%2010%20x%202.5%20x%201%20cm/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:34:42Z", + "updatedAt": "2024-04-04T03:21:25Z", + "name": "Prius Hybrid with sensors", + "owner": "OpenRobotics", + "description": "Toyota Prius Hybrid with sensors.", + "likes": 0, + "downloads": 277, + "filesize": 85272, + "upload_date": "2018-01-27T00:34:41Z", + "modify_date": "2023-09-27T17:15:37Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Prius%20Hybrid%20with%20sensors/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2018-01-27T00:34:36Z", + "updatedAt": "2024-03-20T22:33:50Z", + "name": "Cabinet", + "owner": "OpenRobotics", + "description": "A wooden cabinet.", + "likes": 1, + "downloads": 256, + "filesize": 396436, + "upload_date": "2018-01-27T00:34:35Z", + "modify_date": "2023-09-27T17:15:41Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cabinet/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:34:29Z", + "updatedAt": "2024-03-12T02:19:50Z", + "name": "Car Wheel", + "owner": "OpenRobotics", + "description": "A car wheel.", + "likes": 0, + "downloads": 130, + "filesize": 669841, + "upload_date": "2018-01-27T00:34:29Z", + "modify_date": "2023-09-27T17:15:48Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Car%20Wheel/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:34:23Z", + "updatedAt": "2024-03-27T14:10:32Z", + "name": "DRC Practice: Wheel valve large wall", + "owner": "OpenRobotics", + "description": "A combination of drc_practice_wall and multiple drc_practice_wheel_valve_large models.", + "likes": 0, + "downloads": 39, + "filesize": 218917, + "upload_date": "2018-01-27T00:34:22Z", + "modify_date": "2023-09-27T17:15:54Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Wheel%20valve%20large%20wall/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:34:16Z", + "updatedAt": "2024-03-12T02:19:51Z", + "name": "Mass on rails", + "owner": "OpenRobotics", + "description": "A prismatic joint that lifts a mass.", + "likes": 0, + "downloads": 45, + "filesize": 12756, + "upload_date": "2018-01-27T00:34:15Z", + "modify_date": "2023-09-27T17:15:58Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Mass%20on%20rails/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:34:10Z", + "updatedAt": "2024-03-12T02:19:52Z", + "name": "Control Console", + "owner": "OpenRobotics", + "description": "A control console.", + "likes": 0, + "downloads": 69, + "filesize": 1028613, + "upload_date": "2018-01-27T00:34:09Z", + "modify_date": "2023-09-27T17:16:03Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Control%20Console/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:34:03Z", + "updatedAt": "2024-03-31T04:25:37Z", + "name": "NIST simple ramp 120", + "owner": "OpenRobotics", + "description": "1.2m high NIST standard test arena simple ramp", + "likes": 0, + "downloads": 44, + "filesize": 747897, + "upload_date": "2018-01-27T00:34:02Z", + "modify_date": "2023-09-27T17:16:10Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/NIST%20simple%20ramp%20120/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:33:56Z", + "updatedAt": "2024-03-16T10:16:57Z", + "name": "DRC Practice: Hand wheel valve wall", + "owner": "OpenRobotics", + "description": "A combination of drc_practice_wall and multiple drc_practice_hand_wheel_valve models.", + "likes": 0, + "downloads": 34, + "filesize": 194772, + "upload_date": "2018-01-27T00:33:55Z", + "modify_date": "2023-09-27T17:16:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Hand%20wheel%20valve%20wall/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:33:49Z", + "updatedAt": "2024-04-01T17:53:30Z", + "name": "Iris with Standoffs", + "owner": "OpenRobotics", + "description": "A copy of the 3DR Iris model taken from\n https://github.com/PX4/sitl_gazebo/tree/master/models\n Local modifications include adding standoffs,\n inertia and collision updates..", + "likes": 0, + "downloads": 108, + "filesize": 6289387, + "upload_date": "2018-01-27T00:33:48Z", + "modify_date": "2023-09-27T17:16:24Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Iris%20with%20Standoffs/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:33:33Z", + "updatedAt": "2024-03-16T10:16:54Z", + "name": "DRC Practice: Ball valve wall", + "owner": "OpenRobotics", + "description": "A combination of drc_practice_wall and multiple drc_practice_ball_valve models.", + "likes": 0, + "downloads": 44, + "filesize": 194759, + "upload_date": "2018-01-27T00:33:32Z", + "modify_date": "2023-09-27T17:16:42Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Ball%20valve%20wall/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:33:26Z", + "updatedAt": "2024-03-12T02:19:56Z", + "name": "Disk Part", + "owner": "OpenRobotics", + "description": "A hypothetical disk part that might exist in an industrial manufacturing setting.", + "likes": 0, + "downloads": 133, + "filesize": 288271, + "upload_date": "2018-01-27T00:33:25Z", + "modify_date": "2023-09-27T17:16:46Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Disk%20Part/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:33:20Z", + "updatedAt": "2024-03-12T02:19:57Z", + "name": "DRC Practice: Wheel valve large", + "owner": "OpenRobotics", + "description": "This model approximates a valve with a wheel handle for the DRC Trials Task 7 which involves locating and closing a valve.", + "likes": 0, + "downloads": 35, + "filesize": 1235107, + "upload_date": "2018-01-27T00:33:19Z", + "modify_date": "2023-09-27T17:16:53Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Wheel%20valve%20large/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:33:10Z", + "updatedAt": "2024-03-12T02:19:57Z", + "name": "Ladder 75 Degrees 0 Handrails", + "owner": "OpenRobotics", + "description": "A ladder with 0 handrails and a 75 degree incline from the floor.", + "likes": 0, + "downloads": 49, + "filesize": 27319, + "upload_date": "2018-01-27T00:33:10Z", + "modify_date": "2023-09-27T17:17:00Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Ladder%2075%20Degrees%200%20Handrails/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:33:05Z", + "updatedAt": "2024-03-12T02:19:58Z", + "name": "DRC Practice: Door debris base", + "owner": "OpenRobotics", + "description": "This model approximates a the DRC Trials base platform for door debris.", + "likes": 0, + "downloads": 37, + "filesize": 9211, + "upload_date": "2018-01-27T00:33:04Z", + "modify_date": "2023-09-27T17:17:03Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Door%20debris%20base/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:32:59Z", + "updatedAt": "2024-03-12T02:19:59Z", + "name": "Ladder 60 Degrees 2 Handrails", + "owner": "OpenRobotics", + "description": "A ladder with 2 handrails and a 60 degree incline from the floor.", + "likes": 0, + "downloads": 45, + "filesize": 87340, + "upload_date": "2018-01-27T00:32:58Z", + "modify_date": "2023-09-27T17:17:08Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Ladder%2060%20Degrees%202%20Handrails/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:32:53Z", + "updatedAt": "2024-03-12T02:19:59Z", + "name": "Marble 1.5 cm", + "owner": "OpenRobotics", + "description": "A 1.5 cm diameter marble.", + "likes": 0, + "downloads": 46, + "filesize": 88574, + "upload_date": "2018-01-27T00:32:52Z", + "modify_date": "2023-09-27T17:17:12Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Marble%201.5%20cm/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:32:47Z", + "updatedAt": "2024-03-12T15:23:07Z", + "name": "Cinder Block", + "owner": "OpenRobotics", + "description": "A model of a cinder block.", + "likes": 0, + "downloads": 66, + "filesize": 560095, + "upload_date": "2018-01-27T00:32:46Z", + "modify_date": "2023-09-27T17:17:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cinder%20Block/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:32:41Z", + "updatedAt": "2024-03-12T02:20:01Z", + "name": "Fire Station", + "owner": "OpenRobotics", + "description": "A fire station.", + "likes": 0, + "downloads": 149, + "filesize": 2690828, + "upload_date": "2018-01-27T00:32:40Z", + "modify_date": "2023-09-27T17:17:22Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fire%20Station/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:32:34Z", + "updatedAt": "2024-03-21T07:44:09Z", + "name": "Cart: rigid suspension", + "owner": "OpenRobotics", + "description": "A 4-wheel cart with rigid suspension, no steering.", + "likes": 0, + "downloads": 74, + "filesize": 17868, + "upload_date": "2018-01-27T00:32:33Z", + "modify_date": "2023-09-27T17:17:29Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cart:%20rigid%20suspension/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:32:28Z", + "updatedAt": "2024-03-16T10:17:12Z", + "name": "DRC Practice: Handle wheel valve wall", + "owner": "OpenRobotics", + "description": "A combination of drc_practice_wall and multiple drc_practice_handle_wheel_valve models.", + "likes": 0, + "downloads": 44, + "filesize": 192339, + "upload_date": "2018-01-27T00:32:28Z", + "modify_date": "2023-09-27T17:17:33Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Handle%20wheel%20valve%20wall/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:32:22Z", + "updatedAt": "2024-03-28T09:12:33Z", + "name": "Apartment", + "owner": "OpenRobotics", + "description": "An apartment building.", + "likes": 0, + "downloads": 268, + "filesize": 1321165, + "upload_date": "2018-01-27T00:32:21Z", + "modify_date": "2023-09-27T17:17:38Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Apartment/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:32:15Z", + "updatedAt": "2024-03-29T17:45:48Z", + "name": "Willow Garage", + "owner": "OpenRobotics", + "description": "The offices of Willow Garage", + "likes": 1, + "downloads": 564, + "filesize": 693320, + "upload_date": "2018-01-27T00:32:14Z", + "modify_date": "2023-09-27T17:17:45Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Willow%20Garage/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:32:07Z", + "updatedAt": "2024-04-04T04:11:06Z", + "name": "Fountain", + "owner": "OpenRobotics", + "description": "A fountain.", + "likes": 0, + "downloads": 23246, + "filesize": 533373, + "upload_date": "2018-01-27T00:32:06Z", + "modify_date": "2023-09-27T17:17:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fountain/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:32:00Z", + "updatedAt": "2024-03-12T02:20:06Z", + "name": "Walkway Metal 90 degree", + "owner": "OpenRobotics", + "description": "A 90 degree turn metal walkway section. This model can be stitched together to create longer paths.", + "likes": 0, + "downloads": 47, + "filesize": 185956, + "upload_date": "2018-01-27T00:32:00Z", + "modify_date": "2023-09-27T17:17:58Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Walkway%20Metal%2090%20degree/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:31:54Z", + "updatedAt": "2024-03-25T08:20:45Z", + "name": "FIRST 2015 trash can", + "owner": "OpenRobotics", + "description": "A trash can.", + "likes": 0, + "downloads": 87, + "filesize": 309077, + "upload_date": "2018-01-27T00:31:54Z", + "modify_date": "2023-09-27T17:18:02Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FIRST%202015%20trash%20can/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:31:48Z", + "updatedAt": "2024-04-03T18:54:04Z", + "name": "Wood cube 5cm", + "owner": "OpenRobotics", + "description": "A 5x5x5 cm wooden cube.", + "likes": 0, + "downloads": 1332, + "filesize": 1434616, + "upload_date": "2018-01-27T00:31:47Z", + "modify_date": "2023-09-27T17:18:08Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Wood%20cube%205cm/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:31:41Z", + "updatedAt": "2024-03-18T03:21:16Z", + "name": "Iris with Standoffs and Camera LiftDrag ArduCopter Plugins", + "owner": "OpenRobotics", + "description": "starting with iris_with_standoffs\n add LiftDragPlugin\n add ArduCopterPlugin\n attach gimbal_small_2d model with GimbalSmall2dPlugin", + "likes": 0, + "downloads": 89, + "filesize": 131194, + "upload_date": "2018-01-27T00:31:41Z", + "modify_date": "2023-09-27T17:18:13Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Iris%20with%20Standoffs%20and%20Camera%20LiftDrag%20ArduCopter%20Plugins/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:31:28Z", + "updatedAt": "2024-03-16T14:47:44Z", + "name": "DRC Practice: Weighted door", + "owner": "OpenRobotics", + "description": "A hinged door with two handles and no threshold. It requires approximately 3 pounds of force to open.", + "likes": 0, + "downloads": 231, + "filesize": 98636, + "upload_date": "2018-01-27T00:31:28Z", + "modify_date": "2023-09-27T17:18:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Weighted%20door/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:31:22Z", + "updatedAt": "2024-03-12T02:20:09Z", + "name": "Starting Pen", + "owner": "OpenRobotics", + "description": "A starting pen for a robot.", + "likes": 0, + "downloads": 54, + "filesize": 4877766, + "upload_date": "2018-01-27T00:31:21Z", + "modify_date": "2023-09-27T17:18:22Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Starting%20Pen/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:31:13Z", + "updatedAt": "2024-03-25T06:24:26Z", + "name": "Fire truck", + "owner": "OpenRobotics", + "description": "An fire truck.", + "likes": 0, + "downloads": 321, + "filesize": 1146317, + "upload_date": "2018-01-27T00:31:13Z", + "modify_date": "2023-09-27T17:18:34Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fire%20truck/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle" + ] + }, + { + "createdAt": "2018-01-27T00:31:07Z", + "updatedAt": "2024-03-12T02:20:11Z", + "name": "Metal peg board", + "owner": "OpenRobotics", + "description": "A wooden board with a single metal peg. Part of the ARAT set.", + "likes": 0, + "downloads": 49, + "filesize": 89247, + "upload_date": "2018-01-27T00:31:06Z", + "modify_date": "2023-09-27T17:18:39Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Metal%20peg%20board/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:31:01Z", + "updatedAt": "2024-03-12T02:20:12Z", + "name": "DRC Practice: Wheel valve", + "owner": "OpenRobotics", + "description": "This model approximates a valve with a wheel handle for the DRC Trials Task 7 which involves locating and closing a valve.", + "likes": 0, + "downloads": 35, + "filesize": 238889, + "upload_date": "2018-01-27T00:31:01Z", + "modify_date": "2023-09-27T17:18:43Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Wheel%20valve/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:30:55Z", + "updatedAt": "2024-03-26T17:59:42Z", + "name": "Cinder block wide", + "owner": "OpenRobotics", + "description": "A model of a wide cinder block.", + "likes": 0, + "downloads": 53, + "filesize": 17018, + "upload_date": "2018-01-27T00:30:55Z", + "modify_date": "2023-09-27T17:18:48Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cinder%20block%20wide/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:30:49Z", + "updatedAt": "2024-04-04T06:20:17Z", + "name": "Bus", + "owner": "OpenRobotics", + "description": "A bus", + "likes": 0, + "downloads": 7509, + "filesize": 512710, + "upload_date": "2018-01-27T00:30:49Z", + "modify_date": "2023-09-27T17:18:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Bus/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:30:43Z", + "updatedAt": "2024-03-20T22:33:19Z", + "name": "Kitchen and Dining", + "owner": "OpenRobotics", + "description": "A model of a kitchen and dining room.", + "likes": 1, + "downloads": 230, + "filesize": 3662576, + "upload_date": "2018-01-27T00:30:42Z", + "modify_date": "2023-09-27T17:19:01Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Kitchen%20and%20Dining/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:30:28Z", + "updatedAt": "2024-03-23T12:27:27Z", + "name": "Submarine", + "owner": "OpenRobotics", + "description": "An underwater submarine model. You can view this model in underwater.world environment: gazebo worlds/underwater.world", + "likes": 0, + "downloads": 160, + "filesize": 14940, + "upload_date": "2018-01-27T00:30:28Z", + "modify_date": "2023-09-27T17:19:24Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Submarine/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:30:22Z", + "updatedAt": "2024-03-12T02:20:15Z", + "name": "Breakable Test", + "owner": "OpenRobotics", + "description": "Testing breakable wall panels. Note that model.sdf\n was generated from model.rsdf using ruby erb.\n `erb model.rsdf > model.sdf`", + "likes": 0, + "downloads": 52, + "filesize": 12435, + "upload_date": "2018-01-27T00:30:22Z", + "modify_date": "2023-09-27T17:19:28Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Breakable%20Test/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:30:15Z", + "updatedAt": "2024-04-02T18:36:25Z", + "name": "Hinged door", + "owner": "OpenRobotics", + "description": "A hinged door with two handles", + "likes": 1, + "downloads": 1651, + "filesize": 757832, + "upload_date": "2018-01-27T00:30:14Z", + "modify_date": "2023-09-27T17:19:32Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Hinged%20door/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:30:07Z", + "updatedAt": "2024-03-17T06:19:40Z", + "name": "Grocery store", + "owner": "OpenRobotics", + "description": "A grocery store.", + "likes": 0, + "downloads": 143, + "filesize": 918714, + "upload_date": "2018-01-27T00:30:06Z", + "modify_date": "2023-09-27T17:19:40Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Grocery%20store/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:30:00Z", + "updatedAt": "2024-03-12T02:20:18Z", + "name": "Number2", + "owner": "OpenRobotics", + "description": "A box that displays the number 2.", + "likes": 0, + "downloads": 120, + "filesize": 87627, + "upload_date": "2018-01-27T00:29:59Z", + "modify_date": "2023-09-27T17:19:46Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Number2/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:29:54Z", + "updatedAt": "2024-04-04T05:52:10Z", + "name": "Sun", + "owner": "OpenRobotics", + "description": "A directional light for the sun.", + "likes": 0, + "downloads": 8682, + "filesize": 1823, + "upload_date": "2018-01-27T00:29:54Z", + "modify_date": "2023-09-27T17:19:50Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2018-01-27T00:29:49Z", + "updatedAt": "2024-04-04T00:17:14Z", + "name": "Prius Hybrid", + "owner": "OpenRobotics", + "description": "Toyota Prius Hybrid", + "likes": 0, + "downloads": 7993, + "filesize": 1284676, + "upload_date": "2018-01-27T00:29:48Z", + "modify_date": "2023-09-27T17:19:54Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Prius%20Hybrid/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2018-01-27T00:29:42Z", + "updatedAt": "2024-04-04T03:22:26Z", + "name": "Robonaut", + "owner": "OpenRobotics", + "description": "Robonaut 2", + "likes": 0, + "downloads": 11599, + "filesize": 4372041, + "upload_date": "2018-01-27T00:29:38Z", + "modify_date": "2023-09-27T17:20:04Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Robonaut/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:29:26Z", + "updatedAt": "2024-04-04T06:19:16Z", + "name": "Hatchback", + "owner": "OpenRobotics", + "description": "A hatchback", + "likes": 1, + "downloads": 5923, + "filesize": 1011216, + "upload_date": "2018-01-27T00:29:25Z", + "modify_date": "2023-09-27T17:20:39Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Hatchback/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2018-01-27T00:29:19Z", + "updatedAt": "2024-03-25T07:56:52Z", + "name": "Simple Arm Gripper", + "owner": "OpenRobotics", + "description": "A simple arm and pinch gripper.", + "likes": 0, + "downloads": 90, + "filesize": 15369, + "upload_date": "2018-01-27T00:29:19Z", + "modify_date": "2023-09-27T17:20:45Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Simple%20Arm%20Gripper/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:29:13Z", + "updatedAt": "2024-03-12T02:20:22Z", + "name": "Wooden Peg", + "owner": "OpenRobotics", + "description": "An 8cm high wooden peg.", + "likes": 0, + "downloads": 60, + "filesize": 192937, + "upload_date": "2018-01-27T00:29:13Z", + "modify_date": "2023-09-27T17:20:49Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Wooden%20Peg/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:29:07Z", + "updatedAt": "2024-04-04T04:21:46Z", + "name": "Ground Plane", + "owner": "OpenRobotics", + "description": "A simple ground plane.", + "likes": 0, + "downloads": 80035, + "filesize": 6533, + "upload_date": "2018-01-27T00:29:07Z", + "modify_date": "2023-09-27T17:20:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Ground%20Plane/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:29:02Z", + "updatedAt": "2024-03-12T02:20:23Z", + "name": "OSRF Elevator", + "owner": "OpenRobotics", + "description": "The Open Source Robotics Foundation building, with a fictitious second floor and elevator. This model requires Gazebo6 or later.", + "likes": 0, + "downloads": 46, + "filesize": 15552, + "upload_date": "2018-01-27T00:29:01Z", + "modify_date": "2023-09-27T17:20:56Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/OSRF%20Elevator/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:28:56Z", + "updatedAt": "2024-04-04T06:19:15Z", + "name": "Hatchback red", + "owner": "OpenRobotics", + "description": "An red hatchback", + "likes": 1, + "downloads": 5482, + "filesize": 671020, + "upload_date": "2018-01-27T00:28:55Z", + "modify_date": "2023-09-27T17:21:00Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Hatchback%20red/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle", + "car" + ] + }, + { + "createdAt": "2018-01-27T00:28:49Z", + "updatedAt": "2024-04-02T08:24:50Z", + "name": "Stop light", + "owner": "OpenRobotics", + "description": "A traffic light with red, yellow and green lights.\n A light can be turned on by setting its emissive color either on the SDF or programmatically.", + "likes": 1, + "downloads": 108, + "filesize": 430413, + "upload_date": "2018-01-27T00:28:48Z", + "modify_date": "2023-09-27T17:21:06Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Stop%20light/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:28:43Z", + "updatedAt": "2024-04-04T05:03:43Z", + "name": "Euro pallet", + "owner": "OpenRobotics", + "description": "A wooden european pallet.", + "likes": 1, + "downloads": 716, + "filesize": 25056, + "upload_date": "2018-01-27T00:28:42Z", + "modify_date": "2023-09-27T17:21:12Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Euro%20pallet/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:28:37Z", + "updatedAt": "2024-03-12T02:20:26Z", + "name": "Fire hose long curled", + "owner": "OpenRobotics", + "description": "This model approximates a fire hose.", + "likes": 0, + "downloads": 48, + "filesize": 650954, + "upload_date": "2018-01-27T00:28:36Z", + "modify_date": "2023-09-27T17:21:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Fire%20hose%20long%20curled/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:28:30Z", + "updatedAt": "2024-03-12T02:20:26Z", + "name": "FRC 2016 Portcullis", + "owner": "OpenRobotics", + "description": "Portcullis game component for the 2016 FIRST Robotics Competition.", + "likes": 0, + "downloads": 40, + "filesize": 14545, + "upload_date": "2018-01-27T00:28:29Z", + "modify_date": "2023-09-27T17:21:24Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FRC%202016%20Portcullis/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:28:24Z", + "updatedAt": "2024-03-30T05:07:50Z", + "name": "Checkerboard Plane", + "owner": "OpenRobotics", + "description": "A plane with a reference checkerboard texture on it, used to validate and calibrate camera models. The checkerboard is 8x8 squares (like a standard checkerboard), and measures 2m on each side.", + "likes": 1, + "downloads": 119, + "filesize": 30229, + "upload_date": "2018-01-27T00:28:23Z", + "modify_date": "2023-09-27T17:21:28Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Checkerboard%20Plane/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:28:18Z", + "updatedAt": "2024-03-15T18:09:08Z", + "name": "Mars Rover", + "owner": "OpenRobotics", + "description": "A generic Mars rover. This is not modeled after any particular rover.\n Currently, this model is static.", + "likes": 1, + "downloads": 204, + "filesize": 1536050, + "upload_date": "2018-01-27T00:28:17Z", + "modify_date": "2023-09-27T17:21:33Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Mars%20Rover/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:28:10Z", + "updatedAt": "2024-03-12T02:20:28Z", + "name": "T Brace Part", + "owner": "OpenRobotics", + "description": "A hypothetical T brace part that might exist in an industrial manufacturing setting.", + "likes": 0, + "downloads": 375, + "filesize": 204555, + "upload_date": "2018-01-27T00:28:10Z", + "modify_date": "2023-09-27T17:21:39Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/T%20Brace%20Part/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:28:04Z", + "updatedAt": "2024-03-27T18:09:35Z", + "name": "DRC Practice: Orange Jersey Barrier", + "owner": "OpenRobotics", + "description": "An orange jersey barrier used in DRC Practice.", + "likes": 0, + "downloads": 126, + "filesize": 49133, + "upload_date": "2018-01-27T00:28:04Z", + "modify_date": "2023-09-27T17:21:43Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Orange%20Jersey%20Barrier/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:27:58Z", + "updatedAt": "2024-03-30T05:50:04Z", + "name": "Gear Part", + "owner": "OpenRobotics", + "description": "A hypothetical gear part that might exist in an industrial manufacturing setting.", + "likes": 0, + "downloads": 259, + "filesize": 265861, + "upload_date": "2018-01-27T00:27:57Z", + "modify_date": "2023-09-27T17:21:47Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Gear%20Part/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:27:52Z", + "updatedAt": "2024-03-12T02:20:30Z", + "name": "DRC Practice: Wood slats", + "owner": "OpenRobotics", + "description": "Wood slats used in DRC practice task 2.", + "likes": 0, + "downloads": 47, + "filesize": 497112, + "upload_date": "2018-01-27T00:27:51Z", + "modify_date": "2023-09-27T17:21:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Wood%20slats/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:27:45Z", + "updatedAt": "2024-03-12T02:20:31Z", + "name": "FRC 2016 Cheval de Frise", + "owner": "OpenRobotics", + "description": "Game component for the 2016 FIRST Robotics Competition.", + "likes": 0, + "downloads": 38, + "filesize": 213031, + "upload_date": "2018-01-27T00:27:45Z", + "modify_date": "2023-09-27T17:21:57Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FRC%202016%20Cheval%20de%20Frise/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:27:39Z", + "updatedAt": "2024-03-16T04:32:58Z", + "name": "Collapsed Fire Station", + "owner": "OpenRobotics", + "description": "A collapsed fire station.", + "likes": 0, + "downloads": 99, + "filesize": 1591405, + "upload_date": "2018-01-27T00:27:37Z", + "modify_date": "2023-09-27T17:22:02Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Collapsed%20Fire%20Station/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:27:31Z", + "updatedAt": "2024-03-12T02:20:33Z", + "name": "DRC Practice: Blue cylinder", + "owner": "OpenRobotics", + "description": "A blue cylinder used in DRC Practice.", + "likes": 0, + "downloads": 60, + "filesize": 118120, + "upload_date": "2018-01-27T00:27:30Z", + "modify_date": "2023-09-27T17:22:09Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Blue%20cylinder/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:27:25Z", + "updatedAt": "2024-03-12T02:20:34Z", + "name": "Asus Xtion Pro Depth Camera", + "owner": "OpenRobotics", + "description": "The ASUS Xtion Pro Live medium-range depth camera. Range: 0.3-3.5m.\n https://www.asus.com/us/3D-Sensor/Xtion_PRO_LIVE/", + "likes": 0, + "downloads": 53, + "filesize": 112696, + "upload_date": "2018-01-27T00:27:24Z", + "modify_date": "2023-09-27T17:22:14Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Asus%20Xtion%20Pro%20Depth%20Camera/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:27:18Z", + "updatedAt": "2024-04-02T08:11:45Z", + "name": "Walking person", + "owner": "OpenRobotics", + "description": "A walking person. Model created with Makehuman (http://www.makehuman.org/)", + "likes": 0, + "downloads": 886, + "filesize": 26058180, + "upload_date": "2018-01-27T00:27:17Z", + "modify_date": "2023-09-27T17:22:23Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Walking%20person/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:27:01Z", + "updatedAt": "2024-04-03T14:18:21Z", + "name": "Ambulance", + "owner": "OpenRobotics", + "description": "An ambulance.", + "likes": 0, + "downloads": 889, + "filesize": 496141, + "upload_date": "2018-01-27T00:27:01Z", + "modify_date": "2023-09-27T17:22:44Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Ambulance/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "vehicle" + ] + }, + { + "createdAt": "2018-01-27T00:26:55Z", + "updatedAt": "2024-03-12T02:20:38Z", + "name": "House 2", + "owner": "OpenRobotics", + "description": "A model of a residential house.", + "likes": 1, + "downloads": 197, + "filesize": 1437468, + "upload_date": "2018-01-27T00:26:54Z", + "modify_date": "2023-09-27T17:22:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/House%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:26:48Z", + "updatedAt": "2024-03-12T02:20:39Z", + "name": "SRC: Doorway", + "owner": "OpenRobotics", + "description": "A doorway used in the Space Robotics Challenge.", + "likes": 0, + "downloads": 53, + "filesize": 990330, + "upload_date": "2018-01-27T00:26:47Z", + "modify_date": "2023-09-27T17:23:00Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/SRC:%20Doorway/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:26:41Z", + "updatedAt": "2024-03-12T02:20:40Z", + "name": "Water tower", + "owner": "OpenRobotics", + "description": "A water tower.", + "likes": 0, + "downloads": 99, + "filesize": 1047192, + "upload_date": "2018-01-27T00:26:41Z", + "modify_date": "2023-09-27T17:23:07Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Water%20tower/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:26:34Z", + "updatedAt": "2024-04-01T20:36:18Z", + "name": "Camera", + "owner": "OpenRobotics", + "description": "A simple camera with a box for visualization.", + "likes": 0, + "downloads": 1129, + "filesize": 8980, + "upload_date": "2018-01-27T00:26:34Z", + "modify_date": "2023-09-27T17:23:13Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Camera/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:26:29Z", + "updatedAt": "2024-03-22T20:36:33Z", + "name": "Washer", + "owner": "OpenRobotics", + "description": "A 3.5 cm diameter washer.", + "likes": 0, + "downloads": 314, + "filesize": 13824, + "upload_date": "2018-01-27T00:26:28Z", + "modify_date": "2023-09-27T17:23:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Washer/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:26:23Z", + "updatedAt": "2024-03-12T02:20:42Z", + "name": "Calibration Plane", + "owner": "OpenRobotics", + "description": "A plane with a reference texture on it depicting an asymmetrical circle pattern. Used to validate and calibrate camera models. The plane is 2m x 2m, and the circle grid size is 6x8.", + "likes": 0, + "downloads": 79, + "filesize": 47312, + "upload_date": "2018-01-27T00:26:23Z", + "modify_date": "2023-09-27T17:23:20Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Calibration%20Plane/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:26:18Z", + "updatedAt": "2024-03-28T10:55:16Z", + "name": "VRC Driving Terrain", + "owner": "OpenRobotics", + "description": "One of the terrains for the driving task in the Virtual Robotics Challenge (VRC).", + "likes": 0, + "downloads": 148, + "filesize": 1139265, + "upload_date": "2018-01-27T00:26:17Z", + "modify_date": "2023-09-27T17:23:24Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/VRC%20Driving%20Terrain/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:26:11Z", + "updatedAt": "2024-03-21T11:22:16Z", + "name": "DRC Practice: Truss", + "owner": "OpenRobotics", + "description": "This model approximates a the DRC Trials Aluminum Truss.", + "likes": 0, + "downloads": 48, + "filesize": 363682, + "upload_date": "2018-01-27T00:26:10Z", + "modify_date": "2023-09-27T17:23:30Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Truss/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:26:04Z", + "updatedAt": "2024-03-25T07:57:19Z", + "name": "Arm Part", + "owner": "OpenRobotics", + "description": "A hypothetical part that might exist in an industrial manufacturing setting.", + "likes": 0, + "downloads": 71, + "filesize": 1015061, + "upload_date": "2018-01-27T00:26:04Z", + "modify_date": "2023-09-27T17:23:36Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Arm%20Part/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:25:58Z", + "updatedAt": "2024-03-12T02:20:45Z", + "name": "Tube 9.5 mm", + "owner": "OpenRobotics", + "description": "A 9.5 mm diameter metal tube.", + "likes": 0, + "downloads": 52, + "filesize": 11428, + "upload_date": "2018-01-27T00:25:58Z", + "modify_date": "2023-09-27T17:23:42Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Tube%209.5%20mm/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:25:52Z", + "updatedAt": "2024-03-31T23:26:50Z", + "name": "Spectrum Plane", + "owner": "OpenRobotics", + "description": "A plane with a reference full-color spectrum on it, used to validate and calibrate camera models. The plane is 2m x 2m.", + "likes": 1, + "downloads": 72, + "filesize": 275687, + "upload_date": "2018-01-27T00:25:52Z", + "modify_date": "2023-09-27T17:23:47Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Spectrum%20Plane/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:25:46Z", + "updatedAt": "2024-03-27T05:17:33Z", + "name": "Round tin (base)", + "owner": "OpenRobotics", + "description": "A cylindrical metal tin with a diameter of 8cm and a height of 2.8cm. Part of the ARAT set.", + "likes": 0, + "downloads": 39, + "filesize": 85451, + "upload_date": "2018-01-27T00:25:45Z", + "modify_date": "2023-09-27T17:23:52Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Round%20tin%20%28base%29/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:25:40Z", + "updatedAt": "2024-04-01T11:27:40Z", + "name": "Depth Camera", + "owner": "OpenRobotics", + "description": "A simple depth camera with a box for visualization.", + "likes": 0, + "downloads": 726, + "filesize": 7604, + "upload_date": "2018-01-27T00:25:40Z", + "modify_date": "2023-09-27T17:23:55Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Depth%20Camera/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:25:34Z", + "updatedAt": "2024-03-24T22:44:34Z", + "name": "Arrow (red)", + "owner": "OpenRobotics", + "description": "A static red arrow.", + "likes": 0, + "downloads": 39, + "filesize": 12305, + "upload_date": "2018-01-27T00:25:34Z", + "modify_date": "2023-09-27T17:23:58Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Arrow%20%28red%29/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:25:29Z", + "updatedAt": "2024-03-28T09:13:57Z", + "name": "Postbox", + "owner": "OpenRobotics", + "description": "A USPS box.", + "likes": 0, + "downloads": 465, + "filesize": 436154, + "upload_date": "2018-01-27T00:25:28Z", + "modify_date": "2023-09-27T17:24:02Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Postbox/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:25:22Z", + "updatedAt": "2024-03-12T02:20:48Z", + "name": "Kinect", + "owner": "OpenRobotics", + "description": "A model of the kinect sensor", + "likes": 0, + "downloads": 262, + "filesize": 267768, + "upload_date": "2018-01-27T00:25:22Z", + "modify_date": "2023-09-27T17:24:10Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Kinect/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:25:15Z", + "updatedAt": "2024-03-12T02:20:49Z", + "name": "DRC Practice: Handle Wheel valve", + "owner": "OpenRobotics", + "description": "This model approximates a valve with a wheel and handle for the DRC Trials Task 7 which involves locating and closing a valve.", + "likes": 0, + "downloads": 39, + "filesize": 443851, + "upload_date": "2018-01-27T00:25:14Z", + "modify_date": "2023-09-27T17:24:17Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Handle%20Wheel%20valve/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:25:07Z", + "updatedAt": "2024-03-24T22:44:16Z", + "name": "Hoop (red)", + "owner": "OpenRobotics", + "description": "Approximately 2.0m diameter hoop mounted on a 5m pole.", + "likes": 0, + "downloads": 82, + "filesize": 10916, + "upload_date": "2018-01-27T00:25:06Z", + "modify_date": "2023-09-27T17:24:23Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Hoop%20%28red%29/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:25:01Z", + "updatedAt": "2024-03-12T02:20:51Z", + "name": "Winding Valley Heightmap", + "owner": "OpenRobotics", + "description": "A winding valley heightmap.", + "likes": 0, + "downloads": 69, + "filesize": 76016, + "upload_date": "2018-01-27T00:25:00Z", + "modify_date": "2023-09-27T17:24:27Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "private": false + }, + { + "createdAt": "2018-01-27T00:24:54Z", + "updatedAt": "2024-03-21T07:45:35Z", + "name": "Follower Vehicle", + "owner": "OpenRobotics", + "description": "A differential drive vehicle equipped with the FollowerPlugin that follows\n the closest object detected by its depth camera sensor.", + "likes": 0, + "downloads": 143, + "filesize": 26227, + "upload_date": "2018-01-27T00:24:53Z", + "modify_date": "2023-09-27T17:24:30Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Follower%20Vehicle/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:24:48Z", + "updatedAt": "2024-03-28T09:13:01Z", + "name": "OSRF First Office", + "owner": "OpenRobotics", + "description": "OSRF's first office building.", + "likes": 0, + "downloads": 104, + "filesize": 1009191, + "upload_date": "2018-01-27T00:24:47Z", + "modify_date": "2023-09-27T17:24:34Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/OSRF%20First%20Office/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:24:40Z", + "updatedAt": "2024-03-12T02:20:52Z", + "name": "DRC Practice: 2x4 Lumber", + "owner": "OpenRobotics", + "description": "This model approximates a the DRC Trials 2 by 4 Wood.", + "likes": 0, + "downloads": 98, + "filesize": 339236, + "upload_date": "2018-01-27T00:24:40Z", + "modify_date": "2023-09-27T17:24:41Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%202x4%20Lumber/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:24:34Z", + "updatedAt": "2024-03-12T02:20:53Z", + "name": "DRC Practice: 4x4x20 Lumber", + "owner": "OpenRobotics", + "description": "This model approximates a the DRC Trials 4 by 4 by 40 inch Wood.", + "likes": 0, + "downloads": 47, + "filesize": 385891, + "upload_date": "2018-01-27T00:24:33Z", + "modify_date": "2023-09-27T17:24:46Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%204x4x20%20Lumber/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:24:27Z", + "updatedAt": "2024-04-02T18:56:36Z", + "name": "Stop light post", + "owner": "OpenRobotics", + "description": "A stop light post with one stop light on the right and another hanging on the center.\n An optional extension mesh is included but it's not part of the model.", + "likes": 0, + "downloads": 93, + "filesize": 331447, + "upload_date": "2018-01-27T00:24:27Z", + "modify_date": "2023-09-27T17:24:53Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Stop%20light%20post/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:24:21Z", + "updatedAt": "2024-03-25T08:21:01Z", + "name": "Hammer", + "owner": "OpenRobotics", + "description": "A hammer.", + "likes": 0, + "downloads": 208, + "filesize": 394272, + "upload_date": "2018-01-27T00:24:20Z", + "modify_date": "2023-09-27T17:25:00Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Hammer/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:24:14Z", + "updatedAt": "2024-03-17T14:37:03Z", + "name": "Cinder Block 2", + "owner": "OpenRobotics", + "description": "A model of a cinder block.", + "likes": 0, + "downloads": 61, + "filesize": 1398885, + "upload_date": "2018-01-27T00:24:13Z", + "modify_date": "2023-09-27T17:25:10Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Cinder%20Block%202/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:24:07Z", + "updatedAt": "2024-03-21T07:45:09Z", + "name": "Pioneer 3AT", + "owner": "OpenRobotics", + "description": "Pioneer 3AT Mobile Robot with Skid-Steer Plugin.", + "likes": 0, + "downloads": 172, + "filesize": 103203, + "upload_date": "2018-01-27T00:24:06Z", + "modify_date": "2023-09-27T17:25:16Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Pioneer%203AT/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:24:00Z", + "updatedAt": "2024-03-28T09:38:49Z", + "name": "Salon", + "owner": "OpenRobotics", + "description": "A downtown salon parlor.", + "likes": 0, + "downloads": 221, + "filesize": 1345612, + "upload_date": "2018-01-27T00:24:00Z", + "modify_date": "2023-09-27T17:25:23Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Salon/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:23:51Z", + "updatedAt": "2024-03-12T02:20:58Z", + "name": "Number9", + "owner": "OpenRobotics", + "description": "A box that displays the number 9.", + "likes": 0, + "downloads": 511, + "filesize": 116321, + "upload_date": "2018-01-27T00:23:50Z", + "modify_date": "2023-09-27T17:25:29Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Number9/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:23:45Z", + "updatedAt": "2024-03-16T09:08:40Z", + "name": "DRC Practice: Block wall", + "owner": "OpenRobotics", + "description": "This model approximates a the DRC Trials cinder block side walls for door debris.", + "likes": 0, + "downloads": 74, + "filesize": 8209, + "upload_date": "2018-01-27T00:23:44Z", + "modify_date": "2023-09-27T17:25:34Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/DRC%20Practice:%20Block%20wall/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:23:39Z", + "updatedAt": "2024-04-02T03:49:46Z", + "name": "Mud Box", + "owner": "OpenRobotics", + "description": "A mud textured plane.", + "likes": 0, + "downloads": 204, + "filesize": 1088336, + "upload_date": "2018-01-27T00:23:38Z", + "modify_date": "2023-09-27T17:25:39Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Mud%20Box/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:23:32Z", + "updatedAt": "2024-03-12T02:21:00Z", + "name": "RoboCup 2014 SPL Field", + "owner": "OpenRobotics", + "description": "A RoboCup Standard Platform League field according to 2014 rules.", + "likes": 0, + "downloads": 81, + "filesize": 179821, + "upload_date": "2018-01-27T00:23:32Z", + "modify_date": "2023-09-27T17:25:45Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/RoboCup%202014%20SPL%20Field/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:23:26Z", + "updatedAt": "2024-04-04T03:20:47Z", + "name": "Sonoma Raceway", + "owner": "OpenRobotics", + "description": "A model of the Sonoma Raceway", + "likes": 2, + "downloads": 8773, + "filesize": 8546577, + "upload_date": "2018-01-27T00:23:24Z", + "modify_date": "2023-09-27T17:25:53Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Sonoma%20Raceway/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:23:13Z", + "updatedAt": "2024-03-12T02:21:02Z", + "name": "Number5", + "owner": "OpenRobotics", + "description": "A box that displays the number 5.", + "likes": 0, + "downloads": 231, + "filesize": 83789, + "upload_date": "2018-01-27T00:23:12Z", + "modify_date": "2023-09-27T17:26:11Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Number5/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:23:07Z", + "updatedAt": "2024-04-02T18:57:19Z", + "name": "International Space Station (half)", + "owner": "OpenRobotics", + "description": "International Space Station (half version)", + "likes": 0, + "downloads": 65, + "filesize": 146004, + "upload_date": "2018-01-27T00:23:06Z", + "modify_date": "2023-09-27T17:26:17Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/International%20Space%20Station%20%28half%29/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:23:01Z", + "updatedAt": "2024-04-02T18:56:57Z", + "name": "Utility Cart", + "owner": "OpenRobotics", + "description": "A utility cart.", + "likes": 0, + "downloads": 106, + "filesize": 25794, + "upload_date": "2018-01-27T00:23:00Z", + "modify_date": "2023-09-27T17:26:21Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Utility%20Cart/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:22:54Z", + "updatedAt": "2024-04-04T04:41:32Z", + "name": "Construction Cone", + "owner": "OpenRobotics", + "description": "An orange construction cone", + "likes": 1, + "downloads": 37632, + "filesize": 622427, + "upload_date": "2018-01-27T00:22:53Z", + "modify_date": "2023-09-27T17:26:25Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Construction%20Cone/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:22:47Z", + "updatedAt": "2024-03-12T02:21:04Z", + "name": "Orbbec Astra Depth Camera", + "owner": "OpenRobotics", + "description": "The Orbbec Astra medium-range depth camera, with a range of approximately\n 0.6-8m. https://orbbec3d.com/product-astra/", + "likes": 0, + "downloads": 62, + "filesize": 72130, + "upload_date": "2018-01-27T00:22:47Z", + "modify_date": "2023-09-27T17:26:31Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Orbbec%20Astra%20Depth%20Camera/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:22:41Z", + "updatedAt": "2024-04-02T10:23:21Z", + "name": "FRC 2016 Rough Terrain", + "owner": "OpenRobotics", + "description": "Rough terrain game component for the 2016 FIRST Robotics Competition.", + "likes": 0, + "downloads": 174, + "filesize": 8442, + "upload_date": "2018-01-27T00:22:41Z", + "modify_date": "2023-09-27T17:26:35Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FRC%202016%20Rough%20Terrain/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:22:35Z", + "updatedAt": "2024-03-28T09:12:58Z", + "name": "Law office", + "owner": "OpenRobotics", + "description": "A downtown law office.", + "likes": 0, + "downloads": 119, + "filesize": 1633378, + "upload_date": "2018-01-27T00:22:35Z", + "modify_date": "2023-09-27T17:26:39Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Law%20office/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:22:29Z", + "updatedAt": "2024-03-22T11:18:51Z", + "name": "Table Marble", + "owner": "OpenRobotics", + "description": "A marble table lit using a lightmap generated from a directional light with\n the vector (-0.6, -0.05, -0.8).", + "likes": 0, + "downloads": 257, + "filesize": 603514, + "upload_date": "2018-01-27T00:22:28Z", + "modify_date": "2023-09-27T17:26:47Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Table%20Marble/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:22:22Z", + "updatedAt": "2024-03-30T22:51:56Z", + "name": "Collapsed House", + "owner": "OpenRobotics", + "description": "A collapsed house.", + "likes": 0, + "downloads": 704, + "filesize": 1308048, + "upload_date": "2018-01-27T00:22:21Z", + "modify_date": "2023-09-27T17:26:55Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Collapsed%20House/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:22:15Z", + "updatedAt": "2024-03-12T02:21:08Z", + "name": "FRC 2016 Draw bridge", + "owner": "OpenRobotics", + "description": "Draw bridge game component for the 2016 FIRST Robotics Competition.", + "likes": 0, + "downloads": 57, + "filesize": 92410, + "upload_date": "2018-01-27T00:22:14Z", + "modify_date": "2023-09-27T17:27:01Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/FRC%202016%20Draw%20bridge/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-27T00:22:09Z", + "updatedAt": "2024-04-03T20:51:53Z", + "name": "Kuka YouBot", + "owner": "OpenRobotics", + "description": "The Keuka YouBot", + "likes": 0, + "downloads": 1050, + "filesize": 2929215, + "upload_date": "2018-01-27T00:22:06Z", + "modify_date": "2023-09-27T17:27:06Z", + "license_id": 1, + "license_name": "Creative Commons Zero v1.0 Universal", + "license_url": "https://creativecommons.org/publicdomain/zero/1.0/", + "license_image": "https://i.creativecommons.org/p/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/OpenRobotics/models/Kuka%20YouBot/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-24T22:39:43Z", + "updatedAt": "2024-03-25T08:21:18Z", + "name": "Beer", + "owner": "caguero", + "description": "A beer can", + "likes": 0, + "downloads": 2013, + "filesize": 2969297, + "upload_date": "2018-01-24T22:39:41Z", + "modify_date": "2018-01-24T22:39:41Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/caguero/models/Beer/tip/files/thumbnails/1.png", + "private": false + }, + { + "createdAt": "2018-01-19T18:24:13Z", + "updatedAt": "2024-03-22T14:37:30Z", + "name": "Wastebasket", + "owner": "chapulina", + "description": "La poubelle", + "likes": 0, + "downloads": 397, + "filesize": 277907, + "upload_date": "2018-01-19T18:24:12Z", + "modify_date": "2018-01-19T18:24:12Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Wastebasket/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "static", + "home", + "office", + "object" + ] + }, + { + "createdAt": "2018-01-02T13:34:43Z", + "updatedAt": "2024-04-03T07:15:26Z", + "name": "Cardboard Box", + "owner": "german", + "description": "A simple cardboard box.", + "likes": 0, + "downloads": 1022, + "filesize": 393287, + "upload_date": "2018-01-02T13:34:42Z", + "modify_date": "2018-01-02T13:34:42Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/german/models/Cardboard%20Box/tip/files/thumbnails/0.jpg", + "private": false, + "tags": [ + "box", + "cardboard" + ] + }, + { + "createdAt": "2017-12-19T21:15:20Z", + "updatedAt": "2024-03-29T07:13:49Z", + "name": "Cessna C-172", + "owner": "chapulina", + "description": "A small airplane with realistic dynamic and aerodynamic properties,", + "likes": 0, + "downloads": 121, + "filesize": 333268, + "upload_date": "2017-12-19T21:15:19Z", + "modify_date": "2017-12-19T21:15:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Cessna%20C-172/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "airplane", + "drone", + "auv", + "aerodynamics", + "flyingrobot" + ] + }, + { + "createdAt": "2017-12-19T21:13:35Z", + "updatedAt": "2024-03-13T10:47:54Z", + "name": "Fire station (collapsed)", + "owner": "chapulina", + "description": "A collapsed fire station", + "likes": 0, + "downloads": 124, + "filesize": 1635383, + "upload_date": "2017-12-19T21:13:34Z", + "modify_date": "2017-12-19T21:13:34Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Fire%20station%20%28collapsed%29/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "city", + "static", + "building", + "collapsed" + ] + }, + { + "createdAt": "2017-12-19T21:12:19Z", + "updatedAt": "2024-03-12T03:00:08Z", + "name": "Beer", + "owner": "chapulina", + "description": "A cylindrical beer can", + "likes": 0, + "downloads": 720, + "filesize": 2969297, + "upload_date": "2017-12-19T21:12:19Z", + "modify_date": "2017-12-19T21:12:19Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Beer/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "manipulation", + "kitchen" + ] + }, + { + "createdAt": "2017-12-19T21:11:16Z", + "updatedAt": "2024-03-29T03:19:27Z", + "name": "Apartment", + "owner": "chapulina", + "description": "A static 3 story apartment building", + "likes": 0, + "downloads": 640, + "filesize": 1331339, + "upload_date": "2017-12-19T21:11:15Z", + "modify_date": "2017-12-19T21:11:15Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Apartment/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "city", + "static", + "building" + ] + }, + { + "createdAt": "2017-12-19T21:09:44Z", + "updatedAt": "2024-03-12T03:00:30Z", + "name": "Ambulance", + "owner": "chapulina", + "description": "A static vehicle which carries sick people", + "likes": 0, + "downloads": 940, + "filesize": 514619, + "upload_date": "2017-12-19T21:09:44Z", + "modify_date": "2017-12-19T21:09:44Z", + "license_id": 2, + "license_name": "Creative Commons Attribution 4.0 International", + "license_url": "http://creativecommons.org/licenses/by/4.0/", + "license_image": "https://i.creativecommons.org/l/by/4.0/88x31.png", + "permission": 0, + "url_name": "", + "thumbnail_url": "/chapulina/models/Ambulance/tip/files/thumbnails/1.png", + "private": false, + "tags": [ + "city", + "static", + "vehicle" + ] + } + ] +} \ No newline at end of file diff --git a/dockerfiles/rmf-sim/rmf_sim.repos b/dockerfiles/rmf-sim/rmf_sim.repos new file mode 100644 index 0000000..f358cee --- /dev/null +++ b/dockerfiles/rmf-sim/rmf_sim.repos @@ -0,0 +1,9 @@ +repositories: + rmf/rmf_demos: + type: git + url: https://github.com/open-rmf/rmf_demos.git + version: main + rmf/rmf_simulation: + type: git + url: https://github.com/open-rmf/rmf_simulation.git + version: main diff --git a/dockerfiles/rmf-site/Dockerfile b/dockerfiles/rmf-site/Dockerfile new file mode 100644 index 0000000..81efb5f --- /dev/null +++ b/dockerfiles/rmf-site/Dockerfile @@ -0,0 +1,41 @@ +ARG RMF_IMAGE +FROM $RMF_IMAGE as build + +RUN mkdir -p /ws/src +WORKDIR /ws + +# fetch sources +COPY rmf_site.repos rmf_site.repos +RUN vcs import src < rmf_site.repos + +RUN apt-get update && apt-get install -y \ + python3-dev python3-pip libffi-dev libssl-dev cargo clang clang-tools lldb lld libstdc++-12-dev \ + python3-websocket python3-websockets \ + python3-icecream \ + gdb +RUN </dev/null 2>&1 + pwd -P +)" + +. "$SCRIPTPATH/utils.bash" + +echo "Waiting for keycloak to be up" +kubectl wait --for=condition=Available deployments/keycloak --timeout=60s + +: "${KEYCLOAK_ADMIN:=admin}" +: "${KEYCLOAK_ADMIN_PASSWD=$(kubectl get secrets/keycloak-secret --template '{{.data.KEYCLOAK_ADMIN_PASSWORD}}' | base64 -dw0)}" +ROOT_URL="$1" +: "${KEYCLOAK_BASE_URL="http://keycloak:8080/auth"}" +MASTER_TOKEN_URL="$KEYCLOAK_BASE_URL/realms/master/protocol/openid-connect/token" +REALM_URL="$KEYCLOAK_BASE_URL/admin/realms" +REALM_CLIENT_URL="$REALM_URL/rmf-web/clients" +REALM_USERS_URL="$REALM_URL/rmf-web/users" +REALM_EVENTS_URL="$REALM_URL/rmf-web/events" +REALM_CLIENT_SCOPES_URL="$REALM_URL/rmf-web/client-scopes" + +command -v jq >>/dev/null || { __msg_info "Install jq dependency.." && sudo apt install jq; } + +__msg_info "Retrieving JWT Token" + +TOKEN_REQUEST_RESPONSE=$( + curl -k -s -X POST \ + -H "Content-Type: application/x-www-form-urlencoded" \ + -d "username=$KEYCLOAK_ADMIN" \ + -d "password=$KEYCLOAK_ADMIN_PASSWD" \ + -d "grant_type=password" \ + -d "client_id=admin-cli" \ + "$MASTER_TOKEN_URL" | + jq -r '.access_token' +) || __error_exit $LINENO "Is Keycloak up?" + +[ "$TOKEN_REQUEST_RESPONSE" != "null" ] || __error_exit $LINENO "Something went wrong retrieving JWT Token. Check credentials" + +kc_api() { + local resp + resp=$(curl -ks --fail-with-body \ + -H "Content-Type: application/json" \ + -H "Authorization: Bearer $TOKEN_REQUEST_RESPONSE" \ + "$@") && exit_code=0 || exit_code=$? + if [[ $exit_code != 0 ]]; then + __msg_error "$resp" + return $exit_code + else + __msg_debug "$resp" + fi + echo "$resp" +} + +__msg_info "Updating rmf-web realm" +REALM_DATA='{"id":"rmf-web","realm":"rmf-web","enabled":"true","ssoSessionMaxLifespan":86400}' +# try to update the realm if it already exists, else create it +REALM_CREATION_RESPONSE=$(kc_api -X PUT \ + -d "$REALM_DATA" \ + "$REALM_URL/rmf-web") && exit_code=0 || exit_code=$? +if [[ $exit_code != 0 ]]; then + __msg_info "Creating realm rmf-web" + REALM_CREATION_RESPONSE=$(kc_api -X POST \ + -d "$REALM_DATA" \ + "$REALM_URL") && exit_code=0 || exit_code=$? + if [[ $exit_code != 0 ]]; then + __error_exit $LINENO "Failed to create realm" + fi + __msg_info "Realm rmf-web created" +else + __msg_info "Updated rmf-web realm" +fi + +__msg_info "Creating Clients." +DASHBOARD_CLIENT_REQUEST_JSON=$( + jq -n \ + --arg rootUrl "$ROOT_URL" \ + --arg redirectRootUrl "$ROOT_URL/*" \ + '{"clientId":"dashboard","rootUrl":$rootUrl,"redirectUris":[$redirectRootUrl],"webOrigins":[$rootUrl],"publicClient":true}' +) + +DASHBOARD_CLIENT_ID=$(kc_api -X GET \ + "$REALM_CLIENT_URL?clientId=dashboard" | jq -r '.[0].id') +if [[ $DASHBOARD_CLIENT_ID == "null" ]]; then + __msg_info "creating dashboard client" + CLIENT_DASHBOARD_CREATION_RESPONSE=$(kc_api -X POST \ + -d "$DASHBOARD_CLIENT_REQUEST_JSON" \ + "$REALM_CLIENT_URL") || __error_exit $LINENO "Failed to create dashboard client" + DASHBOARD_CLIENT_ID=$(kc_api -X GET \ + "$REALM_CLIENT_URL?clientId=dashboard" | jq -r '.[0].id') + __msg_info "dashboard client created" +else + __msg_info "dashboard client already exists. Updating instead." + CLIENT_DASHBOARD_CREATION_RESPONSE=$(kc_api -X PUT \ + -d "$DASHBOARD_CLIENT_REQUEST_JSON" \ + "$REALM_CLIENT_URL/$DASHBOARD_CLIENT_ID") || __error_exit $LINENO "Failed to update dashboard client" + __msg_info "dashboard client updated" +fi + +SMART_CART_CLIENT_REQUEST_JSON='{ + "clientId":"smart_cart", + "name":"Smart Cart", + "description":"Private client for smart carts", + "publicClient":false, + "serviceAccountsEnabled":true, + "attributes": { + "access.token.lifespan": 86400 + } +}' + +SMART_CART_CLIENT_ID=$(kc_api -X GET \ + "$REALM_CLIENT_URL?clientId=smart_cart" | jq -r '.[0].id') +if [[ $SMART_CART_CLIENT_ID == "null" ]]; then + __msg_info "creating smart_cart client" + CLIENT_SMART_CART_CREATION_RESPONSE=$(kc_api -X POST \ + -d "$SMART_CART_CLIENT_REQUEST_JSON" \ + "$REALM_CLIENT_URL") || __error_exit $LINENO "Failed to create smart_cart client" + SMART_CART_CLIENT_ID=$(kc_api -X GET \ + "$REALM_CLIENT_URL?clientId=smart_cart" | jq -r '.[0].id') + __msg_info "smart_cart client created" +else + __msg_info "smart_cart client already exists. Updating instead." + CLIENT_SMART_CART_CREATION_RESPONSE=$(kc_api -X PUT \ + -d "$SMART_CART_CLIENT_REQUEST_JSON" \ + "$REALM_CLIENT_URL/$SMART_CART_CLIENT_ID") || __error_exit $LINENO "Failed to update smart_cart client" + __msg_info "smart_cart client updated" +fi + +__msg_info "Updating smart_cart service account" +SMART_CART_SA_ID=$(kc_api -X GET "$REALM_USERS_URL?username=service-account-smart_cart" | jq -r '.[0].id') +REALM_MANAGEMENT_CLIENT_ID=$(kc_api -X GET "$REALM_CLIENT_URL?clientId=realm-management" | jq -r '.[0].id') +ROLE_ID=$(kc_api -X GET "$REALM_CLIENT_URL/$REALM_MANAGEMENT_CLIENT_ID/roles?search=view-users" | jq -r '.[0].id') || __error_exit $LINENO "Failed to get role id" +kc_api -X POST \ + -d '[{"id":"'$ROLE_ID'","name":"view-users","description":"${role_view-users}","composite":true,"clientRole":true,"containerId":"'$REALM_MANAGEMENT_CLIENT_ID'"}]' \ + "$REALM_USERS_URL/$SMART_CART_SA_ID/role-mappings/clients/$REALM_MANAGEMENT_CLIENT_ID" || __error_exit $LINENO "Failed to assign role to service account" + +ADMIN_USER_ID=$(kc_api -X GET \ + "$REALM_USERS_URL?username=admin" | jq -r ".[0].id") + +if [ "$ADMIN_USER_ID" == "null" ]; then + __msg_info "Creating Admin User." + ADMIN_USER_CREATION_RESPONSE=$(kc_api -X POST \ + -d '{"username":"admin","enabled":"true"}' \ + "$REALM_USERS_URL") || __error_exit $LINENO "Failed to create admin user" + ADMIN_USER_ID=$(kc_api -X GET \ + "$REALM_USERS_URL?username=admin" | jq -r ".[0].id") + __msg_info "Admin user created" +else + __msg_debug "Admin user already created. Skipping." +fi + +__msg_info "Resetting admin user password" +ADMIN_USER_PASSWORD=$(kubectl get secrets/rmf-web-rmf-server-secret --template '{{.data.ADMIN_PASSWD}}' | base64 -dw0) +RESET_PASSWORD_RESPONSE=$(kc_api -X PUT \ + -d '{"value": "'$ADMIN_USER_PASSWORD'", "temporary": "false"}' \ + "$REALM_USERS_URL/$ADMIN_USER_ID/reset-password") || __error_exit $LINENO "Something went wrong resetting admin password." +__msg_info "Admin user updated" + +__msg_info "Enabling logging." +kc_api -X PUT \ + -d '{"eventsEnabled": "true", "eventsListeners": ["jsonlog_event_listener"]}' \ + "$REALM_EVENTS_URL/config" + +__msg_info "Creating Client Scopes." +DASHBOARD_CLIENT_SCOPE_DATA='{ + "name": "dashboard", + "protocol": "openid-connect", + "description": "dashboard scope", + "protocolMappers": [ + { + "name": "rmf-audience", + "protocol": "openid-connect", + "protocolMapper": "oidc-audience-mapper", + "config": { + "access.token.claim": "true", + "id.token.claim": "false", + "included.client.audience": "dashboard" + } + } + ] +}' +DASHBOARD_CLIENT_SCOPE_ID=$(kc_api -X GET \ + "$REALM_CLIENT_SCOPES_URL" | jq -r '.[] | select ( .name == "dashboard" ) | .id') +if [[ $DASHBOARD_CLIENT_SCOPE_ID != "" ]]; then + # delete and recreate because PUT does not update the protocol mappers + __msg_warn "deleting existing dashboard client scope" + DASHBOARD_CLIENT_SCOPE_CREATION_RESPONSE=$(kc_api -X DELETE \ + --data-raw "$DASHBOARD_CLIENT_SCOPE_DATA" \ + "$REALM_CLIENT_SCOPES_URL/$DASHBOARD_CLIENT_SCOPE_ID") || __error_exit $LINENO "Failed to delete dashboard client scope" + __msg_warn "deleted dashboard client scope" +fi +__msg_info "creating dashboard client scope" +DASHBOARD_CLIENT_SCOPE_CREATION_RESPONSE=$(kc_api -X POST \ + --data-raw "$DASHBOARD_CLIENT_SCOPE_DATA" \ + "$REALM_CLIENT_SCOPES_URL") || __error_exit $LINENO "Failed to create dashboard client scope" +DASHBOARD_CLIENT_SCOPE_ID=$(kc_api -X GET \ + "$REALM_CLIENT_SCOPES_URL" | jq -r '.[] | select ( .name == "dashboard" ) | .id') +__msg_info "dashboard client scope created" + +__msg_info "Linking up Client Scopes and Clients." + +kc_api -X PUT \ + -d '{"value": "admin", "temporary": "false"}' \ + "$REALM_CLIENT_URL/$DASHBOARD_CLIENT_ID/default-client-scopes/$DASHBOARD_CLIENT_SCOPE_ID" || \ + __error_exit $LINENO "Something went wrong assigning the dashboard client scope." + +kc_api -X PUT \ + -d '{"value": "admin", "temporary": "false"}' \ + "$REALM_CLIENT_URL/$SMART_CART_CLIENT_ID/default-client-scopes/$DASHBOARD_CLIENT_SCOPE_ID" || \ + __error_exit $LINENO "Something went wrong assigning the smart cart client scope." + +__msg_info "Fetching token public key" + +JWKS_URI=$(curl -k -s -X GET \ + -H "Content-Type: application/json" \ + -H "Authorization: Bearer $TOKEN_REQUEST_RESPONSE" \ + "$KEYCLOAK_BASE_URL/realms/rmf-web/.well-known/openid-configuration" | jq -r '.jwks_uri') +__msg_debug "JWKS_URL=$JWKS_URI" + +JWKS_X5C=$(curl -k -s -X GET \ + -H "Content-Type: application/json" \ + -H "Authorization: Bearer $TOKEN_REQUEST_RESPONSE" \ + "$JWKS_URI" | jq -r '[ .keys[] | select(.use == "sig") ][0].x5c[0]') +__msg_debug "JWKS_X5C=$JWKS_X5C" + +[ -n "$JWKS_X5C" ] || __error_exit $LINENO "Something went wrong trying to retrieve Certificate." + +PEM_FILE="-----BEGIN CERTIFICATE----- +$JWKS_X5C +-----END CERTIFICATE-----" +PUB_KEY=$(echo "$PEM_FILE" | openssl x509 -pubkey -noout) +__msg_debug "PUB_KEY=$PUB_KEY" + +echo "uploading pubkey to kubernetes" +kubectl create configmap jwt-pub-key --from-literal=jwt-pub-key.pub="$PUB_KEY" -o=yaml --dry-run=client | kubectl apply -f - diff --git a/dockerfiles/rmf-web/keycloak-setup/utils.bash b/dockerfiles/rmf-web/keycloak-setup/utils.bash new file mode 100644 index 0000000..1952509 --- /dev/null +++ b/dockerfiles/rmf-web/keycloak-setup/utils.bash @@ -0,0 +1,69 @@ +#!/usr/bin/env bash + +# exit codes: +# 0: success +# 1: general error exit +# 2: lockfile present + +set -o errexit +set -o nounset +set -o pipefail +trap 'catch $? $LINENO' EXIT + +catch() { + __cleanup + if [ "$1" != "2" ]; then + __unlock + fi +} + +: "${LOG_ERROR:=1}" +: "${LOG_DEBUG:=1}" +: "${LOG_INFO:=1}" +: "${PROJECT:=project}" +PROJECT_TMP=/tmp/$PROJECT + +function __cleanup() { + __msg_debug "Cleaning up" +} + +__error_exit() { + line=$1 + shift 1 + __msg_error "non zero return code from line: $line — $*" >&2 + exit 1 +} + +__msg_error() { + { [[ "${LOG_ERROR}" == "1" ]] && echo -e "[ERROR]: $*" >&2; } || true +} + +__msg_warn() { + { [[ "${LOG_ERROR}" == "1" ]] && echo -e "[WARN]: $*" >&2; } || true +} + +__msg_debug() { + { [[ "${LOG_DEBUG}" == "1" ]] && echo -e "[DEBUG]: $*" >&2; } || true +} + +__msg_info() { + { [[ "${LOG_INFO}" == "1" ]] && echo -e "[INFO]: $*" >&2; } || true +} + +__random_string() { + tr -dc A-Za-z0-9 /dev/null +} + +__lock diff --git a/dockerfiles/rmf/Dockerfile b/dockerfiles/rmf/Dockerfile new file mode 100644 index 0000000..63bd0be --- /dev/null +++ b/dockerfiles/rmf/Dockerfile @@ -0,0 +1,40 @@ +ARG ROS_DISTRO="jazzy" +# must be an image built from rmf-deployment/builder +ARG BUILDER +FROM $BUILDER as build + +RUN mkdir -p /ws/src +WORKDIR /ws + +# fetch sources +COPY rmf.repos rmf-$ROS_DISTRO.repos /ws/ +RUN vcs import src < rmf.repos && vcs import src < rmf-$ROS_DISTRO.repos + +# ros packages are often not properly versioned, installing new packages without also updating existing +# packages can break existing installation. +RUN apt update && apt upgrade -y && \ + rosdep update --rosdistro $ROS_DISTRO && \ + rosdep install --from-paths src --ignore-src --rosdistro $ROS_DISTRO -y + +RUN . /opt/ros/$ROS_DISTRO/setup.sh \ + && colcon build --mixin clang lld --merge-install --install-base /opt/rmf --cmake-args -DCMAKE_BUILD_TYPE=Release --packages-skip rmf_traffic_editor_test_maps + +### + +FROM ros:$ROS_DISTRO-ros-base + +RUN --mount=from=build,target=/src,source=/ws/src < /etc/nginx/conf.d/default.conf diff --git a/rmf-web/rmf-web-rmf-server.Dockerfile b/rmf-web/rmf-web-rmf-server.Dockerfile deleted file mode 100644 index ebae6b7..0000000 --- a/rmf-web/rmf-web-rmf-server.Dockerfile +++ /dev/null @@ -1,31 +0,0 @@ -ARG BUILDER_NS="open-rmf/rmf_deployment_template" -ARG TAG="latest" - -FROM $BUILDER_NS/builder-rmf-web:$TAG - -SHELL ["bash", "-c"] - -ENV RMF_SERVER_USE_SIM_TIME=true - -RUN . /opt/rmf/install/setup.bash && \ - cd /opt/rmf/src/rmf-web/packages/api-server && \ - pnpm run prepack - -FROM $BUILDER_NS/builder-rmf-web:$TAG - -COPY --from=0 /opt/rmf/src/rmf-web/packages/api-server/dist/ . - -SHELL ["bash", "-c"] -RUN pip3 install $(ls -1 | grep '.*.whl')[postgres] - -# cleanup -RUN rm -rf /opt/rmf/src -RUN rm -rf /var/lib/apt/lists && \ - pnpm store prune - -RUN echo -e '#!/bin/bash\n\ - . /opt/rmf/install/setup.bash\n\ - exec rmf_api_server "$@"\n\ - ' > /docker-entry-point.sh && chmod +x /docker-entry-point.sh - -ENTRYPOINT ["/docker-entry-point.sh"] diff --git a/rmf-web/rmf-web.repos b/rmf-web/rmf-web.repos deleted file mode 100644 index fb66922..0000000 --- a/rmf-web/rmf-web.repos +++ /dev/null @@ -1,5 +0,0 @@ -repositories: - rmf-web: - type: git - url: https://github.com/open-rmf/rmf-web - version: main diff --git a/rmf/builder-rosdep.Dockerfile b/rmf/builder-rosdep.Dockerfile deleted file mode 100644 index e17559b..0000000 --- a/rmf/builder-rosdep.Dockerfile +++ /dev/null @@ -1,36 +0,0 @@ -ARG BASE_REGISTRY="docker.io" -ARG ROS_DISTRO="humble" - -FROM $BASE_REGISTRY/ros:$ROS_DISTRO - -RUN apt update && apt install -y \ - cmake \ - curl \ - python3-pip \ - git \ - wget \ - && rm -rf /var/lib/apt/lists/* - -RUN rm /etc/apt/sources.list.d/ros2-latest.list -RUN curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr/share/keyrings/ros-archive-keyring.gpg -RUN echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/ros-archive-keyring.gpg] http://packages.ros.org/ros2/ubuntu $(lsb_release -cs) main" | \ - sudo tee /etc/apt/sources.list.d/ros2.list > /dev/null - -RUN sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable `lsb_release -cs` main" > /etc/apt/sources.list.d/gazebo-stable.list' -RUN wget https://packages.osrfoundation.org/gazebo.key -O - | sudo apt-key add - - -RUN apt update && apt install -y \ - python3-colcon-common-extensions \ - && apt-get upgrade -y \ - && rm -rf /var/lib/apt/lists/* - -# download cyclonedds and use clang for humble -RUN if [ "$ROS_DISTRO" = "humble" ]; then \ - apt update && apt install -y \ - clang-13 \ - lldb-13 \ - lld-13 \ - ros-humble-rmw-cyclonedds-cpp \ - && rm -rf /var/lib/apt/lists/* \ - && update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++-13 100; \ - fi diff --git a/rmf/rmf.Dockerfile b/rmf/rmf.Dockerfile deleted file mode 100644 index 3a64ef0..0000000 --- a/rmf/rmf.Dockerfile +++ /dev/null @@ -1,42 +0,0 @@ -ARG BUILDER_NS="open-rmf/rmf_deployment_template" -ARG TAG="latest" -FROM $BUILDER_NS/builder-rosdep:$TAG - -ARG NETRC - -SHELL ["bash", "-c"] - -ENV DEBIAN_FRONTEND=noninteractive -ENV RMW_IMPLEMENTATION=rmw_cyclonedds_cpp - -RUN apt update -RUN mkdir -p /opt/rmf/src -WORKDIR /opt/rmf -RUN echo ${NETRC} > /root/.netrc - -# copy rmf source repos -COPY rmf-src src - -RUN rosdep update --rosdistro $ROS_DISTRO -RUN rosdep install --from-paths src --ignore-src --rosdistro $ROS_DISTRO \ - --skip-keys roscpp \ - --skip-keys actionlib \ - --skip-keys rviz \ - --skip-keys catkin \ - --skip-keys move_base \ - --skip-keys amcl \ - --skip-keys turtlebot3_navigation \ - --skip-keys turtlebot3_bringup \ - --skip-keys move_base_msgs \ - --skip-keys dwa_local_planner \ - --skip-keys map_server \ - --skip-keys iginition \ - -y - -RUN . /opt/ros/$ROS_DISTRO/setup.sh \ - && colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release - -RUN sed -i '$isource "/opt/rmf/install/setup.bash"' /ros_entrypoint.sh - -ENTRYPOINT ["/ros_entrypoint.sh"] -CMD ["bash"] diff --git a/src/README.md b/src/README.md new file mode 100644 index 0000000..5ebdc6e --- /dev/null +++ b/src/README.md @@ -0,0 +1 @@ +A home for site specific sources fro deployment \ No newline at end of file diff --git a/src/mysite/mysite/README.md b/src/mysite/mysite/README.md new file mode 100644 index 0000000..f737bf5 --- /dev/null +++ b/src/mysite/mysite/README.md @@ -0,0 +1 @@ +A home for launchfiles for this site diff --git a/src/mysite/mysite_adapters/README.md b/src/mysite/mysite_adapters/README.md new file mode 100644 index 0000000..58f1e84 --- /dev/null +++ b/src/mysite/mysite_adapters/README.md @@ -0,0 +1 @@ +A home for Open-RMF adapters (eg. robot fleet adapters, lift adapter, door adapter, etc) diff --git a/src/mysite/mysite_assets/README.md b/src/mysite/mysite_assets/README.md new file mode 100644 index 0000000..b4eba18 --- /dev/null +++ b/src/mysite/mysite_assets/README.md @@ -0,0 +1 @@ +A home for simulation assets (eg. robots, etc) diff --git a/src/mysite/mysite_hardware/README.md b/src/mysite/mysite_hardware/README.md new file mode 100644 index 0000000..294515b --- /dev/null +++ b/src/mysite/mysite_hardware/README.md @@ -0,0 +1 @@ +A home for custom hardware interfaces (eg. door, lift, etc hardware controllers) diff --git a/src/mysite/mysite_maps/README.md b/src/mysite/mysite_maps/README.md new file mode 100644 index 0000000..0bfd760 --- /dev/null +++ b/src/mysite/mysite_maps/README.md @@ -0,0 +1 @@ +A home for site's maps