diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 334759ce112..112950353d0 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -668,6 +668,86 @@ jobs: env: DEPLOYMENT_ENV: production + nuxt-load-test: + name: Load test local frontend + runs-on: ubuntu-latest + needs: + - nuxt-build + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup CI env + uses: ./.github/actions/setup-env + with: + setup_python: false + install_recipe: node-install + locales: "test" + + - name: Build and run Nuxt and Talkback + run: | + just frontend/run build + just frontend/run talkback & + env NUXT_PUBLIC_API_URL=http://127.0.0.1:49153/ just frontend/run start & + + - name: Setup k6 + uses: grafana/setup-k6-action@v1 + + - name: Wait for local Talkback to be available + # 10 seconds, talkback has a slow startup; this step will fail if Talkback never becomes available + run: npx wait-port -t 10000 :49153 + + - name: Wait for local Nuxt to be available + # 2 seconds, this step will fail if Nuxt never becomes available + run: npx wait-port -t 2000 http://127.0.0.1:8443/healthcheck + + - name: Run k6 frontend all against local Nuxt + run: | + just k6 frontend all \ + -e FRONTEND_URL=http://127.0.0.1:8443/ \ + -e text_summary=/tmp/k6-summary.txt + + - name: Upload artifacts + uses: actions/upload-artifact@v4 + with: + name: k6-output + path: /tmp/k6-summary.txt + + - name: Make comment body + shell: python + run: | + from pathlib import Path + summary = Path("/tmp/k6-summary.txt").read_text() + Path("/tmp/k6-summary-comment.txt").write_text(f""" + ## Latest k6 run output[^update] + + ``` + ${summary} + ``` + + [^update]: This comment will automatically update with new output each time k6 runs for this PR + """) + + - uses: peter-evans/find-comment@v3 + id: k6-summary-comment + with: + issue-number: ${{ github.event.pull_request.number }} + body-includes: Latest k6 run output + + - name: Post comment summary + uses: peter-evans/create-or-update-comment@v4 + # Do not comment on forks + if: | + github.event_name == 'pull_request' && + github.event.pull_request.head.repo.owner.login == 'WordPress' && + github.actor != 'dependabot[bot]' + with: + issue-number: ${{ github.event.pull_request.number }} + edit-mode: replace + body-path: /tmp/k6-summary-comment.txt + comment-id: ${{ steps.k6-summary-comment.outputs.comment-id }} + nuxt-checks: name: Run Nuxt checks if: | @@ -1182,6 +1262,18 @@ jobs: wait_time: 60 # check every minute max_time: 1800 # allow up to 30 minutes for a deployment + - name: Setup k6 + uses: grafana/setup-k6-action@v1 + + - name: Run k6 script + env: + K6_CLOUD_TOKEN: ${{ secrets.GC_K6_TOKEN }} + K6_SIGNING_SECRET: ${{ secrets.K6_SIGNING_SECRET }} + run: | + just k6 frontend all --out cloud \ + -e FRONTEND_URL=https://staging.openverse.org/ \ + -e signing_secret="$K6_SIGNING_SECRET" + deploy-api: name: Deploy staging API runs-on: ubuntu-latest diff --git a/docker/dev_env/Dockerfile b/docker/dev_env/Dockerfile index d59e6ce3baf..6d4c9ac8767 100644 --- a/docker/dev_env/Dockerfile +++ b/docker/dev_env/Dockerfile @@ -37,7 +37,7 @@ ENV PATH="${PNPM_BIN}:${N_PREFIX}/bin:${PDM_PYTHONS}:${HOME}/.local/bin:${PATH}" # - nodejs: language runtime (includes npm but not Corepack) # - docker*: used to interact with host Docker socket # - postgresql*: required to connect to PostgreSQL databases -# - k6, words: used for load testing +# - k6: used for load testing # # pipx dependencies: # - httpie: CLI HTTP client @@ -65,7 +65,7 @@ RUN mkdir /pipx \ docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin \ unzip \ postgresql postgresql-devel \ - k6 words \ + k6 \ && dnf clean all \ && pipx install --global \ httpie \ diff --git a/frontend/test/proxy.js b/frontend/test/proxy.js index 6157ebaaa6d..e4d90a3f5b3 100644 --- a/frontend/test/proxy.js +++ b/frontend/test/proxy.js @@ -26,7 +26,7 @@ const port = 49153 const host = "https://api.openverse.org" const urlPatterns = { - search: /\/(?images|audio|video|model-3d)\/*\?(?[\w&=+]+)/, + search: /\/(?images|audio|video|model-3d)\/*\?(?.*?)$/u, thumb: /\/(?images|audio|video|model-3d)\/(?[\w-]{32,})\/thumb/, related: @@ -100,6 +100,8 @@ const getBodyUtil = (tape) => tape.res?.headers["content-encoding"]?.includes(key) )?.[1] ?? BodyUtils.default +const MAX_PEAKS = 200 + /** * Transform any response values to use the talkback * proxy instead of pointing directly upstream for @@ -142,11 +144,34 @@ const tapeDecorator = (tape) => { const bodyUtil = getBodyUtil(tape) const responseBody = bodyUtil.read(tape.res.body).toString() - const fixedResponseBody = responseBody.replace( + let fixedResponseBody = responseBody.replace( /https?:\/\/api.openverse.org/g, `http://localhost:${port}` ) + if ( + tape.req.url.includes("/audio/") && + !tape.req.url.includes("/audio/stats") + ) { + const responseBodyJson = JSON.parse(fixedResponseBody) + + // The search or related requests + if (responseBodyJson.results) { + responseBodyJson.results.map((result) => { + if (result.peaks && result.peaks.length > MAX_PEAKS) { + result.peaks = result.peaks.slice(0, MAX_PEAKS) + } + }) + // The single result requests + } else if ( + responseBodyJson.peaks && + responseBodyJson.peaks.length > MAX_PEAKS + ) { + responseBodyJson.peaks = responseBodyJson.peaks.slice(0, MAX_PEAKS) + } + fixedResponseBody = JSON.stringify(responseBodyJson) + } + tape.res.body = Buffer.from(bodyUtil.save(fixedResponseBody)) return tape } @@ -164,6 +189,11 @@ const opts = /** @type {Partial} */ ({ summary: false, tapeNameGenerator, tapeDecorator, + responseDecorator: (tape, req, context) => { + // Log responses to make debugging easier + console.log(req.method, req.url, tape.res?.status, context.id) + return tape + }, }) const server = talkback(opts) diff --git a/frontend/test/tapes/search/audio/q=Dom+Quixote+de+la+Mancha&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=Dom+Quixote+de+la+Mancha&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..a0d17732b36 --- /dev/null +++ b/frontend/test/tapes/search/audio/q=Dom+Quixote+de+la+Mancha&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 @@ -0,0 +1,91 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:13.176Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=Dom+Quixote+de+la+Mancha&license=by&extension=mp3&source=jamendo&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:13 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept, Authorization, origin, Accept-Encoding', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '17', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '166', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + 'f03692b6-0328-4603-9737-771e9100765e', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1144', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:09 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d536b31274b-ADL', + ], + 'content-encoding': [ + 'br', + ], + }, + body: { + result_count: 0, + page_count: 0, + page_size: 20, + page: 1, + results: [], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=Dom+Quixote+de+la+Mancha&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=Dom+Quixote+de+la+Mancha&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..0ae6f850058 --- /dev/null +++ b/frontend/test/tapes/search/audio/q=Dom+Quixote+de+la+Mancha&peaks=true_keep-alive.json5 @@ -0,0 +1,91 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:12.052Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=Dom+Quixote+de+la+Mancha&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:12 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept, Authorization, origin, Accept-Encoding', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '11', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '6', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '43ea964c-6a59-4abb-8b12-8110e850d8fc', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1143', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:09 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d4c599b274b-ADL', + ], + 'content-encoding': [ + 'br', + ], + }, + body: { + result_count: 0, + page_count: 0, + page_size: 20, + page: 1, + results: [], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=French+government&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=French+government&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..0e1fcf64b87 --- /dev/null +++ b/frontend/test/tapes/search/audio/q=French+government&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 @@ -0,0 +1,91 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:13.064Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=French+government&license=by&extension=mp3&source=jamendo&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:13 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept, Authorization, origin, Accept-Encoding', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '12', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '7', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '8c6d4a44-a690-4ecc-ac72-bac66e751022', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1145', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:08 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d52aa30274b-ADL', + ], + 'content-encoding': [ + 'br', + ], + }, + body: { + result_count: 0, + page_count: 0, + page_size: 20, + page: 1, + results: [], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=French+government&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=French+government&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..501ae45a30a --- /dev/null +++ b/frontend/test/tapes/search/audio/q=French+government&peaks=true_keep-alive.json5 @@ -0,0 +1,127 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:11.902Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=French+government&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:11 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '18', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '167', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '06c7f031-6bae-4565-8534-09be63812c2e', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1143', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:08 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d4b6844274b-ADL', + ], + }, + body: { + result_count: 1, + page_count: 1, + page_size: 20, + page: 1, + results: [ + { + id: '6eb77d7f-2973-415c-8b36-f0f3f02e8734', + title: 'Sint Maarten National Anthem (Instrumental) Oh Sweet Sint Maarten Land', + indexed_on: '2024-03-31T13:21:48.763271Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=70955809', + url: 'https://upload.wikimedia.org/wikipedia/commons/a/a5/Sint_Maarten_National_Anthem_%28Instrumental%29_Oh_Sweet_Sint_Maarten_Land.ogg', + creator: 'Feroze Ahmad 2', + creator_url: 'https://commons.wikimedia.org/wiki/User:Feroze_Ahmad_2', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: null, + genres: null, + filesize: 1059105, + filetype: 'ogg', + tags: [], + alt_files: null, + attribution: '"Sint Maarten National Anthem (Instrumental) Oh Sweet Sint Maarten Land" by Feroze Ahmad 2 is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'description', + ], + mature: false, + audio_set: null, + duration: 61138, + bit_rate: 192000, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/6eb77d7f-2973-415c-8b36-f0f3f02e8734/', + related_url: 'http://localhost:49153/v1/audio/6eb77d7f-2973-415c-8b36-f0f3f02e8734/related/', + waveform: 'http://localhost:49153/v1/audio/6eb77d7f-2973-415c-8b36-f0f3f02e8734/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=Juan+L%C3%B3pez&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=Juan+L%C3%B3pez&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..9f2df411644 --- /dev/null +++ b/frontend/test/tapes/search/audio/q=Juan+L%C3%B3pez&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 @@ -0,0 +1,91 @@ +{ + meta: { + createdAt: '2024-09-20T02:46:50.002Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=Juan+L%C3%B3pez&license=by&extension=mp3&source=jamendo&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:46:50 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept, Authorization, origin, Accept-Encoding', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '18', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '170', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '338bc8ec-6c05-4968-9839-14e429ed2823', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1121', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:09 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7cc2886c274a-ADL', + ], + 'content-encoding': [ + 'br', + ], + }, + body: { + result_count: 0, + page_count: 0, + page_size: 20, + page: 1, + results: [], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=Juan+L%C3%B3pez&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=Juan+L%C3%B3pez&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..dcbfe3aa7d8 --- /dev/null +++ b/frontend/test/tapes/search/audio/q=Juan+L%C3%B3pez&peaks=true_keep-alive.json5 @@ -0,0 +1,809 @@ +{ + meta: { + createdAt: '2024-09-25T08:55:19.421Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=Juan+L%C3%B3pez&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Wed, 25 Sep 2024 08:55:20 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '199', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '5d1e314b-cf4a-4c9d-94e3-1b1b9fc71eab', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'MISS', + ], + 'last-modified': [ + 'Wed, 25 Sep 2024 08:55:20 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c89cb6d5a1b65ca-FRA', + ], + }, + body: { + result_count: 9, + page_count: 1, + page_size: 20, + page: 1, + results: [ + { + id: '1d046cf0-9c96-4b0e-b3cf-629d8c32fc5a', + title: " Juan de Heras y Baldina López crían una niña", + indexed_on: '2023-06-11T18:09:30.888639Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=44085019', + url: 'https://upload.wikimedia.org/wikipedia/commons/8/88/Fundaci%C3%B3n_Joaqu%C3%ADn_D%C3%ADaz_-_ATO_00651A_29_-_Juan_de_Heras_y_Baldina_L%C3%B3pez_cr%C3%ADan_una_ni%C3%B1a.ogg', + creator: null, + creator_url: null, + license: 'by-sa', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-sa/3.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: null, + genres: null, + filesize: 186703, + filetype: 'ogg', + tags: [], + alt_files: null, + attribution: '" Juan de Heras y Baldina López crían una niña" is licensed under CC BY-SA 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 33065, + bit_rate: null, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/1d046cf0-9c96-4b0e-b3cf-629d8c32fc5a/', + related_url: 'http://localhost:49153/v1/audio/1d046cf0-9c96-4b0e-b3cf-629d8c32fc5a/related/', + waveform: 'http://localhost:49153/v1/audio/1d046cf0-9c96-4b0e-b3cf-629d8c32fc5a/waveform/', + peaks: [ + 0.0131, + 0.01849, + 0.03145, + 0.02729, + 0.02312, + 0.01779, + 0.01759, + 0.00671, + 0.0217, + 0.00923, + 0.04187, + 0.14893, + 0.18035, + 0.23826, + 0.25873, + 0.27219, + 0.29237, + 0.33711, + 0.33394, + 0.34194, + 0.06816, + 0.03876, + 0.06734, + 0.2757, + 0.46041, + 0.4194, + 0.48459, + 0.1658, + 0.10405, + 0.26019, + 0.34026, + 0.46464, + 0.27464, + 0.4113, + 0.38037, + 0.29303, + 0.31142, + 0.68574, + 0.59938, + 0.6104, + 0.53579, + 0.27983, + 0.13636, + 0.5596, + 0.59204, + 0.67353, + 0.53817, + 0.48551, + 0.18981, + 0.17152, + 0.18855, + 0.22563, + 0.28698, + 0.28562, + 0.37475, + 0.40435, + 0.31846, + 0.35431, + 0.35087, + 0.34968, + 0.43289, + 0.33258, + 0.19543, + 0.19404, + 0.17853, + 0.15587, + 0.13332, + 0.0556, + 0.0088, + 0.00833, + 0.1988, + 0.18881, + 0.32947, + 0.33381, + 0.19692, + 0.08827, + 0.02219, + 0.01898, + 0.38831, + 0.38732, + 0.25331, + 0.36023, + 0.48369, + 0.49051, + 0.28287, + 0.25486, + 0.33652, + 0.45691, + 0.47959, + 0.43356, + 0.27107, + 0.05355, + 0.0464, + 0.37905, + 0.69645, + 0.68581, + 0.73489, + 0.60008, + 0.53129, + 0.35405, + 0.32015, + 0.38385, + 0.38213, + 0.31754, + 0.39979, + 0.25208, + 0.52001, + 0.46554, + 0.40968, + 0.6859, + 0.68825, + 0.58394, + 0.20429, + 0.19149, + 0.21177, + 0.41355, + 0.40124, + 0.45839, + 0.44034, + 0.38831, + 0.09241, + 0.33814, + 0.54647, + 0.48799, + 0.3012, + 0.2755, + 0.13818, + 0.06793, + 0.01296, + 0.01128, + 0.00652, + 0.02497, + 0.06929, + 0.09158, + 0.09158, + 0.09733, + 0.07537, + 0.05847, + 0.02662, + 0.01455, + 0.01095, + 0.13911, + 0.36466, + 0.37502, + 0.36129, + 0.34542, + 0.32775, + 0.42413, + 0.46326, + 0.32514, + 0.31029, + 0.52537, + 0.67353, + 0.64225, + 0.6616, + 0.52669, + 0.15128, + 0.02864, + 0.10147, + 0.35292, + 0.37545, + 0.68134, + 0.42879, + 0.14949, + 0.10759, + 0.08, + 0.43442, + 0.56026, + 0.58566, + 0.55374, + 0.42611, + 0.21921, + 0.26323, + 0.51842, + 0.64066, + 0.525, + 0.07911, + 0.04071, + 0.14797, + 0.5088, + 0.73525, + 0.5803, + 0.6995, + 0.58917, + 0.5726, + 0.61731, + 0.57289, + 0.47645, + 0.26617, + 0.17122, + 0.14145, + 0.08979, + 0.01191, + 0.08599, + 0.49001, + 0.56648, + 0.55884, + 0.55464, + 0.53995, + 0.52838, + ], + unstable__sensitivity: [], + }, + { + id: '29e7e7ce-c72f-4c06-a168-8fedf595e5b1', + title: 'Abuso de poder (charla de Rolando López)', + indexed_on: '2024-07-08T00:27:43.049514Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=150112958', + url: 'https://upload.wikimedia.org/wikipedia/commons/0/01/Abuso_de_poder_%28charla_de_Rolando_L%C3%B3pez%29.mp3', + creator: 'Luisalvaz', + creator_url: 'https://commons.wikimedia.org/wiki/User:Luisalvaz', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: null, + genres: null, + filesize: 142276440, + filetype: 'mp3', + tags: [], + alt_files: null, + attribution: '"Abuso de poder (charla de Rolando López)" by Luisalvaz is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + audio_set: null, + duration: 3556884, + bit_rate: 320000, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/29e7e7ce-c72f-4c06-a168-8fedf595e5b1/', + related_url: 'http://localhost:49153/v1/audio/29e7e7ce-c72f-4c06-a168-8fedf595e5b1/related/', + waveform: 'http://localhost:49153/v1/audio/29e7e7ce-c72f-4c06-a168-8fedf595e5b1/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'd90f74c4-2a60-4dc1-a197-5029bcd59899', + title: 'Ramo a San Juan Bautista - El 24 de junio (versión I)', + indexed_on: '2023-12-22T00:47:20.539215Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=142550803', + url: 'https://upload.wikimedia.org/wikipedia/commons/3/30/Ramo_a_San_Juan_Bautista_-_El_24_de_junio_%28versi%C3%B3n_I%29.ogg', + creator: 'Instituto de Estudios Cabreireses', + creator_url: null, + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: null, + genres: null, + filesize: 10017002, + filetype: 'ogg', + tags: [], + alt_files: null, + attribution: '"Ramo a San Juan Bautista - El 24 de junio (versión I)" by Instituto de Estudios Cabreireses is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + audio_set: null, + duration: 240616, + bit_rate: 499821, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/d90f74c4-2a60-4dc1-a197-5029bcd59899/', + related_url: 'http://localhost:49153/v1/audio/d90f74c4-2a60-4dc1-a197-5029bcd59899/related/', + waveform: 'http://localhost:49153/v1/audio/d90f74c4-2a60-4dc1-a197-5029bcd59899/waveform/', + peaks: [ + 0.67646, + 0.63623, + 0.39286, + 0.70209, + 0.72598, + 0.81283, + 0.71328, + 0.76554, + 0.58411, + 0.65002, + 0.37282, + 0.19987, + 0.37509, + 0.82108, + 0.60027, + 0.6558, + 0.36837, + 0.48749, + 1, + 0.70271, + 0.19868, + 0.06274, + 0.01469, + 0.01327, + 0.00896, + 0.01426, + 0.38524, + 0.22816, + 0.85107, + 0.65225, + 0.48015, + 0.49303, + 0.10041, + 0.54606, + 0.45949, + 0.41314, + 0.40291, + 0.33411, + 0.30506, + 0.29791, + 0.4873, + 0.46351, + 0.4502, + 0.38689, + 0.51763, + 0.57259, + 0.22939, + 0.37178, + 0.47166, + 0.2862, + 0.2754, + 0.288, + 0.30444, + 0.39651, + 0.43494, + 0.43537, + 0.36709, + 0.3559, + 0.42437, + 0.40504, + 0.41281, + 0.46062, + 0.39779, + 0.38666, + 0.24697, + 0.42527, + 0.30222, + 0.34932, + 0.3025, + 0.15419, + 0.0399, + 0.02682, + 0.40888, + 0.6078, + 0.50109, + 0.51924, + 0.46356, + 0.62254, + 0.3641, + 0.48318, + 0.52151, + 0.49048, + 0.47399, + 0.5289, + 0.45044, + 0.40054, + 0.22678, + 0.41438, + 0.40888, + 0.38898, + 0.28805, + 0.16603, + 0.0181, + 0.03668, + 0.01128, + 0.01104, + 0.01033, + 0.63699, + 0.66191, + 0.60202, + 0.50256, + 0.6386, + 0.57368, + 0.54857, + 0.54947, + 0.40798, + 0.46091, + 0.42655, + 0.45712, + 0.53345, + 0.33008, + 0.33553, + 0.38779, + 0.36074, + 0.32013, + 0.05563, + 0.02094, + 0.01109, + 0.47091, + 0.61301, + 0.61974, + 0.62988, + 0.62036, + 0.79056, + 0.71261, + 0.5851, + 0.53653, + 0.33866, + 0.44982, + 0.48351, + 0.63959, + 0.59865, + 0.50801, + 0.53753, + 0.39064, + 0.21702, + 0.52819, + 0.50734, + 0.42234, + 0.36576, + 0.39628, + 0.38978, + 0.46418, + 0.38069, + 0.21977, + 0.04118, + 0.2165, + 0.53284, + 0.4936, + 0.47868, + 0.56098, + 0.51365, + 0.56539, + 0.50597, + 0.34723, + 0.40438, + 0.39997, + 0.42139, + 0.37784, + 0.35467, + 0.52161, + 0.40172, + 0.33989, + 0.24981, + 0.21494, + 0.03487, + 0.01625, + 0.06515, + 0.01019, + 0.34197, + 0.65177, + 0.49919, + 0.6132, + 0.51767, + 0.45494, + 0.40571, + 0.48597, + 0.58913, + 0.50782, + 0.42381, + 0.59055, + 0.54089, + 0.44423, + 0.45551, + 0.3713, + 0.33131, + 0.26578, + 0.03777, + 0.05705, + 0.3668, + 0.66845, + 0.61102, + 0.45854, + 0.46792, + 0.38723, + 0.56752, + 0.42466, + 0.42286, + 0.45247, + 0.48574, + ], + unstable__sensitivity: [], + }, + { + id: '1b830e18-71a2-4474-8c1a-0b5ae50ef830', + title: 'Ramo a San Juan Bautista - El 24 de junio (versión II)', + indexed_on: '2023-12-23T00:11:36.355305Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=142637282', + url: 'https://upload.wikimedia.org/wikipedia/commons/d/de/Ramo_a_San_Juan_Bautista_-_El_24_de_junio_%28versi%C3%B3n_II%29.ogg', + creator: 'Instituto de Estudios Cabreireses', + creator_url: null, + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: null, + genres: null, + filesize: 1515090, + filetype: 'ogg', + tags: [], + alt_files: null, + attribution: '"Ramo a San Juan Bautista - El 24 de junio (versión II)" by Instituto de Estudios Cabreireses is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + audio_set: null, + duration: 38162, + bit_rate: 499821, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/1b830e18-71a2-4474-8c1a-0b5ae50ef830/', + related_url: 'http://localhost:49153/v1/audio/1b830e18-71a2-4474-8c1a-0b5ae50ef830/related/', + waveform: 'http://localhost:49153/v1/audio/1b830e18-71a2-4474-8c1a-0b5ae50ef830/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '52ac50b0-b81f-43bf-81fb-97b860b59951', + title: 'Improvisación sonora-visual de la Escuela libre en el Laboratorio abierto de producción audiovisual', + indexed_on: '2024-04-10T00:13:26.963282Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=147216397', + url: 'https://upload.wikimedia.org/wikipedia/commons/c/c3/Improvisaci%C3%B3n_sonora-visual_de_la_Escuela_libre_en_el_Laboratorio_abierto_de_producci%C3%B3n_audiovisual.mp3', + creator: 'Luisalvaz', + creator_url: 'https://commons.wikimedia.org/wiki/User:Luisalvaz', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: null, + genres: null, + filesize: 201285213, + filetype: 'mp3', + tags: [], + alt_files: null, + attribution: '"Improvisación sonora-visual de la Escuela libre en el Laboratorio abierto de producción audiovisual" by Luisalvaz is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'description', + ], + mature: false, + audio_set: null, + duration: 6290128, + bit_rate: 256000, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/52ac50b0-b81f-43bf-81fb-97b860b59951/', + related_url: 'http://localhost:49153/v1/audio/52ac50b0-b81f-43bf-81fb-97b860b59951/related/', + waveform: 'http://localhost:49153/v1/audio/52ac50b0-b81f-43bf-81fb-97b860b59951/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '23aca35d-7bf0-4b51-95bd-f23e54316f2c', + title: 'Palomazos S1E124 - Contenidos Y Medios Digitales III ( Con Mauricio González) (IA palomazos-s-1-e-124)', + indexed_on: '2023-08-20T15:26:03.883516Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=93402755', + url: 'https://upload.wikimedia.org/wikipedia/commons/1/1f/Palomazos_S1E124_-_Contenidos_Y_Medios_Digitales_III_%28_Con_Mauricio_Gonz%C3%A1lez%29_%28IA_palomazos-s-1-e-124%29.mp3', + creator: 'Dan Campos', + creator_url: null, + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: null, + genres: null, + filesize: 74382361, + filetype: 'mp3', + tags: [], + alt_files: null, + attribution: '"Palomazos S1E124 - Contenidos Y Medios Digitales III ( Con Mauricio González) (IA palomazos-s-1-e-124)" by Dan Campos is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'description', + ], + mature: false, + audio_set: null, + duration: 3098992, + bit_rate: 192000, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/23aca35d-7bf0-4b51-95bd-f23e54316f2c/', + related_url: 'http://localhost:49153/v1/audio/23aca35d-7bf0-4b51-95bd-f23e54316f2c/related/', + waveform: 'http://localhost:49153/v1/audio/23aca35d-7bf0-4b51-95bd-f23e54316f2c/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '83a3c926-d6e1-4558-be14-24ed45891d6a', + title: 'Improvisación sonora-visual de la Escuela libre en el Laboratorio abierto de producción audiovisual - 2', + indexed_on: '2024-04-10T00:13:26.963282Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=147242615', + url: 'https://upload.wikimedia.org/wikipedia/commons/3/3c/Improvisaci%C3%B3n_sonora-visual_de_la_Escuela_libre_en_el_Laboratorio_abierto_de_producci%C3%B3n_audiovisual_-_2.wav', + creator: 'Luisalvaz', + creator_url: 'https://commons.wikimedia.org/wiki/User:Luisalvaz', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: null, + genres: null, + filesize: 280272428, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"Improvisación sonora-visual de la Escuela libre en el Laboratorio abierto de producción audiovisual - 2" by Luisalvaz is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'description', + ], + mature: false, + audio_set: null, + duration: 1588845, + bit_rate: 1411200, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/83a3c926-d6e1-4558-be14-24ed45891d6a/', + related_url: 'http://localhost:49153/v1/audio/83a3c926-d6e1-4558-be14-24ed45891d6a/related/', + waveform: 'http://localhost:49153/v1/audio/83a3c926-d6e1-4558-be14-24ed45891d6a/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '4f09f98f-a2d3-4c68-9c3b-0d953ae46efc', + title: 'Juicio Circuito Camps (parte 32)', + indexed_on: '2024-03-24T10:36:46.412330Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=116295571', + url: 'https://upload.wikimedia.org/wikipedia/commons/c/c4/Juicio_Circuito_Camps_%28parte_32%29.mp3', + creator: 'Radio Universidad Nacional de La Plata', + creator_url: 'https://www.wikidata.org/wiki/Q16624022', + license: 'by', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by/3.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: null, + genres: null, + filesize: 2634692, + filetype: 'mp3', + tags: [], + alt_files: null, + attribution: '"Juicio Circuito Camps (parte 32)" by Radio Universidad Nacional de La Plata is licensed under CC BY 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/3.0/.', + fields_matched: [ + 'description', + ], + mature: false, + audio_set: null, + duration: 109693, + bit_rate: 192000, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/4f09f98f-a2d3-4c68-9c3b-0d953ae46efc/', + related_url: 'http://localhost:49153/v1/audio/4f09f98f-a2d3-4c68-9c3b-0d953ae46efc/related/', + waveform: 'http://localhost:49153/v1/audio/4f09f98f-a2d3-4c68-9c3b-0d953ae46efc/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '854e0d45-8b08-48e8-88f6-3effd085c58f', + title: 'Registro de la sesión final del laboratorio abierto de producción audiovisual', + indexed_on: '2024-04-22T00:08:49.888438Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=147576876', + url: 'https://upload.wikimedia.org/wikipedia/commons/8/81/Registro_de_la_sesi%C3%B3n_final_del_laboratorio_abierto_de_producci%C3%B3n_audiovisual.mp3', + creator: 'Luisalvaz', + creator_url: 'https://commons.wikimedia.org/wiki/User:Luisalvaz', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: null, + genres: null, + filesize: 156734108, + filetype: 'mp3', + tags: [], + alt_files: null, + attribution: '"Registro de la sesión final del laboratorio abierto de producción audiovisual" by Luisalvaz is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'description', + ], + mature: false, + audio_set: null, + duration: 4897906, + bit_rate: 256000, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/854e0d45-8b08-48e8-88f6-3effd085c58f/', + related_url: 'http://localhost:49153/v1/audio/854e0d45-8b08-48e8-88f6-3effd085c58f/related/', + waveform: 'http://localhost:49153/v1/audio/854e0d45-8b08-48e8-88f6-3effd085c58f/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=art&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=art&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..c4fb4306a3b --- /dev/null +++ b/frontend/test/tapes/search/audio/q=art&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 @@ -0,0 +1,91 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:12.061Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=art&license=by&extension=mp3&source=jamendo&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:12 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept, Authorization, origin, Accept-Encoding', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '171', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '8e5918ee-6269-4650-affe-d4cd6dbc955b', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1147', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:05 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d4c6aba274a-ADL', + ], + 'content-encoding': [ + 'br', + ], + }, + body: { + result_count: 0, + page_count: 0, + page_size: 20, + page: 1, + results: [], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=art&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=art&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..ac971b6ba1f --- /dev/null +++ b/frontend/test/tapes/search/audio/q=art&peaks=true_keep-alive.json5 @@ -0,0 +1,18390 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:10.809Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=art&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:10 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '15', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '190', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '6fb25d84-f4ad-4ee6-8466-689d0e142213', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1146', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:04 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d449f4a274a-ADL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: 'fad7ef74-da41-4566-b946-1b85f7e67da5', + title: 'Bryan Art - Knowledge is the Power (Forward Riddim J.A.R 026)', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1321293', + url: 'https://prod-1.storage.jamendo.com/?trackid=1321293&format=mp32', + creator: 'Yuanan "J.A.R"', + creator_url: 'https://www.jamendo.com/artist/370626/Yuanan', + license: 'by-nc-nd', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'reggae', + 'world', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'male', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'neutral', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'roots', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'vocal', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Bryan Art - Knowledge is the Power (Forward Riddim J.A.R 026)" by Yuanan "J.A.R" is licensed under CC BY-NC-ND 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'Forward Riddim Prod. By J.A.R (JAR 026-027)', + foreign_landing_url: 'https://www.jamendo.com/album/156635/forward-riddim-prod-by-j-a-r-jar-026-027', + creator: 'Yuanan "J.A.R"', + creator_url: 'https://www.jamendo.com/artist/370626/Yuanan', + url: null, + filesize: null, + filetype: null, + }, + duration: 249000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/fad7ef74-da41-4566-b946-1b85f7e67da5/thumb/', + detail_url: 'http://localhost:49153/v1/audio/fad7ef74-da41-4566-b946-1b85f7e67da5/', + related_url: 'http://localhost:49153/v1/audio/fad7ef74-da41-4566-b946-1b85f7e67da5/related/', + waveform: 'http://localhost:49153/v1/audio/fad7ef74-da41-4566-b946-1b85f7e67da5/waveform/', + peaks: [ + 0.71569, + 0.69701, + 0.54738, + 0.99783, + 0.98724, + 0.98218, + 0.92425, + 0.96634, + 0.94571, + 0.52657, + 0.84878, + 0.84887, + 0.81085, + 0.3863, + 0.73077, + 0.69744, + 0.53865, + 0.59737, + 0.42024, + 0.35432, + 0.31626, + 0.40788, + 0.27277, + 0.28092, + 0.88891, + 0.83779, + 0.81326, + 0.66301, + 0.75948, + 0.94311, + 0.98447, + 0.97082, + 0.89911, + 0.9805, + 0.77154, + 0.87698, + 0.87887, + 0.6361, + 0.64083, + 0.89608, + 0.87716, + 0.6187, + 0.83071, + 0.82089, + 0.76519, + 0.42195, + 0.45195, + 0.41615, + 0.37516, + 0.45891, + 0.96228, + 0.79931, + 0.83508, + 0.97128, + 0.94281, + 0.97348, + 0.98761, + 0.9241, + 0.78649, + 0.9154, + 0.99954, + 0.84359, + 0.99783, + 1, + 0.93741, + 0.99362, + 0.82913, + 1, + 0.84631, + 0.80264, + 0.94699, + 0.97131, + 0.86837, + 0.84378, + 0.97244, + 0.83865, + 0.94287, + 0.95764, + 0.9732, + 0.99081, + 0.72326, + 1, + 0.62938, + 0.88885, + 0.92495, + 0.97818, + 0.96976, + 0.84796, + 1, + 0.71764, + 0.98239, + 0.8323, + 0.76, + 0.99072, + 1, + 0.99011, + 0.92535, + 0.65841, + 0.63088, + 1, + 0.76308, + 0.92663, + 1, + 0.91635, + 0.94876, + 0.85525, + 0.91687, + 0.9971, + 0.9574, + 0.96152, + 0.96683, + 0.76278, + 0.98068, + 0.99182, + 0.69112, + 0.96902, + 0.97159, + 0.92911, + 0.96762, + 0.99316, + 0.99582, + 0.98611, + 0.97235, + 0.90515, + 1, + 0.98245, + 0.9216, + 0.78008, + 0.8077, + 1, + 0.88208, + 0.94311, + 0.98572, + 0.99576, + 0.98056, + 0.98303, + 0.97812, + 0.85003, + 0.98795, + 0.94433, + 0.94662, + 0.96606, + 0.98187, + 0.96625, + 0.957, + 1, + 0.81402, + 1, + 1, + 0.96432, + 0.99954, + 0.98193, + 0.99557, + 0.95294, + 0.9758, + 0.86602, + 1, + 0.97195, + 0.93838, + 0.99176, + 0.81289, + 0.96558, + 1, + 0.99274, + 1, + 0.98672, + 0.96759, + 0.9848, + 0.99713, + 0.98334, + 1, + 0.98367, + 0.93536, + 1, + 0.89038, + 0.94598, + 0.87136, + 0.81713, + 0.97507, + 0.98294, + 1, + 0.97818, + 0.9924, + 0.99664, + 0.88015, + 0.92889, + 0.91025, + 1, + 0.9946, + 0.97104, + 0.98624, + 0.97027, + 0.99741, + 0.96466, + 0.98279, + 0.97415, + 0.97784, + 0.99216, + 1, + 0.91394, + 0.94897, + 0.97064, + 0.98541, + 0.96655, + 0.97806, + 0.98224, + 0.98743, + 0.97662, + 0.98431, + 0.88449, + 1, + 0.98489, + 0.98672, + 0.93185, + 0.94272, + 0.97861, + 0.79241, + 0.99609, + 0.9733, + 1, + 0.86898, + 1, + 0.99921, + 0.99622, + 0.97589, + 0.97598, + 1, + 0.98605, + 0.98151, + 0.78368, + 0.96915, + 0.91021, + 0.92721, + 0.97354, + 0.86676, + 0.99966, + 0.87811, + 1, + 0.9183, + 1, + 0.98914, + 0.87439, + 0.96353, + 0.79168, + 1, + 0.64809, + 0.89654, + 1, + 1, + 0.99487, + 0.89355, + 1, + 0.99139, + 0.94833, + 1, + 0.98563, + 0.99527, + 0.87521, + 1, + 0.99124, + 0.9888, + 0.99969, + 0.99237, + 0.98233, + 0.84716, + 0.97647, + 0.99075, + 0.97671, + 0.84045, + 1, + 0.82778, + 0.86602, + 1, + 1, + 0.93493, + 0.93118, + 0.99631, + 0.99936, + 0.99902, + 1, + 0.81701, + 0.98196, + 0.94232, + 0.99387, + 0.84948, + 0.92007, + 0.90176, + 0.63756, + 0.93072, + 0.76333, + 1, + 0.99438, + 0.98996, + 0.97308, + 1, + 0.99789, + 0.98776, + 1, + 0.9751, + 0.93316, + 0.78256, + 1, + 0.9602, + 0.95529, + 1, + 0.91113, + 0.94574, + 0.92956, + 0.98566, + 1, + 0.97958, + 0.99197, + 0.98755, + 0.91238, + 0.27345, + 0.85241, + 0.93008, + 0.96249, + 0.8637, + 0.41465, + 0.93652, + 0.9415, + 1, + 0.93094, + 0.9971, + 0.99649, + 0.95621, + 0.89187, + 0.44844, + 1, + 0.45515, + 0.94958, + 0.8894, + 0.6071, + 0.9418, + 0.49434, + 0.97925, + 0.39631, + 0.96484, + 0.64339, + 0.60875, + 0.61092, + 0.46236, + 0.42561, + 0.39769, + 0.3657, + 0.99164, + 0.96866, + 0.96524, + 0.96606, + 0.98334, + 0.94275, + 1, + 0.82183, + 0.9895, + 0.90197, + 0.76321, + 0.88949, + 0.96039, + 0.9079, + 0.98419, + 0.93637, + 0.84695, + 0.80175, + 0.59087, + 0.87564, + 0.98633, + 0.99487, + 0.97421, + 0.91363, + 0.96255, + 0.58592, + 0.52022, + 0.90762, + 0.87213, + 0.64205, + 0.48814, + 0.2505, + 0.66356, + 0.9968, + 0.79864, + 0.81069, + 0.99087, + 1, + 1, + 0.49571, + 0.50755, + 0.7322, + 0.7539, + 0.9964, + 0.98947, + 0.42128, + 0.35298, + 0.99075, + 0.9827, + 0.99588, + 0.98819, + 0.78817, + 0.99765, + 0.87118, + 0.9928, + 0.93667, + 0.99854, + 0.98709, + 0.98981, + 1, + 0.95923, + 1, + 0.98474, + 0.99124, + 0.9938, + 0.75817, + 0.96277, + 0.65505, + 0.96442, + 0.55055, + 0.99503, + 0.98206, + 0.86605, + 0.9921, + 0.94662, + 0.94748, + 0.618, + 0.96478, + 0.90222, + 0.9573, + 0.87161, + 0.95706, + 0.98437, + 0.77618, + 0.94162, + 0.99597, + 1, + 0.96127, + 1, + 0.9903, + 0.7062, + 0.98383, + 0.99481, + 0.98791, + 0.99048, + 0.95566, + 0.97098, + 0.98001, + 0.98892, + 0.91681, + 0.99115, + 0.99704, + 0.96985, + 0.99554, + 0.9678, + 0.98804, + 0.99765, + 0.99985, + 0.9935, + 0.84668, + 0.97626, + 0.95083, + 0.96127, + 0.9913, + 0.77108, + 0.99487, + 0.9873, + 0.95532, + 0.97406, + 0.91208, + 0.96747, + 0.92169, + 0.88449, + 0.96908, + 0.77429, + 0.99582, + 0.70711, + 0.94382, + 0.88253, + 0.89618, + 0.98782, + 0.97211, + 0.98376, + 0.89535, + 0.9198, + 0.87268, + 0.78494, + 0.89175, + 0.83135, + 0.98468, + 0.97302, + 0.98389, + 0.8724, + 0.90573, + 0.60097, + 0.51347, + 0.89169, + 0.88769, + 0.98517, + 0.93127, + 0.94748, + 0.93445, + 0.8186, + 0.84695, + 0.99539, + 0.9975, + 0.86621, + 0.862, + 0.94095, + 0.85885, + 0.58132, + 0.7828, + 0.90875, + 0.97018, + 1, + 0.96857, + 0.93686, + 0.99423, + 0.95135, + 0.97827, + 0.98508, + 0.85852, + 0.9917, + 0.99689, + 1, + 0.9772, + 0.98508, + 0.99582, + 0.87292, + 0.96963, + 0.96493, + 1, + 0.96133, + 0.93722, + 0.9964, + 0.99326, + 0.98959, + 0.98868, + 1, + 0.86941, + 0.97736, + 0.79275, + 0.97775, + 0.99048, + 0.98038, + 1, + 0.99445, + 0.98602, + 0.97339, + 0.98889, + 0.98108, + 0.91498, + 1, + 0.86865, + 0.99695, + 0.98187, + 0.99155, + 0.96081, + 0.9422, + 0.98022, + 0.95325, + 0.96045, + 0.92886, + 1, + 0.91235, + 0.98733, + 0.9938, + 0.97278, + 0.94555, + 0.86373, + 0.6755, + 0.5088, + 0.97665, + 0.7308, + 0.63234, + 0.88553, + 0.6653, + 0.96182, + 0.76241, + 0.89142, + 0.53212, + 0.72353, + 0.978, + 0.83154, + 0.58248, + 0.68188, + 0.75082, + 0.38444, + 0.31446, + 0.60244, + 0.51488, + 0.12683, + 0.01715, + 0.70775, + 0.68642, + 0.92535, + 0.60231, + 0.88232, + 0.59145, + 0.79012, + 0.98889, + 0.94961, + 0.99023, + 0.99106, + 0.9837, + 0.83883, + 0.86373, + 0.93765, + 0.92956, + 0.56502, + 0.43397, + 0.93539, + 0.54103, + 0.65987, + 0.88574, + 0.57793, + 0.51579, + 0.32682, + 0.94607, + 0.29228, + 0.537, + 0.98782, + 0.97559, + 0.98358, + 0.95978, + 0.90963, + 0.88592, + 1, + 0.94763, + 0.99155, + 0.98572, + 0.93341, + 0.99942, + 0.89172, + 1, + 0.92544, + 1, + 1, + 0.99887, + 0.99265, + 0.99838, + 0.88531, + 0.81231, + 0.77126, + 0.97137, + 1, + 0.93881, + 1, + 0.91049, + 0.35182, + 0.9863, + 0.90628, + 1, + 0.96124, + 0.74773, + 1, + 0.6567, + 0.93744, + 0.80728, + 0.95834, + 0.98248, + 0.95389, + 0.84976, + 1, + 0.99948, + 0.58162, + 0.99164, + 0.91748, + 0.85995, + 0.96139, + 0.84283, + 0.96976, + 0.88363, + 1, + 0.94339, + 0.99576, + 0.90005, + 1, + 0.99707, + 0.75573, + 0.97659, + 0.99548, + 0.97278, + 0.93069, + 0.97394, + 0.98437, + 0.77172, + 0.91897, + 0.92355, + 0.95712, + 0.99237, + 0.97427, + 0.99075, + 0.94305, + 1, + 1, + 0.98209, + 0.80599, + 0.91485, + 0.98492, + 0.84536, + 0.98126, + 0.61876, + 0.99301, + 0.72439, + 0.86218, + 0.98621, + 0.94989, + 1, + 0.70458, + 0.96823, + 0.87991, + 1, + 0.98022, + 0.9888, + 1, + 0.95868, + 0.92691, + 0.8243, + 0.98877, + 0.965, + 0.98154, + 0.98907, + 0.89508, + 0.97632, + 0.88907, + 0.98782, + 0.90652, + 0.93576, + 1, + 0.97439, + 0.95053, + 0.99402, + 0.85287, + 0.99503, + 0.96188, + 0.92279, + 1, + 0.98685, + 0.97305, + 0.98804, + 0.96567, + 0.98212, + 0.96661, + 1, + 0.98086, + 0.88174, + 0.96103, + 0.92962, + 1, + 0.97674, + 1, + 0.9978, + 0.97943, + 0.99353, + 0.90628, + 0.92462, + 0.75817, + 1, + 0.95804, + 0.97623, + 1, + 0.98251, + 1, + 0.99686, + 1, + 0.91665, + 0.98846, + 0.99197, + 0.901, + 0.96426, + 0.89221, + 0.9939, + 0.99051, + 1, + 0.99579, + 0.97736, + 0.98248, + 0.58535, + 0.99603, + 0.90695, + 0.97311, + 1, + 1, + 0.93768, + 0.86029, + 1, + 0.97299, + 0.97922, + 0.99808, + 1, + 0.99039, + 0.95145, + 0.96478, + 0.96438, + 0.97574, + 0.80908, + 0.99692, + 1, + 0.9873, + 1, + 0.8815, + 0.9711, + 0.98505, + 0.97497, + 0.99551, + 0.9931, + 0.98199, + 0.99954, + 0.99469, + 0.99216, + 0.99481, + 0.91678, + 0.8728, + 1, + 0.98154, + 0.86129, + 0.78933, + 1, + 0.9769, + 0.99899, + 0.99942, + 0.98639, + 0.93481, + 0.92117, + 0.99576, + 0.87197, + 0.99576, + 0.91369, + 1, + 0.96704, + 0.99277, + 1, + 0.97339, + 0.9357, + 0.71197, + 0.99167, + 0.98154, + 0.98398, + 1, + 0.88995, + 0.93674, + 0.99783, + 1, + 0.97223, + 0.96899, + 0.99017, + 0.99716, + 0.97363, + 0.97845, + 0.95025, + 0.88772, + 0.97232, + 0.98062, + 0.7037, + 0.95248, + 0.46367, + 0.94412, + 0.35029, + 0.8865, + 0.98358, + 0.99136, + 0.97894, + 0.97736, + 1, + 0.99899, + 0.97714, + 0.99353, + 1, + 0.86804, + 0.54009, + 1, + 0.96109, + 0.97818, + 0.99155, + 0.99322, + 0.97577, + 0.9725, + 0.96677, + 0.95416, + 0.97549, + 0.99185, + 1, + 0.92904, + 0.89508, + 0.99561, + 0.81002, + 0.9284, + 0.43339, + 0.94595, + 0.94885, + 0.96628, + 1, + 1, + 0.98477, + 0.97351, + 1, + 0.99374, + 0.94186, + 0.99084, + 0.96551, + 0.97174, + 0.73034, + 0.91781, + 0.61147, + 0.93878, + 1, + 1, + 0.95871, + 0.93085, + 0.98254, + 0.97394, + 0.98837, + 0.70339, + 0.54439, + 0.69631, + 0.93036, + 0.92608, + 0.99338, + 0.96951, + 0.86828, + 0.98935, + 0.95508, + 0.89792, + 0.98431, + 0.86422, + 0.99411, + 0.69918, + 0.79376, + 0.62813, + 0.99561, + 0.98981, + 0.84478, + 0.99765, + 0.95312, + 0.81365, + 0.77529, + 0.93295, + 0.99304, + 0.9993, + 0.9985, + 0.75732, + 0.83773, + 0.72317, + 0.97665, + 0.98733, + 0.99774, + 0.96875, + 0.95041, + 0.82681, + 0.36857, + 0.86465, + 0.88147, + 0.88092, + 0.9238, + 0.92154, + 0.69597, + 0.83328, + 0.95523, + 0.71841, + 0.80169, + 0.95727, + 0.61559, + 0.72295, + 0.89383, + 0.98767, + 0.96698, + 0.98126, + 0.9624, + 0.98135, + 1, + 0.95349, + 0.94754, + 0.97626, + 0.98437, + 1, + 0.95157, + 0.97903, + 0.987, + 0.99979, + 0.97998, + 0.99216, + 0.9526, + 0.97748, + 1, + 1, + 0.96463, + 0.91742, + 0.99142, + 1, + 0.98596, + 0.99374, + 0.6693, + 0.95599, + 1, + 1, + 0.83807, + 1, + 1, + 0.97049, + 0.96399, + 0.94354, + 1, + 0.99557, + 1, + 1, + 1, + 0.95331, + 0.93854, + 0.99124, + 0.71987, + 0.90515, + 0.99155, + 0.99548, + 0.93558, + 0.76418, + 1, + 0.84423, + 0.99338, + 0.91546, + 1, + 0.98846, + 0.98654, + 0.98737, + 0.95877, + 0.97378, + 0.89993, + 0.96887, + 0.82174, + 0.96112, + 0.85366, + 0.60268, + 0.93713, + 0.47423, + 0.95309, + 0.7492, + 0.98025, + 0.91104, + 0.85803, + 0.96634, + 0.82864, + 0.99719, + 0.45549, + 0.94269, + 0.97589, + 0.67333, + 0.86981, + 0.64, + 0.83557, + 0.43242, + 0.8265, + 0.7326, + 0.78518, + 0.92932, + 0.68566, + 0.96655, + 0.46577, + 0.94647, + 0.41859, + 0.75677, + 0.93982, + 0.86053, + 0.9548, + 0.60207, + 0.94555, + 0.35051, + 0.79675, + 0.90432, + 0.81194, + 0.90094, + 0.50301, + 0.90533, + 0.37553, + 0.73354, + 0.91879, + 0.95218, + 1, + 0.78558, + 0.77206, + 0.76489, + 0.82882, + 0.45952, + 0.97949, + 0.92181, + 0.7091, + 0.84429, + 0.65221, + 0.94528, + 0.41298, + 0.96747, + 0.92288, + 0.91974, + 0.95184, + 0.79821, + 0.63494, + 0.35237, + 0.76449, + 0.781, + 0.94, + 0.89004, + 0.61824, + 0.89978, + 0.38282, + 0.90664, + 0.67006, + 0.88183, + 0.92605, + 0.70714, + 0.77703, + 0.4275, + 0.92746, + 0.31593, + 0.96991, + 0.74053, + 0.9158, + 0.81552, + 0.4001, + 0.96258, + 0.63323, + 0.99301, + 0.80737, + 0.97565, + 0.90197, + 0.67336, + 0.79406, + 0.62746, + 0.86196, + 0.44597, + 0.97363, + 0.84933, + 0.88488, + 0.95724, + 0.6028, + 0.9675, + 0.4348, + 0.98132, + 0.86352, + 0.82214, + 0.93142, + 0.85351, + 0.9223, + 0.45485, + 0.87954, + 0.56325, + 0.8229, + 0.98944, + 0.79769, + 0.91168, + 0.43599, + 0.9921, + 0.57912, + 0.82559, + 0.95636, + 0.73772, + 0.92831, + 0.4872, + 0.68508, + 0.42998, + 0.84503, + 0.8627, + 0.73965, + 0.90564, + 0.65508, + 0.91092, + 0.30021, + 0.77474, + 0.43281, + 0.71905, + 0.80041, + 0.62938, + 0.91491, + 0.51714, + 0.74239, + 0.20539, + 0.92535, + 0.61602, + 0.54445, + 0.86019, + 0.35951, + 0.63326, + 0.2891, + 0.69945, + 0.54338, + 0.65246, + 0.69237, + 0.45122, + 0.51613, + 0.47414, + 0.70461, + 0.4182, + 0.53325, + 0.89456, + 0.83944, + 0.55721, + 0.38493, + 0.64901, + 0.62093, + 0.90982, + 0.9783, + 0.77889, + 0.60216, + 0.41716, + 0.86071, + 0.22996, + 0.59972, + 0.63353, + 0.85943, + 0.33198, + 0.17786, + 0.51747, + 0.16404, + 0.56636, + 0.28208, + 0.86218, + 0.46855, + 0.33985, + 0.48479, + 0.35389, + 0.36256, + 0.22718, + 0.50188, + 0.42665, + 0.32408, + 0.26453, + 0.35945, + 0.37455, + 0.35807, + 0.50398, + 0.37394, + 0.4261, + 0.39967, + 0.35728, + 0.54823, + 0.27586, + 0.39116, + 0.0817, + 0.10224, + 0.10367, + 0.08805, + 0.24418, + 0.2215, + 0.21281, + 0.04691, + 0.335, + 0.34257, + 0.18888, + 0.21656, + 0.23035, + 0.34889, + 0.08979, + 0.03989, + 0.0029, + ], + unstable__sensitivity: [], + }, + { + id: '0b2dfa0e-aa57-4395-8218-81eb4ba9b62f', + title: 'Art Project - Muza of Silence', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1118125', + url: 'https://prod-1.storage.jamendo.com/?trackid=1118125&format=mp32', + creator: 'Tunguska Electronic Music Society', + creator_url: 'https://www.jamendo.com/artist/343607/Tunguska_Chillout_Grooves_vol.1', + license: 'by-nd', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nd/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'instrumental', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Art Project - Muza of Silence" by Tunguska Electronic Music Society is licensed under CC BY-ND 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nd/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'Tunguska Chillout Grooves Vol. 11', + foreign_landing_url: 'https://www.jamendo.com/album/133613/tunguska-chillout-grooves-vol-11', + creator: 'Tunguska Electronic Music Society', + creator_url: 'https://www.jamendo.com/artist/343607/Tunguska_Chillout_Grooves_vol.1', + url: null, + filesize: null, + filetype: null, + }, + duration: 412000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/0b2dfa0e-aa57-4395-8218-81eb4ba9b62f/thumb/', + detail_url: 'http://localhost:49153/v1/audio/0b2dfa0e-aa57-4395-8218-81eb4ba9b62f/', + related_url: 'http://localhost:49153/v1/audio/0b2dfa0e-aa57-4395-8218-81eb4ba9b62f/related/', + waveform: 'http://localhost:49153/v1/audio/0b2dfa0e-aa57-4395-8218-81eb4ba9b62f/waveform/', + peaks: [ + 0.27215, + 0.31561, + 0.17287, + 0.16352, + 0.24589, + 0.24729, + 0.20135, + 0.19561, + 0.20057, + 0.23422, + 0.22637, + 0.21845, + 0.19161, + 0.21578, + 0.24712, + 0.25074, + 0.22774, + 0.23409, + 0.24768, + 0.30131, + 0.28358, + 0.23575, + 0.20819, + 0.18167, + 0.2496, + 0.24771, + 0.19744, + 0.17183, + 0.22018, + 0.27368, + 0.16388, + 0.22187, + 0.22207, + 0.15336, + 0.16802, + 0.18907, + 0.18164, + 0.12892, + 0.18177, + 0.19614, + 0.17502, + 0.13612, + 0.21217, + 0.21379, + 0.16359, + 0.17033, + 0.2135, + 0.21089, + 0.13443, + 0.19464, + 0.21324, + 0.19926, + 0.1142, + 0.20904, + 0.21337, + 0.17884, + 0.25211, + 0.30802, + 0.18408, + 0.14834, + 0.24546, + 0.2381, + 0.21363, + 0.15678, + 0.13857, + 0.21432, + 0.21946, + 0.19027, + 0.15736, + 0.16232, + 0.24302, + 0.24295, + 0.21907, + 0.2149, + 0.2236, + 0.28384, + 0.29065, + 0.26074, + 0.24295, + 0.23621, + 0.32327, + 0.31506, + 0.30733, + 0.26371, + 0.27651, + 0.34751, + 0.19757, + 0.26345, + 0.24941, + 0.18353, + 0.19004, + 0.21484, + 0.20982, + 0.15342, + 0.17756, + 0.21044, + 0.18832, + 0.11928, + 0.212, + 0.21445, + 0.17688, + 0.15583, + 0.21637, + 0.21536, + 0.19268, + 0.24181, + 0.22875, + 0.20865, + 0.156, + 0.22784, + 0.53651, + 0.4749, + 0.36943, + 0.5152, + 0.29368, + 0.27778, + 0.33444, + 0.39442, + 0.36311, + 0.29143, + 0.21568, + 0.3306, + 0.27638, + 0.28687, + 0.23865, + 0.25038, + 0.29189, + 0.30121, + 0.29036, + 0.25882, + 0.23113, + 0.31046, + 0.30544, + 0.27801, + 0.20969, + 0.20242, + 0.28997, + 0.26061, + 0.22738, + 0.22745, + 0.20464, + 0.29701, + 0.20956, + 0.27606, + 0.30662, + 0.23904, + 0.21559, + 0.25419, + 0.26136, + 0.22331, + 0.25999, + 0.27345, + 0.25683, + 0.20757, + 0.26074, + 0.28111, + 0.21839, + 0.19998, + 0.27886, + 0.25322, + 0.19548, + 0.22311, + 0.27303, + 0.25214, + 0.17134, + 0.23963, + 0.24325, + 0.20708, + 0.22204, + 0.33157, + 0.20334, + 0.24061, + 0.2827, + 0.3334, + 0.28814, + 0.24572, + 0.21353, + 0.31861, + 0.30567, + 0.27798, + 0.25628, + 0.23996, + 0.32809, + 0.35803, + 0.31864, + 0.27335, + 0.27088, + 0.30988, + 0.34125, + 0.27958, + 0.22699, + 0.21239, + 0.28257, + 0.26364, + 0.23396, + 0.23048, + 0.17587, + 0.32457, + 0.29303, + 0.329, + 0.34799, + 0.27407, + 0.21865, + 0.28665, + 0.29824, + 0.24015, + 0.25015, + 0.29003, + 0.29101, + 0.20532, + 0.30339, + 0.31408, + 0.24859, + 0.21239, + 0.26729, + 0.29362, + 0.2065, + 0.26583, + 0.33122, + 0.30118, + 0.21816, + 0.26485, + 0.32385, + 0.3102, + 0.20568, + 0.40042, + 0.5079, + 0.39002, + 0.30867, + 0.39638, + 0.51539, + 0.26843, + 0.28612, + 0.47933, + 0.28521, + 0.53784, + 0.27136, + 0.29815, + 0.30632, + 0.33408, + 0.28358, + 0.23914, + 0.43977, + 0.28645, + 0.29896, + 0.55133, + 0.29619, + 0.20568, + 0.27918, + 0.48014, + 0.2555, + 0.41651, + 0.18046, + 0.46737, + 0.49343, + 0.31698, + 0.3535, + 0.33607, + 0.36692, + 0.38341, + 0.3259, + 0.3219, + 0.23162, + 0.46848, + 0.51263, + 0.20842, + 0.27925, + 0.38194, + 0.24468, + 0.19848, + 0.47121, + 0.44948, + 0.21174, + 0.49125, + 0.27485, + 0.25703, + 0.21624, + 0.26029, + 0.27791, + 0.21692, + 0.28951, + 0.52299, + 0.53957, + 0.44059, + 0.2827, + 0.37566, + 0.51184, + 0.27384, + 0.27746, + 0.4879, + 0.27879, + 0.57401, + 0.26537, + 0.28756, + 0.28769, + 0.34503, + 0.27889, + 0.20223, + 0.41648, + 0.26048, + 0.25807, + 0.50611, + 0.2628, + 0.20545, + 0.27622, + 0.5323, + 0.28935, + 0.32705, + 0.41032, + 0.48363, + 0.56576, + 0.33017, + 0.42371, + 0.58033, + 0.44209, + 0.48897, + 0.47457, + 0.52132, + 0.44649, + 0.39915, + 0.48034, + 0.22559, + 0.2812, + 0.38589, + 0.28176, + 0.22047, + 0.45343, + 0.44808, + 0.24559, + 0.41804, + 0.33258, + 0.30492, + 0.25967, + 0.24123, + 0.33288, + 0.30685, + 0.39569, + 0.60991, + 0.2974, + 0.62979, + 0.43609, + 0.35376, + 0.60802, + 0.27599, + 0.28153, + 0.47695, + 0.29215, + 0.55928, + 0.26469, + 0.37624, + 0.31053, + 0.3306, + 0.28078, + 0.28075, + 0.42117, + 0.28691, + 0.39621, + 0.53413, + 0.31763, + 0.21682, + 0.38289, + 0.6077, + 0.33027, + 0.48223, + 0.45212, + 0.44385, + 0.5903, + 0.28707, + 0.38927, + 0.30766, + 0.36285, + 0.38211, + 0.31574, + 0.33177, + 0.25364, + 0.61933, + 0.53915, + 0.36907, + 0.27658, + 0.37263, + 0.28922, + 0.39599, + 0.63073, + 0.29834, + 0.45678, + 0.47956, + 0.38497, + 0.35168, + 0.212, + 0.24765, + 0.27752, + 0.25947, + 0.30541, + 0.59883, + 0.32766, + 0.56602, + 0.44707, + 0.38276, + 0.54667, + 0.27765, + 0.54185, + 0.60545, + 0.33001, + 0.44818, + 0.2986, + 0.35001, + 0.39641, + 0.42964, + 0.45997, + 0.40478, + 0.44401, + 0.39563, + 0.41452, + 0.5009, + 0.29518, + 0.38501, + 0.35148, + 0.56954, + 0.36396, + 0.34738, + 0.39071, + 0.42137, + 0.5601, + 0.36328, + 0.45874, + 0.60994, + 0.48096, + 0.51129, + 0.58251, + 0.68393, + 0.44052, + 0.46219, + 0.31558, + 0.28977, + 0.2686, + 0.32669, + 0.2986, + 0.19412, + 0.24928, + 0.29039, + 0.2873, + 0.14518, + 0.22591, + 0.22018, + 0.29365, + 0.29342, + 0.38895, + 0.61747, + 0.64689, + 0.53419, + 0.62258, + 0.55491, + 0.49734, + 0.65663, + 0.65152, + 0.38514, + 0.5093, + 0.47301, + 0.59505, + 0.35946, + 0.6148, + 0.39693, + 0.49451, + 0.39061, + 0.67142, + 0.67234, + 0.38732, + 0.59968, + 0.42045, + 0.52615, + 0.36005, + 0.27211, + 0.60522, + 0.73623, + 0.50168, + 0.6146, + 0.58232, + 0.56381, + 0.65624, + 0.61574, + 0.47447, + 0.65937, + 0.62024, + 0.68433, + 0.58811, + 0.32261, + 0.58023, + 0.60424, + 0.51667, + 0.34197, + 0.53944, + 0.41694, + 0.58085, + 0.83511, + 0.58665, + 0.64347, + 0.49184, + 0.70977, + 0.3695, + 0.42159, + 0.54315, + 0.64138, + 0.7504, + 0.56622, + 0.56189, + 0.65145, + 0.55026, + 0.56345, + 0.48796, + 0.62177, + 0.77653, + 0.39201, + 0.81018, + 0.62702, + 0.62105, + 0.35461, + 0.59007, + 0.38543, + 0.27554, + 0.60818, + 0.70068, + 0.66035, + 0.49464, + 0.68889, + 0.44886, + 0.35353, + 0.57336, + 0.39224, + 0.56619, + 0.70795, + 0.58668, + 0.68846, + 0.44293, + 0.72648, + 0.53599, + 0.59395, + 0.47949, + 0.74502, + 0.57453, + 0.50712, + 0.93503, + 0.63275, + 0.58336, + 0.50643, + 0.6149, + 0.29834, + 0.19943, + 0.57417, + 0.6653, + 0.63633, + 0.60519, + 0.59382, + 0.50018, + 0.40048, + 0.60577, + 0.34053, + 0.48366, + 0.63969, + 0.60926, + 0.84866, + 0.5525, + 0.84814, + 0.74916, + 0.55703, + 0.62555, + 0.75978, + 0.69244, + 0.46274, + 0.68925, + 0.45248, + 0.72082, + 0.52494, + 0.68742, + 0.43554, + 0.36904, + 0.69759, + 0.74678, + 0.65318, + 0.7733, + 0.7577, + 0.43802, + 0.33425, + 0.55185, + 0.36552, + 0.42407, + 0.79738, + 0.54508, + 0.74453, + 0.53426, + 0.69954, + 0.65637, + 0.66878, + 0.49565, + 0.79943, + 0.68631, + 0.65393, + 0.71443, + 0.30704, + 0.73714, + 0.62438, + 0.62715, + 0.39165, + 0.41635, + 0.72932, + 0.64956, + 0.54778, + 0.89864, + 0.73893, + 0.51947, + 0.55772, + 0.60851, + 0.53745, + 0.37927, + 0.73737, + 0.61359, + 0.31558, + 0.71736, + 0.77878, + 0.59688, + 0.58375, + 0.5556, + 0.74343, + 0.44466, + 0.77193, + 0.83791, + 0.54579, + 0.75187, + 0.45196, + 0.57003, + 0.28218, + 0.45887, + 0.66963, + 0.74398, + 0.65813, + 0.73362, + 0.73173, + 0.43499, + 0.44023, + 0.55925, + 0.36282, + 0.34184, + 0.75424, + 0.56664, + 0.37393, + 0.77835, + 0.75076, + 0.58401, + 0.73052, + 0.52504, + 0.78741, + 0.54149, + 0.63842, + 0.91164, + 0.57013, + 0.77591, + 0.51461, + 0.55039, + 0.37331, + 0.41293, + 0.74248, + 0.6812, + 0.42511, + 0.74864, + 0.72007, + 0.50761, + 0.43215, + 0.61464, + 0.44987, + 0.45238, + 0.75698, + 0.60506, + 0.42003, + 0.7677, + 0.39569, + 0.36787, + 0.34177, + 0.33353, + 0.32167, + 0.2772, + 0.28687, + 0.24488, + 0.19001, + 0.20213, + 0.18744, + 0.20705, + 0.1832, + 0.17154, + 0.19689, + 0.16952, + 0.20373, + 0.16896, + 0.15082, + 0.16329, + 0.16984, + 0.15339, + 0.16466, + 0.14186, + 0.12306, + 0.14192, + 0.12671, + 0.14948, + 0.13342, + 0.14062, + 0.18871, + 0.18245, + 0.17532, + 0.15952, + 0.1632, + 0.2322, + 0.18317, + 0.15245, + 0.13055, + 0.17102, + 0.17724, + 0.20164, + 0.17848, + 0.14176, + 0.15805, + 0.15844, + 0.17796, + 0.14567, + 0.1589, + 0.21122, + 0.16023, + 0.20353, + 0.16121, + 0.14867, + 0.16789, + 0.16069, + 0.17519, + 0.21911, + 0.18151, + 0.21924, + 0.18578, + 0.23706, + 0.19669, + 0.20949, + 0.22676, + 0.2019, + 0.19819, + 0.22546, + 0.22191, + 0.17958, + 0.23709, + 0.23729, + 0.24406, + 0.24406, + 0.17092, + 0.2164, + 0.20076, + 0.20197, + 0.19816, + 0.1586, + 0.18128, + 0.19138, + 0.16118, + 0.21288, + 0.15007, + 0.19672, + 0.29818, + 0.19992, + 0.2192, + 0.18923, + 0.20529, + 0.23435, + 0.18685, + 0.24862, + 0.1761, + 0.22422, + 0.24377, + 0.166, + 0.19845, + 0.20141, + 0.16199, + 0.17336, + 0.17274, + 0.19477, + 0.18916, + 0.26146, + 0.26648, + 0.25674, + 0.25511, + 0.25719, + 0.28072, + 0.31033, + 0.54876, + 0.43929, + 0.41211, + 0.38351, + 0.40172, + 0.31512, + 0.2959, + 0.40267, + 0.38009, + 0.39823, + 0.38931, + 0.37487, + 0.32887, + 0.33021, + 0.36308, + 0.39175, + 0.38911, + 0.29557, + 0.38843, + 0.35024, + 0.33421, + 0.36178, + 0.44355, + 0.39791, + 0.26899, + 0.31792, + 0.34285, + 0.17056, + 0.50445, + 0.37155, + 0.36992, + 0.40149, + 0.23334, + 0.37412, + 0.19513, + 0.38624, + 0.36275, + 0.3491, + 0.38647, + 0.44179, + 0.2539, + 0.38973, + 0.33724, + 0.33167, + 0.42899, + 0.36591, + 0.32323, + 0.24739, + 0.19861, + 0.1878, + 0.17597, + 0.16913, + 0.19842, + 0.14775, + 0.18196, + 0.19949, + 0.47558, + 0.47219, + 0.3996, + 0.42199, + 0.50096, + 0.3954, + 0.3868, + 0.41009, + 0.36591, + 0.3494, + 0.47499, + 0.30756, + 0.34441, + 0.41883, + 0.36145, + 0.28827, + 0.29407, + 0.39677, + 0.46766, + 0.38458, + 0.43052, + 0.38954, + 0.34272, + 0.31121, + 0.31027, + 0.33506, + 0.32167, + 0.25204, + 0.4818, + 0.41984, + 0.33581, + 0.40126, + 0.27117, + 0.47773, + 0.2787, + 0.48063, + 0.36927, + 0.25651, + 0.36767, + 0.33486, + 0.24279, + 0.33258, + 0.39178, + 0.35536, + 0.35692, + 0.43538, + 0.34184, + 0.39025, + 0.35666, + 0.31737, + 0.37377, + 0.29749, + 0.31082, + 0.37683, + 0.2842, + 0.32151, + 0.14261, + 0.18617, + 0.08777, + 0.08813, + 0.05346, + 0.17509, + 0.2194, + 0.22849, + 0.21269, + 0.1819, + 0.7373, + 0.65647, + 0.98889, + 0.70876, + 0.81585, + 0.59681, + 0.45362, + 1, + 0.70847, + 0.73476, + 0.65015, + 0.97081, + 0.69853, + 0.59958, + 0.67351, + 0.67533, + 0.80908, + 0.59571, + 0.74929, + 0.93836, + 0.64969, + 0.88062, + 0.65341, + 0.58642, + 0.72877, + 0.94517, + 0.68292, + 0.43903, + 0.7793, + 0.67732, + 0.86857, + 0.51546, + 0.74506, + 0.74525, + 0.52491, + 0.9755, + 0.5699, + 0.7892, + 0.75841, + 0.97296, + 0.65201, + 0.62441, + 0.89447, + 0.73258, + 0.98622, + 0.65826, + 0.61972, + 0.6665, + 0.55459, + 0.98068, + 0.67116, + 0.67022, + 0.45668, + 0.94725, + 0.92718, + 0.72218, + 0.79517, + 0.74281, + 0.98817, + 0.76109, + 0.76835, + 0.684, + 0.60014, + 0.97983, + 0.72176, + 0.77115, + 0.67442, + 0.97957, + 0.80667, + 0.65526, + 0.67198, + 0.59277, + 0.9422, + 0.61004, + 0.68732, + 0.67488, + 0.73518, + 0.82634, + 0.65197, + 0.75069, + 0.66083, + 0.87443, + 0.80002, + 0.7648, + 0.795, + 0.65393, + 0.78679, + 0.66162, + 0.77734, + 0.71831, + 0.4789, + 0.97586, + 0.64347, + 0.81318, + 0.79907, + 0.97485, + 0.67497, + 0.65836, + 0.91516, + 0.65686, + 0.99456, + 0.79086, + 0.60476, + 0.53195, + 0.40742, + 0.51549, + 0.47943, + 0.69879, + 0.55319, + 0.81589, + 0.82696, + 0.79604, + 0.96201, + 0.84703, + 0.82501, + 0.7574, + 0.73795, + 0.74642, + 0.73707, + 0.9655, + 0.66764, + 0.79116, + 0.6654, + 0.97146, + 0.79425, + 0.6611, + 0.87408, + 0.5989, + 0.98211, + 0.69755, + 0.779, + 0.7433, + 0.69332, + 0.95745, + 0.55462, + 0.814, + 0.6508, + 0.9725, + 0.84547, + 0.6767, + 0.78239, + 0.74496, + 0.9698, + 0.72508, + 0.78774, + 0.80856, + 0.75007, + 0.96817, + 0.78344, + 0.78998, + 0.79585, + 0.81305, + 0.87518, + 0.61154, + 0.8254, + 0.72613, + 0.96876, + 0.83987, + 0.68485, + 0.83257, + 0.83719, + 0.96172, + 0.68833, + 0.79565, + 0.7576, + 0.72342, + 0.98417, + 0.87222, + 0.85635, + 0.86596, + 0.84452, + 0.81706, + 0.57573, + 0.8125, + 0.77158, + 0.85664, + 0.79578, + 0.83765, + 0.8166, + 0.90444, + 0.95905, + 0.69931, + 0.85625, + 0.73333, + 0.98071, + 0.7664, + 0.70576, + 0.86893, + 0.76519, + 0.98527, + 0.69599, + 0.86261, + 0.87492, + 0.8096, + 0.95934, + 0.76718, + 0.86704, + 0.79376, + 0.96406, + 0.74541, + 0.54693, + 0.85479, + 0.75086, + 0.96608, + 0.82276, + 0.88815, + 0.79047, + 0.75828, + 0.82247, + 0.5539, + 0.87603, + 0.75995, + 0.91122, + 0.80126, + 0.7921, + 0.45805, + 0.80507, + 0.77187, + 0.60867, + 0.6766, + 0.7459, + 0.77588, + 0.95028, + 0.92751, + 0.80035, + 0.50839, + 0.58821, + 0.57296, + 0.27026, + 0.56221, + 0.47558, + 0.50549, + 0.49927, + 0.47288, + 0.44013, + 0.38292, + 0.41462, + 0.29046, + 0.35435, + 0.2194, + 0.26967, + 0.22487, + 0.21953, + 0.21184, + 0.16333, + 0.22533, + 0.20321, + 0.20523, + 0.16417, + 0.17023, + 0.14147, + 0.12726, + 0.15101, + 0.10885, + 0.18545, + 0.18167, + 0.1673, + 0.19252, + 0.16896, + 0.18346, + 0.15733, + 0.1474, + 0.11609, + 0.10732, + 0.11175, + 0.09514, + 0.07067, + 0.06933, + 0.11299, + 0.10292, + 0.11449, + 0.13316, + 0.12534, + 0.16909, + 0.12247, + 0.13247, + 0.12514, + 0.14186, + 0.16753, + 0.15707, + 0.21223, + 0.17965, + 0.20213, + 0.23237, + 0.22461, + 0.1559, + 0.10895, + 0.08129, + 0.06523, + 0.06327, + 0.06516, + 0.04998, + 0.03421, + 0.04027, + 0.04675, + 0.05392, + 0.06115, + 0.09797, + 0.10823, + 0.12527, + 0.11732, + 0.10882, + 0.07526, + 0.08276, + 0.0778, + 0.07028, + 0.06164, + 0.04845, + 0.04659, + 0.03265, + 0.03441, + 0.02877, + 0.02597, + 0.02271, + 0.0174, + 0.01564, + 0.00971, + 0.01101, + 0.00782, + 0.00707, + 0.00557, + 0.00375, + 0.00365, + 0.00134, + 0.00098, + 0.00033, + 0.00033, + 0.00029, + 0.00029, + 0.00039, + 0.0002, + ], + unstable__sensitivity: [], + }, + { + id: 'f51cd0ea-3745-4fbf-83ff-498998acf055', + title: 'Bottom of Main Fine Arts Stairwell', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/IESP/sounds/340063', + url: 'https://cdn.freesound.org/previews/340/340063_5984982-hq.mp3', + creator: 'IESP', + creator_url: 'https://freesound.org/people/IESP', + license: 'by', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by/3.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 1113360, + filetype: 'mp3', + tags: [ + { + name: 'chatter', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'conversation', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'crowd', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'group', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'groups', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'people', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'speaking', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'talking', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Talking', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'voices', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/340063/download/', + bit_rate: 0, + filesize: 17281150, + filetype: 'wav', + sample_rate: 48000, + }, + ], + attribution: '"Bottom of Main Fine Arts Stairwell" by IESP is licensed under CC BY 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/3.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + audio_set: { + title: 'Lethbridge Sounds', + foreign_landing_url: 'https://freesound.org/apiv2/packs/19264/', + creator: 'IESP', + creator_url: 'https://freesound.org/people/IESP/', + url: null, + filesize: null, + filetype: null, + }, + duration: 60000, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/f51cd0ea-3745-4fbf-83ff-498998acf055/', + related_url: 'http://localhost:49153/v1/audio/f51cd0ea-3745-4fbf-83ff-498998acf055/related/', + waveform: 'http://localhost:49153/v1/audio/f51cd0ea-3745-4fbf-83ff-498998acf055/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'e981c625-ef81-4831-9e45-1f2bfe7a4ec6', + title: 'O Nash Otec Na Nebesah [Our Father, Which Art In Heaven]', + indexed_on: '2022-04-01T07:25:28.481246Z', + foreign_landing_url: 'https://www.jamendo.com/track/302670', + url: 'https://prod-1.storage.jamendo.com/?trackid=302670&format=mp32', + creator: 'Paul Glot', + creator_url: 'https://www.jamendo.com/artist/341673/Paul_Glot', + license: 'by-nc-sa', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'christian', + 'classical', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'hymne', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'instrumental', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'meditative', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'piano', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"O Nash Otec Na Nebesah [Our Father, Which Art In Heaven]" by Paul Glot is licensed under CC BY-NC-SA 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'Soul Simplicity', + foreign_landing_url: 'https://www.jamendo.com/album/41273/soul-simplicity', + creator: 'Paul Glot', + creator_url: 'https://www.jamendo.com/artist/341673/Paul_Glot', + url: null, + filesize: null, + filetype: null, + }, + duration: 139000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/e981c625-ef81-4831-9e45-1f2bfe7a4ec6/thumb/', + detail_url: 'http://localhost:49153/v1/audio/e981c625-ef81-4831-9e45-1f2bfe7a4ec6/', + related_url: 'http://localhost:49153/v1/audio/e981c625-ef81-4831-9e45-1f2bfe7a4ec6/related/', + waveform: 'http://localhost:49153/v1/audio/e981c625-ef81-4831-9e45-1f2bfe7a4ec6/waveform/', + peaks: [ + 0.17485, + 0.17514, + 0.11364, + 0.07196, + 0.08003, + 0.23173, + 0.21066, + 0.16835, + 0.11262, + 0.11595, + 0.26915, + 0.17914, + 0.13639, + 0.14014, + 0.13731, + 0.0826, + 0.12124, + 0.09269, + 0.07394, + 0.06036, + 0.06066, + 0.08928, + 0.11273, + 0.08168, + 0.07229, + 0.06528, + 0.05677, + 0.05834, + 0.06715, + 0.15463, + 0.12065, + 0.08906, + 0.06642, + 0.05768, + 0.12836, + 0.20553, + 0.1532, + 0.24013, + 0.34221, + 0.26644, + 0.33154, + 0.39828, + 0.40771, + 0.34419, + 0.37773, + 0.3683, + 0.33469, + 0.26571, + 0.32053, + 0.24292, + 0.30823, + 0.30512, + 0.22479, + 0.2664, + 0.34475, + 0.19544, + 0.18087, + 0.22655, + 0.22318, + 0.21811, + 0.23235, + 0.30754, + 0.2766, + 0.2573, + 0.21353, + 0.27528, + 0.26963, + 0.33124, + 0.32141, + 0.23422, + 0.25888, + 0.23393, + 0.18736, + 0.16494, + 0.16601, + 0.15562, + 0.14032, + 0.13694, + 0.13093, + 0.12263, + 0.24391, + 0.35913, + 0.27018, + 0.2096, + 0.21147, + 0.35135, + 0.30662, + 0.2664, + 0.22193, + 0.20454, + 0.30258, + 0.23807, + 0.25415, + 0.19771, + 0.24549, + 0.26082, + 0.26985, + 0.1976, + 0.32434, + 0.29213, + 0.29748, + 0.39836, + 0.47813, + 0.33928, + 0.45065, + 0.27081, + 0.36243, + 0.33366, + 0.27921, + 0.19177, + 0.31888, + 0.37362, + 0.31411, + 0.36471, + 0.27723, + 0.50653, + 0.51589, + 0.41509, + 0.36232, + 0.37164, + 0.44188, + 0.38904, + 0.31972, + 0.35186, + 0.27936, + 0.28541, + 0.31715, + 0.29022, + 0.15048, + 0.08436, + 0.05743, + 0.11841, + 0.15474, + 0.22017, + 0.15922, + 0.25272, + 0.19863, + 0.17525, + 0.11584, + 0.1958, + 0.18538, + 0.15423, + 0.12858, + 0.14102, + 0.20791, + 0.24314, + 0.13856, + 0.09353, + 0.06256, + 0.03923, + 0.02822, + 0.03794, + 0.04022, + 0.0408, + 0.03431, + 0.03442, + 0.22949, + 0.15305, + 0.10685, + 0.07034, + 0.07988, + 0.08289, + 0.08051, + 0.07148, + 0.05053, + 0.05849, + 0.06055, + 0.05805, + 0.47336, + 0.64619, + 0.32944, + 0.24196, + 0.22663, + 0.19485, + 0.18751, + 0.349, + 0.31899, + 0.26582, + 0.23499, + 0.22105, + 0.2394, + 0.29407, + 0.32398, + 0.33715, + 0.25749, + 0.20564, + 0.44474, + 0.50609, + 0.3817, + 0.50169, + 0.43116, + 0.34009, + 0.31561, + 0.53614, + 0.48877, + 0.33891, + 0.37065, + 0.32743, + 0.16142, + 0.1376, + 0.2078, + 0.17386, + 0.21136, + 0.18457, + 0.25631, + 0.17092, + 0.16248, + 0.24365, + 0.22079, + 0.21514, + 0.31891, + 0.31488, + 0.3075, + 0.26288, + 0.26512, + 0.21598, + 0.28299, + 0.39461, + 0.39237, + 0.52936, + 0.373, + 0.51156, + 0.47853, + 0.53831, + 0.436, + 0.55361, + 0.2875, + 0.26611, + 0.30607, + 0.28589, + 0.30695, + 0.31425, + 0.27616, + 0.24486, + 0.2842, + 0.32177, + 0.26358, + 0.21705, + 0.29414, + 0.21973, + 0.25396, + 0.3461, + 0.4287, + 0.60157, + 0.59794, + 0.89814, + 0.80688, + 0.76398, + 0.83766, + 0.66736, + 0.69617, + 0.66681, + 0.50998, + 0.40437, + 0.35953, + 0.33491, + 0.3148, + 0.41872, + 0.45021, + 0.52763, + 0.53739, + 0.43164, + 0.43421, + 0.40547, + 0.44129, + 0.5684, + 0.57001, + 0.4505, + 0.4469, + 0.43835, + 0.45982, + 0.38581, + 0.81018, + 0.61595, + 0.51772, + 0.87293, + 0.75752, + 0.55636, + 0.42202, + 0.96231, + 0.45318, + 0.31664, + 0.48954, + 0.49662, + 0.44624, + 0.37322, + 0.66171, + 0.31752, + 0.2722, + 0.41237, + 0.45362, + 0.29135, + 0.25616, + 0.43178, + 0.37605, + 0.41681, + 0.47141, + 0.42397, + 0.38764, + 0.65258, + 0.63078, + 0.41769, + 0.44173, + 0.45292, + 0.41968, + 0.39593, + 0.39861, + 0.31704, + 0.27015, + 0.21947, + 0.23547, + 0.38441, + 0.37806, + 0.45105, + 0.4287, + 0.44276, + 0.47666, + 0.40188, + 0.58675, + 0.5167, + 0.53064, + 0.47068, + 0.37506, + 0.50785, + 0.59001, + 0.52591, + 0.51082, + 0.49974, + 0.36577, + 0.31667, + 0.51706, + 0.51215, + 0.44298, + 0.31414, + 0.34761, + 0.29312, + 0.27334, + 0.29062, + 0.40382, + 0.47486, + 0.61706, + 0.55258, + 0.40555, + 0.33554, + 0.47486, + 0.49351, + 0.4785, + 0.47457, + 0.37322, + 0.35355, + 0.51082, + 0.55332, + 0.39014, + 0.2944, + 0.41388, + 0.39304, + 0.30346, + 0.27958, + 0.4975, + 0.50165, + 0.50484, + 0.40107, + 0.39729, + 0.24761, + 0.27881, + 0.28783, + 0.357, + 0.33781, + 0.41491, + 0.45707, + 0.4283, + 0.36159, + 0.37139, + 0.47391, + 0.50598, + 0.44577, + 0.36456, + 0.28585, + 0.35678, + 0.35865, + 0.2969, + 0.36937, + 0.6659, + 0.55611, + 0.4036, + 0.77873, + 0.73951, + 0.56466, + 0.50033, + 0.69389, + 0.64971, + 0.44459, + 0.32651, + 0.34042, + 0.42268, + 0.33333, + 0.44782, + 0.46011, + 0.45369, + 0.5695, + 0.60227, + 0.49714, + 0.41868, + 0.56858, + 0.48683, + 0.35146, + 0.5368, + 0.40008, + 0.48477, + 0.45061, + 0.52903, + 0.53581, + 0.32728, + 0.47633, + 0.51974, + 0.38639, + 0.41674, + 0.38838, + 0.34959, + 0.24442, + 0.21998, + 0.22215, + 0.36926, + 0.32302, + 0.35994, + 0.33201, + 0.30339, + 0.37605, + 0.39472, + 0.58686, + 0.44265, + 0.48374, + 0.44059, + 0.38107, + 0.44474, + 0.45736, + 0.52308, + 0.45641, + 0.43703, + 0.37282, + 0.42742, + 0.42305, + 0.62542, + 0.54704, + 0.53636, + 0.51255, + 0.46125, + 0.37601, + 0.24875, + 0.30534, + 0.30754, + 0.26402, + 0.30989, + 0.41549, + 0.40863, + 0.39381, + 0.28596, + 0.49402, + 0.46004, + 0.53178, + 0.51211, + 0.65694, + 0.31667, + 0.17933, + 0.46661, + 0.41491, + 0.35172, + 0.29895, + 0.57328, + 0.57489, + 0.49295, + 0.40437, + 0.56473, + 0.49453, + 0.45809, + 0.38236, + 0.45039, + 0.4541, + 0.29334, + 0.23268, + 0.38104, + 0.41395, + 0.47538, + 0.48925, + 0.38815, + 0.40287, + 0.33942, + 0.26615, + 0.34086, + 0.30688, + 0.56759, + 0.36827, + 0.30214, + 0.33825, + 0.48275, + 0.34346, + 0.29348, + 0.45865, + 0.55915, + 0.5258, + 0.38056, + 0.31917, + 0.37961, + 0.34185, + 0.34948, + 0.31168, + 0.33264, + 0.42511, + 0.25418, + 0.2482, + 0.16138, + 0.24736, + 0.33763, + 0.31418, + 0.31381, + 0.40936, + 0.29491, + 0.24061, + 0.42459, + 0.38383, + 0.33036, + 0.4032, + 0.61016, + 0.56689, + 0.27235, + 0.76226, + 0.67096, + 0.58286, + 0.42749, + 1, + 0.59922, + 0.33697, + 0.46613, + 0.45857, + 0.38452, + 0.42731, + 0.51996, + 0.33227, + 0.21995, + 0.3202, + 0.28115, + 0.30669, + 0.3082, + 0.2744, + 0.21998, + 0.21855, + 0.29814, + 0.28024, + 0.19066, + 0.20956, + 0.28145, + 0.30438, + 0.21962, + 0.17221, + 0.32075, + 0.44654, + 0.49116, + 0.55948, + 0.45846, + 0.5491, + 0.51248, + 0.56139, + 0.50172, + 0.47835, + 0.4079, + 0.55607, + 0.3268, + 0.23444, + 0.39164, + 0.30361, + 0.44786, + 0.44463, + 0.57335, + 0.52495, + 0.50807, + 0.75741, + 0.56557, + 0.8512, + 0.651, + 0.84467, + 0.47402, + 0.36731, + 0.35014, + 0.29972, + 0.46096, + 0.42144, + 0.5582, + 0.67903, + 0.61929, + 0.46239, + 0.52682, + 0.57691, + 0.4854, + 0.51519, + 0.46099, + 0.44019, + 0.33421, + 0.32988, + 0.35076, + 0.2929, + 0.46419, + 0.4647, + 0.48264, + 0.34574, + 0.35814, + 0.44584, + 0.55823, + 0.5549, + 0.57548, + 0.43744, + 0.5513, + 0.50943, + 0.54011, + 0.6703, + 0.61317, + 0.55574, + 0.44338, + 0.63573, + 0.51567, + 0.66916, + 0.4964, + 0.69386, + 0.39322, + 0.26684, + 0.27807, + 0.24651, + 0.32533, + 0.30255, + 0.43582, + 0.41002, + 0.26747, + 0.38232, + 0.3886, + 0.28666, + 0.23998, + 0.23507, + 0.26974, + 0.48738, + 0.51405, + 0.63261, + 0.61181, + 0.45281, + 0.52187, + 0.31653, + 0.46844, + 0.61643, + 0.5731, + 0.59467, + 0.49728, + 0.35531, + 0.24505, + 0.35157, + 0.25305, + 0.29264, + 0.33418, + 0.33249, + 0.38093, + 0.35865, + 0.3901, + 0.30508, + 0.36199, + 0.34353, + 0.33616, + 0.49171, + 0.29429, + 0.28042, + 0.20193, + 0.21918, + 0.20112, + 0.20725, + 0.31429, + 0.30838, + 0.25906, + 0.28402, + 0.2795, + 0.29708, + 0.30284, + 0.32717, + 0.30368, + 0.24585, + 0.24604, + 0.22299, + 0.26948, + 0.27359, + 0.31172, + 0.4254, + 0.38423, + 0.32805, + 0.30145, + 0.45556, + 0.4662, + 0.49886, + 0.4745, + 0.46841, + 0.39381, + 0.341, + 0.45993, + 0.3399, + 0.30956, + 0.26802, + 0.35873, + 0.40092, + 0.44639, + 0.43934, + 0.37979, + 0.34574, + 0.34691, + 0.33231, + 0.21059, + 0.22571, + 0.33788, + 0.28673, + 0.44195, + 0.32251, + 0.42815, + 0.3224, + 0.34434, + 0.51681, + 0.47644, + 0.51732, + 0.39392, + 0.59772, + 0.39494, + 0.37212, + 0.47119, + 0.55152, + 0.41876, + 0.32456, + 0.5058, + 0.50261, + 0.50092, + 0.40566, + 0.40925, + 0.38452, + 0.38243, + 0.45208, + 0.62234, + 0.69096, + 0.4552, + 0.34654, + 0.24468, + 0.26875, + 0.34108, + 0.28879, + 0.38669, + 0.42628, + 0.37227, + 0.42357, + 0.3865, + 0.54231, + 0.55137, + 0.55163, + 0.42346, + 0.30779, + 0.21734, + 0.26196, + 0.34078, + 0.32849, + 0.40393, + 0.77884, + 0.80941, + 0.56297, + 0.54191, + 0.55475, + 0.46474, + 0.8897, + 0.56128, + 0.26871, + 0.2311, + 0.22398, + 0.26523, + 0.26475, + 0.38709, + 0.41982, + 0.57618, + 0.68024, + 0.66979, + 0.5619, + 0.57427, + 0.73411, + 0.58018, + 0.53838, + 0.61706, + 0.49772, + 0.39278, + 0.29635, + 0.57302, + 0.49079, + 0.37142, + 0.3053, + 0.4294, + 0.36834, + 0.31899, + 0.34577, + 0.45582, + 0.42823, + 0.23837, + 0.19162, + 0.25697, + 0.26538, + 0.39575, + 0.42349, + 0.48829, + 0.43567, + 0.397, + 0.46705, + 0.35774, + 0.39326, + 0.46187, + 0.51937, + 0.46176, + 0.41758, + 0.41879, + 0.50965, + 0.48738, + 0.43883, + 0.40232, + 0.40892, + 0.65555, + 0.40221, + 0.51442, + 0.41799, + 0.38603, + 0.38742, + 0.25811, + 0.29128, + 0.27326, + 0.3617, + 0.37898, + 0.39579, + 0.40614, + 0.42078, + 0.38082, + 0.38335, + 0.47945, + 0.37641, + 0.52785, + 0.90984, + 0.6499, + 0.55911, + 0.34988, + 0.51233, + 0.49574, + 0.38702, + 0.65001, + 0.80611, + 0.63562, + 0.43472, + 0.57471, + 0.54392, + 0.51571, + 0.39531, + 0.75216, + 0.69984, + 0.32493, + 0.30537, + 0.34342, + 0.35205, + 0.29785, + 0.31576, + 0.26963, + 0.37663, + 0.33554, + 0.40048, + 0.40463, + 0.314, + 0.57335, + 0.47479, + 0.32721, + 0.33421, + 0.28728, + 0.28978, + 0.32346, + 0.4767, + 0.3916, + 0.32665, + 0.24791, + 0.50741, + 0.38768, + 0.26659, + 0.3297, + 0.43611, + 0.2478, + 0.16102, + 0.21793, + 0.27734, + 0.31506, + 0.40001, + 0.35528, + 0.37219, + 0.29359, + 0.38661, + 0.47057, + 0.44022, + 0.38793, + 0.44771, + 0.31979, + 0.27906, + 0.51141, + 0.40247, + 0.44283, + 0.44422, + 0.61827, + 0.4323, + 0.35036, + 0.32783, + 0.68802, + 0.66333, + 0.56715, + 0.41116, + 0.47252, + 0.53174, + 0.39428, + 0.38632, + 0.31877, + 0.34992, + 0.47428, + 0.30805, + 0.38115, + 0.34449, + 0.37601, + 0.57284, + 0.37146, + 0.44566, + 0.42933, + 0.65614, + 0.44089, + 0.36529, + 0.37414, + 0.43777, + 0.34342, + 0.39351, + 0.55765, + 0.52224, + 0.54135, + 0.43281, + 0.53493, + 0.46404, + 0.36496, + 0.48044, + 0.57262, + 0.42661, + 0.30633, + 0.35909, + 0.38005, + 0.32482, + 0.34636, + 0.40694, + 0.48973, + 0.49971, + 0.41832, + 0.31649, + 0.52712, + 0.36643, + 0.42621, + 0.29763, + 0.27532, + 0.28974, + 0.29469, + 0.26776, + 0.31579, + 0.3344, + 0.3286, + 0.30053, + 0.24031, + 0.19246, + 0.23195, + 0.35682, + 0.26915, + 0.22031, + 0.40243, + 0.50363, + 0.37597, + 0.34823, + 0.32412, + 0.30409, + 0.48573, + 0.5076, + 0.65228, + 0.44654, + 0.369, + 0.56979, + 0.54517, + 0.4563, + 0.37476, + 0.74985, + 0.48712, + 0.35091, + 0.26783, + 0.32163, + 0.38496, + 0.63838, + 0.67059, + 0.75884, + 0.41487, + 0.43072, + 0.55673, + 0.41689, + 0.30016, + 0.36188, + 0.25822, + 0.29701, + 0.22674, + 0.59819, + 0.43134, + 0.47912, + 0.48984, + 0.63654, + 0.37014, + 0.35726, + 0.5368, + 0.50253, + 0.38272, + 0.43402, + 0.46976, + 0.44393, + 0.33212, + 0.26325, + 0.191, + 0.19279, + 0.1681, + 0.26978, + 0.28923, + 0.35715, + 0.2886, + 0.29957, + 0.3624, + 0.41201, + 0.34904, + 0.34328, + 0.25466, + 0.34232, + 0.31601, + 0.21936, + 0.25055, + 0.45776, + 0.37355, + 0.21011, + 0.22732, + 0.24343, + 0.246, + 0.28383, + 0.23679, + 0.20164, + 0.19665, + 0.16725, + 0.1696, + 0.19283, + 0.16887, + 0.15852, + 0.14586, + 0.14028, + 0.12729, + 0.13423, + 0.1121, + 0.12983, + 0.13093, + 0.10975, + 0.12439, + 0.1303, + 0.11581, + 0.10869, + 0.09849, + 0.09581, + 0.08843, + 0.09467, + 0.08315, + 0.06627, + 0.07089, + 0.05677, + 0.06238, + 0.06429, + 0.05302, + 0.04429, + 0.03941, + 0.03559, + 0.02803, + 0.02803, + 0.02477, + 0.01277, + 0.00404, + 0.00154, + 0.00004, + 0.00004, + 0.00004, + 0.00004, + 0.00004, + 0.00004, + 0.00004, + 0.00004, + 0.00004, + 0, + 0.00004, + 0.00004, + 0.00004, + 0, + 0.00004, + 0, + 0.00004, + 0, + ], + unstable__sensitivity: [], + }, + { + id: '90e21c98-d37a-4416-b199-9742795b475d', + title: 'Die Art und Weise', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1092253', + url: 'https://prod-1.storage.jamendo.com/?trackid=1092253&format=mp32', + creator: 'Peter Pumberger', + creator_url: 'https://www.jamendo.com/artist/440506/Peter_Pumberger', + license: 'by-sa', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-sa/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'pop', + 'punk', + 'rock', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'drums', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'electricguitar', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'girl', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'holiday', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'male', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'vocal', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Die Art und Weise" by Peter Pumberger is licensed under CC BY-SA 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'Meine Matrix', + foreign_landing_url: 'https://www.jamendo.com/album/130185/meine-matrix', + creator: 'Peter Pumberger', + creator_url: 'https://www.jamendo.com/artist/440506/Peter_Pumberger', + url: null, + filesize: null, + filetype: null, + }, + duration: 261000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/90e21c98-d37a-4416-b199-9742795b475d/thumb/', + detail_url: 'http://localhost:49153/v1/audio/90e21c98-d37a-4416-b199-9742795b475d/', + related_url: 'http://localhost:49153/v1/audio/90e21c98-d37a-4416-b199-9742795b475d/related/', + waveform: 'http://localhost:49153/v1/audio/90e21c98-d37a-4416-b199-9742795b475d/waveform/', + peaks: [ + 0.00088, + 0.94146, + 0.90321, + 0.90917, + 0.79666, + 0.91037, + 0.91178, + 0.69732, + 0.91333, + 0.92253, + 0.71777, + 0.931, + 0.91468, + 0.74042, + 0.90101, + 0.89505, + 0.84984, + 0.92546, + 0.88053, + 0.85652, + 0.85343, + 0.90132, + 0.92297, + 0.9126, + 0.88374, + 0.84234, + 0.8959, + 0.90583, + 0.86733, + 0.88907, + 0.91408, + 0.87779, + 0.90113, + 0.8959, + 0.84067, + 0.85284, + 0.90677, + 0.85939, + 0.80967, + 0.91487, + 0.89981, + 0.66358, + 0.92016, + 0.90485, + 0.71556, + 0.88409, + 0.84603, + 0.9064, + 0.90236, + 0.89543, + 0.65347, + 0.90495, + 0.87829, + 0.89965, + 0.90797, + 0.92987, + 0.90904, + 0.90041, + 0.8937, + 0.89928, + 0.91443, + 0.91786, + 0.92845, + 0.91588, + 0.80117, + 0.93878, + 0.89521, + 0.90784, + 0.85665, + 0.89515, + 0.78072, + 0.83283, + 0.92602, + 0.92423, + 0.91292, + 0.93258, + 0.83601, + 0.91944, + 0.83658, + 0.89534, + 0.91169, + 0.90095, + 0.91975, + 0.92999, + 0.82171, + 0.88318, + 0.91235, + 0.92262, + 0.9034, + 0.91708, + 0.92687, + 0.9236, + 0.91443, + 0.92379, + 0.89657, + 0.92628, + 0.89757, + 0.91607, + 0.91632, + 0.89726, + 0.92713, + 0.77798, + 0.90863, + 0.91544, + 0.91651, + 0.89348, + 0.89783, + 0.90447, + 0.98844, + 0.90602, + 0.90217, + 0.8472, + 0.91919, + 0.80441, + 0.83752, + 0.81802, + 0.88715, + 0.87839, + 0.90145, + 0.89291, + 0.89036, + 0.81037, + 0.93308, + 0.91367, + 0.91591, + 0.92473, + 0.89975, + 0.86512, + 0.92237, + 0.90803, + 0.89657, + 0.85532, + 0.88396, + 0.82004, + 0.87628, + 0.90321, + 0.89071, + 0.91692, + 0.86358, + 0.86626, + 0.87618, + 0.90977, + 0.91317, + 0.89332, + 0.89559, + 0.89657, + 0.92955, + 0.90211, + 0.9443, + 0.93982, + 0.69345, + 0.889, + 0.8603, + 0.90712, + 0.87936, + 0.911, + 0.70618, + 0.9143, + 0.90403, + 0.90299, + 0.9023, + 0.95249, + 0.90876, + 0.91222, + 0.45759, + 0.89965, + 0.74606, + 0.90652, + 0.91078, + 0.90044, + 0.88003, + 0.94017, + 0.79222, + 0.91906, + 0.92842, + 0.9344, + 0.84455, + 0.8632, + 0.89238, + 0.91783, + 0.91043, + 0.86673, + 0.90107, + 0.93941, + 0.85706, + 0.92218, + 0.91594, + 0.79745, + 0.88393, + 0.85293, + 0.92895, + 0.91213, + 0.90933, + 0.89701, + 0.91084, + 0.94266, + 0.91733, + 0.92902, + 0.92158, + 0.88406, + 0.93021, + 0.74915, + 0.90621, + 0.84761, + 0.95233, + 0.89436, + 0.89108, + 0.90945, + 0.91229, + 0.76708, + 0.92278, + 0.92558, + 0.91616, + 0.65693, + 0.93551, + 0.90907, + 0.92555, + 0.91377, + 0.91159, + 0.79883, + 0.91541, + 0.82142, + 0.92873, + 0.91292, + 0.69849, + 0.89527, + 0.89912, + 0.90381, + 1, + 0.96002, + 0.86875, + 0.9081, + 0.9104, + 0.91616, + 0.90523, + 0.911, + 0.9081, + 0.88859, + 0.92196, + 0.89956, + 0.90904, + 0.90599, + 0.9172, + 0.92193, + 0.92073, + 0.94282, + 0.90747, + 0.91512, + 0.94512, + 0.91437, + 0.88195, + 0.89134, + 0.9058, + 0.90126, + 0.89288, + 0.89332, + 0.90013, + 0.90791, + 0.90923, + 0.89537, + 0.89159, + 0.5937, + 0.66244, + 0.90009, + 0.71853, + 0.92426, + 0.92876, + 0.85488, + 0.8764, + 0.89679, + 0.91868, + 0.89115, + 0.93434, + 0.88645, + 0.82502, + 0.91046, + 0.76002, + 0.87867, + 0.95835, + 0.90923, + 0.90674, + 0.9287, + 0.91128, + 0.89965, + 0.91531, + 0.90183, + 0.70775, + 0.86103, + 0.90318, + 0.88677, + 0.95246, + 0.96916, + 0.85501, + 0.88954, + 0.93882, + 0.9224, + 0.86128, + 0.91515, + 0.7362, + 0.74896, + 0.94515, + 0.90866, + 0.91843, + 0.91248, + 0.92763, + 0.92253, + 0.92038, + 0.90473, + 0.87552, + 0.90744, + 0.91701, + 0.86267, + 0.90302, + 0.66185, + 0.92511, + 0.91799, + 0.88003, + 0.93412, + 0.93444, + 0.88453, + 0.90725, + 0.90388, + 0.92243, + 0.90325, + 0.81742, + 0.90227, + 0.9098, + 0.91421, + 0.92029, + 0.88989, + 0.83885, + 0.93267, + 0.91021, + 0.90432, + 0.92996, + 0.88554, + 0.88456, + 0.94118, + 0.91682, + 0.89978, + 0.90517, + 0.91424, + 0.9121, + 0.93598, + 0.90296, + 0.91588, + 0.90655, + 0.85797, + 0.91468, + 0.90699, + 0.93233, + 0.90778, + 0.90816, + 0.85879, + 0.83201, + 0.92719, + 0.91742, + 0.92741, + 0.91371, + 0.92514, + 0.78907, + 0.89272, + 0.90665, + 0.84669, + 0.89568, + 0.92331, + 0.89795, + 0.6345, + 0.9018, + 0.89089, + 0.67407, + 0.88538, + 0.8632, + 0.7178, + 0.89915, + 0.86793, + 0.68336, + 0.90044, + 0.92467, + 0.91424, + 0.88894, + 0.90394, + 0.89342, + 0.88535, + 0.87593, + 0.90888, + 0.90835, + 0.93494, + 0.89414, + 0.89231, + 0.9012, + 0.82637, + 0.88025, + 0.88787, + 0.83998, + 0.87606, + 0.87621, + 0.88182, + 0.89789, + 0.90608, + 0.84291, + 0.91478, + 0.93377, + 0.89745, + 0.94405, + 0.91679, + 0.8989, + 0.74918, + 0.88948, + 0.86749, + 0.74745, + 0.93781, + 0.91084, + 0.88652, + 0.90214, + 0.87665, + 0.47798, + 0.91843, + 0.89657, + 0.93497, + 0.92987, + 0.88683, + 0.8344, + 0.92618, + 0.8988, + 0.91434, + 0.91087, + 0.7891, + 0.94625, + 0.97546, + 0.91638, + 0.95476, + 0.9442, + 0.65772, + 0.85129, + 0.94291, + 0.92615, + 0.92461, + 0.915, + 0.81522, + 0.86537, + 0.90892, + 0.9092, + 0.93513, + 0.93059, + 0.91396, + 0.9218, + 0.74313, + 0.95104, + 0.90794, + 0.92464, + 0.89572, + 0.93516, + 0.90536, + 0.93516, + 0.92725, + 0.79811, + 0.87552, + 0.85239, + 0.72234, + 0.89713, + 0.91172, + 0.90202, + 0.90504, + 0.61443, + 0.85388, + 0.89039, + 0.92795, + 0.91651, + 0.91585, + 0.82757, + 0.83677, + 0.92624, + 0.90772, + 0.95904, + 0.94625, + 0.85057, + 0.88365, + 0.9229, + 0.93113, + 0.91645, + 0.91314, + 0.92357, + 0.904, + 0.73973, + 0.9132, + 0.99011, + 0.88819, + 0.89824, + 0.87659, + 0.80202, + 0.87539, + 0.91434, + 0.91528, + 0.91289, + 0.86997, + 0.72035, + 0.92316, + 0.91213, + 0.91323, + 0.90167, + 0.89266, + 0.92426, + 0.92902, + 0.90961, + 0.87152, + 0.92417, + 0.76251, + 0.88554, + 0.87839, + 0.89877, + 0.87561, + 0.91884, + 0.67177, + 0.92577, + 0.91229, + 0.81752, + 0.88727, + 0.92895, + 0.90731, + 0.90983, + 0.60082, + 0.9017, + 0.665, + 0.91389, + 0.90854, + 0.90375, + 0.79112, + 0.89953, + 0.81758, + 0.88544, + 0.92473, + 0.90428, + 0.77139, + 0.83859, + 0.89915, + 0.9408, + 0.90526, + 0.91254, + 0.82413, + 0.89742, + 0.88648, + 0.89127, + 0.90917, + 0.76002, + 0.89543, + 0.79965, + 0.8983, + 0.91348, + 0.92943, + 0.91405, + 0.90337, + 0.93998, + 0.91434, + 0.90154, + 0.9212, + 0.75992, + 0.93062, + 0.89883, + 0.91994, + 0.88069, + 0.95161, + 0.91175, + 0.91616, + 0.80769, + 0.90907, + 0.7683, + 0.90139, + 0.93289, + 0.90457, + 0.67114, + 0.92259, + 0.90176, + 0.90725, + 0.92048, + 0.93648, + 0.90132, + 0.91418, + 0.80265, + 0.90999, + 0.92268, + 0.74776, + 0.88866, + 0.91427, + 0.90161, + 0.95914, + 0.92413, + 0.85265, + 0.95221, + 0.91544, + 0.90555, + 0.91241, + 0.90397, + 0.9173, + 0.91229, + 0.91405, + 0.91736, + 0.89093, + 0.87899, + 0.92936, + 0.8867, + 0.90567, + 0.92498, + 0.92064, + 0.92202, + 0.91745, + 0.91821, + 0.90284, + 0.90523, + 0.83406, + 0.91894, + 0.9178, + 0.86544, + 0.91588, + 0.80047, + 0.88538, + 0.90054, + 0.89556, + 0.5798, + 0.64915, + 0.87669, + 0.83945, + 0.86963, + 0.89713, + 0.83198, + 0.87807, + 0.91103, + 0.81493, + 0.86774, + 0.9212, + 0.91348, + 0.80274, + 0.90816, + 0.7454, + 0.9069, + 0.92394, + 0.91418, + 0.8834, + 0.90848, + 0.91815, + 0.91708, + 0.92224, + 0.91068, + 0.75205, + 0.77902, + 0.89931, + 0.91377, + 0.92476, + 0.95369, + 0.89373, + 0.83859, + 0.93236, + 0.90359, + 0.85479, + 0.89071, + 0.75419, + 0.76846, + 0.91257, + 0.92404, + 0.93229, + 0.91166, + 0.91689, + 0.9183, + 0.92023, + 0.92209, + 0.91078, + 0.91033, + 0.88768, + 0.88979, + 0.9103, + 0.66333, + 0.94052, + 0.91931, + 0.88645, + 0.92237, + 0.90838, + 0.89795, + 0.83021, + 0.92253, + 0.88166, + 0.86619, + 0.93264, + 0.91285, + 0.9316, + 0.93015, + 0.92965, + 0.89468, + 0.91361, + 0.96033, + 0.90381, + 0.89609, + 0.91975, + 0.93321, + 0.8719, + 0.92851, + 0.85898, + 0.93021, + 0.90589, + 0.93075, + 0.94074, + 0.92489, + 0.91232, + 0.91493, + 0.90756, + 0.88428, + 0.84918, + 0.88217, + 0.89159, + 0.89247, + 0.91185, + 0.88488, + 0.79562, + 0.9058, + 0.92606, + 0.89871, + 0.91216, + 0.91679, + 0.88655, + 0.83094, + 0.89653, + 0.91093, + 0.90926, + 0.91824, + 0.87965, + 0.87949, + 0.89354, + 0.90958, + 0.88982, + 0.81197, + 0.92328, + 0.85019, + 0.83069, + 0.91755, + 0.85501, + 0.93475, + 0.92486, + 0.90699, + 0.89304, + 0.9155, + 0.89392, + 0.90974, + 0.92246, + 0.91648, + 0.89313, + 0.89423, + 0.83359, + 0.91805, + 0.90233, + 0.88003, + 0.86011, + 0.91865, + 0.93806, + 0.89319, + 0.90258, + 0.87905, + 0.88878, + 0.91818, + 0.92284, + 0.83277, + 0.91966, + 0.88992, + 0.75658, + 0.91134, + 0.89745, + 0.94212, + 0.83529, + 0.91575, + 0.86818, + 0.90072, + 0.90451, + 0.86336, + 0.91005, + 0.91226, + 0.86411, + 0.91055, + 0.92451, + 0.87694, + 0.78689, + 0.89212, + 0.89225, + 0.89335, + 0.86875, + 0.92662, + 0.90892, + 0.86323, + 0.87079, + 0.87993, + 0.97883, + 0.89694, + 0.9213, + 0.91963, + 0.90608, + 0.88396, + 0.81667, + 0.88623, + 0.93094, + 0.92407, + 0.90466, + 0.90013, + 0.91676, + 0.88916, + 0.8943, + 0.9074, + 0.90829, + 0.85841, + 0.82804, + 0.80236, + 0.83529, + 0.91084, + 0.89061, + 0.90888, + 0.89732, + 0.89338, + 0.90898, + 0.90469, + 0.91607, + 0.92914, + 0.89471, + 0.927, + 0.92706, + 0.89304, + 0.85989, + 0.90892, + 0.93255, + 0.86925, + 0.9081, + 0.88538, + 0.90158, + 0.90129, + 0.935, + 0.8942, + 0.91383, + 0.89464, + 0.90233, + 0.91853, + 0.89669, + 0.89319, + 0.93897, + 0.9166, + 0.93819, + 0.92561, + 0.90268, + 0.92637, + 0.93327, + 0.83866, + 0.91966, + 0.89256, + 0.93409, + 0.87845, + 0.89256, + 0.91232, + 0.80252, + 0.92439, + 0.89937, + 0.8374, + 0.92823, + 0.88554, + 0.81393, + 0.89332, + 0.90287, + 0.90592, + 0.74442, + 0.91708, + 0.8505, + 0.89534, + 0.90573, + 0.91506, + 0.88636, + 0.90706, + 0.90731, + 0.89716, + 0.95098, + 0.91144, + 0.90296, + 0.90907, + 0.90176, + 0.88891, + 0.92832, + 0.92773, + 0.93422, + 0.91295, + 0.91307, + 0.9166, + 0.89231, + 0.93113, + 0.91074, + 0.90167, + 0.87914, + 0.90863, + 0.88119, + 0.93075, + 0.92867, + 0.91994, + 0.88822, + 0.86752, + 0.91191, + 0.88598, + 0.88503, + 0.91181, + 0.91371, + 0.93355, + 0.91708, + 0.91169, + 0.87489, + 0.91235, + 0.90173, + 0.90599, + 0.91604, + 0.92136, + 0.9166, + 0.8506, + 0.92136, + 0.91796, + 0.88803, + 0.89219, + 0.87473, + 0.83286, + 0.8632, + 0.86478, + 0.89981, + 0.85189, + 0.88239, + 0.912, + 0.82782, + 0.63113, + 0.91128, + 0.59348, + 0.84042, + 0.69414, + 0.92763, + 0.87949, + 0.88935, + 0.95466, + 0.9029, + 0.92054, + 0.84745, + 0.91515, + 0.90287, + 0.74445, + 0.87788, + 0.76238, + 0.8925, + 0.91903, + 0.87057, + 0.92331, + 0.89266, + 0.90696, + 0.88765, + 0.92155, + 0.91468, + 0.79531, + 0.58176, + 0.88796, + 0.90577, + 0.91569, + 0.88006, + 0.94323, + 0.85605, + 0.8913, + 0.92401, + 0.90473, + 0.64146, + 0.91383, + 0.67763, + 0.85794, + 0.8528, + 0.88954, + 0.88396, + 0.88406, + 0.76578, + 0.89033, + 0.90378, + 0.90797, + 0.89842, + 0.92149, + 0.83507, + 0.90926, + 0.76963, + 0.91232, + 0.85406, + 0.83938, + 0.90491, + 0.90923, + 0.92684, + 0.90438, + 0.842, + 0.89861, + 0.96824, + 0.87092, + 0.87977, + 0.85955, + 0.90841, + 0.88765, + 0.9098, + 0.86207, + 0.90523, + 0.88752, + 0.91393, + 0.8656, + 0.91235, + 0.89115, + 0.91815, + 0.87779, + 0.88346, + 0.79405, + 0.90189, + 0.8569, + 0.91194, + 0.90343, + 0.92114, + 0.70148, + 0.8988, + 0.87212, + 0.89764, + 0.76938, + 0.90825, + 0.86273, + 0.88762, + 0.88119, + 0.92111, + 0.9046, + 0.88979, + 0.91273, + 0.88737, + 0.86645, + 0.92678, + 0.92004, + 0.911, + 0.88258, + 0.89036, + 0.87253, + 0.92536, + 0.91352, + 0.89638, + 0.86997, + 0.68945, + 0.57908, + 0.52514, + 0.96752, + 0.90299, + 0.20353, + 0.03806, + 0.01446, + 0.00428, + 0.00123, + 0.00032, + 0, + ], + unstable__sensitivity: [], + }, + { + id: '95be9db5-a072-4b3f-ab2f-ac1a3aca1944', + title: '(Composed by: Silvia O / Minimal Art) Es tarde', + indexed_on: '2022-02-24T01:34:42.275707Z', + foreign_landing_url: 'https://www.jamendo.com/track/73136', + url: 'https://prod-1.storage.jamendo.com/?trackid=73136&format=mp32', + creator: 'Silvia O', + creator_url: 'https://www.jamendo.com/artist/7375/silvia.o', + license: 'by-nc', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'gothic', + 'pop', + 'rock', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'female', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'vocal', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"(Composed by: Silvia O / Minimal Art) Es tarde" by Silvia O is licensed under CC BY-NC 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'Es Tarde', + foreign_landing_url: 'https://www.jamendo.com/album/6461/es-tarde', + creator: 'Silvia O', + creator_url: 'https://www.jamendo.com/artist/7375/silvia.o', + url: null, + filesize: null, + filetype: null, + }, + duration: 214000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/95be9db5-a072-4b3f-ab2f-ac1a3aca1944/thumb/', + detail_url: 'http://localhost:49153/v1/audio/95be9db5-a072-4b3f-ab2f-ac1a3aca1944/', + related_url: 'http://localhost:49153/v1/audio/95be9db5-a072-4b3f-ab2f-ac1a3aca1944/related/', + waveform: 'http://localhost:49153/v1/audio/95be9db5-a072-4b3f-ab2f-ac1a3aca1944/waveform/', + peaks: [ + 0.2754, + 0.1118, + 0.1513, + 0.27714, + 0.17341, + 0.19763, + 0.14932, + 0.13716, + 0.1245, + 0.13179, + 0.15406, + 0.14841, + 0.14203, + 0.14284, + 0.12631, + 0.1206, + 0.09823, + 0.09023, + 0.0992, + 0.099, + 0.09084, + 0.08731, + 0.08714, + 0.0688, + 0.06786, + 0.08314, + 0.08412, + 0.28091, + 0.1335, + 0.15322, + 0.33946, + 0.22141, + 0.18614, + 0.16739, + 0.10148, + 0.1034, + 0.76666, + 0.49657, + 0.28339, + 0.71506, + 0.29915, + 0.14737, + 0.42811, + 0.30731, + 0.3358, + 0.78678, + 0.50406, + 0.3099, + 0.78248, + 0.29841, + 0.2029, + 0.43936, + 0.29431, + 0.35179, + 0.73885, + 0.49661, + 0.25826, + 0.75346, + 0.41928, + 0.14207, + 0.4865, + 0.33852, + 0.32303, + 0.78769, + 0.49728, + 0.29421, + 0.79199, + 0.25386, + 0.11318, + 0.46799, + 0.33764, + 0.36264, + 0.75887, + 0.49909, + 0.31114, + 0.74567, + 0.27647, + 0.18634, + 0.43735, + 0.46654, + 0.36664, + 0.85169, + 0.53087, + 0.34826, + 0.81121, + 0.48209, + 0.293, + 0.21453, + 0.44712, + 0.32777, + 0.74671, + 0.52832, + 0.28934, + 0.79253, + 0.30815, + 0.11438, + 0.07175, + 0.41333, + 0.30852, + 0.75215, + 0.50971, + 0.50826, + 0.79525, + 0.36858, + 0.16571, + 0.08298, + 0.41595, + 0.30291, + 0.8792, + 0.44548, + 0.45522, + 0.76636, + 0.56984, + 0.203, + 0.13995, + 0.38162, + 0.36721, + 0.73092, + 0.21275, + 0.47135, + 0.772, + 0.3713, + 0.25356, + 0.15601, + 0.45371, + 0.33072, + 0.7627, + 0.22679, + 0.45838, + 0.80398, + 0.35374, + 0.17371, + 0.1032, + 0.48391, + 0.30143, + 0.86979, + 0.12876, + 0.10011, + 0.32605, + 0.29814, + 0.24288, + 0.37668, + 0.33234, + 0.35303, + 0.9876, + 0.69057, + 0.83321, + 1, + 0.73757, + 0.61748, + 0.6722, + 0.77476, + 0.42408, + 0.966, + 0.82784, + 0.73206, + 0.96332, + 0.57474, + 0.55714, + 0.53709, + 0.72051, + 0.37214, + 0.88857, + 0.68782, + 0.75195, + 0.98304, + 0.83432, + 0.6463, + 0.54663, + 0.67411, + 0.59675, + 0.90392, + 0.77103, + 0.6859, + 0.95092, + 0.78416, + 0.6898, + 0.5561, + 0.87151, + 0.58405, + 0.90866, + 0.74701, + 0.72054, + 0.94262, + 0.85269, + 0.68691, + 0.5819, + 0.64804, + 0.69004, + 0.9308, + 0.7846, + 0.81581, + 0.70236, + 0.80089, + 0.67751, + 0.47296, + 0.63216, + 0.53447, + 0.97632, + 0.59134, + 0.52264, + 0.96207, + 0.79931, + 0.69961, + 0.36892, + 0.56248, + 0.48693, + 0.94071, + 0.4442, + 0.6983, + 0.88995, + 0.7975, + 0.44595, + 0.36952, + 0.55828, + 0.36398, + 0.98552, + 0.76324, + 0.77936, + 0.93275, + 0.79518, + 0.76811, + 0.61405, + 0.54384, + 0.78608, + 0.86072, + 0.74311, + 0.78715, + 0.94282, + 0.74933, + 0.60918, + 0.52049, + 0.72531, + 0.61136, + 0.87954, + 0.73895, + 0.80177, + 0.7331, + 0.92052, + 0.75296, + 0.76492, + 0.67794, + 0.78568, + 0.85767, + 0.70398, + 0.73535, + 0.36798, + 0.96066, + 0.57736, + 0.56282, + 0.79632, + 0.83277, + 0.9444, + 0.69444, + 0.80378, + 0.61613, + 0.98129, + 0.6814, + 0.73404, + 0.5942, + 0.73458, + 0.95357, + 0.80701, + 0.78954, + 0.42237, + 0.95085, + 0.72192, + 0.61344, + 0.76119, + 0.61482, + 0.92092, + 0.67828, + 0.73676, + 0.38142, + 0.94934, + 0.65732, + 0.56571, + 0.73263, + 0.58533, + 0.88669, + 0.94202, + 0.70327, + 0.45552, + 0.92556, + 0.59967, + 0.72978, + 0.81631, + 0.59325, + 0.94437, + 0.69716, + 0.72205, + 0.66477, + 0.93349, + 0.71295, + 0.55959, + 0.90574, + 0.55768, + 0.9352, + 0.71019, + 0.72333, + 0.69961, + 0.84991, + 0.71782, + 0.57874, + 0.85914, + 0.49469, + 0.93137, + 0.82777, + 0.72753, + 0.67297, + 0.92835, + 0.73324, + 0.65752, + 0.8232, + 0.68748, + 0.95935, + 0.71812, + 0.70918, + 0.63437, + 0.94759, + 0.76999, + 0.79206, + 0.71983, + 0.42603, + 0.9397, + 0.89324, + 0.70546, + 0.64892, + 0.91027, + 0.78779, + 0.59964, + 0.72507, + 0.51838, + 0.94397, + 0.76508, + 0.69938, + 0.66585, + 0.94256, + 0.80892, + 0.73522, + 0.80331, + 0.63481, + 0.81695, + 0.97806, + 0.62648, + 0.52624, + 0.92311, + 0.72558, + 0.56823, + 0.80217, + 0.82377, + 0.91461, + 0.91676, + 0.8193, + 0.69397, + 0.99164, + 0.71678, + 0.56195, + 0.94104, + 0.67872, + 0.89509, + 0.78944, + 0.84789, + 0.70404, + 0.96553, + 0.83942, + 0.54354, + 0.72793, + 0.54367, + 0.92257, + 0.91111, + 0.76397, + 0.60706, + 0.96862, + 0.73176, + 0.41323, + 0.62147, + 0.40238, + 0.96207, + 0.86489, + 0.7712, + 0.58298, + 0.89774, + 0.77436, + 0.70307, + 0.90164, + 0.58422, + 0.94961, + 0.92777, + 0.76058, + 0.58398, + 0.98176, + 0.70193, + 0.62476, + 0.92942, + 0.76599, + 0.8108, + 0.87873, + 0.79811, + 0.70132, + 0.84628, + 0.78027, + 0.66064, + 0.89489, + 0.75037, + 0.64952, + 0.84211, + 0.81151, + 0.59319, + 0.84325, + 0.51975, + 0.74355, + 0.85568, + 0.48915, + 0.65567, + 0.83895, + 0.74647, + 0.49809, + 0.89939, + 0.54357, + 0.43775, + 0.49869, + 0.3579, + 0.49976, + 0.48818, + 0.41007, + 0.29384, + 0.24933, + 0.30197, + 0.27499, + 0.41182, + 0.64653, + 0.43167, + 0.97984, + 0.75531, + 0.69669, + 0.98183, + 0.74839, + 0.746, + 0.67408, + 0.70058, + 0.66504, + 0.96385, + 0.78591, + 0.69652, + 0.97534, + 0.72867, + 0.50406, + 0.78403, + 0.63074, + 0.6079, + 0.98166, + 0.63118, + 0.64156, + 0.9744, + 0.65359, + 0.64784, + 0.55919, + 0.65214, + 0.53269, + 0.96123, + 0.68369, + 0.61227, + 0.95284, + 0.70011, + 0.65349, + 0.81077, + 0.72, + 0.68416, + 0.93926, + 0.77728, + 0.65191, + 0.98297, + 0.69313, + 0.60276, + 0.66094, + 0.6633, + 0.62544, + 0.90735, + 0.82827, + 0.69588, + 0.77429, + 0.73092, + 0.65107, + 0.63182, + 0.75373, + 0.55865, + 0.97682, + 0.69662, + 0.79643, + 0.97047, + 0.66037, + 0.70404, + 0.60575, + 0.64966, + 0.67576, + 0.98774, + 0.81047, + 0.70646, + 0.91632, + 0.65527, + 0.50685, + 0.43873, + 0.67049, + 0.51327, + 0.97074, + 0.7883, + 0.86173, + 0.97507, + 0.74869, + 0.70163, + 0.67132, + 0.72679, + 0.65641, + 0.97796, + 0.78893, + 0.77738, + 0.95888, + 0.71866, + 0.54616, + 0.62325, + 0.82491, + 0.61385, + 0.98435, + 0.65275, + 0.6722, + 0.97393, + 0.74338, + 0.61099, + 0.57904, + 0.87695, + 0.68816, + 0.87856, + 0.76502, + 0.74721, + 0.95018, + 0.71164, + 0.67297, + 0.68328, + 0.81826, + 0.6814, + 0.97682, + 0.74641, + 0.82982, + 0.94726, + 0.68601, + 0.68517, + 0.72437, + 0.66817, + 0.81289, + 0.89825, + 0.73542, + 0.76015, + 0.61321, + 0.74906, + 0.73176, + 0.64737, + 0.74741, + 0.61365, + 0.93547, + 0.72279, + 0.75897, + 0.96543, + 0.77543, + 0.73844, + 0.6676, + 0.62292, + 0.76713, + 0.95996, + 0.73858, + 0.71419, + 0.8489, + 0.78729, + 0.48824, + 0.48539, + 0.59302, + 0.51683, + 0.97407, + 0.86092, + 0.79572, + 0.94548, + 0.7114, + 0.77227, + 0.59342, + 0.75578, + 0.74127, + 0.91753, + 0.68916, + 0.70341, + 0.89714, + 0.74876, + 0.72333, + 0.62775, + 0.68997, + 0.69417, + 0.78329, + 0.76327, + 0.73912, + 0.97632, + 0.89438, + 0.70606, + 0.67972, + 0.79837, + 0.71311, + 0.82495, + 0.70703, + 0.78228, + 0.93352, + 0.86815, + 0.69195, + 0.66377, + 0.74721, + 0.81651, + 0.97696, + 0.64166, + 0.72998, + 0.96066, + 0.87403, + 0.80926, + 0.69568, + 0.88236, + 0.69484, + 0.79797, + 0.73555, + 0.77429, + 0.89358, + 0.66867, + 0.71977, + 0.64348, + 0.82179, + 0.71338, + 0.93799, + 0.75087, + 0.6854, + 0.98589, + 0.98186, + 0.71829, + 0.58093, + 0.74476, + 0.70448, + 0.96432, + 0.70939, + 0.72823, + 0.65211, + 0.97907, + 0.66588, + 0.66551, + 0.81843, + 0.6469, + 0.97024, + 0.7371, + 0.74395, + 0.67526, + 0.97722, + 0.75937, + 0.62675, + 0.74096, + 0.5942, + 0.97014, + 0.83519, + 0.76391, + 0.72558, + 0.95236, + 0.75286, + 0.62164, + 0.88273, + 0.51965, + 0.97568, + 0.69954, + 0.7028, + 0.71708, + 0.94041, + 0.80802, + 0.68171, + 0.77708, + 0.7113, + 0.94854, + 0.80311, + 0.69467, + 0.72319, + 0.99412, + 0.70989, + 0.74718, + 0.77681, + 0.46987, + 0.95754, + 0.81944, + 0.74059, + 0.66377, + 0.96238, + 0.85662, + 0.60837, + 0.74177, + 0.58607, + 0.77701, + 0.92536, + 0.69084, + 0.68795, + 0.95767, + 0.83274, + 0.74321, + 0.7547, + 0.69894, + 0.93023, + 0.78618, + 0.74244, + 0.664, + 0.95546, + 0.83274, + 0.60001, + 0.81416, + 0.86176, + 0.96533, + 0.79895, + 0.77378, + 0.85427, + 0.98797, + 0.72625, + 0.70159, + 0.92018, + 0.66444, + 0.73965, + 0.72346, + 0.81621, + 0.74701, + 0.91367, + 0.73199, + 0.68184, + 0.56205, + 0.52419, + 0.97232, + 0.86213, + 0.69007, + 0.60632, + 0.98576, + 0.70824, + 0.487, + 0.64358, + 0.40271, + 0.87298, + 0.82817, + 0.72847, + 0.60562, + 0.89895, + 0.82357, + 0.65342, + 0.94215, + 0.58314, + 0.97407, + 0.92687, + 0.79397, + 0.6764, + 0.97591, + 0.75702, + 0.62282, + 0.90527, + 0.78074, + 0.8745, + 0.87829, + 0.72998, + 0.74194, + 0.88605, + 0.74735, + 0.78302, + 0.86365, + 0.79119, + 0.78386, + 0.70532, + 0.86052, + 0.74819, + 0.71963, + 0.64207, + 0.79071, + 0.86005, + 0.58284, + 0.76633, + 0.67784, + 0.45542, + 0.55073, + 0.57202, + 0.39684, + 0.42092, + 0.24352, + 0.19894, + 0.133, + 0.05284, + 0.02946, + 0.02063, + 0.01344, + 0.30163, + 0.38014, + 0.17028, + 0.19585, + 0.18359, + 0.30449, + 0.17626, + 0.20593, + 0.39909, + 0.31279, + 0.366, + 0.4611, + 0.37137, + 0.29448, + 0.96802, + 0.78013, + 0.66141, + 0.93537, + 0.72696, + 0.69508, + 0.56416, + 0.52032, + 0.61774, + 0.91528, + 0.65406, + 0.61153, + 0.96197, + 0.70556, + 0.57199, + 0.78685, + 0.63044, + 0.63125, + 0.97447, + 0.72605, + 0.62866, + 0.98028, + 0.68617, + 0.65302, + 0.6083, + 0.50937, + 0.55093, + 0.97051, + 0.81534, + 0.61613, + 0.98058, + 0.74671, + 0.64028, + 0.8011, + 0.58879, + 0.73038, + 0.97376, + 0.72276, + 0.64045, + 0.92727, + 0.69293, + 0.63615, + 0.66031, + 0.47914, + 0.60313, + 0.89452, + 0.77892, + 0.67966, + 0.84194, + 0.76193, + 0.7627, + 0.7237, + 0.63363, + 0.59372, + 0.97145, + 0.73209, + 0.79155, + 0.97716, + 0.67139, + 0.71469, + 0.58711, + 0.61496, + 0.76411, + 0.9832, + 0.84695, + 0.76643, + 0.91414, + 0.68745, + 0.55331, + 0.6503, + 0.58909, + 0.51942, + 0.97544, + 0.85894, + 0.72464, + 0.95552, + 0.75632, + 0.71332, + 0.49446, + 0.60377, + 0.6253, + 0.97538, + 0.67771, + 0.69541, + 0.98092, + 0.71147, + 0.60387, + 0.65812, + 0.8446, + 0.64146, + 0.96157, + 0.67872, + 0.63286, + 0.9694, + 0.71009, + 0.61126, + 0.46446, + 0.58429, + 0.48062, + 0.83422, + 0.65752, + 0.66212, + 0.93056, + 0.78383, + 0.6686, + 0.73183, + 0.70038, + 0.62859, + 0.82102, + 0.57081, + 0.66535, + 0.90624, + 0.7454, + 0.66904, + 0.53843, + 0.53426, + 0.45586, + 0.80069, + 0.6212, + 0.65194, + 0.67905, + 0.71355, + 0.63693, + 0.60978, + 0.57081, + 0.52204, + 0.86492, + 0.73871, + 0.70435, + 0.70099, + 0.72766, + 0.75319, + 0.60017, + 0.49298, + 0.71281, + 0.76619, + 0.78836, + 0.72961, + 0.65661, + 0.61304, + 0.51293, + 0.53702, + 0.49281, + 0.40201, + 0.74785, + 0.7283, + 0.69178, + 0.71872, + 0.74066, + 0.69508, + 0.68486, + 0.4528, + 0.39613, + 0.82125, + 0.66393, + 0.62947, + 0.68624, + 0.70918, + 0.62483, + 0.62036, + 0.50934, + 0.46859, + 0.73905, + 0.65762, + 0.61153, + 0.67996, + 0.74496, + 0.68587, + 0.55933, + 0.48962, + 0.48008, + 0.78302, + 0.69538, + 0.66944, + 0.75773, + 0.7763, + 0.69776, + 0.7283, + 0.64556, + 0.621, + 0.74819, + 0.63494, + 0.65308, + 0.75924, + 0.7755, + 0.73539, + 0.62618, + 0.45922, + 0.45569, + 0.78383, + 0.68033, + 0.61348, + 0.60256, + 0.66141, + 0.66763, + 0.64139, + 0.55049, + 0.46429, + 0.759, + 0.7117, + 0.65654, + 0.61106, + 0.52355, + 0.73377, + 0.63998, + 0.40446, + 0.54596, + 0.67257, + 0.67566, + 0.67566, + 0.5343, + 0.61287, + 0.44447, + 0.39724, + 0.36969, + 0.34883, + 0.51834, + 0.41786, + 0.39872, + 0.38646, + 0.37164, + 0.3495, + 0.29125, + 0.27479, + 0.23545, + 0.24499, + 0.10847, + 0.06739, + 0.0177, + 0.01048, + 0.01055, + 0.01058, + 0.00994, + 0.00339, + 0.00198, + 0.00198, + 0.00185, + 0.00071, + 0.0004, + 0.0004, + 0.00037, + 0.00034, + 0.00017, + 0.00007, + 0.00007, + 0.00007, + 0.00003, + 0.00003, + 0.00003, + 0.00003, + 0.00003, + 0.00007, + 0.00003, + 0.00003, + 0.00003, + 0.00003, + 0.00003, + 0.00003, + 0.00003, + 0.00003, + 0.00003, + 0.00003, + ], + unstable__sensitivity: [], + }, + { + id: '976a4140-87e2-4b15-9219-07c8c1c8b8e4', + title: 'PMC_Truthful - AZb art', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1054308', + url: 'https://prod-1.storage.jamendo.com/?trackid=1054308&format=mp32', + creator: 'PMC_Truthful', + creator_url: 'https://www.jamendo.com/artist/436457/PMC_Truthful', + license: 'by-nc-sa', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'hiphop', + 'rap', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'male', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'pmc_truthful', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'vocal', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"PMC_Truthful - AZb art" by PMC_Truthful is licensed under CC BY-NC-SA 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'Truthful', + foreign_landing_url: 'https://www.jamendo.com/album/124269/truthful', + creator: 'PMC_Truthful', + creator_url: 'https://www.jamendo.com/artist/436457/PMC_Truthful', + url: null, + filesize: null, + filetype: null, + }, + duration: 60000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/976a4140-87e2-4b15-9219-07c8c1c8b8e4/thumb/', + detail_url: 'http://localhost:49153/v1/audio/976a4140-87e2-4b15-9219-07c8c1c8b8e4/', + related_url: 'http://localhost:49153/v1/audio/976a4140-87e2-4b15-9219-07c8c1c8b8e4/related/', + waveform: 'http://localhost:49153/v1/audio/976a4140-87e2-4b15-9219-07c8c1c8b8e4/waveform/', + peaks: [ + 0.00041, + 0.33596, + 0.55461, + 0.50689, + 0.48358, + 0.39457, + 0.43311, + 0.42481, + 0.3562, + 0.31886, + 0.32485, + 0.30813, + 0.3118, + 0.28254, + 0.31174, + 0.26636, + 0.31864, + 0.33229, + 0.36094, + 0.32447, + 0.33511, + 0.36297, + 0.3568, + 0.30094, + 0.36427, + 0.39821, + 0.32855, + 0.32678, + 0.3479, + 0.2847, + 0.55353, + 0.46623, + 0.51594, + 0.47627, + 0.49432, + 0.51607, + 0.51645, + 0.38184, + 0.59077, + 0.60039, + 0.50014, + 0.46009, + 0.44609, + 0.32124, + 0.28321, + 0.38295, + 0.32254, + 0.35629, + 0.30278, + 0.36221, + 0.37684, + 0.33773, + 0.48475, + 0.65144, + 0.50553, + 0.38017, + 0.27583, + 0.35224, + 0.46199, + 0.49359, + 0.46746, + 0.45508, + 0.47123, + 0.55511, + 0.39384, + 0.54267, + 0.56654, + 0.75479, + 0.47633, + 0.51161, + 0.28916, + 0.4294, + 0.32178, + 0.35993, + 0.35088, + 0.33815, + 0.37868, + 0.33175, + 0.3075, + 0.36728, + 0.4928, + 0.57712, + 0.49745, + 0.42054, + 0.37678, + 0.37567, + 0.34486, + 0.73452, + 0.49143, + 0.5465, + 0.4257, + 0.61053, + 0.45705, + 0.50885, + 0.6186, + 0.64447, + 0.56486, + 0.51759, + 0.3365, + 0.29144, + 0.60413, + 0.49321, + 0.54542, + 0.4959, + 0.52177, + 0.70055, + 0.42773, + 0.54137, + 0.62458, + 0.59086, + 0.5616, + 0.34153, + 0.26472, + 0.66043, + 0.72471, + 0.85342, + 0.81112, + 0.89598, + 0.88303, + 0.82591, + 0.66819, + 0.60191, + 0.65258, + 0.72075, + 0.67252, + 0.73389, + 0.82147, + 0.91302, + 0.75783, + 0.56949, + 0.46357, + 0.6364, + 0.50644, + 0.41791, + 0.6237, + 0.83759, + 0.90111, + 0.71657, + 0.69412, + 0.48713, + 0.39194, + 0.42041, + 0.41531, + 0.54346, + 0.53402, + 0.58516, + 0.51553, + 0.52047, + 0.47487, + 0.69206, + 0.75444, + 0.46347, + 0.88132, + 0.90912, + 0.84826, + 0.77081, + 0.56452, + 0.50568, + 0.50505, + 0.5801, + 0.523, + 0.82828, + 0.65815, + 0.69763, + 0.39435, + 0.45255, + 0.92527, + 0.91742, + 0.87132, + 0.84399, + 0.75283, + 0.69684, + 0.66626, + 0.69051, + 0.70789, + 0.67059, + 0.75745, + 0.80387, + 0.86248, + 0.89582, + 0.6402, + 0.74656, + 0.69725, + 0.61512, + 0.67379, + 0.46841, + 0.60476, + 0.59472, + 0.68988, + 0.38767, + 0.70875, + 0.69843, + 0.4441, + 0.47785, + 0.42469, + 0.60422, + 0.36335, + 0.55467, + 0.57604, + 0.43627, + 0.52497, + 0.47807, + 0.63028, + 0.84377, + 0.80058, + 0.46791, + 0.8729, + 0.91884, + 0.75466, + 0.83743, + 0.41981, + 0.54096, + 0.52674, + 0.92331, + 0.93417, + 0.71606, + 0.68867, + 0.81742, + 0.931, + 0.90529, + 0.80159, + 0.64368, + 0.68671, + 0.88661, + 0.95545, + 0.88699, + 0.8766, + 0.77429, + 0.69738, + 0.60375, + 0.64026, + 0.76758, + 0.65653, + 0.47779, + 0.59311, + 0.63472, + 0.99759, + 0.54568, + 0.61448, + 0.4365, + 0.51534, + 0.39897, + 0.43077, + 0.65748, + 0.92293, + 0.87518, + 0.69893, + 0.71169, + 0.4604, + 0.46053, + 0.34815, + 0.40613, + 0.55027, + 0.50074, + 0.59279, + 0.64422, + 0.52351, + 0.6078, + 0.71692, + 0.81359, + 0.6565, + 0.90048, + 0.80533, + 0.86593, + 0.63377, + 0.66983, + 0.53279, + 0.51816, + 0.47861, + 0.47465, + 0.65923, + 0.80757, + 0.72702, + 0.68592, + 0.92239, + 0.9343, + 0.65438, + 0.70973, + 0.87739, + 0.81166, + 0.75121, + 0.75944, + 0.78918, + 0.73243, + 0.8425, + 0.80368, + 0.75944, + 0.60973, + 0.6925, + 0.62968, + 0.8475, + 0.93582, + 0.88617, + 0.75571, + 0.76495, + 0.91318, + 0.72673, + 0.68795, + 0.70919, + 0.78921, + 0.66537, + 0.7325, + 0.56433, + 0.47358, + 0.74415, + 0.77683, + 0.8527, + 0.84047, + 0.77695, + 0.87151, + 0.75089, + 0.66819, + 0.8065, + 0.87914, + 0.83018, + 0.83183, + 0.63351, + 0.80472, + 0.74649, + 0.70112, + 0.74073, + 0.89101, + 0.80802, + 0.75419, + 0.80067, + 0.81821, + 0.87173, + 0.71508, + 0.75048, + 0.9525, + 0.90893, + 0.88309, + 0.92324, + 0.92404, + 0.89927, + 0.84424, + 0.82673, + 0.72594, + 0.62493, + 0.58155, + 0.67088, + 0.6351, + 0.65596, + 0.72319, + 0.85083, + 0.92426, + 0.582, + 0.69995, + 0.44353, + 0.34093, + 0.38219, + 0.36398, + 0.55527, + 0.8046, + 0.7654, + 0.76565, + 0.56651, + 0.43254, + 0.41009, + 0.33204, + 0.41091, + 0.52791, + 0.86109, + 0.897, + 0.80292, + 0.67911, + 0.94522, + 0.74269, + 0.53716, + 0.9114, + 0.95827, + 0.91346, + 0.95418, + 0.84564, + 0.72379, + 0.67826, + 0.48846, + 0.64814, + 0.74668, + 0.33552, + 0.66904, + 0.64751, + 0.84807, + 0.94212, + 0.93898, + 0.88898, + 0.95763, + 0.91001, + 0.65197, + 0.77426, + 0.62785, + 0.89804, + 0.77832, + 0.95519, + 0.74776, + 0.84823, + 0.95073, + 0.654, + 0.66999, + 0.9058, + 0.79098, + 0.50999, + 0.80092, + 0.70077, + 0.92654, + 0.81058, + 0.40281, + 0.67686, + 0.9273, + 0.773, + 0.67715, + 0.26715, + 0.64422, + 0.71622, + 0.59909, + 0.46091, + 0.50454, + 0.38311, + 0.42491, + 0.38561, + 0.30271, + 0.37738, + 0.52614, + 0.54929, + 0.84684, + 0.82664, + 0.76372, + 0.8064, + 0.6939, + 0.68709, + 0.7325, + 0.94946, + 0.95621, + 0.60403, + 0.93559, + 0.9626, + 0.96238, + 0.96599, + 0.89145, + 0.91067, + 0.93924, + 0.94142, + 0.63817, + 0.87151, + 0.88848, + 0.81831, + 0.93366, + 0.63497, + 0.96621, + 0.957, + 0.84206, + 0.61148, + 0.48795, + 0.76084, + 0.94041, + 0.87014, + 0.81473, + 0.61854, + 0.37019, + 0.85532, + 0.77936, + 0.75165, + 0.57449, + 0.41921, + 0.75868, + 0.91033, + 0.76635, + 0.77797, + 0.88474, + 0.82056, + 0.95956, + 0.47576, + 0.39783, + 0.86099, + 0.89984, + 0.60248, + 0.54644, + 0.50318, + 0.93449, + 0.94873, + 0.7666, + 0.80707, + 0.74918, + 0.94117, + 0.92853, + 0.88028, + 0.53114, + 0.92502, + 0.93876, + 0.91533, + 0.62474, + 0.45094, + 0.59466, + 0.64944, + 0.98477, + 0.952, + 0.90773, + 0.91216, + 0.64298, + 0.79383, + 0.67816, + 0.73728, + 0.68155, + 0.42152, + 0.86587, + 0.45242, + 0.70894, + 0.77566, + 0.6553, + 0.8893, + 0.53539, + 0.87673, + 0.59298, + 0.61695, + 0.88104, + 0.77562, + 0.91609, + 0.87277, + 0.79114, + 0.51493, + 0.47345, + 0.6952, + 0.67281, + 0.60039, + 0.91517, + 0.76058, + 0.57151, + 0.65429, + 0.59789, + 0.60248, + 0.30863, + 0.73231, + 0.7882, + 0.77537, + 0.52443, + 0.39942, + 0.642, + 0.78288, + 0.9443, + 0.90839, + 0.64881, + 0.56737, + 0.48596, + 0.41876, + 0.5124, + 0.91368, + 0.85567, + 0.66682, + 0.69488, + 0.41873, + 0.91156, + 0.85494, + 0.85089, + 0.78889, + 0.70903, + 0.84149, + 0.85016, + 0.71856, + 0.79054, + 0.7382, + 0.8078, + 0.62696, + 0.74789, + 0.94817, + 0.73576, + 0.54004, + 0.56718, + 0.52595, + 0.61572, + 0.58969, + 0.86672, + 0.93699, + 0.61831, + 0.8229, + 0.55027, + 0.77996, + 0.86862, + 0.53551, + 0.84627, + 0.83123, + 0.53602, + 0.5344, + 0.84722, + 0.57047, + 0.64789, + 0.96495, + 0.88759, + 0.75023, + 0.92695, + 0.94459, + 0.97603, + 0.97343, + 0.78063, + 0.79437, + 0.58912, + 0.77737, + 0.92803, + 0.54422, + 0.68405, + 0.90922, + 0.9634, + 0.86745, + 0.96796, + 0.94665, + 0.72183, + 0.94908, + 0.61759, + 0.91625, + 0.93946, + 0.9539, + 0.89104, + 0.85631, + 0.86454, + 0.94161, + 0.95266, + 0.89316, + 0.6806, + 0.73022, + 0.90073, + 0.80058, + 0.74314, + 0.77819, + 0.44672, + 0.83243, + 0.61008, + 0.40562, + 0.91897, + 0.75612, + 0.64887, + 0.77312, + 0.86878, + 0.48428, + 0.7622, + 0.87483, + 0.8343, + 0.35135, + 0.59305, + 0.53567, + 0.45717, + 0.82474, + 0.7527, + 0.75932, + 0.93012, + 0.95196, + 0.96495, + 0.98686, + 0.94684, + 0.94779, + 0.73988, + 0.72927, + 0.92388, + 0.86191, + 0.66341, + 0.93126, + 0.96013, + 1, + 0.91666, + 0.83069, + 0.89215, + 0.85982, + 0.85086, + 0.90041, + 0.69681, + 0.90504, + 0.62829, + 0.73022, + 0.72829, + 0.69412, + 0.72468, + 0.6274, + 0.55774, + 0.5029, + 0.9512, + 0.56486, + 0.47814, + 0.46943, + 0.94421, + 0.90735, + 0.88088, + 0.96241, + 0.80748, + 0.89953, + 0.64748, + 0.41487, + 0.38726, + 0.40382, + 0.78794, + 0.84978, + 0.82641, + 0.33716, + 0.67851, + 0.75542, + 0.78158, + 0.71271, + 0.59704, + 0.52076, + 0.56797, + 0.95054, + 0.90168, + 0.92898, + 0.89472, + 0.80156, + 0.82059, + 0.63608, + 0.77784, + 0.40594, + 0.51993, + 0.59631, + 0.78725, + 0.78896, + 0.76495, + 0.68785, + 0.64466, + 0.65821, + 0.93354, + 0.9418, + 0.78522, + 0.61309, + 0.63697, + 0.95342, + 0.82486, + 0.93578, + 0.68538, + 0.63627, + 0.73547, + 0.76328, + 0.86166, + 0.91245, + 0.90855, + 0.89168, + 0.91631, + 0.95922, + 0.85317, + 0.55901, + 0.6022, + 0.75587, + 0.88674, + 0.93423, + 0.44378, + 0.46832, + 0.66125, + 0.72392, + 0.92514, + 0.9931, + 0.69456, + 0.60856, + 0.62382, + 0.70482, + 0.74953, + 0.86856, + 0.63807, + 0.71825, + 0.70048, + 0.71369, + 0.88639, + 0.77942, + 0.66489, + 0.85982, + 0.9399, + 0.92489, + 0.7939, + 0.87822, + 0.71689, + 0.58766, + 0.58868, + 0.69428, + 0.75146, + 0.77075, + 0.87622, + 0.89354, + 0.78275, + 0.89031, + 0.85555, + 0.68871, + 0.57899, + 0.66404, + 0.61189, + 0.60296, + 0.70289, + 0.73598, + 0.594, + 0.876, + 0.44134, + 0.45344, + 0.38324, + 0.33868, + 0.37766, + 0.40512, + 0.52098, + 0.61132, + 0.73475, + 0.71844, + 0.54492, + 0.46252, + 0.49061, + 0.37105, + 0.38751, + 0.39847, + 0.33466, + 0.36402, + 0.42332, + 0.33406, + 0.33707, + 0.42526, + 0.32871, + 0.30167, + 0.67189, + 0.65793, + 0.74972, + 0.54815, + 0.37896, + 0.38932, + 0.48371, + 0.353, + 0.34571, + 0.32681, + 0.35316, + 0.4655, + 0.41857, + 0.75431, + 0.75134, + 0.57791, + 0.67629, + 0.64346, + 0.6035, + 0.62135, + 0.58063, + 0.64871, + 0.66461, + 0.58165, + 0.60837, + 0.61072, + 0.64526, + 0.42605, + 0.44055, + 0.77949, + 0.72841, + 0.4958, + 0.4251, + 0.3283, + 0.33523, + 0.36531, + 0.53108, + 0.59659, + 0.41823, + 0.48874, + 0.42779, + 0.32326, + 0.32007, + 0.49577, + 0.31231, + 0.39049, + 0.34315, + 0.32105, + 0.34445, + 0.27817, + 0.57934, + 0.55822, + 0.52867, + 0.45689, + 0.32586, + 0.2612, + 0.63551, + 0.56325, + 0.32371, + 0.32532, + 0.26361, + 0.52503, + 0.49853, + 0.62382, + 0.67712, + 0.754, + 0.67962, + 0.63022, + 0.52174, + 0.35822, + 0.68871, + 0.76581, + 0.67674, + 0.61363, + 0.6426, + 0.48773, + 0.36525, + 0.29847, + 0.31098, + 0.37108, + 0.26282, + 0.40265, + 0.54406, + 0.51176, + 0.56882, + 0.31114, + 0.17767, + 0.13486, + 0.1297, + 0.13647, + 0.19958, + 0.54058, + 0.51984, + 0.42592, + 0.43941, + 0.49463, + 0.2967, + 0.29002, + 0.25205, + 0.2024, + 0.16497, + 0.14892, + 0.11976, + 0.10316, + 0.09857, + 0.12295, + 0.19249, + 0.16906, + 0.23726, + 0.26158, + 0.22564, + 0.24214, + 0.09556, + 0.10478, + 0.07403, + 0.081, + 0.06897, + 0.10813, + 0.11865, + 0.10582, + 0.07308, + 0.06054, + 0.07546, + 0.06371, + 0.08749, + 0.08701, + 0.08135, + 0.07698, + 0.07533, + 0.07444, + 0.06976, + 0.06653, + 0.06593, + 0.05924, + 0.05662, + 0.05475, + 0.05443, + 0.03841, + 0.05168, + 0.0499, + 0.0437, + 0.04604, + 0.04237, + 0.03733, + 0.03543, + 0.03157, + 0.03607, + 0.02983, + 0.02793, + 0.0259, + 0.01957, + 0.01887, + 0.02932, + 0.02559, + 0.02622, + 0.02289, + 0.01957, + 0.01938, + 0.01754, + 0.01919, + 0.01647, + 0.01615, + 0.01441, + 0.01026, + 0.00887, + 0.01289, + 0.01267, + 0.01162, + 0.01077, + 0.00925, + 0.00956, + 0.00782, + 0.00804, + 0.00744, + 0.00484, + 0.00491, + 0.00576, + 0.00579, + 0.00522, + 0.00475, + 0.00437, + 0.00323, + 0.00304, + 0.00301, + 0.00231, + 0.00247, + 0.0019, + 0.00184, + 0.00171, + 0.00149, + 0.00095, + 0.00085, + 0.00139, + 0.00117, + 0.0007, + 0.00054, + 0.00044, + 0.00051, + 0.00035, + 0.00051, + 0.00035, + 0.00032, + 0.00028, + 0.00016, + 0.00022, + 0.00016, + 0.00013, + 0.00009, + 0.00003, + 0.00003, + 0, + 0, + 0, + 0, + 0.00003, + 0.00003, + 0.00003, + 0, + ], + unstable__sensitivity: [], + }, + { + id: '59ee81f6-51d6-4472-b221-4ea3cc04e50b', + title: 'Pool of Love (Minimal Art Mix)', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1518860', + url: 'https://prod-1.storage.jamendo.com/?trackid=1518860&format=mp32', + creator: 'Emily Richards', + creator_url: 'https://www.jamendo.com/artist/437401/Emily_Richards_(2)', + license: 'by-nc', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'dreampop', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'female', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'guitar', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'love', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'romantic', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'sensual', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_low', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'strings', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'vocal', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Pool of Love (Minimal Art Mix)" by Emily Richards is licensed under CC BY-NC 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'Honey Valentine', + foreign_landing_url: 'https://www.jamendo.com/album/174552/honey-valentine', + creator: 'Emily Richards', + creator_url: 'https://www.jamendo.com/artist/437401/Emily_Richards_(2)', + url: null, + filesize: null, + filetype: null, + }, + duration: 220000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/59ee81f6-51d6-4472-b221-4ea3cc04e50b/thumb/', + detail_url: 'http://localhost:49153/v1/audio/59ee81f6-51d6-4472-b221-4ea3cc04e50b/', + related_url: 'http://localhost:49153/v1/audio/59ee81f6-51d6-4472-b221-4ea3cc04e50b/related/', + waveform: 'http://localhost:49153/v1/audio/59ee81f6-51d6-4472-b221-4ea3cc04e50b/waveform/', + peaks: [ + 0, + 0.09282, + 0.04651, + 0.05628, + 0.04528, + 0.09641, + 0.05703, + 0.05268, + 0.04164, + 0.08572, + 0.09076, + 0.06132, + 0.09679, + 0.04562, + 0.09789, + 0.09892, + 0.11633, + 0.20222, + 0.14868, + 0.12236, + 0.06995, + 0.12418, + 0.17446, + 0.12637, + 0.17209, + 0.20568, + 0.12891, + 0.15084, + 0.14169, + 0.12589, + 0.13981, + 0.15537, + 0.16373, + 0.17689, + 0.16315, + 0.17093, + 0.25531, + 0.24722, + 0.2474, + 0.25144, + 0.15256, + 0.18707, + 0.16661, + 0.14635, + 0.18978, + 0.21377, + 0.18861, + 0.18183, + 0.12743, + 0.17987, + 0.24472, + 0.16171, + 0.16126, + 0.15749, + 0.16939, + 0.19872, + 0.15794, + 0.12202, + 0.1372, + 0.11928, + 0.11869, + 0.1226, + 0.15561, + 0.14378, + 0.13504, + 0.17556, + 0.2901, + 0.37661, + 0.50658, + 0.48927, + 0.4588, + 0.41747, + 0.38295, + 0.30378, + 0.28177, + 0.18933, + 0.24105, + 0.22529, + 0.21549, + 0.16678, + 0.35605, + 0.34319, + 0.39906, + 0.4539, + 0.26532, + 0.25881, + 0.23399, + 0.1444, + 0.15352, + 0.22018, + 0.3739, + 0.32414, + 0.36273, + 0.34624, + 0.26501, + 0.23934, + 0.20328, + 0.17638, + 0.36222, + 0.30237, + 0.26707, + 0.43186, + 0.40424, + 0.31923, + 0.23855, + 0.19293, + 0.16829, + 0.15516, + 0.49952, + 0.45469, + 0.17528, + 0.43351, + 0.49784, + 0.43183, + 0.5206, + 0.40197, + 0.15907, + 0.15523, + 0.45935, + 0.39711, + 0.43128, + 0.31211, + 0.17963, + 0.14529, + 0.12514, + 0.42055, + 0.38706, + 0.41065, + 0.48927, + 0.32019, + 0.41753, + 0.33284, + 0.58024, + 0.22926, + 0.37147, + 0.72399, + 0.47015, + 0.80724, + 0.32818, + 0.63247, + 0.30337, + 0.53832, + 0.6031, + 0.46189, + 0.29014, + 0.5511, + 0.8215, + 0.72673, + 0.56725, + 0.75398, + 0.80223, + 0.64121, + 0.57534, + 0.58277, + 0.50192, + 0.65883, + 0.32335, + 0.57616, + 0.60536, + 0.71422, + 0.50535, + 0.60797, + 0.77362, + 0.49808, + 0.52584, + 0.45181, + 0.57115, + 0.40372, + 0.55816, + 0.60553, + 0.74407, + 0.53222, + 0.58397, + 0.39481, + 0.44413, + 0.69941, + 0.5922, + 0.5218, + 0.63076, + 0.71696, + 0.62078, + 0.64289, + 0.79685, + 0.4598, + 0.50319, + 0.55385, + 0.75401, + 0.6555, + 0.81862, + 0.75048, + 0.32959, + 0.70157, + 0.54188, + 0.61619, + 0.49719, + 0.66479, + 0.69845, + 0.51429, + 0.34175, + 0.49897, + 0.38724, + 0.66394, + 0.61359, + 0.80155, + 0.48756, + 0.64015, + 0.52978, + 0.69358, + 0.67055, + 0.6202, + 0.51573, + 0.31711, + 0.68639, + 0.66747, + 0.69633, + 0.45555, + 0.47553, + 0.32266, + 0.51967, + 0.56036, + 0.47347, + 0.40383, + 0.60879, + 0.27098, + 0.44468, + 0.55035, + 0.64762, + 0.44506, + 0.63443, + 0.8654, + 0.40245, + 0.36801, + 0.57047, + 0.27156, + 0.44101, + 0.4843, + 0.35135, + 0.73917, + 0.19057, + 0.53098, + 0.22693, + 0.59429, + 0.71021, + 0.46703, + 0.23242, + 0.51611, + 0.70435, + 0.63696, + 0.44944, + 0.54031, + 0.1846, + 0.5643, + 0.78561, + 0.46576, + 0.41788, + 0.59432, + 0.25744, + 0.48039, + 0.37829, + 0.51995, + 0.36407, + 0.61996, + 0.78445, + 0.44194, + 0.44369, + 0.30522, + 0.43615, + 0.63299, + 0.69293, + 0.44866, + 0.46072, + 0.3812, + 0.73608, + 0.31265, + 0.5293, + 0.72035, + 0.65033, + 0.50106, + 0.60125, + 0.8991, + 0.72484, + 0.57883, + 0.65201, + 0.4455, + 0.53794, + 0.59799, + 0.47412, + 0.55967, + 0.67957, + 0.50826, + 0.44732, + 0.6578, + 0.56403, + 0.66304, + 0.55909, + 0.64903, + 0.72159, + 0.43875, + 0.42487, + 0.43855, + 0.48735, + 0.55148, + 0.46494, + 0.64176, + 0.45493, + 0.579, + 0.33702, + 0.49345, + 0.65616, + 0.60204, + 0.37154, + 0.4734, + 0.84206, + 0.62983, + 0.66873, + 0.39779, + 0.37346, + 0.22213, + 0.44989, + 0.53284, + 0.51734, + 0.32482, + 0.60012, + 0.37774, + 0.53736, + 0.55501, + 0.55025, + 0.4249, + 0.54442, + 0.53702, + 0.41644, + 0.30337, + 0.55117, + 0.27259, + 1, + 0.60659, + 0.49534, + 0.41966, + 0.77194, + 0.78232, + 0.43721, + 0.5557, + 0.53177, + 0.59247, + 0.28661, + 0.60454, + 0.7633, + 0.64457, + 0.55652, + 0.53002, + 0.36259, + 0.41311, + 0.52533, + 0.51817, + 0.34357, + 0.62963, + 0.21847, + 0.67031, + 0.636, + 0.59018, + 0.54319, + 0.59333, + 0.55607, + 0.44585, + 0.37802, + 0.40705, + 0.42624, + 0.23756, + 0.39937, + 0.51868, + 0.46809, + 0.30299, + 0.58815, + 0.20383, + 0.42473, + 0.54367, + 0.47621, + 0.18618, + 0.52841, + 0.78952, + 0.55426, + 0.54726, + 0.46977, + 0.22477, + 0.36263, + 0.51666, + 0.46405, + 0.3846, + 0.67062, + 0.28342, + 0.1772, + 0.44053, + 0.40496, + 0.46607, + 0.41181, + 0.53109, + 0.56711, + 0.43351, + 0.65876, + 0.55241, + 0.47323, + 0.42843, + 0.68454, + 0.58918, + 0.46363, + 0.31642, + 0.38264, + 0.73279, + 0.60118, + 0.58552, + 0.92466, + 0.512, + 0.66133, + 0.35827, + 0.64827, + 0.3713, + 0.38004, + 0.34189, + 0.42871, + 0.42384, + 0.50682, + 0.41891, + 0.25209, + 0.47957, + 0.83291, + 0.55981, + 0.50737, + 0.67556, + 0.62904, + 0.47865, + 0.52108, + 0.40112, + 0.3702, + 0.50764, + 0.47059, + 0.65228, + 0.5632, + 0.53332, + 0.27581, + 0.3604, + 0.65098, + 0.61561, + 0.66188, + 0.58185, + 0.52526, + 0.53685, + 0.38364, + 0.5837, + 0.3907, + 0.51553, + 0.47515, + 0.88614, + 0.55059, + 0.50408, + 0.54343, + 0.36893, + 0.41983, + 0.55607, + 0.48934, + 0.50415, + 0.53157, + 0.50343, + 0.82167, + 0.33716, + 0.83397, + 0.61691, + 0.39526, + 0.22237, + 0.88158, + 0.51402, + 0.51416, + 0.45914, + 0.44835, + 0.93193, + 0.59031, + 0.63045, + 0.43203, + 0.66764, + 0.54953, + 0.48098, + 0.54548, + 0.61372, + 0.55457, + 0.47299, + 0.56704, + 0.52242, + 0.53188, + 0.67833, + 0.46569, + 0.47447, + 0.69064, + 0.71398, + 0.59923, + 0.90972, + 0.59151, + 0.56187, + 0.4574, + 0.57191, + 0.67237, + 0.70301, + 0.4916, + 0.63682, + 0.45088, + 0.75802, + 0.5317, + 0.34045, + 0.59131, + 0.58624, + 0.5839, + 0.55981, + 0.53962, + 0.51642, + 0.48201, + 0.32945, + 0.54949, + 0.39865, + 0.56653, + 0.36492, + 0.58795, + 0.48105, + 0.57664, + 0.43961, + 0.30714, + 0.45928, + 0.46864, + 0.42473, + 0.61393, + 0.38223, + 0.5401, + 0.34539, + 0.46624, + 0.36958, + 0.41976, + 0.14022, + 0.50614, + 0.70284, + 0.35629, + 0.49116, + 0.33058, + 0.29267, + 0.37287, + 0.32095, + 0.34199, + 0.44485, + 0.47848, + 0.28044, + 0.5059, + 0.36455, + 0.3336, + 0.3203, + 0.35752, + 0.35951, + 0.36369, + 0.36174, + 0.33517, + 0.82935, + 0.39827, + 0.35012, + 0.33644, + 0.45818, + 0.39584, + 0.61081, + 0.48338, + 0.36609, + 0.33809, + 0.22508, + 0.65256, + 0.46864, + 0.37168, + 0.22138, + 0.19101, + 0.34395, + 0.19372, + 0.22378, + 0.1455, + 0.26182, + 0.18717, + 0.18896, + 0.12377, + 0.16531, + 0.13237, + 0.11554, + 0.15403, + 0.18834, + 0.17771, + 0.12065, + 0.14769, + 0.12932, + 0.10848, + 0.1018, + 0.11828, + 0.1165, + 0.10591, + 0.1104, + 0.09878, + 0.1165, + 0.10461, + 0.10677, + 0.13271, + 0.71617, + 0.38974, + 0.54816, + 0.46199, + 0.74722, + 0.36969, + 0.74541, + 0.42007, + 0.47275, + 0.61318, + 0.61252, + 0.40033, + 0.58188, + 0.75264, + 0.5863, + 0.6395, + 0.53924, + 0.57085, + 0.27989, + 0.47824, + 0.48077, + 0.54391, + 0.32492, + 0.59741, + 0.20534, + 0.489, + 0.46932, + 0.48636, + 0.41836, + 0.53112, + 0.8021, + 0.39704, + 0.34402, + 0.38391, + 0.2487, + 0.55021, + 0.82386, + 0.73269, + 0.68029, + 0.6069, + 0.7112, + 0.31272, + 0.55265, + 0.76429, + 0.56399, + 0.55104, + 0.50874, + 0.77697, + 0.65311, + 0.85594, + 0.92504, + 0.48687, + 0.63429, + 0.71703, + 0.50548, + 0.69214, + 0.72138, + 0.69605, + 0.64992, + 0.59288, + 0.43724, + 0.49267, + 0.59806, + 0.77139, + 0.90842, + 0.50377, + 0.42072, + 0.6239, + 0.72388, + 0.55385, + 0.43251, + 0.7197, + 0.43628, + 0.60958, + 0.50994, + 0.47793, + 0.83349, + 0.71422, + 0.52286, + 0.71645, + 0.68186, + 0.70321, + 0.65725, + 0.69269, + 0.62665, + 0.86016, + 0.65485, + 0.70753, + 0.58181, + 0.67394, + 0.54682, + 0.42833, + 0.50744, + 0.59477, + 0.50706, + 0.47059, + 0.608, + 0.80333, + 0.48115, + 0.39107, + 0.48824, + 0.36787, + 0.53229, + 0.49037, + 0.65849, + 0.38213, + 0.75552, + 0.404, + 0.43601, + 0.6385, + 0.53685, + 0.24551, + 0.3773, + 0.733, + 0.51916, + 0.61996, + 0.54511, + 0.53914, + 0.18447, + 0.46579, + 0.48944, + 0.47022, + 0.38754, + 0.60954, + 0.27948, + 0.49685, + 0.35701, + 0.40835, + 0.35173, + 0.55594, + 0.75771, + 0.48444, + 0.495, + 0.56721, + 0.36444, + 0.44269, + 0.5607, + 0.49599, + 0.72604, + 0.52392, + 0.73386, + 0.32616, + 0.54243, + 0.55686, + 0.45863, + 0.24599, + 0.60416, + 0.78088, + 0.69626, + 0.55851, + 0.71617, + 0.38669, + 0.54572, + 0.56961, + 0.52972, + 0.55042, + 0.62613, + 0.39673, + 0.53602, + 0.53726, + 0.70373, + 0.59121, + 0.59594, + 0.84367, + 0.40242, + 0.43018, + 0.37349, + 0.45352, + 0.31039, + 0.44646, + 0.50792, + 0.56533, + 0.40187, + 0.59422, + 0.3496, + 0.65221, + 0.69149, + 0.62784, + 0.455, + 0.60135, + 0.71291, + 0.62003, + 0.63206, + 0.67453, + 0.29058, + 0.45695, + 0.64347, + 0.57482, + 0.58555, + 0.62582, + 0.56139, + 0.39899, + 0.54219, + 0.53105, + 0.49143, + 0.80021, + 0.61575, + 0.83743, + 0.63871, + 0.49482, + 0.54428, + 0.56197, + 0.46322, + 0.76004, + 0.69893, + 0.5593, + 0.26985, + 0.57588, + 0.67737, + 0.55271, + 0.61016, + 0.71315, + 0.71302, + 0.67254, + 0.33562, + 0.5399, + 0.76275, + 0.50912, + 0.53143, + 0.77564, + 0.72001, + 0.5339, + 0.57256, + 0.28284, + 0.35762, + 0.49081, + 0.39844, + 0.51827, + 0.44232, + 0.57897, + 0.41932, + 0.18244, + 0.44783, + 0.94101, + 0.54415, + 0.33408, + 0.6822, + 0.58171, + 0.64293, + 0.40108, + 0.22405, + 0.44328, + 0.68077, + 0.5279, + 0.64245, + 0.67734, + 0.55261, + 0.57246, + 0.46045, + 0.43611, + 0.16023, + 0.70246, + 0.41325, + 0.81111, + 0.65273, + 0.5461, + 0.66123, + 0.52509, + 0.59158, + 0.4102, + 0.48266, + 0.43649, + 0.43142, + 0.47402, + 0.33987, + 0.36407, + 0.32684, + 0.31505, + 0.44091, + 0.49164, + 0.70133, + 0.33301, + 0.47875, + 0.30247, + 0.33778, + 0.37497, + 0.31519, + 0.36019, + 0.44828, + 0.47714, + 0.51251, + 0.42987, + 0.33966, + 0.32863, + 0.28499, + 0.34895, + 0.36588, + 0.33555, + 0.36249, + 0.33037, + 0.84083, + 0.34713, + 0.34501, + 0.42782, + 0.45157, + 0.36773, + 0.63604, + 0.48087, + 0.37452, + 0.33672, + 0.24352, + 0.64485, + 0.37462, + 0.36917, + 0.22392, + 0.34103, + 0.23667, + 0.22176, + 0.12757, + 0.20801, + 0.20431, + 0.15496, + 0.1603, + 0.12541, + 0.12843, + 0.1106, + 0.1056, + 0.16658, + 0.19129, + 0.18704, + 0.14063, + 0.14502, + 0.12473, + 0.10522, + 0.09933, + 0.11592, + 0.1191, + 0.10409, + 0.11078, + 0.10869, + 0.11489, + 0.09508, + 0.37541, + 0.17333, + 0.42072, + 0.42569, + 0.63398, + 0.47004, + 0.73684, + 0.37874, + 0.56049, + 0.58031, + 0.62788, + 0.27571, + 0.6117, + 0.71226, + 0.69033, + 0.52478, + 0.55128, + 0.48338, + 0.35755, + 0.57157, + 0.54421, + 0.48941, + 0.34237, + 0.6637, + 0.19842, + 0.54562, + 0.5911, + 0.48502, + 0.53794, + 0.60145, + 0.77841, + 0.4125, + 0.33349, + 0.41836, + 0.47251, + 0.42453, + 0.387, + 0.72947, + 0.33918, + 0.30371, + 0.60303, + 0.23084, + 0.4843, + 0.62603, + 0.47536, + 0.25322, + 0.62222, + 0.76563, + 0.58034, + 0.48461, + 0.39978, + 0.2172, + 0.47207, + 0.58325, + 0.48794, + 0.34785, + 0.61393, + 0.19859, + 0.49534, + 0.37634, + 0.47758, + 0.40763, + 0.55415, + 0.77101, + 0.41915, + 0.33791, + 0.23345, + 0.47004, + 0.16455, + 0.36043, + 0.3484, + 0.71929, + 0.26162, + 0.51686, + 0.15115, + 0.43618, + 0.5025, + 0.42867, + 0.14186, + 0.64245, + 0.7923, + 0.50723, + 0.5134, + 0.4176, + 0.2014, + 0.46391, + 0.48876, + 0.52529, + 0.43217, + 0.62329, + 0.41462, + 0.20842, + 0.53609, + 0.46052, + 0.47789, + 0.40574, + 0.49335, + 0.73201, + 0.39999, + 0.33956, + 0.37812, + 0.11194, + 0.36112, + 0.38508, + 0.61437, + 0.25826, + 0.46326, + 0.13432, + 0.49133, + 0.472, + 0.42511, + 0.25202, + 0.45873, + 0.59114, + 0.54199, + 0.6516, + 0.47484, + 0.43443, + 0.10742, + 0.3167, + 0.45496, + 0.44766, + 0.29099, + 0.30008, + 0.18255, + 0.53383, + 0.37154, + 0.4586, + 0.37479, + 0.56255, + 0.34131, + 0.42556, + 0.29977, + 0.43597, + 0.10759, + 0.3337, + 0.30491, + 0.38066, + 0.25751, + 0.10546, + 0.19235, + 0.06605, + 0.34474, + 0.41777, + 0.39728, + 0.05104, + 0.44088, + 0.39351, + 0.56289, + 0.42545, + 0.33833, + 0.17621, + 0.31968, + 0.19636, + 0.04192, + 0.03983, + 0.0596, + 0.04682, + 0.10142, + 0.04408, + 0.06615, + 0.06625, + 0.02505, + 0.0401, + 0.03047, + 0.03376, + 0.02721, + 0.02567, + 0.01186, + 0.00007, + ], + unstable__sensitivity: [], + }, + { + id: '05040e47-735f-4113-a4e7-7deed99f8822', + title: 'Martial Arts U.S. Army Training.flac', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/qubodup/sounds/184353', + url: 'https://cdn.freesound.org/previews/184/184353_71257-hq.mp3', + creator: 'qubodup', + creator_url: 'https://freesound.org/people/qubodup', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 516456, + filetype: 'mp3', + tags: [ + { + name: 'arts', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'berserk', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'chant', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'cinematic', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'combat', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'drill', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'fight', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'fighting', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'film', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'hand-to-hand', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'knight', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'martial', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'monk', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'priest', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'samurai', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'shout', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'soldier', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'training', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'warrior', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'whistle', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/184353/download/', + bit_rate: 0, + filesize: 1710460, + filetype: 'flac', + sample_rate: 48000, + }, + ], + attribution: '"Martial Arts U.S. Army Training.flac" by qubodup is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 22545, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/05040e47-735f-4113-a4e7-7deed99f8822/', + related_url: 'http://localhost:49153/v1/audio/05040e47-735f-4113-a4e7-7deed99f8822/related/', + waveform: 'http://localhost:49153/v1/audio/05040e47-735f-4113-a4e7-7deed99f8822/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'fb60333d-e690-46cf-9f74-145244e2da5a', + title: 'The art of kung fu (2014)', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1156127', + url: 'https://prod-1.storage.jamendo.com/?trackid=1156127&format=mp32', + creator: 'Andrea Torti', + creator_url: 'https://www.jamendo.com/artist/454124/Andrea_Torti', + license: 'by-nc-nd', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'classical', + 'filmscore', + 'oriental', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'chinese', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'cinematic', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'dark', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'ethno', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'instrumental', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'percussion', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'piano', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"The art of kung fu (2014)" by Andrea Torti is licensed under CC BY-NC-ND 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'The East', + foreign_landing_url: 'https://www.jamendo.com/album/138749/the-east', + creator: 'Andrea Torti', + creator_url: 'https://www.jamendo.com/artist/454124/Andrea_Torti', + url: null, + filesize: null, + filetype: null, + }, + duration: 192000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/fb60333d-e690-46cf-9f74-145244e2da5a/thumb/', + detail_url: 'http://localhost:49153/v1/audio/fb60333d-e690-46cf-9f74-145244e2da5a/', + related_url: 'http://localhost:49153/v1/audio/fb60333d-e690-46cf-9f74-145244e2da5a/related/', + waveform: 'http://localhost:49153/v1/audio/fb60333d-e690-46cf-9f74-145244e2da5a/waveform/', + peaks: [ + 0.02669, + 0.04371, + 0.05658, + 0.05697, + 0.05654, + 0.06542, + 0.0626, + 0.06897, + 0.07148, + 0.05762, + 0.04787, + 0.04766, + 0.06065, + 0.05385, + 0.04662, + 0.05571, + 0.05593, + 0.04904, + 0.05034, + 0.05086, + 0.05654, + 0.06217, + 0.05823, + 0.36093, + 0.25648, + 0.07963, + 0.07863, + 0.08197, + 0.13573, + 0.14869, + 0.13235, + 0.15848, + 0.16693, + 0.18941, + 0.20237, + 0.19535, + 0.1908, + 0.16307, + 0.27927, + 0.33563, + 0.09609, + 0.122, + 0.57798, + 0.44857, + 0.39126, + 0.24292, + 0.20622, + 0.33008, + 0.36934, + 0.38818, + 0.18335, + 0.2317, + 0.25925, + 0.3832, + 0.26371, + 0.16866, + 0.18772, + 0.10714, + 0.10892, + 0.25297, + 0.16944, + 0.15159, + 0.159, + 0.18699, + 0.19864, + 0.17806, + 0.20609, + 0.17126, + 0.57057, + 0.56849, + 0.38653, + 0.37839, + 0.28472, + 0.31384, + 0.34889, + 0.35084, + 0.35634, + 0.3858, + 0.48774, + 0.49276, + 0.56867, + 0.51729, + 0.51694, + 0.26354, + 0.22775, + 0.39407, + 0.40547, + 0.24495, + 0.41617, + 0.45603, + 0.53812, + 0.64396, + 0.73252, + 0.43948, + 0.56152, + 0.41665, + 0.51668, + 0.46599, + 0.34915, + 0.3848, + 0.45013, + 0.69405, + 0.53319, + 0.62235, + 0.71311, + 0.85123, + 0.43675, + 0.41465, + 0.45382, + 0.63768, + 0.3108, + 0.53124, + 0.74937, + 0.80162, + 0.53626, + 0.76748, + 0.56429, + 0.47968, + 0.57205, + 0.34481, + 0.53752, + 0.56689, + 0.55034, + 0.50338, + 0.68582, + 0.5503, + 0.70029, + 0.65124, + 0.73854, + 0.3988, + 0.38407, + 0.45685, + 0.61338, + 0.35504, + 0.5451, + 0.70917, + 0.77849, + 0.55424, + 0.69478, + 0.48557, + 0.53717, + 0.42904, + 0.47981, + 0.41361, + 0.32679, + 0.35027, + 0.42323, + 0.67568, + 0.61637, + 0.57339, + 0.79317, + 0.51135, + 0.38147, + 0.30275, + 0.5386, + 0.44039, + 0.30179, + 0.35374, + 0.6168, + 0.62391, + 0.69912, + 0.9254, + 0.52236, + 0.40586, + 0.34091, + 0.47916, + 0.39854, + 0.46798, + 0.53652, + 0.40971, + 0.58942, + 0.43402, + 0.3498, + 0.62096, + 0.48744, + 0.35552, + 0.33004, + 0.46859, + 0.4653, + 0.37978, + 0.45377, + 0.51668, + 0.52673, + 0.53561, + 0.69149, + 0.46274, + 0.60978, + 0.52088, + 0.50464, + 0.59354, + 0.5853, + 0.50139, + 0.48579, + 0.64951, + 0.76107, + 0.62217, + 0.66628, + 0.66662, + 0.41725, + 0.40088, + 0.59159, + 0.5915, + 0.47435, + 0.53908, + 0.62152, + 0.64457, + 0.66112, + 0.6791, + 0.52145, + 0.42605, + 0.4844, + 0.49922, + 0.52859, + 0.62932, + 0.52106, + 0.52508, + 0.57855, + 0.5954, + 0.41517, + 0.60203, + 0.69517, + 0.34273, + 0.43935, + 0.61975, + 0.72472, + 0.58756, + 0.56256, + 0.52929, + 0.69296, + 0.80613, + 0.794, + 0.55511, + 0.63136, + 0.50407, + 0.48384, + 0.49879, + 0.49944, + 0.53392, + 0.55177, + 0.59297, + 0.67711, + 0.55303, + 0.58045, + 0.4747, + 0.36908, + 0.30539, + 0.44888, + 0.45382, + 0.36587, + 0.42527, + 0.46356, + 0.523, + 0.54848, + 0.7959, + 0.62919, + 0.4267, + 0.36197, + 0.37778, + 0.37653, + 0.42535, + 0.36145, + 0.37284, + 0.48947, + 0.49147, + 0.36383, + 0.59371, + 0.58236, + 0.38519, + 0.30756, + 0.40755, + 0.40837, + 0.34767, + 0.42908, + 0.44866, + 0.53761, + 0.47881, + 0.72238, + 0.48055, + 0.58162, + 0.40447, + 0.32896, + 0.36431, + 0.39776, + 0.41409, + 0.3715, + 0.59722, + 0.65064, + 0.32536, + 0.56798, + 0.72186, + 0.46244, + 0.27992, + 0.402, + 0.53158, + 0.52158, + 0.39351, + 0.45663, + 0.57205, + 0.5328, + 1, + 0.6924, + 0.62404, + 0.48202, + 0.48536, + 0.85621, + 0.65995, + 0.55944, + 0.50693, + 0.67698, + 0.72801, + 0.57985, + 0.69504, + 0.76428, + 0.51126, + 0.51612, + 0.70176, + 0.645, + 0.46976, + 0.46149, + 0.62824, + 0.80067, + 0.56607, + 0.732, + 0.55407, + 0.64349, + 0.50243, + 0.66714, + 0.4679, + 0.59124, + 0.55212, + 0.63188, + 0.65367, + 0.60242, + 0.46816, + 0.68764, + 0.72316, + 0.36063, + 0.4705, + 0.49666, + 0.59705, + 0.4406, + 0.4445, + 0.77238, + 0.76878, + 0.68356, + 0.70756, + 0.76371, + 0.48986, + 0.3916, + 0.42353, + 0.53834, + 0.36171, + 0.29594, + 0.39386, + 0.66524, + 0.59206, + 0.59488, + 0.69842, + 0.47938, + 0.41374, + 0.35915, + 0.54688, + 0.46127, + 0.44104, + 0.38125, + 0.49354, + 0.58379, + 0.60887, + 0.87804, + 0.9877, + 0.49034, + 0.45126, + 0.46478, + 0.65029, + 0.49705, + 0.38814, + 0.60112, + 0.58448, + 0.54527, + 0.49727, + 0.66584, + 0.72593, + 0.35326, + 0.32727, + 0.38541, + 0.41067, + 0.4526, + 0.44164, + 0.42687, + 0.55948, + 0.61628, + 0.70375, + 0.58145, + 0.33585, + 0.28507, + 0.32774, + 0.44359, + 0.3832, + 0.23776, + 0.3543, + 0.49766, + 0.48007, + 0.43198, + 0.5594, + 0.51863, + 0.33619, + 0.2901, + 0.3962, + 0.5055, + 0.42072, + 0.47938, + 0.38485, + 0.58292, + 0.47808, + 0.69881, + 0.42072, + 0.46876, + 0.39065, + 0.32289, + 0.35391, + 0.43198, + 0.26531, + 0.33429, + 0.48466, + 0.53903, + 0.44091, + 0.5873, + 0.5435, + 0.51568, + 0.3128, + 0.46868, + 0.44034, + 0.48696, + 0.43332, + 0.34715, + 0.56057, + 0.5779, + 0.68387, + 0.71051, + 0.35794, + 0.31483, + 0.34893, + 0.37111, + 0.6674, + 0.51789, + 0.35196, + 0.47236, + 0.49653, + 0.40243, + 0.60307, + 0.55693, + 0.49233, + 0.32835, + 0.43341, + 0.46439, + 0.51395, + 0.44801, + 0.36908, + 0.54857, + 0.51508, + 0.71003, + 0.50009, + 0.4552, + 0.37458, + 0.3478, + 0.35599, + 0.35759, + 0.34906, + 0.39117, + 0.44498, + 0.55758, + 0.54943, + 0.78334, + 0.81016, + 0.76215, + 0.33394, + 0.39347, + 0.42457, + 0.44805, + 0.47323, + 0.41032, + 0.56858, + 0.61364, + 0.73321, + 0.67061, + 0.3949, + 0.37458, + 0.32107, + 0.42691, + 0.48111, + 0.33398, + 0.34338, + 0.39455, + 0.49324, + 0.43614, + 0.45104, + 0.50347, + 0.35045, + 0.21727, + 0.29387, + 0.28542, + 0.31128, + 0.29209, + 0.25323, + 0.36778, + 0.26215, + 0.42904, + 0.27641, + 0.26592, + 0.23728, + 0.18984, + 0.20323, + 0.46898, + 0.44212, + 0.32055, + 0.38502, + 0.34685, + 0.37319, + 0.32142, + 0.39841, + 0.34135, + 0.46374, + 0.39126, + 0.37501, + 0.30184, + 0.37141, + 0.30054, + 0.68603, + 0.60281, + 0.43445, + 0.54891, + 0.29924, + 0.30422, + 0.47076, + 0.32757, + 0.32246, + 0.23382, + 0.2086, + 0.28377, + 0.30075, + 0.27398, + 0.39771, + 0.36292, + 0.29478, + 0.30491, + 0.26163, + 0.40607, + 0.44403, + 0.25279, + 0.22026, + 0.28975, + 0.29417, + 0.56568, + 0.85283, + 0.51642, + 0.4705, + 0.41911, + 0.47821, + 0.37497, + 0.33602, + 0.38285, + 0.61217, + 0.59349, + 0.5308, + 0.71229, + 0.96248, + 0.86405, + 0.42938, + 0.42037, + 0.67425, + 0.64934, + 0.54241, + 0.67815, + 0.74582, + 0.6817, + 0.51542, + 0.84737, + 0.56152, + 0.46413, + 0.58751, + 0.44086, + 0.63608, + 0.44862, + 0.57989, + 0.68686, + 0.67559, + 0.56005, + 0.70297, + 0.74118, + 0.73863, + 0.37081, + 0.39949, + 0.47596, + 0.58227, + 0.52595, + 0.66805, + 0.78498, + 0.69743, + 0.59276, + 0.79733, + 0.55147, + 0.43597, + 0.41439, + 0.45958, + 0.36587, + 0.32181, + 0.34048, + 0.38272, + 0.57673, + 0.5714, + 0.69084, + 0.59211, + 0.42986, + 0.43341, + 0.3877, + 0.55675, + 0.52435, + 0.35331, + 0.43449, + 0.63773, + 0.67161, + 0.58136, + 0.86115, + 0.3903, + 0.33797, + 0.41773, + 0.39754, + 0.51638, + 0.4247, + 0.4348, + 0.4004, + 0.5084, + 0.45685, + 0.47955, + 0.50065, + 0.48016, + 0.33082, + 0.28806, + 0.3634, + 0.37965, + 0.34104, + 0.426, + 0.46755, + 0.45854, + 0.57621, + 0.53401, + 0.34191, + 0.31674, + 0.24309, + 0.21216, + 0.24638, + 0.26679, + 0.23529, + 0.26085, + 0.33026, + 0.33277, + 0.39191, + 0.41807, + 0.33164, + 0.18638, + 0.19418, + 0.29066, + 0.27532, + 0.17624, + 0.26986, + 0.32809, + 0.49415, + 0.58587, + 0.44255, + 0.46863, + 0.41266, + 0.31938, + 0.28325, + 0.17182, + 0.1684, + 0.11801, + 0.10034, + 0.11208, + 0.09618, + 0.08123, + 0.13742, + 0.20211, + 0.19244, + 0.16129, + 0.12945, + 0.1814, + 0.17901, + 0.16901, + 0.255, + 0.27359, + 0.25938, + 0.26705, + 0.19951, + 0.27047, + 0.24937, + 0.21424, + 0.231, + 0.42873, + 0.20406, + 0.25245, + 0.47751, + 0.23733, + 0.25106, + 0.18764, + 0.14132, + 0.20509, + 0.22303, + 0.26116, + 0.42067, + 0.36895, + 0.25336, + 0.31379, + 0.31587, + 0.30114, + 0.31436, + 0.24933, + 0.14384, + 0.20527, + 0.21424, + 0.25648, + 0.37328, + 0.22663, + 0.18924, + 0.32995, + 0.25622, + 0.26172, + 0.34434, + 0.24214, + 0.25973, + 0.24426, + 0.15432, + 0.25674, + 0.25323, + 0.24751, + 0.24053, + 0.22013, + 0.15397, + 0.23533, + 0.1953, + 0.17269, + 0.20393, + 0.1892, + 0.19461, + 0.3699, + 0.30487, + 0.22247, + 0.2005, + 0.34993, + 0.62746, + 0.4718, + 0.414, + 0.4721, + 0.53687, + 0.60367, + 0.61004, + 0.5587, + 0.43683, + 0.47786, + 0.53466, + 0.65025, + 0.54913, + 0.55186, + 0.69938, + 0.35196, + 0.44268, + 0.43267, + 0.57049, + 0.57174, + 0.56252, + 0.65913, + 0.62243, + 0.89598, + 0.54514, + 0.48193, + 0.58981, + 0.47383, + 0.40776, + 0.57153, + 0.72962, + 0.55909, + 0.6762, + 0.6058, + 0.53067, + 0.65571, + 0.73529, + 0.68309, + 0.61009, + 0.69322, + 0.5386, + 0.88749, + 0.92249, + 0.46053, + 0.69145, + 0.64392, + 0.75604, + 0.76198, + 0.64141, + 0.44866, + 0.47907, + 0.43272, + 0.77255, + 0.6671, + 0.49502, + 0.59912, + 0.84525, + 0.77229, + 0.69769, + 0.64721, + 0.59462, + 0.48982, + 0.55645, + 0.51794, + 0.45187, + 0.47002, + 0.54038, + 0.63669, + 0.61481, + 0.81093, + 0.77155, + 0.52326, + 0.50663, + 0.52218, + 0.52708, + 0.61957, + 0.54077, + 0.59891, + 0.79135, + 0.73949, + 0.93215, + 0.58136, + 0.72975, + 0.67568, + 0.56585, + 0.46175, + 0.52929, + 0.70648, + 0.58478, + 0.64466, + 0.61884, + 0.62815, + 0.60328, + 0.64687, + 0.46673, + 0.5107, + 0.53184, + 0.44983, + 0.42765, + 0.42475, + 0.44078, + 0.57205, + 0.59289, + 0.4744, + 0.54319, + 0.58899, + 0.56516, + 0.37744, + 0.29547, + 0.51915, + 0.40984, + 0.38099, + 0.42332, + 0.49272, + 0.48913, + 0.63417, + 0.67975, + 0.32354, + 0.28485, + 0.39433, + 0.28485, + 0.25548, + 0.1927, + 0.21094, + 0.19903, + 0.15103, + 0.12867, + 0.0873, + 0.08123, + 0.08413, + 0.06191, + 0.06399, + 0.06642, + 0.07751, + 0.08387, + 0.06533, + 0.0568, + 0.04783, + 0.06624, + 0.07902, + 0.06395, + 0.0831, + 0.05294, + 0.05368, + 0.06135, + 0.19123, + 0.20228, + 0.21263, + 0.26051, + 0.30387, + 0.30613, + 0.29213, + 0.28971, + 0.24452, + 0.24331, + 0.28351, + 0.25483, + 0.26999, + 0.27103, + 0.26679, + 0.25591, + 0.28403, + 0.26042, + 0.26848, + 0.30049, + 0.2164, + 0.25236, + 0.2018, + 0.26129, + 0.24409, + 0.31769, + 0.27372, + 0.31644, + 0.30951, + 0.31904, + 0.38151, + 0.29235, + 0.28152, + 0.2307, + 0.25266, + 0.27714, + 0.27563, + 0.30682, + 0.35209, + 0.3319, + 0.32528, + 0.24218, + 0.29893, + 0.30868, + 0.28542, + 0.28992, + 0.32541, + 0.28702, + 0.30868, + 0.26536, + 0.27684, + 0.29681, + 0.29733, + 0.28503, + 0.27437, + 0.28464, + 0.27866, + 0.23837, + 0.30738, + 0.28607, + 0.40127, + 0.50074, + 0.37973, + 0.38381, + 0.42856, + 0.42761, + 0.35681, + 0.34594, + 0.40802, + 0.35552, + 0.36565, + 0.42106, + 0.44247, + 0.44511, + 0.33117, + 0.35084, + 0.36535, + 0.35452, + 0.32441, + 0.34477, + 0.33242, + 0.32744, + 0.2028, + 0.1755, + 0.19487, + 0.27979, + 0.39797, + 0.47193, + 0.51239, + 0.55238, + 0.5269, + 0.427, + 0.22788, + 0.21562, + 0.16064, + 0.22572, + 0.28178, + 0.30431, + 0.29789, + 0.25713, + 0.25193, + 0.30717, + 0.32805, + 0.28061, + 0.26765, + 0.2625, + 0.29976, + 0.28005, + 0.27862, + 0.29049, + 0.24469, + 0.29937, + 0.35876, + 0.43978, + 0.47669, + 0.39039, + 0.40092, + 0.32545, + 0.31154, + 0.31531, + 0.439, + 0.51759, + 0.43527, + 0.43484, + 0.39186, + 0.35196, + 0.36357, + 0.33983, + 0.34889, + 0.50403, + 0.43545, + 0.35118, + 0.34113, + 0.19309, + 0.17104, + 0.45637, + 0.3712, + 0.18439, + 0.25895, + 0.18153, + 0.27532, + 0.33229, + 0.28091, + 0.1528, + 0.15822, + 0.11767, + 0.09458, + 0.06958, + 0.06854, + 0.17191, + 0.17854, + 0.18101, + 0.23889, + 0.18868, + 0.20548, + 0.35738, + 0.22671, + 0.049, + 0.04696, + 0.04839, + 0.03483, + 0.04501, + 0.03981, + 0.03778, + 0.03241, + 0.02526, + 0.01906, + 0.01044, + 0.00849, + 0.00468, + 0.00451, + 0.00624, + 0.00741, + 0.00477, + 0.01256, + 0.01131, + 0.01222, + 0.02253, + 0.04471, + 0.03817, + 0.03041, + 0.02682, + 0.01828, + 0.02274, + 0.03449, + 0.0279, + 0.02898, + 0.01789, + 0.0185, + 0.01317, + 0.01469, + 0.01347, + 0.01733, + 0.0253, + 0.02625, + 0.02192, + 0.01802, + 0.02106, + 0.00927, + 0.00745, + 0.01321, + 0.01066, + 0.00741, + 0.00758, + 0.00559, + 0.00758, + 0.00966, + 0.0081, + 0.00477, + 0.00788, + 0.0055, + 0.00702, + 0.00728, + 0.00832, + 0.00901, + 0.01022, + 0.00901, + 0.01174, + 0.01061, + 0.0094, + 0.00827, + 0.00702, + 0.00801, + 0.00485, + 0.00451, + 0.00373, + 0.0039, + 0.0039, + 0.00295, + 0.00169, + 0.00204, + 0.00108, + 0.00087, + 0.00078, + 0.00052, + 0.00017, + 0.00013, + 0.00017, + 0.00013, + 0.00009, + 0.00004, + 0.00004, + 0.00004, + 0.00009, + 0.00009, + 0.00017, + 0.00013, + 0.00017, + 0.00004, + 0.00009, + 0.00009, + 0.00004, + 0.00004, + 0.00009, + 0.00013, + 0.00013, + 0.00004, + 0.00013, + 0.00004, + 0, + ], + unstable__sensitivity: [], + }, + { + id: '4a17fc61-cf96-4841-b183-731db2e65559', + title: 'Art House', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1877797', + url: 'https://prod-1.storage.jamendo.com/?trackid=1877797&format=mp32', + creator: 'Serge Quadrado', + creator_url: 'https://www.jamendo.com/artist/457603/Serge_Quadrado', + license: 'by-nc-nd', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'filmscore', + 'jazz', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'cinematic', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'instrumental', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'piano', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'sad', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'strange', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'strings', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Art House" by Serge Quadrado is licensed under CC BY-NC-ND 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'Simple Jazz', + foreign_landing_url: 'https://www.jamendo.com/album/450618/simple-jazz', + creator: 'Serge Quadrado', + creator_url: 'https://www.jamendo.com/artist/457603/Serge_Quadrado', + url: null, + filesize: null, + filetype: null, + }, + duration: 92000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/4a17fc61-cf96-4841-b183-731db2e65559/thumb/', + detail_url: 'http://localhost:49153/v1/audio/4a17fc61-cf96-4841-b183-731db2e65559/', + related_url: 'http://localhost:49153/v1/audio/4a17fc61-cf96-4841-b183-731db2e65559/related/', + waveform: 'http://localhost:49153/v1/audio/4a17fc61-cf96-4841-b183-731db2e65559/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'c95fc436-8afe-478c-bab7-01f8d808ecaf', + title: 'Ancient art of magic', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1299773', + url: 'https://prod-1.storage.jamendo.com/?trackid=1299773&format=mp32', + creator: 'Everlasting Dream', + creator_url: 'https://www.jamendo.com/artist/432182/Everlasting_Dream', + license: 'by-nc-sa', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'classical', + 'filmscore', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'classica', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'instrumental', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'orchestra', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Ancient art of magic" by Everlasting Dream is licensed under CC BY-NC-SA 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'Echoes from the past [2015 Remaster Edition]', + foreign_landing_url: 'https://www.jamendo.com/album/154698/echoes-from-the-past-2015-remaster-edition', + creator: 'Everlasting Dream', + creator_url: 'https://www.jamendo.com/artist/432182/Everlasting_Dream', + url: null, + filesize: null, + filetype: null, + }, + duration: 111000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/c95fc436-8afe-478c-bab7-01f8d808ecaf/thumb/', + detail_url: 'http://localhost:49153/v1/audio/c95fc436-8afe-478c-bab7-01f8d808ecaf/', + related_url: 'http://localhost:49153/v1/audio/c95fc436-8afe-478c-bab7-01f8d808ecaf/related/', + waveform: 'http://localhost:49153/v1/audio/c95fc436-8afe-478c-bab7-01f8d808ecaf/waveform/', + peaks: [ + 0.13715, + 0.10062, + 0.06183, + 0.06912, + 0.16755, + 0.1034, + 0.04422, + 0.24204, + 0.26222, + 0.12781, + 0.07971, + 0.0517, + 0.03253, + 0.02646, + 0.12372, + 0.23347, + 0.14698, + 0.06735, + 0.04859, + 0.03656, + 0.02539, + 0.01425, + 0.1926, + 0.21494, + 0.15229, + 0.069, + 0.05902, + 0.03507, + 0.01526, + 0.02988, + 0.17307, + 0.10556, + 0.06406, + 0.07114, + 0.21738, + 0.11917, + 0.04169, + 0.26423, + 0.24143, + 0.20252, + 0.10541, + 0.05994, + 0.03211, + 0.02106, + 0.02075, + 0.19553, + 0.20374, + 0.09647, + 0.05387, + 0.03458, + 0.01556, + 0.01382, + 0.13083, + 0.16813, + 0.1298, + 0.05655, + 0.03235, + 0.03409, + 0.01526, + 0.01056, + 0.1789, + 0.11359, + 0.06507, + 0.67696, + 0.84115, + 0.56508, + 0.49385, + 0.92004, + 0.92022, + 0.59532, + 0.53536, + 0.72173, + 0.69774, + 0.67986, + 0.36665, + 0.8218, + 0.57433, + 0.40284, + 0.32066, + 0.20823, + 0.2168, + 0.2349, + 0.74264, + 0.53981, + 0.22352, + 0.37596, + 0.24485, + 0.16767, + 0.13303, + 0.15577, + 0.69576, + 0.46886, + 0.365, + 0.15412, + 0.24815, + 0.17344, + 0.16639, + 0.3451, + 0.27033, + 0.25953, + 0.18223, + 0.08158, + 0.06607, + 0.06146, + 0.03421, + 0.20295, + 0.19419, + 0.10605, + 0.07282, + 0.04764, + 0.02054, + 0.01654, + 0.13382, + 0.1702, + 0.12485, + 0.05747, + 0.03629, + 0.03766, + 0.01669, + 0.01373, + 0.32041, + 0.18964, + 0.23399, + 0.76299, + 0.84777, + 0.61806, + 0.50246, + 0.85723, + 0.90643, + 0.63021, + 0.58821, + 0.79989, + 0.69735, + 0.71484, + 0.37715, + 0.83923, + 0.57784, + 0.43666, + 0.47642, + 0.30976, + 0.2609, + 0.23453, + 0.73537, + 0.62365, + 0.25855, + 0.43999, + 0.42827, + 0.23371, + 0.19498, + 0.17206, + 0.71422, + 0.56218, + 0.43892, + 0.32612, + 0.29737, + 0.24021, + 0.27375, + 0.34745, + 0.31895, + 0.3665, + 0.20978, + 0.41697, + 0.25477, + 0.21821, + 0.31458, + 0.48946, + 0.43959, + 0.24934, + 0.36048, + 0.27885, + 0.23249, + 0.1916, + 0.35371, + 0.39735, + 0.26872, + 0.24387, + 0.30131, + 0.24628, + 0.20389, + 0.17991, + 0.31617, + 0.18296, + 0.23276, + 0.79379, + 0.88482, + 0.58931, + 0.46178, + 0.86676, + 0.88888, + 0.6371, + 0.57219, + 0.94021, + 0.81176, + 0.75716, + 0.536, + 0.93048, + 0.66234, + 0.42439, + 0.53844, + 0.48744, + 0.31773, + 0.27671, + 0.95651, + 0.73946, + 0.55358, + 0.55705, + 0.77804, + 0.38606, + 0.65993, + 0.35347, + 0.90188, + 0.62539, + 0.50313, + 0.55968, + 0.47429, + 0.36741, + 0.30796, + 0.65978, + 0.43867, + 0.348, + 0.22077, + 0.83132, + 0.57219, + 0.29063, + 0.37919, + 0.84176, + 0.48927, + 0.26252, + 0.36271, + 0.27555, + 0.22227, + 0.19852, + 0.33772, + 0.38908, + 0.26707, + 0.23441, + 0.30409, + 0.24586, + 0.21146, + 0.18305, + 0.37867, + 0.20978, + 0.24522, + 0.77929, + 0.8428, + 0.52849, + 0.50331, + 0.85131, + 0.81347, + 0.63921, + 0.5674, + 0.89227, + 0.90899, + 0.68578, + 0.51741, + 0.92264, + 0.59246, + 0.39097, + 0.54488, + 0.70486, + 0.4622, + 0.26823, + 0.90628, + 0.74651, + 0.57628, + 0.5732, + 0.71023, + 0.46901, + 0.6234, + 0.3469, + 0.87503, + 0.61534, + 0.51637, + 0.64782, + 0.54521, + 0.35362, + 0.31941, + 0.68969, + 0.5837, + 0.38536, + 0.3661, + 0.80074, + 0.57271, + 0.3003, + 0.41432, + 0.8255, + 0.48326, + 0.26399, + 0.4897, + 0.54543, + 0.28159, + 0.22025, + 0.66198, + 0.67455, + 0.35276, + 0.3318, + 0.68563, + 0.58095, + 0.40522, + 0.32994, + 0.80099, + 0.58626, + 0.35743, + 0.8464, + 0.84429, + 0.6906, + 0.42149, + 0.84051, + 0.88858, + 0.67916, + 0.59713, + 0.92395, + 0.86264, + 0.87851, + 0.45744, + 0.91067, + 0.58785, + 0.3863, + 0.60326, + 0.70885, + 0.42833, + 0.29676, + 0.8858, + 0.80703, + 0.55367, + 0.52376, + 0.74718, + 0.46229, + 0.64223, + 0.31867, + 0.89465, + 0.6997, + 0.49623, + 0.64669, + 0.60591, + 0.35948, + 0.34684, + 0.73721, + 0.62935, + 0.38719, + 0.31648, + 0.82168, + 0.56502, + 0.29255, + 0.39158, + 0.82336, + 0.45637, + 0.27149, + 0.52385, + 0.485, + 0.37703, + 0.28758, + 0.64727, + 0.64116, + 0.42048, + 0.30915, + 0.80071, + 0.52089, + 0.45482, + 0.32627, + 0.82525, + 0.67083, + 0.33863, + 0.77783, + 0.87002, + 0.55895, + 0.53545, + 0.91192, + 0.8269, + 0.64962, + 0.57271, + 0.91479, + 0.91818, + 0.68624, + 0.60201, + 0.90933, + 0.62273, + 0.50542, + 0.43672, + 0.627, + 0.51006, + 0.42943, + 0.84503, + 0.85867, + 0.49413, + 0.45564, + 0.73522, + 0.42381, + 0.66506, + 0.3047, + 0.92874, + 0.55843, + 0.45888, + 0.55766, + 0.59325, + 0.32884, + 0.33259, + 0.83206, + 0.61217, + 0.35752, + 0.36955, + 0.80148, + 0.5533, + 0.31254, + 0.35206, + 0.83236, + 0.57326, + 0.31547, + 0.37346, + 0.3881, + 0.26951, + 0.24104, + 0.82369, + 0.73547, + 0.39943, + 0.31333, + 0.6339, + 0.49535, + 0.33064, + 0.34535, + 0.90255, + 0.63259, + 0.70751, + 0.84115, + 0.87219, + 0.74364, + 0.57073, + 0.92706, + 0.90948, + 0.81512, + 0.66579, + 0.92673, + 0.78527, + 0.70794, + 0.46211, + 0.88128, + 0.82196, + 0.62569, + 0.5873, + 0.60582, + 0.53523, + 0.40696, + 0.85086, + 0.71139, + 0.67208, + 0.51506, + 0.86483, + 0.87063, + 0.67574, + 0.62685, + 0.87899, + 0.75356, + 0.96426, + 0.63341, + 0.87634, + 0.71847, + 0.70382, + 0.90503, + 0.7141, + 0.69253, + 0.5989, + 0.80151, + 0.76568, + 0.56206, + 0.4019, + 0.84118, + 0.87158, + 0.90936, + 0.61913, + 0.53343, + 0.62581, + 0.55043, + 0.88717, + 0.71743, + 0.39967, + 0.45067, + 0.8106, + 0.70589, + 0.58068, + 0.76867, + 0.85781, + 0.73922, + 0.72622, + 0.85195, + 0.87234, + 0.74941, + 0.55867, + 0.88855, + 0.92053, + 0.8038, + 0.65493, + 0.92666, + 0.79067, + 0.68255, + 0.47661, + 0.88995, + 0.82852, + 0.60958, + 0.58324, + 0.5905, + 0.51894, + 0.41527, + 0.8002, + 0.77795, + 0.66552, + 0.52113, + 0.8659, + 0.85821, + 0.67205, + 0.61226, + 1, + 0.70312, + 0.89221, + 0.70125, + 0.86898, + 0.7217, + 0.70293, + 0.86996, + 0.71651, + 0.69204, + 0.58013, + 0.79489, + 0.7626, + 0.57024, + 0.40968, + 0.87527, + 0.85543, + 0.90579, + 0.61266, + 0.56475, + 0.64125, + 0.64214, + 0.8388, + 0.72652, + 0.40468, + 0.41707, + 0.89959, + 0.76684, + 0.61232, + 0.79415, + 0.88232, + 0.78622, + 0.69076, + 0.80349, + 0.87924, + 0.73739, + 0.5634, + 0.88055, + 0.94229, + 0.82479, + 0.69887, + 0.91604, + 0.8334, + 0.74581, + 0.55974, + 0.93161, + 0.84689, + 0.63713, + 0.6191, + 0.54955, + 0.63106, + 0.51579, + 0.89529, + 0.81802, + 0.61138, + 0.52544, + 0.90368, + 0.86416, + 0.84442, + 0.70913, + 0.93179, + 0.75347, + 0.86657, + 0.77407, + 0.89175, + 0.7401, + 0.74114, + 0.89956, + 0.78683, + 0.6578, + 0.58818, + 0.92053, + 0.75045, + 0.62087, + 0.507, + 0.86462, + 0.85986, + 0.8898, + 0.67745, + 0.64681, + 0.67318, + 0.75497, + 0.72152, + 0.71068, + 0.63784, + 0.72286, + 0.91986, + 0.81246, + 0.82949, + 0.80285, + 0.89935, + 0.70104, + 0.88281, + 0.83203, + 0.72634, + 0.81527, + 0.7553, + 0.88644, + 0.96188, + 0.88928, + 0.80361, + 0.95926, + 0.80813, + 0.78072, + 0.67064, + 0.89196, + 0.72918, + 0.65673, + 0.63585, + 0.62484, + 0.63009, + 0.70708, + 0.86859, + 0.80328, + 0.75329, + 0.63552, + 0.90295, + 0.86914, + 0.81069, + 0.82534, + 0.98096, + 0.76992, + 0.86608, + 0.78808, + 0.91842, + 0.7419, + 0.80581, + 0.9035, + 0.65816, + 0.73257, + 0.74633, + 0.85391, + 0.71892, + 0.65221, + 0.50694, + 0.88702, + 0.83535, + 0.88089, + 0.6632, + 0.64473, + 0.6545, + 0.75188, + 0.79064, + 0.78088, + 0.47813, + 0.50691, + 0.87942, + 0.77648, + 0.63576, + 0.79315, + 0.91748, + 0.80297, + 0.71221, + 0.81768, + 0.86193, + 0.73528, + 0.6596, + 0.87857, + 0.94769, + 0.92788, + 0.87115, + 0.94101, + 0.80242, + 0.82879, + 0.54714, + 0.90033, + 0.8012, + 0.75304, + 0.62227, + 0.62569, + 0.77044, + 0.75225, + 0.90603, + 0.78378, + 0.68068, + 0.6599, + 0.94052, + 0.92279, + 0.90808, + 0.68096, + 0.96277, + 0.78686, + 0.86111, + 0.82791, + 0.87088, + 0.84405, + 0.7376, + 0.90457, + 0.65239, + 0.74447, + 0.71184, + 0.82202, + 0.70049, + 0.64312, + 0.53523, + 0.80419, + 0.88363, + 0.93591, + 0.69246, + 0.64068, + 0.66231, + 0.71157, + 0.81558, + 0.81692, + 0.52733, + 0.5081, + 0.90258, + 0.75982, + 0.63128, + 0.83728, + 0.88589, + 0.7904, + 0.69909, + 0.81378, + 0.85885, + 0.7517, + 0.66134, + 0.83059, + 0.96973, + 0.8731, + 0.8699, + 0.92938, + 0.86041, + 0.83621, + 0.68316, + 0.86706, + 0.76211, + 0.64287, + 0.62746, + 0.61406, + 0.78784, + 0.74709, + 0.84774, + 0.75997, + 0.6621, + 0.60192, + 0.92026, + 0.83093, + 0.87371, + 0.69173, + 0.92746, + 0.82418, + 0.91461, + 0.78878, + 0.85833, + 0.79376, + 0.77111, + 0.89511, + 0.67312, + 0.74496, + 0.63546, + 0.87524, + 0.72063, + 0.61443, + 0.47533, + 0.82827, + 0.8663, + 0.89508, + 0.67266, + 0.67412, + 0.66167, + 0.70522, + 0.7705, + 0.73287, + 0.44459, + 0.4955, + 0.90994, + 0.75353, + 0.64858, + 0.78329, + 0.93554, + 0.78213, + 0.69298, + 0.80471, + 0.83999, + 0.72768, + 0.66942, + 0.86059, + 0.91861, + 0.85571, + 0.87707, + 0.96609, + 0.80206, + 0.77456, + 0.58977, + 0.84433, + 0.81048, + 0.73074, + 0.66601, + 0.59029, + 0.55931, + 0.61998, + 0.93191, + 0.785, + 0.6823, + 0.56923, + 0.79937, + 0.82455, + 0.67751, + 0.82794, + 0.90088, + 0.79077, + 0.76467, + 0.65963, + 0.93841, + 0.70486, + 0.70681, + 0.92502, + 0.78954, + 0.70363, + 0.6505, + 0.86251, + 0.71987, + 0.60707, + 0.54738, + 0.85376, + 0.79974, + 0.77319, + 0.60527, + 0.54424, + 0.61617, + 0.84802, + 0.77963, + 0.73739, + 0.48515, + 0.55358, + 0.71047, + 0.53853, + 0.39906, + 0.37303, + 0.74816, + 0.60445, + 0.38133, + 0.81222, + 0.76714, + 0.64171, + 0.49532, + 0.91339, + 0.91787, + 0.72686, + 0.62862, + 0.81579, + 0.74545, + 0.71618, + 0.35289, + 0.85305, + 0.78622, + 0.67919, + 0.52116, + 0.40886, + 0.50331, + 0.35044, + 0.72741, + 0.57585, + 0.38041, + 0.36424, + 0.42006, + 0.41261, + 0.20515, + 0.22159, + 0.73098, + 0.55269, + 0.48854, + 0.49898, + 0.91751, + 0.6411, + 0.45814, + 0.85195, + 0.87625, + 0.44072, + 0.27573, + 0.65819, + 0.68325, + 0.52, + 0.3271, + 0.87933, + 0.71145, + 0.61449, + 0.49983, + 0.3885, + 0.46852, + 0.36848, + 0.40181, + 0.3964, + 0.3086, + 0.25388, + 0.32408, + 0.27464, + 0.22578, + 0.18894, + 0.49358, + 0.37361, + 0.25806, + 0.81774, + 0.73858, + 0.62908, + 0.51018, + 0.93915, + 0.92193, + 0.74273, + 0.6527, + 0.81564, + 0.74731, + 0.71822, + 0.35774, + 0.845, + 0.79052, + 0.68126, + 0.51387, + 0.40611, + 0.506, + 0.35011, + 0.72921, + 0.5793, + 0.37144, + 0.36628, + 0.4192, + 0.41063, + 0.2075, + 0.22553, + 0.73882, + 0.54729, + 0.49376, + 0.50117, + 0.92236, + 0.63665, + 0.4604, + 0.8475, + 0.8829, + 0.44066, + 0.27284, + 0.65535, + 0.68355, + 0.52126, + 0.32832, + 0.90182, + 0.70482, + 0.62755, + 0.48573, + 0.41084, + 0.47868, + 0.41194, + 0.35667, + 0.37547, + 0.28788, + 0.36076, + 0.46001, + 0.58632, + 0.7824, + 0.65651, + 0.67598, + 0.66143, + 0.57796, + 0.63286, + 0.56981, + 0.43413, + 0.39348, + 0.44438, + 0.35963, + 0.33656, + 0.266, + 0.37681, + 0.26707, + 0.22709, + 0.19681, + 0.3693, + 0.26746, + 0.25153, + 0.34144, + 0.26868, + 0.18906, + 0.16541, + 0.37297, + 0.31242, + 0.2298, + 0.16297, + 0.35755, + 0.18509, + 0.11139, + 0.07953, + 0.382, + 0.26518, + 0.22727, + 0.27342, + 0.30692, + 0.1951, + 0.18387, + 0.23814, + 0.26899, + 0.19663, + 0.19044, + 0.37138, + 0.23472, + 0.1916, + 0.32347, + 0.42503, + 0.33363, + 0.23579, + 0.39515, + 0.28016, + 0.23807, + 0.19141, + 0.3469, + 0.33158, + 0.24769, + 0.24537, + 0.30329, + 0.24018, + 0.2096, + 0.18256, + 0.29575, + 0.2566, + 0.32545, + 0.46498, + 0.40419, + 0.34019, + 0.30671, + 0.35057, + 0.38752, + 0.29283, + 0.28224, + 0.5013, + 0.29826, + 0.31742, + 0.28986, + 0.48674, + 0.35264, + 0.30479, + 0.39921, + 0.38185, + 0.34874, + 0.33863, + 0.40889, + 0.39595, + 0.35102, + 0.33927, + 0.32594, + 0.29493, + 0.26371, + 0.24046, + 0.4756, + 0.48579, + 0.45125, + 0.57567, + 0.58525, + 0.51311, + 0.52718, + 0.46828, + 0.41713, + 0.42265, + 0.31883, + 0.3712, + 0.3061, + 0.30799, + 0.44185, + 0.47761, + 0.39113, + 0.31898, + 0.48442, + 0.30851, + 0.258, + 0.23246, + 0.23853, + 0.28996, + 0.20789, + 0.17457, + 0.56282, + 0.45848, + 0.33723, + 0.30348, + 0.63268, + 0.71047, + 0.5204, + 0.4351, + 0.39756, + 0.25721, + 0.25285, + 0.14628, + 0.16636, + 0.10529, + 0.0712, + 0.05094, + 0.04398, + 0.02973, + 0.01831, + 0.01688, + 0.01019, + 0.00922, + 0.00372, + 0.00284, + 0.00201, + 0.00085, + 0.00211, + 0.0014, + 0.00089, + 0.00073, + 0.00058, + 0.00049, + 0.00052, + 0.00037, + 0.00015, + ], + unstable__sensitivity: [], + }, + { + id: '67b8bcb4-6560-4a2e-b853-b237f7f3ab91', + title: 'Art Gallery Crowd Noise', + indexed_on: '2022-08-01T10:21:55.203678Z', + foreign_landing_url: 'https://freesound.org/people/Ev-Dawg/sounds/435515', + url: 'https://cdn.freesound.org/previews/435/435515_1772601-hq.mp3', + creator: 'Ev-Dawg', + creator_url: 'https://freesound.org/people/Ev-Dawg', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 2888736, + filetype: 'mp3', + tags: [ + { + name: 'ambience', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'art', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'busy', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'conversation', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'crowd', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'drone', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'gallery', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'hall', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'indoor', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'large', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'loud', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'mingle', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'mingling', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'new', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'open', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'opening', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'people', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'room', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'show', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'showcase', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'showing', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'shows', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'talk', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'talking', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'talks', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'voice', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'voices', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/435515/download/', + bit_rate: 0, + filesize: 37117582, + filetype: 'wav', + sample_rate: 48000, + }, + ], + attribution: '"Art Gallery Crowd Noise" by Ev-Dawg is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 128877, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/67b8bcb4-6560-4a2e-b853-b237f7f3ab91/', + related_url: 'http://localhost:49153/v1/audio/67b8bcb4-6560-4a2e-b853-b237f7f3ab91/related/', + waveform: 'http://localhost:49153/v1/audio/67b8bcb4-6560-4a2e-b853-b237f7f3ab91/waveform/', + peaks: [ + 0.57164, + 0.62709, + 0.44877, + 0.52514, + 0.59722, + 0.63074, + 0.54273, + 0.36267, + 0.40521, + 0.40981, + 0.34566, + 0.5845, + 0.36888, + 0.36331, + 0.30267, + 0.27344, + 0.34649, + 0.36139, + 0.59153, + 0.4755, + 0.47461, + 0.34092, + 0.29756, + 0.18997, + 0.22278, + 0.26954, + 0.32289, + 0.37809, + 0.34252, + 0.29257, + 0.32103, + 0.45337, + 0.36715, + 0.41902, + 0.47748, + 0.35755, + 0.44819, + 0.40988, + 0.32186, + 0.38423, + 0.30517, + 0.43501, + 0.39241, + 0.33529, + 0.31387, + 0.43924, + 0.27613, + 0.37693, + 0.29749, + 0.24837, + 0.23289, + 0.40226, + 0.26871, + 0.2215, + 0.27012, + 0.23724, + 0.21025, + 0.30517, + 0.22272, + 0.23506, + 0.38934, + 0.26084, + 0.27696, + 0.3012, + 0.37713, + 0.28668, + 0.36708, + 0.31687, + 0.37623, + 0.33267, + 0.29756, + 0.28822, + 0.23315, + 0.27095, + 0.40361, + 0.43917, + 0.25246, + 0.41154, + 0.45868, + 0.26065, + 0.28329, + 0.33453, + 0.44077, + 0.8958, + 1, + 0.41474, + 0.44275, + 0.37476, + 0.31054, + 0.21965, + 0.27472, + 0.34783, + 0.51817, + 0.38499, + 0.33069, + 0.33216, + 0.41256, + 0.56045, + 0.5339, + 0.46463, + 0.51107, + 0.47748, + 0.50115, + 0.38915, + 0.40981, + 0.41116, + 0.48164, + 0.54164, + 0.34892, + 0.34169, + 0.34937, + 0.42139, + 0.36536, + 0.31649, + 0.44339, + 0.44992, + 0.4141, + 0.38576, + 0.49373, + 0.39497, + 0.29877, + 0.43533, + 0.37943, + 0.55885, + 0.52028, + 0.47256, + 0.40802, + 0.3761, + 0.47768, + 0.42823, + 0.36734, + 0.43962, + 0.33926, + 0.29852, + 0.43584, + 0.36862, + 0.45312, + 0.42657, + 0.30549, + 0.38256, + 0.224, + 0.23737, + 0.24869, + 0.23123, + 0.27818, + 0.2918, + 0.31726, + 0.33907, + 0.29615, + 0.28515, + 0.30997, + 0.39043, + 0.27696, + 0.42158, + 0.41224, + 0.32979, + 0.35883, + 0.31598, + 0.33747, + 0.33043, + 0.30114, + 0.34988, + 0.33504, + 0.2879, + 0.41736, + 0.35039, + 0.29244, + 0.28003, + 0.28291, + 0.26417, + 0.25828, + 0.22649, + 0.35672, + 0.2815, + 0.38448, + 0.30888, + 0.35391, + 0.35013, + 0.4038, + 0.38128, + 0.37227, + 0.27395, + 0.23263, + 0.25144, + 0.4393, + 0.328, + 0.37118, + 0.4244, + 0.51836, + 0.46923, + 0.2783, + 0.25272, + 0.27421, + 0.4029, + 0.28655, + 0.35116, + 0.37508, + 0.2783, + 0.3461, + 0.30709, + 0.29461, + 0.24485, + 0.41416, + 0.61437, + 0.75451, + 0.66311, + 0.58021, + 0.76206, + 0.84003, + 0.56057, + 0.52373, + 0.58047, + 0.52488, + 0.4764, + 0.74306, + 0.61993, + 0.62761, + 0.76436, + 0.60733, + 0.62159, + 0.39273, + 0.38704, + 0.32417, + 0.32423, + 0.41992, + 0.24715, + 0.33971, + 0.31815, + 0.24869, + 0.37713, + 0.43623, + 0.38244, + 0.36107, + 0.31016, + 0.67398, + 0.34163, + 0.66247, + 0.32736, + 0.38116, + 0.2217, + 0.33082, + 0.34655, + 0.32301, + 0.37975, + 0.38749, + 0.6688, + 0.45574, + 0.68799, + 0.62633, + 0.37073, + 0.38071, + 0.61366, + 0.55731, + 0.48209, + 0.47627, + 0.3564, + 0.40009, + 0.56441, + 0.70289, + 0.50262, + 0.47416, + 0.45241, + 0.42126, + 0.59204, + 0.37143, + 0.60522, + 0.65249, + 0.63714, + 0.76391, + 0.61091, + 0.5978, + 0.35288, + 0.42376, + 0.4661, + 0.40175, + 0.53831, + 0.66854, + 0.40533, + 0.43239, + 0.51458, + 0.41052, + 0.53915, + 0.50665, + 0.49488, + 0.48529, + 0.35717, + 0.4709, + 0.58462, + 0.51567, + 0.52706, + 0.44793, + 0.56857, + 0.5797, + 0.41813, + 0.43719, + 0.33888, + 0.52776, + 0.44493, + 0.634, + 0.47755, + 0.43009, + 0.41921, + 0.49853, + 0.42938, + 0.36472, + 0.35244, + 0.36401, + 0.35653, + 0.39203, + 0.42638, + 0.38883, + 0.31745, + 0.35922, + 0.45324, + 0.48644, + 0.4306, + 0.5584, + 0.47314, + 0.41595, + 0.37521, + 0.34515, + 0.31534, + 0.28214, + 0.34949, + 0.32391, + 0.40828, + 0.49495, + 0.46527, + 0.25259, + 0.47147, + 0.41167, + 0.26385, + 0.30805, + 0.30203, + 0.30715, + 0.38276, + 0.41557, + 0.36952, + 0.37783, + 0.30638, + 0.35691, + 0.40354, + 0.33996, + 0.40585, + 0.4725, + 0.28131, + 0.23487, + 0.29615, + 0.23692, + 0.34412, + 0.29877, + 0.31387, + 0.38755, + 0.2911, + 0.33984, + 0.3548, + 0.38512, + 0.36337, + 0.31252, + 0.33773, + 0.46591, + 0.49418, + 0.43866, + 0.4764, + 0.37329, + 0.46763, + 0.43169, + 0.58059, + 0.29058, + 0.31643, + 0.35039, + 0.32647, + 0.30658, + 0.36715, + 0.2586, + 0.39696, + 0.31866, + 0.23596, + 0.24376, + 0.3802, + 0.28029, + 0.33197, + 0.22803, + 0.35212, + 0.24997, + 0.43226, + 0.3619, + 0.23347, + 0.26807, + 0.29212, + 0.34949, + 0.53243, + 0.40111, + 0.30312, + 0.25189, + 0.26442, + 0.35052, + 0.29743, + 0.35666, + 0.35992, + 0.36593, + 0.37905, + 0.49495, + 0.25406, + 0.26327, + 0.32525, + 0.29884, + 0.32999, + 0.31336, + 0.30012, + 0.30351, + 0.24818, + 0.2499, + 0.42651, + 0.35839, + 0.36331, + 0.37566, + 0.33939, + 0.33536, + 0.36817, + 0.34457, + 0.38864, + 0.39107, + 0.44557, + 0.45286, + 0.295, + 0.30319, + 0.31527, + 0.28521, + 0.41455, + 0.42165, + 0.28125, + 0.25867, + 0.25272, + 0.24754, + 0.30862, + 0.32097, + 0.31188, + 0.26199, + 0.22214, + 0.42574, + 0.30395, + 0.45343, + 0.40533, + 0.29353, + 0.41301, + 0.34367, + 0.34687, + 0.25061, + 0.21888, + 0.32231, + 0.51976, + 0.41045, + 0.58552, + 0.36664, + 0.39548, + 0.41698, + 0.6166, + 0.31962, + 0.37687, + 0.45107, + 0.3218, + 0.33325, + 0.4155, + 0.44237, + 0.37853, + 0.37156, + 0.37399, + 0.52226, + 0.37495, + 0.47326, + 0.24869, + 0.2728, + 0.24997, + 0.23513, + 0.41762, + 0.24312, + 0.25502, + 0.24894, + 0.317, + 0.30453, + 0.29967, + 0.36478, + 0.41538, + 0.39369, + 0.40687, + 0.4526, + 0.42574, + 0.42843, + 0.45318, + 0.35448, + 0.41544, + 0.39548, + 0.3731, + 0.40476, + 0.23455, + 0.23679, + 0.24607, + 0.25579, + 0.22323, + 0.19247, + 0.25336, + 0.28048, + 0.28035, + 0.24792, + 0.21888, + 0.31732, + 0.25924, + 0.2499, + 0.37988, + 0.37668, + 0.38627, + 0.50652, + 0.34412, + 0.37764, + 0.28272, + 0.37681, + 0.33824, + 0.33478, + 0.42906, + 0.44941, + 0.36843, + 0.42887, + 0.42753, + 0.56013, + 0.26551, + 0.40175, + 0.39152, + 0.33434, + 0.355, + 0.47518, + 0.52277, + 0.54164, + 0.53703, + 0.38647, + 0.28994, + 0.29257, + 0.33414, + 0.30779, + 0.2414, + 0.27204, + 0.29602, + 0.31316, + 0.51132, + 0.76155, + 0.32954, + 0.34425, + 0.37566, + 0.44045, + 0.31719, + 0.38429, + 0.53652, + 0.50441, + 0.29762, + 0.40764, + 0.36222, + 0.38199, + 0.37425, + 0.36849, + 0.33312, + 0.33907, + 0.27044, + 0.27331, + 0.33063, + 0.32781, + 0.3651, + 0.37067, + 0.30696, + 0.31764, + 0.25528, + 0.27696, + 0.28003, + 0.26097, + 0.25943, + 0.27267, + 0.34156, + 0.2579, + 0.284, + 0.27402, + 0.45049, + 0.34348, + 0.3676, + 0.36043, + 0.54944, + 0.42388, + 0.4242, + 0.3422, + 0.47902, + 0.34726, + 0.24811, + 0.26142, + 0.26513, + 0.32289, + 0.35698, + 0.31911, + 0.27664, + 0.34048, + 0.27843, + 0.51183, + 0.22202, + 0.18102, + 0.21715, + 0.26865, + 0.29078, + 0.27133, + 0.29103, + 0.26398, + 0.21907, + 0.37201, + 0.3218, + 0.437, + 0.43143, + 0.27715, + 0.27786, + 0.4709, + 0.32928, + 0.47339, + 0.54573, + 0.41851, + 0.32308, + 0.2815, + 0.26193, + 0.31988, + 0.2854, + 0.26238, + 0.29916, + 0.23647, + 0.27568, + 0.25329, + 0.19087, + 0.25521, + 0.19048, + 0.25003, + 0.29551, + 0.30242, + 0.17104, + 0.19272, + 0.23078, + 0.25662, + 0.2476, + 0.20954, + 0.20852, + 0.41582, + 0.31815, + 0.34905, + 0.32506, + 0.4187, + 0.30223, + 0.17091, + 0.22675, + 0.29231, + 0.19394, + 0.21281, + 0.20129, + 0.24658, + 0.2004, + 0.26129, + 0.41192, + 0.30562, + 0.39772, + 0.29455, + 0.37393, + 0.28668, + 0.32442, + 0.22758, + 0.36843, + 0.34879, + 0.28438, + 0.34962, + 0.46111, + 0.33964, + 0.49738, + 0.27766, + 0.23871, + 0.28783, + 0.33561, + 0.41058, + 0.36376, + 0.29602, + 0.3999, + 0.5142, + 0.48036, + 0.448, + 0.47499, + 0.53569, + 0.43521, + 0.56742, + 0.47333, + 0.33625, + 0.40342, + 0.41889, + 0.38064, + 0.33952, + 0.48612, + 0.33222, + 0.32122, + 0.46648, + 0.28643, + 0.35205, + 0.35378, + 0.40003, + 0.3832, + 0.42062, + 0.46156, + 0.34201, + 0.40028, + 0.39836, + 0.30626, + 0.45324, + 0.32007, + 0.34649, + 0.2302, + 0.31994, + 0.2162, + 0.38276, + 0.3463, + 0.34495, + 0.43444, + 0.37789, + 0.30894, + 0.38954, + 0.33363, + 0.27882, + 0.25227, + 0.22828, + 0.28412, + 0.31495, + 0.27459, + 0.17622, + 0.22995, + 0.19937, + 0.25086, + 0.43437, + 0.35231, + 0.27977, + 0.26346, + 0.2247, + 0.17372, + 0.13483, + 0.21242, + 0.2272, + 0.18524, + 0.25278, + 0.33805, + 0.34067, + 0.26897, + 0.3115, + 0.25291, + 0.20155, + 0.17724, + 0.25445, + 0.24837, + 0.33133, + 0.25784, + 0.32282, + 0.25822, + 0.30805, + 0.2272, + 0.30696, + 0.22144, + 0.17321, + 0.1979, + 0.25438, + 0.21779, + 0.28598, + 0.23877, + 0.24715, + 0.2643, + 0.26135, + 0.34534, + 0.28771, + 0.28348, + 0.28847, + 0.23359, + 0.33267, + 0.27197, + 0.17935, + 0.16439, + 0.26193, + 0.24063, + 0.16803, + 0.25796, + 0.314, + 0.25835, + 0.37527, + 0.23909, + 0.17468, + 0.1381, + 0.13554, + 0.21536, + 0.19701, + 0.26596, + 0.14609, + 0.1514, + 0.18908, + 0.40047, + 0.28643, + 0.35116, + 0.33472, + 0.37566, + 0.3754, + 0.24581, + 0.42868, + 0.2824, + 0.27946, + 0.30587, + 0.24587, + 0.28598, + 0.23379, + 0.24242, + 0.29199, + 0.19496, + 0.26743, + 0.25713, + 0.41819, + 0.29218, + 0.27191, + 0.33389, + 0.39222, + 0.34834, + 0.29186, + 0.314, + 0.29122, + 0.21101, + 0.23372, + 0.24165, + 0.27869, + 0.46955, + 0.51286, + 0.36606, + 0.34195, + 0.34361, + 0.42612, + 0.31246, + 0.45503, + 0.29736, + 0.34617, + 0.25291, + 0.24894, + 0.26398, + 0.24312, + 0.34969, + 0.33926, + 0.30664, + 0.31188, + 0.27415, + 0.20468, + 0.21261, + 0.20718, + 0.25585, + 0.23411, + 0.36529, + 0.30434, + 0.29916, + 0.32417, + 0.4258, + 0.3816, + 0.29103, + 0.31105, + 0.23276, + 0.28182, + 0.24121, + 0.2201, + 0.1949, + 0.2357, + 0.34431, + 0.27146, + 0.19547, + 0.2824, + 0.29698, + 0.37757, + 0.33657, + 0.26244, + 0.25822, + 0.28553, + 0.36734, + 0.35627, + 0.41263, + 0.29615, + 0.32449, + 0.2785, + 0.23909, + 0.27581, + 0.25784, + 0.19969, + 0.15773, + 0.27408, + 0.24824, + 0.27901, + 0.26679, + 0.2517, + 0.25956, + 0.20922, + 0.25118, + 0.32487, + 0.24786, + 0.25547, + 0.20481, + 0.23059, + 0.2886, + 0.20468, + 0.11929, + 0.11961, + 0.1507, + 0.21927, + 0.16266, + 0.20084, + 0.2105, + 0.22093, + 0.14264, + 0.2373, + 0.20212, + 0.21396, + 0.19976, + 0.26155, + 0.21888, + 0.35231, + 0.3138, + 0.29161, + 0.21747, + 0.2137, + 0.20404, + 0.12927, + 0.3257, + 0.25988, + 0.23257, + 0.30312, + 0.33728, + 0.23411, + 0.17404, + 0.19291, + 0.19016, + 0.15965, + 0.17212, + 0.21197, + 0.22573, + 0.23564, + 0.23334, + 0.35416, + 0.28771, + 0.24568, + 0.22246, + 0.26871, + 0.34131, + 0.38704, + 0.37911, + 0.31495, + 0.38666, + 0.36587, + 0.3903, + 0.38634, + 0.33242, + 0.3919, + 0.3415, + 0.27415, + 0.26046, + 0.37335, + 0.20315, + 0.30792, + 0.17935, + 0.28432, + 0.24069, + 0.2499, + 0.32065, + 0.2375, + 0.20136, + 0.172, + 0.17571, + 0.12588, + 0.15908, + 0.20001, + 0.15703, + 0.29148, + 0.30453, + 0.24491, + 0.32436, + 0.2572, + 0.30095, + 0.23986, + 0.20839, + 0.20065, + 0.25189, + 0.28508, + 0.2302, + 0.23219, + 0.36062, + 0.31067, + 0.25259, + 0.39408, + 0.2902, + 0.15933, + 0.16055, + 0.40821, + 0.27415, + 0.3319, + 0.34188, + 0.36836, + 0.44186, + 0.59192, + 0.44333, + 0.47134, + 0.49885, + 0.53262, + 0.55699, + 0.47122, + 0.62729, + 0.42548, + 0.50262, + 0.4952, + 0.47755, + 0.30248, + 0.27562, + 0.25445, + 0.31061, + 0.42619, + 0.28432, + 0.36152, + 0.31962, + 0.23174, + 0.20942, + 0.24619, + 0.32967, + 0.30184, + 0.37214, + 0.33715, + 0.25144, + 0.28393, + 0.30875, + 0.27971, + 0.23558, + 0.22176, + 0.18287, + ], + unstable__sensitivity: [], + }, + { + id: 'cf7e5b75-78a7-4439-ae51-ea2944cb3035', + title: 'Fr-art', + indexed_on: '2023-11-26T18:26:56.081310Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=3045517', + url: 'https://upload.wikimedia.org/wikipedia/commons/2/20/Fr-art.ogg', + creator: 'Vion Nicolas', + creator_url: null, + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/fr/deed.en/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 14477, + filetype: 'ogg', + tags: [], + alt_files: null, + attribution: '"Fr-art" by Vion Nicolas is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/fr/deed.en/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + audio_set: null, + duration: 1150, + bit_rate: 80000, + sample_rate: 44000, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/cf7e5b75-78a7-4439-ae51-ea2944cb3035/', + related_url: 'http://localhost:49153/v1/audio/cf7e5b75-78a7-4439-ae51-ea2944cb3035/related/', + waveform: 'http://localhost:49153/v1/audio/cf7e5b75-78a7-4439-ae51-ea2944cb3035/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '7b232cab-826e-4746-9274-931515d34c29', + title: 'Sadness of the art', + indexed_on: '2022-02-24T01:34:42.275707Z', + foreign_landing_url: 'https://www.jamendo.com/track/151032', + url: 'https://prod-1.storage.jamendo.com/?trackid=151032&format=mp32', + creator: 'Torley on Piano', + creator_url: 'https://www.jamendo.com/artist/338247/Torley_on_Piano', + license: 'by-sa', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-sa/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'classical', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'instrumental', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'neutral', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'piano', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'sad', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Sadness of the art" by Torley on Piano is licensed under CC BY-SA 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'solo piano 7: Improvisations for a New Age', + foreign_landing_url: 'https://www.jamendo.com/album/21576/solo-piano-7-improvisations-for-a-new-age', + creator: 'Torley on Piano', + creator_url: 'https://www.jamendo.com/artist/338247/Torley_on_Piano', + url: null, + filesize: null, + filetype: null, + }, + duration: 140000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/7b232cab-826e-4746-9274-931515d34c29/thumb/', + detail_url: 'http://localhost:49153/v1/audio/7b232cab-826e-4746-9274-931515d34c29/', + related_url: 'http://localhost:49153/v1/audio/7b232cab-826e-4746-9274-931515d34c29/related/', + waveform: 'http://localhost:49153/v1/audio/7b232cab-826e-4746-9274-931515d34c29/waveform/', + peaks: [ + 0.47776, + 0.18276, + 0.39497, + 0.23036, + 0.52176, + 0.39044, + 0.44002, + 0.35521, + 0.28678, + 0.20311, + 0.30268, + 0.32043, + 0.35845, + 0.26171, + 0.27061, + 0.24302, + 0.29022, + 0.32723, + 0.51399, + 0.38518, + 0.33827, + 0.37184, + 0.58178, + 0.51691, + 0.58732, + 0.33584, + 0.38324, + 0.29099, + 0.38, + 0.37746, + 0.46595, + 0.40532, + 0.32338, + 0.33451, + 0.44366, + 0.44447, + 0.38571, + 0.33633, + 0.36965, + 0.26591, + 0.33115, + 0.3616, + 0.52516, + 0.39655, + 0.45826, + 0.38267, + 0.43929, + 0.65712, + 0.58008, + 0.59452, + 0.61842, + 0.61223, + 0.63314, + 0.48269, + 0.5324, + 0.43715, + 0.28027, + 0.25617, + 0.3373, + 0.34769, + 0.27639, + 0.30547, + 0.23093, + 0.48989, + 0.48799, + 0.44382, + 0.25014, + 0.25722, + 0.21581, + 0.6001, + 0.43319, + 0.35529, + 0.33944, + 0.21071, + 0.25973, + 0.32067, + 0.33629, + 0.39133, + 0.48483, + 0.36589, + 0.38324, + 0.38967, + 0.36904, + 0.69012, + 0.42676, + 0.31125, + 0.25912, + 0.43327, + 0.49215, + 0.75758, + 0.74468, + 0.59925, + 0.4266, + 0.44209, + 0.46352, + 0.61073, + 0.22304, + 0.3792, + 0.22867, + 0.5679, + 0.43015, + 0.52342, + 0.27283, + 0.2222, + 0.14523, + 0.36322, + 0.38979, + 0.34162, + 0.179, + 0.28335, + 0.1932, + 0.4418, + 0.54902, + 0.53664, + 0.25257, + 0.18357, + 0.51686, + 0.60103, + 0.5584, + 0.50441, + 0.29265, + 0.29188, + 0.31089, + 0.33184, + 0.39161, + 0.43485, + 0.42829, + 0.38304, + 0.3193, + 0.37762, + 0.38987, + 0.32043, + 0.40172, + 0.25261, + 0.48233, + 0.49122, + 0.41952, + 0.17427, + 0.18106, + 0.10867, + 0.46947, + 0.53717, + 0.69554, + 0.39736, + 0.45725, + 0.67528, + 0.57535, + 0.54004, + 0.57975, + 0.42979, + 0.32549, + 0.39185, + 0.45737, + 0.47052, + 0.40035, + 0.42951, + 0.33847, + 0.55088, + 0.5347, + 0.44249, + 0.24181, + 0.4767, + 0.22939, + 0.56807, + 0.45931, + 0.86055, + 0.76947, + 0.56038, + 0.31538, + 0.45543, + 0.67144, + 0.49438, + 0.47901, + 0.43331, + 0.42077, + 0.43064, + 0.63763, + 0.62699, + 0.46033, + 0.29928, + 0.37604, + 0.37398, + 0.50328, + 0.45042, + 0.34971, + 0.21382, + 0.40104, + 0.4321, + 0.51072, + 0.26292, + 0.16311, + 0.31251, + 0.32998, + 0.42316, + 0.29536, + 0.2861, + 0.19037, + 0.52823, + 0.48309, + 0.45988, + 0.31166, + 0.2243, + 0.35817, + 0.43214, + 0.50534, + 0.35999, + 0.36253, + 0.29702, + 0.59181, + 0.56519, + 0.86593, + 0.5819, + 0.56673, + 0.58428, + 0.48334, + 0.50004, + 0.42898, + 0.50263, + 0.41519, + 0.51452, + 0.54667, + 0.75924, + 0.61049, + 0.41806, + 0.42971, + 0.40249, + 0.46303, + 0.52334, + 0.32876, + 0.46813, + 0.40949, + 0.50352, + 0.49434, + 0.61081, + 0.49786, + 0.33309, + 0.21585, + 0.3612, + 0.49256, + 0.48532, + 0.40334, + 0.40488, + 0.35105, + 0.42089, + 0.60847, + 0.4126, + 0.34316, + 0.21233, + 0.42781, + 0.41171, + 0.65332, + 0.39796, + 0.55432, + 0.55351, + 0.48188, + 0.57531, + 0.54615, + 0.41996, + 0.34502, + 0.32884, + 0.41018, + 0.59221, + 0.37782, + 0.35845, + 0.24622, + 0.51606, + 0.45713, + 0.69384, + 0.40508, + 0.31841, + 0.35165, + 0.48415, + 0.70278, + 0.65643, + 0.35695, + 0.31598, + 0.52301, + 0.56892, + 0.68268, + 0.45418, + 0.40439, + 0.75734, + 0.55157, + 0.60535, + 0.43274, + 0.44706, + 0.28019, + 0.50117, + 0.45288, + 0.60568, + 0.30919, + 0.37588, + 0.51703, + 0.4486, + 0.75415, + 0.64479, + 0.31966, + 0.42057, + 0.5476, + 0.56491, + 0.80793, + 0.48467, + 0.46352, + 0.32601, + 0.71641, + 0.6665, + 0.76672, + 0.33976, + 0.29273, + 0.77667, + 0.75629, + 0.44354, + 0.26041, + 0.44374, + 0.26976, + 0.73696, + 0.57296, + 0.39942, + 0.34789, + 0.34725, + 0.8013, + 0.78262, + 0.57907, + 0.42894, + 0.49486, + 0.34231, + 0.7897, + 0.65498, + 0.70032, + 0.39934, + 0.54465, + 0.61991, + 0.64972, + 0.61276, + 0.40459, + 0.45228, + 0.36617, + 0.68317, + 0.66513, + 0.25512, + 0.40047, + 0.46388, + 0.41268, + 0.48754, + 0.42296, + 0.33536, + 0.79366, + 0.71079, + 0.50635, + 0.33022, + 0.8832, + 0.72721, + 0.74141, + 0.94362, + 0.85938, + 0.74561, + 0.60713, + 0.87539, + 0.85857, + 0.47703, + 0.40504, + 0.48564, + 0.54226, + 0.44306, + 0.54683, + 0.42951, + 0.24986, + 0.20129, + 0.5125, + 0.56435, + 0.38737, + 0.52038, + 0.58865, + 0.54412, + 0.36452, + 0.56257, + 0.38987, + 0.43772, + 0.33519, + 0.47958, + 0.48758, + 0.36443, + 0.39331, + 0.59039, + 0.65284, + 0.45778, + 0.58817, + 0.62186, + 0.5508, + 1, + 0.87863, + 0.65757, + 0.6676, + 0.32557, + 0.28678, + 0.46562, + 0.35315, + 0.53866, + 0.56665, + 0.39893, + 0.76409, + 0.37596, + 0.58339, + 0.34789, + 0.36864, + 0.34611, + 0.57142, + 0.50744, + 0.43642, + 0.34959, + 0.3195, + 0.72329, + 0.42676, + 0.51331, + 0.73696, + 0.64551, + 0.52018, + 0.48669, + 0.47905, + 0.43602, + 0.48483, + 0.54558, + 0.51108, + 0.41175, + 0.39226, + 0.39655, + 0.37329, + 0.44419, + 0.25584, + 0.64378, + 0.41038, + 0.5218, + 0.65186, + 0.65838, + 0.62214, + 0.49976, + 0.53571, + 0.59512, + 0.57199, + 0.55407, + 0.73918, + 0.44763, + 0.54162, + 0.5732, + 0.60806, + 0.53967, + 0.56515, + 0.49551, + 0.46805, + 0.37086, + 0.45276, + 0.33891, + 0.49899, + 0.71661, + 0.94253, + 0.54299, + 0.52985, + 0.79556, + 0.54222, + 0.65639, + 0.51209, + 0.54489, + 0.631, + 0.61187, + 0.72179, + 0.65178, + 0.63747, + 0.43897, + 0.53179, + 0.34648, + 0.36678, + 0.37398, + 0.39129, + 0.5087, + 0.30462, + 0.18559, + 0.11251, + 0.31736, + 0.44892, + 0.44556, + 0.45563, + 0.28229, + 0.54336, + 0.46049, + 0.6204, + 0.31954, + 0.22636, + 0.18191, + 0.38259, + 0.57308, + 0.41054, + 0.3161, + 0.32492, + 0.4183, + 0.32872, + 0.4357, + 0.40686, + 0.44338, + 0.28282, + 0.50469, + 0.60087, + 0.54044, + 0.50336, + 0.46599, + 0.54117, + 0.66028, + 0.69198, + 0.58958, + 0.64301, + 0.46097, + 0.44581, + 0.84296, + 0.72551, + 0.66351, + 0.6589, + 0.54145, + 0.72458, + 0.737, + 0.55031, + 0.27518, + 0.35808, + 0.43214, + 0.33782, + 0.37851, + 0.2814, + 0.53058, + 0.53959, + 0.64131, + 0.2738, + 0.26191, + 0.42684, + 0.46712, + 0.6511, + 0.4816, + 0.40095, + 0.43472, + 0.54178, + 0.48318, + 0.55007, + 0.48734, + 0.51335, + 0.35392, + 0.53603, + 0.65356, + 0.82852, + 0.72588, + 0.72725, + 0.46716, + 0.47994, + 0.64697, + 0.49414, + 0.47561, + 0.40265, + 0.49656, + 0.64171, + 0.85885, + 0.67844, + 0.50481, + 0.52637, + 0.57498, + 0.57963, + 0.41143, + 0.34619, + 0.52281, + 0.42308, + 0.48212, + 0.65013, + 0.5732, + 0.4454, + 0.56867, + 0.42401, + 0.30167, + 0.24885, + 0.34583, + 0.55601, + 0.60673, + 0.40536, + 0.36318, + 0.2571, + 0.24258, + 0.3792, + 0.35347, + 0.40759, + 0.53409, + 0.36367, + 0.39922, + 0.52936, + 0.46279, + 0.44848, + 0.32524, + 0.45741, + 0.44633, + 0.41523, + 0.26644, + 0.46918, + 0.57256, + 0.52669, + 0.69668, + 0.44932, + 0.54218, + 0.38005, + 0.76264, + 0.54574, + 0.48641, + 0.31683, + 0.28699, + 0.29653, + 0.30713, + 0.51322, + 0.38441, + 0.30705, + 0.23696, + 0.4649, + 0.52795, + 0.4875, + 0.43319, + 0.35028, + 0.65089, + 0.52507, + 0.42959, + 0.4577, + 0.3373, + 0.43658, + 0.44872, + 0.47877, + 0.39857, + 0.41333, + 0.43533, + 0.50142, + 0.42207, + 0.34733, + 0.32185, + 0.36536, + 0.44087, + 0.57834, + 0.51399, + 0.51957, + 0.48819, + 0.62982, + 0.64628, + 0.68584, + 0.34664, + 0.32897, + 0.51521, + 0.46748, + 0.76264, + 0.40896, + 0.27772, + 0.48281, + 0.48144, + 0.77894, + 0.51043, + 0.34773, + 0.39719, + 0.4492, + 0.64758, + 0.85529, + 0.57874, + 0.30268, + 0.38033, + 0.39824, + 0.61324, + 0.48071, + 0.26462, + 0.46752, + 0.46538, + 0.686, + 0.51941, + 0.36605, + 0.26697, + 0.37495, + 0.56641, + 0.72337, + 0.49798, + 0.44018, + 0.52718, + 0.5112, + 0.94928, + 0.79447, + 0.569, + 0.57454, + 0.63548, + 0.73356, + 0.81263, + 0.55634, + 0.61284, + 0.55759, + 0.44552, + 0.42465, + 0.2207, + 0.18576, + 0.35897, + 0.38858, + 0.52588, + 0.39101, + 0.36043, + 0.31117, + 0.45976, + 0.52281, + 0.26976, + 0.35271, + 0.24116, + 0.47133, + 0.40362, + 0.4689, + 0.30494, + 0.23967, + 0.42995, + 0.45179, + 0.50882, + 0.49106, + 0.49705, + 0.55893, + 0.45102, + 0.79164, + 0.55707, + 0.44552, + 0.45879, + 0.49276, + 0.7662, + 0.67532, + 0.64123, + 0.4526, + 0.46154, + 0.53523, + 0.49017, + 0.22859, + 0.20028, + 0.31623, + 0.33972, + 0.43149, + 0.28727, + 0.21827, + 0.46793, + 0.40277, + 0.85376, + 0.80628, + 0.36379, + 0.2133, + 0.51262, + 0.42631, + 0.48702, + 0.3377, + 0.28557, + 0.60762, + 0.50461, + 0.8011, + 0.69554, + 0.40827, + 0.24877, + 0.34324, + 0.40063, + 0.21249, + 0.46356, + 0.48022, + 0.57401, + 0.77323, + 0.62343, + 0.4613, + 0.43784, + 0.50586, + 0.48394, + 0.32533, + 0.54077, + 0.51994, + 0.47205, + 0.53328, + 0.66614, + 0.52867, + 0.44265, + 0.42862, + 0.4105, + 0.68523, + 0.70023, + 0.63083, + 0.41042, + 0.42441, + 0.36714, + 0.27894, + 0.31424, + 0.32169, + 0.34676, + 0.44035, + 0.45652, + 0.28573, + 0.26854, + 0.4071, + 0.57777, + 0.46724, + 0.29552, + 0.23154, + 0.27437, + 0.26794, + 0.32508, + 0.51525, + 0.53794, + 0.48868, + 0.45664, + 0.6591, + 0.36015, + 0.4943, + 0.45171, + 0.44953, + 0.53231, + 0.66157, + 0.59965, + 0.35901, + 0.38154, + 0.26668, + 0.53353, + 0.31396, + 0.39594, + 0.38696, + 0.32747, + 0.38449, + 0.62954, + 0.60697, + 0.59039, + 0.50392, + 0.78642, + 0.57886, + 0.57595, + 0.50186, + 0.48366, + 0.63338, + 0.46057, + 0.32674, + 0.27979, + 0.33354, + 0.42575, + 0.49017, + 0.38449, + 0.27696, + 0.52952, + 0.3773, + 0.39234, + 0.38437, + 0.47808, + 0.46097, + 0.36031, + 0.61057, + 0.34239, + 0.39456, + 0.43432, + 0.37847, + 0.72442, + 0.48212, + 0.49414, + 0.47885, + 0.47201, + 0.84041, + 0.70032, + 0.55828, + 0.32662, + 0.32015, + 0.54619, + 0.50865, + 0.4619, + 0.65461, + 0.65417, + 0.58529, + 0.38462, + 0.41208, + 0.33693, + 0.6168, + 0.7592, + 0.5764, + 0.58408, + 0.56463, + 0.67237, + 0.61166, + 0.52245, + 0.43165, + 0.30535, + 0.43966, + 0.25649, + 0.23582, + 0.20784, + 0.20319, + 0.26143, + 0.22276, + 0.20889, + 0.22434, + 0.25677, + 0.33883, + 0.26943, + 0.42575, + 0.36581, + 0.2698, + 0.39145, + 0.54315, + 0.43404, + 0.3654, + 0.38834, + 0.39695, + 0.41681, + 0.38433, + 0.27922, + 0.35521, + 0.33374, + 0.43909, + 0.43452, + 0.33358, + 0.41843, + 0.42793, + 0.39804, + 0.38328, + 0.27425, + 0.46599, + 0.50174, + 0.37758, + 0.49284, + 0.29653, + 0.29188, + 0.27061, + 0.63783, + 0.54748, + 0.3561, + 0.51541, + 0.8341, + 0.8635, + 0.80733, + 0.55577, + 0.50162, + 0.33552, + 0.70096, + 0.81962, + 0.59067, + 0.61749, + 0.67467, + 0.75075, + 0.57069, + 0.25014, + 0.3047, + 0.24501, + 0.65526, + 0.47472, + 0.38704, + 0.3794, + 0.27663, + 0.75863, + 0.70391, + 0.36913, + 0.71714, + 0.60111, + 0.45288, + 0.3121, + 0.34526, + 0.88591, + 0.82751, + 0.59969, + 0.70513, + 0.67289, + 0.82893, + 0.74505, + 0.78796, + 0.51399, + 0.42437, + 0.71973, + 0.67374, + 0.48127, + 0.32476, + 0.49037, + 0.75338, + 0.67508, + 0.4854, + 0.37479, + 0.40362, + 0.6346, + 0.59621, + 0.51573, + 0.35372, + 0.30769, + 0.24925, + 0.24982, + 0.25313, + 0.26086, + 0.31024, + 0.47549, + 0.37446, + 0.41382, + 0.39214, + 0.40002, + 0.43877, + 0.50267, + 0.39982, + 0.3741, + 0.43942, + 0.40273, + 0.48127, + 0.37584, + 0.69595, + 0.61017, + 0.41725, + 0.46651, + 0.32322, + 0.25977, + 0.40257, + 0.36625, + 0.40989, + 0.36387, + 0.2702, + 0.39113, + 0.42033, + 0.56135, + 0.40827, + 0.3269, + 0.49179, + 0.4306, + 0.40067, + 0.37139, + 0.38057, + 0.64204, + 0.50425, + 0.25301, + 0.36083, + 0.24399, + 0.53684, + 0.42757, + 0.40071, + 0.33572, + 0.34636, + 0.37879, + 0.48584, + 0.48168, + 0.52669, + 0.34203, + 0.30336, + 0.42813, + 0.5588, + 0.50372, + 0.41758, + 0.28824, + 0.24383, + 0.59795, + 0.64406, + 0.53717, + 0.3087, + 0.31554, + 0.63714, + 0.72749, + 0.5804, + 0.39938, + 0.35311, + 0.67237, + 0.79932, + 0.62295, + 0.51266, + 0.3758, + 0.55994, + 0.79402, + 0.68013, + 0.51557, + 0.6299, + 0.51266, + 0.69012, + 0.60762, + 0.38263, + 0.38308, + 0.74925, + 0.78144, + 0.50372, + 0.32739, + 0.28221, + 0.66812, + 0.59658, + 0.45466, + 0.3011, + 0.34086, + 0.71071, + 0.60726, + 0.47088, + 0.36593, + 0.39699, + 0.67387, + 0.61741, + 0.46882, + 0.33956, + 0.27566, + 0.79212, + 0.81918, + 0.53361, + 0.38409, + 0.30264, + 0.88389, + 0.83014, + 0.69975, + 0.40427, + 0.31983, + 0.30082, + 0.2061, + 0.18155, + 0.17714, + 0.26951, + 0.28258, + 0.24185, + 0.15142, + 0.34264, + 0.18669, + 0.21496, + 0.17184, + 0.16319, + 0.14252, + 0.16064, + 0.14001, + 0.17225, + 0.13116, + 0.11466, + 0.09694, + 0.06612, + 0.0438, + 0.0273, + 0.02479, + 0.02042, + 0.02467, + 0.01978, + 0.00918, + 0.00445, + 0.00198, + 0.00162, + 0.00089, + 0.00069, + 0.0004, + ], + unstable__sensitivity: [], + }, + { + id: 'e045229c-3bbd-4676-9fd6-8686741f4156', + title: 'The Art Of Loneliness', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1681553', + url: 'https://prod-1.storage.jamendo.com/?trackid=1681553&format=mp32', + creator: 'ANBR Adrián Berenguer', + creator_url: 'https://www.jamendo.com/artist/419963/Adrian_Berenguer', + license: 'by-nc-nd', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'classical', + 'filmscore', + 'neoclassical', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'cinematic', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'emotional', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'instrumental', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'orchestra', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'solemn', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'videogame', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'violin', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"The Art Of Loneliness" by ANBR Adrián Berenguer is licensed under CC BY-NC-ND 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'The Art of Loneliness', + foreign_landing_url: 'https://www.jamendo.com/album/187366/the-art-of-loneliness', + creator: 'ANBR Adrián Berenguer', + creator_url: 'https://www.jamendo.com/artist/419963/Adrian_Berenguer', + url: null, + filesize: null, + filetype: null, + }, + duration: 218000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/e045229c-3bbd-4676-9fd6-8686741f4156/thumb/', + detail_url: 'http://localhost:49153/v1/audio/e045229c-3bbd-4676-9fd6-8686741f4156/', + related_url: 'http://localhost:49153/v1/audio/e045229c-3bbd-4676-9fd6-8686741f4156/related/', + waveform: 'http://localhost:49153/v1/audio/e045229c-3bbd-4676-9fd6-8686741f4156/waveform/', + peaks: [ + 0, + 0.11894, + 0.0763, + 0.0769, + 0.07994, + 0.19107, + 0.10828, + 0.09053, + 0.15733, + 0.15249, + 0.08508, + 0.08707, + 0.1526, + 0.10659, + 0.0855, + 0.09203, + 0.14806, + 0.13744, + 0.14728, + 0.19284, + 0.17655, + 0.22932, + 0.26486, + 0.15002, + 0.13466, + 0.22286, + 0.15722, + 0.23555, + 0.18338, + 0.20215, + 0.28224, + 0.29695, + 0.23885, + 0.15294, + 0.31384, + 0.26306, + 0.16567, + 0.12528, + 0.32311, + 0.29245, + 0.11616, + 0.11564, + 0.25053, + 0.22838, + 0.11849, + 0.27316, + 0.24651, + 0.24223, + 0.11263, + 0.29523, + 0.26224, + 0.12558, + 0.1016, + 0.20166, + 0.17419, + 0.15283, + 0.25518, + 0.29076, + 0.2449, + 0.09676, + 0.15595, + 0.15718, + 0.10599, + 0.09781, + 0.19866, + 0.14487, + 0.1219, + 0.12648, + 0.24658, + 0.13072, + 0.1302, + 0.24944, + 0.13932, + 0.13076, + 0.09908, + 0.15527, + 0.16514, + 0.16642, + 0.09398, + 0.15433, + 0.18173, + 0.21712, + 0.15651, + 0.18271, + 0.21532, + 0.21228, + 0.24812, + 0.23322, + 0.21641, + 0.23585, + 0.19903, + 0.21663, + 0.2196, + 0.21877, + 0.19032, + 0.1961, + 0.20339, + 0.18676, + 0.15512, + 0.12746, + 0.14968, + 0.16289, + 0.15711, + 0.14127, + 0.15133, + 0.2053, + 0.18098, + 0.18342, + 0.18533, + 0.15047, + 0.17456, + 0.17317, + 0.15546, + 0.13238, + 0.14517, + 0.16007, + 0.17576, + 0.15354, + 0.18548, + 0.16814, + 0.28021, + 0.37862, + 0.37442, + 0.33377, + 0.28626, + 0.24272, + 0.31553, + 0.26531, + 0.27079, + 0.33959, + 0.25799, + 0.2315, + 0.2381, + 0.23799, + 0.23844, + 0.28577, + 0.31377, + 0.284, + 0.32435, + 0.38305, + 0.42591, + 0.32003, + 0.29474, + 0.25818, + 0.30217, + 0.35014, + 0.24065, + 0.2753, + 0.26096, + 0.34454, + 0.3337, + 0.32296, + 0.2297, + 0.3829, + 0.29057, + 0.18406, + 0.33452, + 0.28903, + 0.30604, + 0.35242, + 0.40125, + 0.3397, + 0.28502, + 0.15047, + 0.35614, + 0.35618, + 0.38511, + 0.31091, + 0.39457, + 0.31962, + 0.21723, + 0.23698, + 0.24291, + 0.37352, + 0.33463, + 0.36789, + 0.31275, + 0.2029, + 0.21097, + 0.27432, + 0.41923, + 0.50435, + 0.33039, + 0.40182, + 0.26167, + 0.29136, + 0.28885, + 0.23517, + 0.33576, + 0.33265, + 0.28918, + 0.24035, + 0.26306, + 0.27057, + 0.3662, + 0.34436, + 0.29812, + 0.31741, + 0.25023, + 0.33959, + 0.3704, + 0.31482, + 0.27571, + 0.34297, + 0.2616, + 0.2917, + 0.29842, + 0.28663, + 0.2977, + 0.25709, + 0.34139, + 0.25968, + 0.28885, + 0.20556, + 0.27136, + 0.20898, + 0.22286, + 0.25199, + 0.34394, + 0.34664, + 0.26899, + 0.23859, + 0.24324, + 0.24917, + 0.32431, + 0.42895, + 0.49812, + 0.32413, + 0.28794, + 0.24985, + 0.22733, + 0.21389, + 0.3081, + 0.40932, + 0.3361, + 0.24651, + 0.22316, + 0.24084, + 0.24929, + 0.36301, + 0.42516, + 0.40625, + 0.43882, + 0.28648, + 0.29057, + 0.34094, + 0.31763, + 0.41289, + 0.35265, + 0.2968, + 0.30589, + 0.30686, + 0.26805, + 0.40857, + 0.37217, + 0.34458, + 0.3832, + 0.41124, + 0.38215, + 0.36402, + 0.39206, + 0.28712, + 0.40561, + 0.31534, + 0.32011, + 0.33696, + 0.30179, + 0.32289, + 0.37371, + 0.35674, + 0.31448, + 0.41934, + 0.40846, + 0.30198, + 0.2464, + 0.34424, + 0.35929, + 0.35678, + 0.26569, + 0.4648, + 0.44569, + 0.23274, + 0.36864, + 0.35599, + 0.4079, + 0.38846, + 0.38737, + 0.35978, + 0.2318, + 0.26471, + 0.3391, + 0.30769, + 0.42122, + 0.38684, + 0.37352, + 0.35839, + 0.29339, + 0.4249, + 0.37427, + 0.44123, + 0.35318, + 0.4839, + 0.30739, + 0.26854, + 0.43117, + 0.41413, + 0.35697, + 0.3796, + 0.35862, + 0.38872, + 0.30423, + 0.29087, + 0.38921, + 0.42809, + 0.31418, + 0.35051, + 0.38951, + 0.40024, + 0.37765, + 0.42036, + 0.35798, + 0.32262, + 0.41814, + 0.38598, + 0.30772, + 0.44483, + 0.30589, + 0.41608, + 0.34229, + 0.4002, + 0.38846, + 0.48191, + 0.34706, + 0.31639, + 0.34394, + 0.33441, + 0.33407, + 0.34158, + 0.38155, + 0.30033, + 0.28494, + 0.21675, + 0.33711, + 0.28254, + 0.43713, + 0.40831, + 0.31091, + 0.34158, + 0.29485, + 0.34116, + 0.42876, + 0.41829, + 0.34725, + 0.55363, + 0.37401, + 0.39739, + 0.29815, + 0.19738, + 0.13346, + 0.11988, + 0.12592, + 0.09664, + 0.12408, + 0.12648, + 0.12217, + 0.1061, + 0.11965, + 0.08966, + 0.11121, + 0.08707, + 0.1123, + 0.15013, + 0.13958, + 0.12423, + 0.15527, + 0.14446, + 0.1642, + 0.15204, + 0.17047, + 0.1135, + 0.1326, + 0.13647, + 0.11275, + 0.10524, + 0.13579, + 0.16034, + 0.14266, + 0.15336, + 0.13384, + 0.14089, + 0.12536, + 0.16492, + 0.12757, + 0.14949, + 0.13969, + 0.13984, + 0.12344, + 0.11838, + 0.10318, + 0.15947, + 0.13939, + 0.12093, + 0.10528, + 0.13684, + 0.13309, + 0.14393, + 0.18755, + 0.15062, + 0.14026, + 0.14919, + 0.14442, + 0.13061, + 0.13129, + 0.11447, + 0.13515, + 0.12614, + 0.14469, + 0.143, + 0.15767, + 0.16811, + 0.14998, + 0.13857, + 0.12626, + 0.11492, + 0.08929, + 0.11031, + 0.08906, + 0.07923, + 0.0903, + 0.11256, + 0.13793, + 0.09953, + 0.08966, + 0.12048, + 0.1365, + 0.18128, + 0.13598, + 0.13639, + 0.13166, + 0.0936, + 0.1064, + 0.0939, + 0.08437, + 0.10385, + 0.13358, + 0.1606, + 0.12881, + 0.18173, + 0.18541, + 0.15129, + 0.12382, + 0.17351, + 0.15613, + 0.15215, + 0.15793, + 0.15369, + 0.1567, + 0.14435, + 0.17614, + 0.16612, + 0.18721, + 0.18646, + 0.1913, + 0.15167, + 0.12667, + 0.19532, + 0.17107, + 0.21731, + 0.19678, + 0.1874, + 0.19603, + 0.16728, + 0.12795, + 0.1517, + 0.19175, + 0.31347, + 0.30337, + 0.32837, + 0.31677, + 0.28678, + 0.35239, + 0.26145, + 0.32135, + 0.22635, + 0.27241, + 0.30026, + 0.25946, + 0.36391, + 0.24324, + 0.25957, + 0.33212, + 0.39093, + 0.33268, + 0.28813, + 0.25225, + 0.29234, + 0.36654, + 0.34995, + 0.23912, + 0.27263, + 0.19415, + 0.25432, + 0.21386, + 0.30472, + 0.26599, + 0.28164, + 0.24167, + 0.25818, + 0.18361, + 0.3212, + 0.29515, + 0.21588, + 0.21746, + 0.25657, + 0.21003, + 0.19246, + 0.25518, + 0.24726, + 0.19494, + 0.21889, + 0.23319, + 0.26197, + 0.21746, + 0.20391, + 0.23255, + 0.2473, + 0.26513, + 0.20485, + 0.20793, + 0.24741, + 0.22256, + 0.21964, + 0.23987, + 0.25507, + 0.23574, + 0.29737, + 0.26021, + 0.31763, + 0.31639, + 0.31917, + 0.25495, + 0.32274, + 0.2947, + 0.24486, + 0.37247, + 0.28678, + 0.27196, + 0.28415, + 0.21404, + 0.36455, + 0.31752, + 0.26205, + 0.36669, + 0.32867, + 0.28971, + 0.31437, + 0.28727, + 0.24752, + 0.2259, + 0.19014, + 0.24493, + 0.27045, + 0.21382, + 0.2536, + 0.28059, + 0.27282, + 0.22215, + 0.19723, + 0.24238, + 0.29436, + 0.24962, + 0.22343, + 0.20759, + 0.26047, + 0.25713, + 0.26494, + 0.2235, + 0.22699, + 0.20474, + 0.24707, + 0.21814, + 0.25676, + 0.25874, + 0.20005, + 0.24354, + 0.2357, + 0.1898, + 0.24028, + 0.28513, + 0.27879, + 0.22286, + 0.29808, + 0.28445, + 0.27368, + 0.5542, + 0.63305, + 0.49133, + 0.55191, + 0.57713, + 0.52196, + 0.43391, + 0.47452, + 0.45042, + 0.51058, + 0.35918, + 0.57112, + 0.44614, + 0.38125, + 0.47808, + 0.50995, + 0.46618, + 0.4747, + 0.39022, + 0.63054, + 0.5778, + 0.58358, + 0.43586, + 0.40422, + 0.4118, + 0.32649, + 0.41443, + 0.40298, + 0.4297, + 0.51126, + 0.42242, + 0.55431, + 0.40752, + 0.50308, + 0.52507, + 0.44543, + 0.35224, + 0.44123, + 0.52961, + 0.43015, + 0.41848, + 0.38046, + 0.41172, + 0.36147, + 0.46622, + 0.42366, + 0.53686, + 0.38883, + 0.46937, + 0.59717, + 0.52192, + 0.36657, + 0.33933, + 0.40399, + 0.62322, + 0.46457, + 0.56636, + 0.44502, + 0.37858, + 0.47894, + 0.55337, + 0.37183, + 0.37419, + 0.48198, + 0.50139, + 0.53487, + 0.56842, + 0.58186, + 0.57285, + 0.50387, + 0.31516, + 0.67231, + 0.4848, + 0.33302, + 0.58685, + 0.49156, + 0.44911, + 0.44014, + 0.41889, + 0.55532, + 0.47249, + 0.40294, + 0.45639, + 0.48593, + 0.45841, + 0.30228, + 0.44325, + 0.53457, + 0.33418, + 0.46971, + 0.57949, + 0.48168, + 0.44107, + 0.57953, + 0.34199, + 0.45935, + 0.52545, + 0.48593, + 0.43931, + 0.43413, + 0.47459, + 0.5542, + 0.43312, + 0.38294, + 0.3492, + 0.44806, + 0.35971, + 0.34586, + 0.46393, + 0.41886, + 0.47688, + 0.41649, + 0.57983, + 0.51456, + 0.51618, + 0.497, + 0.62404, + 0.65797, + 0.67381, + 0.61091, + 0.75176, + 0.49092, + 0.66829, + 0.78378, + 0.55018, + 0.55213, + 0.61192, + 0.70646, + 0.57247, + 0.6928, + 0.66109, + 0.46558, + 0.6722, + 0.82514, + 0.74538, + 0.70143, + 0.53603, + 0.67317, + 1, + 0.6469, + 0.7223, + 0.58546, + 0.56696, + 0.6743, + 0.56399, + 0.4541, + 0.50814, + 0.48304, + 0.73788, + 0.58182, + 0.58831, + 0.68492, + 0.7014, + 0.65272, + 0.55622, + 0.49178, + 0.56846, + 0.5772, + 0.67283, + 0.53344, + 0.54823, + 0.44806, + 0.5611, + 0.8367, + 0.57217, + 0.63879, + 0.52492, + 0.71284, + 0.67516, + 0.65294, + 0.58869, + 0.7312, + 0.72714, + 0.57033, + 0.57465, + 0.56043, + 0.53622, + 0.72467, + 0.61519, + 0.56084, + 0.52973, + 0.75191, + 0.663, + 0.5042, + 0.68248, + 0.81395, + 0.68229, + 0.69434, + 0.60314, + 0.56279, + 0.81587, + 0.49846, + 0.71284, + 0.58242, + 0.5137, + 0.51674, + 0.51895, + 0.77042, + 0.66052, + 0.48773, + 0.42891, + 0.55874, + 0.57255, + 0.58584, + 0.48581, + 0.48739, + 0.59477, + 0.63309, + 0.75443, + 0.50503, + 0.43571, + 0.53284, + 0.70838, + 0.49137, + 0.5551, + 0.53442, + 0.42137, + 0.61027, + 0.84702, + 0.54305, + 0.45706, + 0.61143, + 0.57949, + 0.66912, + 0.45196, + 0.47774, + 0.60817, + 0.63804, + 0.60858, + 0.621, + 0.81531, + 0.65354, + 0.67096, + 0.72726, + 0.72924, + 0.74936, + 0.48904, + 0.39352, + 0.16529, + 0.15531, + 0.25083, + 0.20676, + 0.14059, + 0.14784, + 0.30273, + 0.18969, + 0.1767, + 0.16255, + 0.30716, + 0.14716, + 0.21337, + 0.267, + 0.2703, + 0.19502, + 0.1925, + 0.22388, + 0.28179, + 0.24865, + 0.20924, + 0.22628, + 0.18274, + 0.18338, + 0.24557, + 0.28029, + 0.21791, + 0.25747, + 0.34867, + 0.26989, + 0.22283, + 0.18995, + 0.38245, + 0.26914, + 0.18849, + 0.1907, + 0.42636, + 0.32585, + 0.21431, + 0.25544, + 0.24505, + 0.18905, + 0.19648, + 0.27601, + 0.27879, + 0.17805, + 0.13361, + 0.36973, + 0.31846, + 0.17779, + 0.30104, + 0.2348, + 0.18905, + 0.11609, + 0.35824, + 0.31013, + 0.15426, + 0.18158, + 0.2366, + 0.16454, + 0.16544, + 0.26674, + 0.21363, + 0.15489, + 0.16398, + 0.29174, + 0.23623, + 0.16593, + 0.15497, + 0.29459, + 0.2065, + 0.15474, + 0.1859, + 0.31294, + 0.19629, + 0.23071, + 0.26835, + 0.17779, + 0.28123, + 0.27691, + 0.24148, + 0.19457, + 0.26591, + 0.19971, + 0.25604, + 0.32837, + 0.35449, + 0.24805, + 0.25713, + 0.26261, + 0.28205, + 0.29252, + 0.26359, + 0.36338, + 0.31707, + 0.28141, + 0.21303, + 0.24719, + 0.20477, + 0.27342, + 0.23825, + 0.3361, + 0.26978, + 0.30176, + 0.2527, + 0.31501, + 0.28006, + 0.36297, + 0.2765, + 0.19851, + 0.30078, + 0.23746, + 0.22726, + 0.22129, + 0.23349, + 0.289, + 0.41439, + 0.7181, + 0.72459, + 0.67569, + 0.59593, + 0.60914, + 0.7929, + 0.67006, + 0.59477, + 0.69929, + 0.66495, + 0.68545, + 0.60408, + 0.65377, + 0.54707, + 0.64863, + 0.73653, + 0.61353, + 0.66285, + 0.48596, + 0.6448, + 0.87566, + 0.68053, + 0.60494, + 0.71464, + 0.5775, + 0.54448, + 0.54932, + 0.5241, + 0.45654, + 0.5903, + 0.83298, + 0.50687, + 0.49358, + 0.43972, + 0.61016, + 0.72012, + 0.53641, + 0.54331, + 0.54162, + 0.61106, + 0.57386, + 0.58865, + 0.57413, + 0.46915, + 0.64881, + 0.79451, + 0.56797, + 0.64127, + 0.59785, + 0.65617, + 0.6371, + 0.60141, + 0.62712, + 0.69089, + 0.62663, + 0.63192, + 0.59004, + 0.70278, + 0.72388, + 0.63046, + 0.70102, + 0.70474, + 0.52049, + 0.62344, + 0.76276, + 0.48157, + 0.57232, + 0.68976, + 0.81958, + 0.62213, + 0.55814, + 0.72039, + 0.59436, + 0.51963, + 0.77323, + 0.64694, + 0.51201, + 0.52774, + 0.64217, + 0.75957, + 0.53348, + 0.4651, + 0.45117, + 0.50417, + 0.67786, + 0.51269, + 0.55577, + 0.41991, + 0.49801, + 0.643, + 0.50199, + 0.46022, + 0.43972, + 0.53592, + 0.64277, + 0.61781, + 0.53457, + 0.54793, + 0.52402, + 0.69168, + 0.65617, + 0.55431, + 0.39592, + 0.50728, + 0.64337, + 0.46228, + 0.43965, + 0.49306, + 0.67381, + 0.58974, + 0.53693, + 0.4535, + 0.69543, + 0.57818, + 0.71138, + 0.72519, + 0.64052, + 0.671, + 0.6183, + 0.66882, + 0.29286, + 0.24249, + 0.20237, + 0.11661, + 0.10089, + 0.05187, + 0.03896, + 0.03126, + 0.0161, + 0.00972, + 0.00499, + 0.00424, + 0.00263, + 0.00139, + 0.00105, + 0.00053, + 0.00038, + 0.00026, + 0.00015, + 0.00008, + 0.00011, + 0.00004, + ], + unstable__sensitivity: [], + }, + { + id: '39f8efa0-3b7b-49c0-85c3-254cfe91f790', + title: 'Nl-arts', + indexed_on: '2023-05-04T16:17:41.797740Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=43625', + url: 'https://upload.wikimedia.org/wikipedia/commons/9/92/Nl-arts.ogg', + creator: 'GerardM', + creator_url: 'https://commons.wikimedia.org/wiki/User:GerardM', + license: 'by-sa', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-sa/3.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 13996, + filetype: 'ogg', + tags: [], + alt_files: null, + attribution: '"Nl-arts" by GerardM is licensed under CC BY-SA 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/3.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + audio_set: null, + duration: 1100, + bit_rate: 80000, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/39f8efa0-3b7b-49c0-85c3-254cfe91f790/', + related_url: 'http://localhost:49153/v1/audio/39f8efa0-3b7b-49c0-85c3-254cfe91f790/related/', + waveform: 'http://localhost:49153/v1/audio/39f8efa0-3b7b-49c0-85c3-254cfe91f790/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '2836cfd7-37c5-44eb-8262-08aac8c46744', + title: 'art gallery.wav', + indexed_on: '2022-11-02T16:00:43.977525Z', + foreign_landing_url: 'https://freesound.org/people/volivieri/sounds/50677', + url: 'https://cdn.freesound.org/previews/50/50677_374422-hq.mp3', + creator: 'volivieri', + creator_url: 'https://freesound.org/people/volivieri', + license: 'by', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 4306411, + filetype: 'mp3', + tags: [ + { + name: 'ambience', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'field-recording', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'jasper-johns', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'matthew-marks-art-gallery', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'new-york-city', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/50677/download/', + bit_rate: 0, + filesize: 50399182, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"art gallery.wav" by volivieri is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 190473, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/2836cfd7-37c5-44eb-8262-08aac8c46744/', + related_url: 'http://localhost:49153/v1/audio/2836cfd7-37c5-44eb-8262-08aac8c46744/related/', + waveform: 'http://localhost:49153/v1/audio/2836cfd7-37c5-44eb-8262-08aac8c46744/waveform/', + peaks: [ + 0.31268, + 0.30362, + 0.4869, + 0.32772, + 0.37973, + 0.41745, + 0.47575, + 0.36783, + 0.34239, + 0.34493, + 0.35085, + 0.41513, + 0.35923, + 0.30063, + 0.34935, + 0.37008, + 0.3501, + 0.29367, + 0.25168, + 0.36911, + 0.29337, + 0.3858, + 0.21995, + 0.25131, + 0.32188, + 0.22571, + 0.28267, + 0.3596, + 0.30924, + 0.22325, + 0.26725, + 0.22706, + 0.29457, + 0.43369, + 0.40615, + 0.27339, + 0.24951, + 0.33236, + 0.20626, + 0.21441, + 0.25153, + 0.29696, + 0.39126, + 0.30467, + 0.22078, + 0.23193, + 0.32518, + 0.4429, + 0.20723, + 0.18792, + 0.19675, + 0.34097, + 0.16981, + 0.34591, + 0.30325, + 0.53532, + 0.2546, + 0.25602, + 0.19413, + 0.22631, + 0.34823, + 0.2204, + 0.17879, + 0.17999, + 0.29936, + 0.70236, + 0.87869, + 0.54872, + 0.34179, + 0.43474, + 0.32046, + 0.3025, + 0.35212, + 0.5098, + 0.21995, + 0.25393, + 0.26298, + 0.44439, + 0.45457, + 0.42396, + 0.3474, + 0.56713, + 0.55044, + 0.47216, + 0.42928, + 0.32009, + 0.61331, + 0.40436, + 0.46034, + 0.49596, + 0.41431, + 0.78394, + 0.4322, + 0.41768, + 0.32301, + 0.36065, + 0.21621, + 0.19338, + 0.16839, + 0.18148, + 0.33161, + 0.14317, + 0.21988, + 0.26688, + 0.35451, + 0.19144, + 0.26066, + 0.32794, + 0.25176, + 0.36866, + 0.28873, + 0.19585, + 0.18306, + 0.32398, + 0.2195, + 0.2106, + 0.17475, + 0.28005, + 0.47455, + 0.33229, + 0.27646, + 0.26044, + 0.46887, + 0.26261, + 0.29576, + 0.28319, + 0.27982, + 0.2912, + 0.34823, + 0.27137, + 0.45038, + 0.64392, + 0.49626, + 0.44178, + 0.47575, + 0.43751, + 0.37128, + 0.33311, + 0.38116, + 0.42157, + 0.4319, + 0.37232, + 0.3852, + 0.43339, + 0.40219, + 0.29891, + 0.22871, + 0.21771, + 0.20506, + 0.36245, + 0.21756, + 0.13366, + 0.18972, + 0.337, + 0.24188, + 0.20873, + 0.27084, + 0.18485, + 0.29883, + 0.32061, + 0.78147, + 0.45113, + 0.30834, + 0.32637, + 0.26358, + 0.29928, + 0.19316, + 0.31866, + 0.16988, + 0.18687, + 0.22751, + 0.37928, + 0.25505, + 0.15656, + 0.13748, + 0.315, + 0.33932, + 0.12857, + 0.12947, + 0.1639, + 0.27893, + 0.14698, + 0.21127, + 0.17939, + 0.30849, + 0.23731, + 0.20364, + 0.1642, + 0.22571, + 0.39934, + 0.23402, + 0.23866, + 0.26545, + 0.33101, + 0.27182, + 0.19832, + 0.1972, + 0.15088, + 0.24966, + 0.1627, + 0.16345, + 0.15799, + 0.28065, + 0.11952, + 0.1865, + 0.18867, + 0.13725, + 0.2662, + 0.21359, + 0.22654, + 0.38213, + 0.45637, + 0.2555, + 0.30138, + 0.21935, + 0.25715, + 0.35212, + 0.24173, + 0.24936, + 0.25109, + 0.35616, + 0.1731, + 0.24457, + 0.16487, + 0.2448, + 0.28125, + 0.21688, + 0.33094, + 0.4661, + 0.39081, + 0.36746, + 0.36237, + 0.26433, + 0.35227, + 0.26725, + 0.59781, + 0.58427, + 0.67415, + 0.85564, + 0.57963, + 0.63127, + 0.61974, + 0.82839, + 0.78491, + 0.66143, + 0.79344, + 0.56354, + 0.54962, + 0.39889, + 0.48451, + 0.50427, + 0.5012, + 0.42419, + 0.51901, + 0.5449, + 0.50576, + 0.43392, + 0.41057, + 0.58636, + 0.5931, + 0.55276, + 0.44664, + 0.58711, + 0.55141, + 0.54528, + 0.49985, + 0.31964, + 0.37285, + 0.46063, + 0.59886, + 0.46026, + 0.4283, + 0.34935, + 0.34695, + 0.3819, + 0.29591, + 0.72377, + 0.64504, + 0.37322, + 0.31986, + 0.38505, + 0.22025, + 0.34231, + 0.37517, + 0.2891, + 0.31986, + 0.31365, + 0.3953, + 0.2665, + 0.28394, + 0.25445, + 0.30295, + 0.26725, + 0.4789, + 0.33401, + 0.44836, + 0.35137, + 0.28394, + 0.29367, + 0.24263, + 0.38228, + 0.22497, + 0.28357, + 0.29195, + 0.21022, + 0.35032, + 0.20633, + 0.34044, + 0.30572, + 0.28132, + 0.1978, + 0.28184, + 0.38265, + 0.27518, + 0.32158, + 0.33573, + 0.26545, + 0.33902, + 0.33633, + 0.24802, + 0.31971, + 0.31245, + 0.25842, + 0.31732, + 0.23971, + 0.28828, + 0.2439, + 0.4869, + 0.24338, + 0.21808, + 0.246, + 0.3004, + 0.38834, + 0.3001, + 0.2537, + 0.28379, + 0.48092, + 0.35077, + 0.34239, + 0.24757, + 0.49416, + 0.26905, + 0.24674, + 0.27945, + 0.37315, + 0.4524, + 0.23724, + 0.18463, + 0.26912, + 0.36918, + 0.33094, + 0.3153, + 0.35092, + 0.26321, + 0.32914, + 0.25004, + 0.33071, + 0.31986, + 0.38722, + 0.2897, + 0.22078, + 0.29419, + 0.25355, + 0.29674, + 0.29996, + 0.44514, + 0.2787, + 0.40862, + 0.27907, + 0.19496, + 0.28686, + 0.22594, + 0.41753, + 0.23993, + 0.17872, + 0.2692, + 0.42688, + 0.2213, + 0.19249, + 0.19668, + 0.18934, + 0.30564, + 0.17894, + 0.17961, + 0.16936, + 0.25094, + 0.13725, + 0.1163, + 0.1621, + 0.31343, + 0.28469, + 0.24495, + 0.19511, + 0.34516, + 0.42381, + 0.22152, + 0.23208, + 0.18882, + 0.29764, + 0.20057, + 0.16644, + 0.20768, + 0.24667, + 0.26515, + 0.16629, + 0.21561, + 0.18605, + 0.29075, + 0.2329, + 0.20109, + 0.17842, + 0.21284, + 0.28289, + 0.34987, + 0.35047, + 0.19862, + 0.25168, + 0.19106, + 0.34972, + 0.28469, + 0.35908, + 0.45323, + 0.33154, + 0.53031, + 0.40458, + 0.43601, + 0.32832, + 0.36851, + 0.33984, + 0.28072, + 0.41483, + 0.43646, + 0.57731, + 0.60627, + 0.71292, + 0.56092, + 0.49738, + 0.52485, + 0.43122, + 0.42374, + 0.35885, + 0.61787, + 0.37958, + 0.70416, + 0.41394, + 0.42651, + 0.36529, + 0.406, + 0.37412, + 0.19608, + 0.25138, + 0.55538, + 0.30849, + 0.20244, + 0.19668, + 0.19002, + 0.34905, + 0.19353, + 0.3269, + 0.71052, + 0.47837, + 0.49027, + 0.53495, + 0.54782, + 0.47882, + 0.62057, + 0.79629, + 0.78596, + 0.70738, + 1, + 0.70708, + 0.73342, + 0.53076, + 0.56571, + 0.58187, + 0.26523, + 0.34853, + 0.41663, + 0.32286, + 0.55486, + 0.28469, + 0.92658, + 0.95584, + 0.71905, + 0.53428, + 0.38273, + 0.37375, + 0.26508, + 0.44537, + 0.51991, + 0.39118, + 0.3849, + 0.50464, + 0.26807, + 0.40024, + 0.68306, + 0.64878, + 0.57417, + 0.63209, + 0.511, + 0.44417, + 0.43714, + 0.45562, + 0.28154, + 0.29532, + 0.52058, + 0.27713, + 0.2903, + 0.30407, + 0.41349, + 0.41019, + 0.26493, + 0.28087, + 0.25363, + 0.34284, + 0.21606, + 0.27833, + 0.31881, + 0.21232, + 0.42696, + 0.33573, + 0.33633, + 0.22998, + 0.28409, + 0.34583, + 0.337, + 0.35923, + 0.34935, + 0.34194, + 0.23702, + 0.2323, + 0.41805, + 0.43721, + 0.28349, + 0.32652, + 0.254, + 0.33251, + 0.40039, + 0.38063, + 0.42598, + 0.39949, + 0.58621, + 0.38475, + 0.31784, + 0.3355, + 0.29427, + 0.39388, + 0.53779, + 0.3483, + 0.3394, + 0.49027, + 0.33925, + 0.46206, + 0.44731, + 0.59767, + 0.64601, + 0.58404, + 0.53502, + 0.51205, + 0.53929, + 0.42104, + 0.37494, + 0.27092, + 0.44043, + 0.33984, + 0.23522, + 0.22549, + 0.19249, + 0.30759, + 0.38632, + 0.38991, + 0.55014, + 0.56893, + 0.32158, + 0.31208, + 0.26104, + 0.25917, + 0.42067, + 0.34404, + 0.3144, + 0.2216, + 0.32308, + 0.10096, + 0.152, + 0.17617, + 0.17969, + 0.31477, + 0.15507, + 0.20416, + 0.27735, + 0.31567, + 0.29225, + 0.29599, + 0.35354, + 0.37936, + 0.51976, + 0.42359, + 0.34703, + 0.30422, + 0.36985, + 0.27376, + 0.33902, + 0.35092, + 0.33064, + 0.33064, + 0.33326, + 0.33708, + 0.27915, + 0.48413, + 0.22998, + 0.24974, + 0.23133, + 0.43339, + 0.28858, + 0.28671, + 0.28865, + 0.29053, + 0.39343, + 0.30744, + 0.25498, + 0.27907, + 0.50808, + 0.27511, + 0.35129, + 0.28065, + 0.40944, + 0.53622, + 0.52462, + 0.54356, + 0.40615, + 0.42389, + 0.36956, + 0.36739, + 0.41371, + 0.41087, + 0.45742, + 0.37764, + 0.35279, + 0.41798, + 0.41319, + 0.27211, + 0.25969, + 0.35923, + 0.20124, + 0.3855, + 0.29314, + 0.27631, + 0.24457, + 0.34029, + 0.28484, + 0.27182, + 0.26448, + 0.3596, + 0.36813, + 0.20169, + 0.23021, + 0.2677, + 0.34157, + 0.17834, + 0.19668, + 0.20491, + 0.31515, + 0.25019, + 0.34246, + 0.2903, + 0.3367, + 0.49798, + 0.36641, + 0.33917, + 0.30302, + 0.36993, + 0.32997, + 0.29023, + 0.26022, + 0.36192, + 0.36087, + 0.34112, + 0.37584, + 0.37884, + 0.43803, + 0.28027, + 0.3001, + 0.32929, + 0.32922, + 0.30699, + 0.27144, + 0.3129, + 0.2683, + 0.35309, + 0.27069, + 0.28559, + 0.25281, + 0.22227, + 0.34972, + 0.24959, + 0.25281, + 0.25228, + 0.35616, + 0.22676, + 0.29846, + 0.24749, + 0.26747, + 0.27548, + 0.23208, + 0.19151, + 0.21464, + 0.32615, + 0.3834, + 0.55553, + 0.43122, + 0.42351, + 0.35676, + 0.489, + 0.41102, + 0.24457, + 0.38602, + 0.26463, + 0.27174, + 0.30886, + 0.46063, + 0.45255, + 0.52732, + 0.65724, + 0.59243, + 0.50614, + 0.50943, + 0.33169, + 0.27623, + 0.4634, + 0.18762, + 0.23327, + 0.22841, + 0.24637, + 0.37629, + 0.32899, + 0.33797, + 0.35055, + 0.43706, + 0.39463, + 0.27271, + 0.36312, + 0.31447, + 0.40503, + 0.35676, + 0.27848, + 0.34613, + 0.50382, + 0.28214, + 0.45884, + 0.29711, + 0.28012, + 0.49693, + 0.28678, + 0.22519, + 0.34508, + 0.3825, + 0.43661, + 0.453, + 0.33558, + 0.36671, + 0.41004, + 0.37232, + 0.35159, + 0.38385, + 0.33655, + 0.32667, + 0.24233, + 0.26201, + 0.44207, + 0.31784, + 0.27526, + 0.47448, + 0.34194, + 0.36192, + 0.30527, + 0.25348, + 0.39792, + 0.64504, + 0.42104, + 0.33229, + 0.428, + 0.53532, + 0.63718, + 0.46887, + 0.39874, + 0.32241, + 0.41685, + 0.31709, + 0.37315, + 0.3483, + 0.27182, + 0.43743, + 0.37577, + 0.50891, + 0.48578, + 0.42658, + 0.6273, + 0.43848, + 0.38841, + 0.27975, + 0.52163, + 0.2097, + 0.19668, + 0.21883, + 0.34172, + 0.20895, + 0.22078, + 0.25385, + 0.28708, + 0.37083, + 0.30894, + 0.21621, + 0.31485, + 0.48945, + 0.23395, + 0.21584, + 0.17116, + 0.32278, + 0.31941, + 0.15686, + 0.17258, + 0.19084, + 0.40877, + 0.36207, + 0.29906, + 0.5461, + 0.43766, + 0.38954, + 0.27922, + 0.29412, + 0.45472, + 0.39852, + 0.57641, + 0.38871, + 0.37711, + 0.58292, + 0.43279, + 0.35691, + 0.35556, + 0.42187, + 0.45435, + 0.32899, + 0.27803, + 0.34665, + 0.42606, + 0.29644, + 0.27069, + 0.35593, + 0.44058, + 0.45076, + 0.43205, + 0.31417, + 0.41326, + 0.39186, + 0.32443, + 0.35032, + 0.33206, + 0.40301, + 0.40548, + 0.28401, + 0.27301, + 0.21995, + 0.50479, + 0.28746, + 0.26785, + 0.22115, + 0.35496, + 0.34501, + 0.28798, + 0.3153, + 0.32143, + 0.38969, + 0.32929, + 0.36507, + 0.34246, + 0.35668, + 0.33461, + 0.2311, + 0.3272, + 0.32675, + 0.34164, + 0.2796, + 0.25161, + 0.29172, + 0.36574, + 0.23021, + 0.33708, + 0.40136, + 0.35414, + 0.3968, + 0.29487, + 0.27518, + 0.29838, + 0.27129, + 0.24824, + 0.29958, + 0.31956, + 0.27421, + 0.37996, + 0.20992, + 0.24113, + 0.28701, + 0.33498, + 0.23297, + 0.2915, + 0.42344, + 0.31365, + 0.39261, + 0.25326, + 0.28379, + 0.24727, + 0.38677, + 0.27631, + 0.36529, + 0.37667, + 0.4304, + 0.49933, + 0.34276, + 0.31006, + 0.34897, + 0.45106, + 0.34748, + 0.32847, + 0.30257, + 0.359, + 0.30205, + 0.27833, + 0.21875, + 0.28237, + 0.50786, + 0.36686, + 0.28701, + 0.23612, + 0.26568, + 0.22706, + 0.20528, + 0.23664, + 0.25685, + 0.32435, + 0.30736, + 0.30826, + 0.32982, + 0.31642, + 0.26276, + 0.28783, + 0.32817, + 0.40413, + 0.49551, + 0.36709, + 0.28828, + 0.24308, + 0.41229, + 0.3385, + 0.26283, + 0.29771, + 0.27646, + 0.46602, + 0.26313, + 0.34142, + 0.5351, + 0.38333, + 0.246, + 0.2454, + 0.27848, + 0.33229, + 0.37674, + 0.34613, + 0.34089, + 0.29352, + 0.33633, + 0.19593, + 0.1883, + 0.1847, + 0.3358, + 0.33708, + 0.31837, + 0.38003, + 0.34793, + 0.42456, + 0.32967, + 0.27174, + 0.20334, + 0.2888, + 0.31844, + 0.21, + 0.32982, + 0.34478, + 0.49379, + 0.29232, + 0.2769, + 0.29157, + 0.35474, + 0.22886, + 0.27047, + 0.31769, + 0.26291, + 0.33678, + 0.19136, + 0.26074, + 0.27024, + 0.32113, + 0.23597, + 0.3239, + 0.32907, + 0.31859, + 0.42187, + 0.37098, + 0.26471, + 0.17348, + 0.2805, + 0.22983, + 0.24794, + 0.35391, + 0.293, + 0.44791, + 0.31627, + 0.27646, + 0.17415, + 0.28244, + 0.19623, + 0.23073, + 0.24944, + 0.23679, + 0.30287, + 0.2433, + 0.22916, + 0.2784, + 0.35526, + 0.16584, + 0.26239, + 0.16435, + 0.28836, + 0.28993, + 0.17071, + 0.22953, + 0.26665, + 0.85421, + 0.47029, + 0.48713, + 0.36215, + 0.34546, + 0.2543, + 0.33655, + 0.25138, + 0.29023, + 0.31732, + 0.33034, + 0.35025, + 0.24877, + 0.36941, + 0.24615, + 0.21928, + 0.18448, + 0.29801, + 0.34636, + 0.15686, + 0.18253, + 0.16637, + 0.32577, + 0.19076, + 0.20461, + 0.17355, + 0.1645, + 0.3849, + 0.16786, + 0.1877, + 0.17662, + 0.31402, + 0.23791, + 0.16749, + 0.20072, + 0.22093, + 0.29277, + 0.26665, + 0.19226, + 0.1859, + 0.24951, + 0.21284, + 0.20888, + 0.19368, + 0.23006, + 0.2674, + 0.1502, + 0.16959, + 0.17153, + 0.25977, + 0.17093, + 0.17752, + 0.16659, + 0.2665, + 0.24293, + 0.18665, + 0.24944, + 0.19735, + 0.34733, + 0.18927, + 0.26269, + 0.20124, + 0.33356, + 0.21067, + 0.22699, + 0.18313, + 0.1728, + 0.2674, + 0.19032, + 0.13643, + 0.1731, + 0.26179, + 0.11361, + 0.14526, + 0.16001, + 0.11578, + 0.28813, + 0.14204, + 0.11376, + 0.11997, + 0.30055, + 0.20992, + 0.23836, + 0.14721, + 0.19211, + 0.24562, + 0.14818, + 0.15873, + 0.14938, + 0.28506, + 0.13366, + 0.14115, + 0.17265, + 0.18276, + 0.25662, + 0.17834, + 0.22362, + 0.18059, + 0.27114, + 0.13523, + 0.18785, + 0.24704, + 0.3034, + 0.37098, + 0.1844, + 0.29217, + 0.18163, + ], + unstable__sensitivity: [], + }, + { + id: '7db19d24-4621-402b-be04-445d5ff09899', + title: '04.arts of war', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1385434', + url: 'https://prod-1.storage.jamendo.com/?trackid=1385434&format=mp32', + creator: 'black city', + creator_url: 'https://www.jamendo.com/artist/484990/black_city', + license: 'by-sa', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-sa/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'deathmetal', + 'heavymetal', + 'metal', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'instrument', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'instrumental', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"04.arts of war" by black city is licensed under CC BY-SA 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'demo 14', + foreign_landing_url: 'https://www.jamendo.com/album/162527/demo-14', + creator: 'black city', + creator_url: 'https://www.jamendo.com/artist/484990/black_city', + url: null, + filesize: null, + filetype: null, + }, + duration: 184000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/7db19d24-4621-402b-be04-445d5ff09899/thumb/', + detail_url: 'http://localhost:49153/v1/audio/7db19d24-4621-402b-be04-445d5ff09899/', + related_url: 'http://localhost:49153/v1/audio/7db19d24-4621-402b-be04-445d5ff09899/related/', + waveform: 'http://localhost:49153/v1/audio/7db19d24-4621-402b-be04-445d5ff09899/waveform/', + peaks: [ + 0.34681, + 0.2664, + 0.29054, + 0.32328, + 0.62407, + 0.86056, + 0.36177, + 0.33506, + 0.28852, + 0.31233, + 0.33842, + 0.3509, + 0.34538, + 0.28578, + 0.2891, + 0.31492, + 0.57881, + 0.69289, + 0.34584, + 0.3509, + 0.31007, + 0.22294, + 0.30604, + 0.32688, + 0.35966, + 0.26298, + 0.29197, + 0.33851, + 0.59426, + 0.88113, + 0.38969, + 0.28959, + 0.31422, + 0.26914, + 0.32575, + 0.35768, + 0.35868, + 0.30967, + 0.3054, + 0.33729, + 0.60753, + 0.94122, + 0.35569, + 0.31941, + 0.30259, + 0.25098, + 0.33534, + 0.94943, + 1, + 1, + 0.84326, + 1, + 1, + 1, + 1, + 0.9039, + 0.59056, + 0.61931, + 0.9299, + 0.97595, + 1, + 1, + 0.99124, + 1, + 1, + 1, + 1, + 0.89984, + 0.63543, + 0.7459, + 0.9704, + 0.8977, + 0.99811, + 1, + 0.92779, + 1, + 1, + 1, + 1, + 0.99362, + 0.71679, + 0.78359, + 0.96612, + 0.95096, + 1, + 0.97748, + 0.98178, + 1, + 0.99957, + 1, + 0.99326, + 0.98282, + 0.80175, + 0.76696, + 0.99844, + 0.93121, + 0.40275, + 0.2938, + 0.69713, + 0.34809, + 0.64367, + 0.87161, + 1, + 1, + 0.83374, + 0.32627, + 0.35936, + 0.95761, + 0.31324, + 0.27, + 0.68529, + 0.29957, + 0.59148, + 0.7756, + 0.99893, + 0.56197, + 0.80782, + 0.24097, + 0.2963, + 0.94821, + 0.36958, + 0.28343, + 0.76446, + 0.31159, + 0.56746, + 0.8132, + 1, + 0.94168, + 0.68084, + 0.24219, + 0.3209, + 0.95679, + 0.36195, + 0.25718, + 0.7575, + 0.36265, + 0.60866, + 1, + 1, + 0.67428, + 0.70669, + 0.22904, + 0.30177, + 0.94778, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0.79214, + 0.69399, + 0.98666, + 0.97348, + 1, + 1, + 0.90493, + 0.92816, + 0.84674, + 0.96368, + 1, + 1, + 1, + 0.6766, + 1, + 0.97964, + 1, + 1, + 0.99545, + 1, + 1, + 1, + 1, + 1, + 0.86993, + 0.68313, + 0.97549, + 0.97058, + 1, + 1, + 0.87255, + 1, + 0.8121, + 0.96182, + 1, + 1, + 0.94018, + 0.81582, + 0.96429, + 0.97009, + 0.35981, + 0.26777, + 0.68157, + 0.35099, + 0.66164, + 1, + 1, + 0.79962, + 0.71129, + 0.2909, + 0.3256, + 0.91366, + 0.35865, + 0.26075, + 0.84509, + 0.32228, + 0.65355, + 1, + 0.71435, + 0.30903, + 0.71337, + 0.28318, + 0.36772, + 0.97296, + 0.38078, + 0.26508, + 0.81549, + 0.31111, + 0.58071, + 1, + 0.9288, + 0.61254, + 0.82809, + 0.292, + 0.31022, + 0.94339, + 0.35731, + 0.28245, + 0.77425, + 0.32112, + 1, + 1, + 0.83645, + 0.5616, + 0.75082, + 0.31996, + 0.3552, + 0.94165, + 0.90588, + 0.96756, + 1, + 0.9118, + 1, + 1, + 0.7622, + 1, + 1, + 0.82055, + 1, + 1, + 0.927, + 1, + 1, + 0.84112, + 1, + 0.98724, + 0.89798, + 0.99454, + 0.97861, + 0.87646, + 0.89227, + 0.97357, + 0.88977, + 1, + 1, + 0.82696, + 1, + 0.99927, + 0.79974, + 1, + 1, + 0.91177, + 1, + 1, + 0.93274, + 0.98242, + 1, + 0.87677, + 1, + 0.94507, + 0.89651, + 0.9949, + 0.99289, + 0.88598, + 0.77935, + 1, + 1, + 1, + 1, + 0.81845, + 1, + 0.99417, + 0.8869, + 1, + 1, + 0.96554, + 0.99579, + 1, + 0.95575, + 1, + 1, + 0.78814, + 1, + 0.98001, + 0.82922, + 1, + 0.99994, + 0.87652, + 0.93475, + 1, + 1, + 1, + 1, + 0.76067, + 1, + 0.91644, + 0.88501, + 1, + 1, + 0.92947, + 0.93353, + 1, + 0.9805, + 1, + 1, + 0.89142, + 1, + 0.97128, + 0.91028, + 0.81869, + 0.76162, + 0.79345, + 0.62581, + 1, + 0.95846, + 1, + 1, + 0.83874, + 1, + 0.81426, + 0.86706, + 1, + 1, + 0.94107, + 1, + 1, + 1, + 1, + 0.9859, + 0.93362, + 1, + 0.91012, + 0.76031, + 0.96692, + 0.97073, + 0.81271, + 0.66124, + 0.84228, + 0.81259, + 1, + 1, + 0.80447, + 1, + 0.97983, + 0.86425, + 1, + 1, + 0.95322, + 0.99652, + 1, + 0.86123, + 1, + 1, + 0.86834, + 1, + 0.79711, + 0.88229, + 0.92587, + 0.93149, + 1, + 0.95911, + 1, + 1, + 0.97519, + 1, + 1, + 1, + 0.98962, + 0.82458, + 1, + 1, + 0.81744, + 1, + 0.88116, + 0.83517, + 1, + 1, + 0.83972, + 1, + 0.99832, + 0.5851, + 0.94366, + 0.91122, + 1, + 0.77569, + 0.93817, + 1, + 1, + 1, + 0.84072, + 1, + 0.95679, + 0.726, + 1, + 1, + 0.875, + 1, + 1, + 1, + 1, + 1, + 0.98886, + 1, + 0.996, + 0.64919, + 0.93381, + 1, + 0.97037, + 0.92996, + 0.81152, + 0.77502, + 0.46941, + 1, + 0.78912, + 1, + 0.65462, + 0.94684, + 0.99954, + 0.71926, + 1, + 0.3061, + 0.73852, + 0.32823, + 0.28217, + 0.91217, + 0.3798, + 0.85571, + 0.33152, + 0.76629, + 0.38887, + 0.75909, + 1, + 0.77987, + 0.99982, + 0.6242, + 0.60714, + 1, + 0.78332, + 1, + 0.31779, + 0.65145, + 0.4695, + 0.31449, + 0.94192, + 0.35035, + 0.84011, + 0.34431, + 0.3534, + 0.99014, + 0.82015, + 0.99567, + 0.97482, + 1, + 0.48384, + 0.60955, + 1, + 0.76733, + 1, + 0.31312, + 0.28571, + 0.69189, + 0.30357, + 0.88086, + 0.32725, + 0.66164, + 0.43101, + 0.36546, + 0.78042, + 0.93078, + 1, + 0.99387, + 0.6809, + 0.99374, + 0.68087, + 0.9382, + 1, + 1, + 0.31446, + 0.29994, + 0.72314, + 0.31828, + 0.92358, + 0.40046, + 0.34452, + 0.66796, + 0.36424, + 0.81454, + 0.75411, + 0.96493, + 0.9993, + 0.77416, + 1, + 0.9751, + 0.73669, + 0.99765, + 0.64498, + 0.93591, + 1, + 0.76495, + 1, + 0.93487, + 0.84997, + 1, + 0.8334, + 0.92947, + 0.99597, + 0.98312, + 0.95254, + 1, + 0.98154, + 1, + 0.95297, + 1, + 1, + 1, + 1, + 0.93735, + 0.80023, + 1, + 0.90973, + 0.99988, + 0.92639, + 0.82275, + 0.9968, + 0.93774, + 0.79431, + 1, + 0.77712, + 1, + 0.90143, + 0.7542, + 0.94263, + 0.95495, + 0.76946, + 1, + 0.99725, + 1, + 0.97275, + 0.99371, + 1, + 1, + 1, + 1, + 1, + 1, + 1, + 0.82058, + 1, + 1, + 0.65673, + 0.99515, + 0.86016, + 0.978, + 0.92505, + 0.89456, + 1, + 0.98288, + 0.76696, + 0.91757, + 0.75857, + 1, + 0.89996, + 0.83428, + 0.99701, + 1, + 1, + 0.96289, + 0.97681, + 1, + 1, + 0.84207, + 0.99875, + 1, + 0.73904, + 0.98001, + 0.77651, + 1, + 1, + 0.74404, + 0.93597, + 0.97186, + 0.60207, + 0.93759, + 0.72597, + 0.99902, + 0.97348, + 0.74245, + 1, + 0.92608, + 0.88919, + 1, + 0.82223, + 0.99677, + 0.93667, + 1, + 0.95654, + 1, + 0.93387, + 1, + 0.8038, + 0.99054, + 0.98401, + 1, + 1, + 1, + 1, + 0.99356, + 0.84875, + 0.90905, + 1, + 1, + 1, + 1, + 1, + 1, + 0.36399, + 0.98465, + 0.96899, + 1, + 1, + 0.93664, + 0.43959, + 0.80663, + 1, + 0.99667, + 1, + 0.73382, + 0.44966, + 0.98068, + 0.88153, + 0.97641, + 1, + 1, + 0.92801, + 0.8793, + 0.91519, + 0.89068, + 0.91983, + 0.98297, + 0.45552, + 1, + 1, + 0.92688, + 0.97995, + 0.99237, + 0.93066, + 0.99484, + 1, + 1, + 0.98099, + 0.80795, + 0.34553, + 1, + 1, + 1, + 0.7842, + 0.92209, + 0.9985, + 0.89477, + 0.99969, + 0.97223, + 0.83825, + 1, + 0.77956, + 1, + 0.9902, + 0.74953, + 0.98398, + 1, + 0.86032, + 0.95941, + 0.63637, + 0.99957, + 1, + 0.81893, + 0.89541, + 0.88256, + 0.78518, + 1, + 1, + 0.99963, + 0.91946, + 1, + 1, + 1, + 1, + 0.99063, + 0.99384, + 1, + 0.97259, + 0.71844, + 1, + 1, + 0.67382, + 0.93149, + 0.83898, + 0.99774, + 1, + 0.81765, + 1, + 1, + 0.81982, + 0.91861, + 0.76769, + 1, + 0.95013, + 0.82528, + 1, + 1, + 1, + 0.96353, + 1, + 0.99939, + 1, + 1, + 0.99777, + 1, + 0.77071, + 0.98651, + 0.75863, + 1, + 0.97162, + 0.71371, + 1, + 0.96866, + 0.61596, + 0.93094, + 0.77523, + 1, + 0.99191, + 0.76959, + 1, + 0.95349, + 0.82885, + 0.97201, + 0.83306, + 1, + 0.9429, + 1, + 0.98135, + 1, + 0.95929, + 0.99582, + 0.71407, + 1, + 0.99985, + 0.69762, + 0.97641, + 1, + 0.8731, + 0.9599, + 0.74013, + 0.96338, + 0.95404, + 0.76666, + 0.89499, + 0.99774, + 0.64504, + 1, + 0.7886, + 1, + 0.9603, + 0.80419, + 1, + 0.99503, + 1, + 0.828, + 1, + 0.98782, + 1, + 0.96448, + 1, + 1, + 0.9729, + 0.96994, + 1, + 1, + 0.95526, + 0.82479, + 1, + 0.89108, + 0.89514, + 0.93402, + 0.38774, + 1, + 1, + 0.99915, + 1, + 0.97922, + 1, + 0.99969, + 1, + 0.90359, + 0.96692, + 0.85672, + 0.38249, + 1, + 0.86196, + 0.98309, + 0.87191, + 0.82656, + 0.97974, + 0.73702, + 1, + 1, + 1, + 1, + 1, + 1, + 0.84216, + 0.90127, + 1, + 1, + 1, + 0.99988, + 0.97903, + 0.87524, + 0.98267, + 0.81045, + 0.50612, + 0.94586, + 1, + 1, + 0.91647, + 0.92517, + 1, + 0.99402, + 1, + 0.93582, + 0.99683, + 0.992, + 0.44975, + 0.98642, + 0.38661, + 0.80914, + 0.34968, + 0.89541, + 0.50688, + 0.26054, + 0.99911, + 0.36238, + 0.72811, + 0.40324, + 0.29145, + 0.9317, + 0.29798, + 0.83319, + 1, + 1, + 0.99847, + 0.8901, + 0.74306, + 0.70296, + 0.87216, + 0.57314, + 0.41697, + 0.83908, + 0.34712, + 0.81558, + 0.35307, + 0.944, + 0.34727, + 0.34825, + 0.87249, + 0.31175, + 0.99496, + 0.34175, + 0.31413, + 1, + 1, + 0.97772, + 1, + 0.5848, + 0.75274, + 0.76193, + 0.92758, + 0.41435, + 0.69619, + 0.32221, + 0.3676, + 0.91476, + 0.30284, + 0.9476, + 0.32438, + 0.92141, + 0.41737, + 0.29386, + 0.97794, + 0.31455, + 0.84433, + 1, + 0.48299, + 1, + 0.95648, + 0.69539, + 0.71389, + 0.99066, + 0.65487, + 0.44609, + 0.86621, + 0.35081, + 0.92264, + 0.35334, + 0.25825, + 0.99786, + 0.39427, + 0.74551, + 0.31397, + 0.94613, + 0.49016, + 0.30549, + 1, + 0.9996, + 1, + 0.9884, + 0.56896, + 0.83926, + 0.85775, + 0.99985, + 0.95459, + 1, + 0.87033, + 0.76974, + 1, + 0.79351, + 1, + 0.96829, + 0.7994, + 0.91125, + 0.8536, + 0.94147, + 1, + 0.76547, + 1, + 0.89346, + 0.77172, + 1, + 0.77789, + 1, + 0.9324, + 0.79858, + 0.93741, + 0.81164, + 0.94644, + 0.99786, + 0.75185, + 0.9317, + 0.90518, + 0.77755, + 1, + 0.7543, + 1, + 0.89108, + 0.7799, + 0.99963, + 0.83279, + 0.93915, + 0.99719, + 0.71899, + 0.96246, + 0.85177, + 0.96649, + 0.95544, + 0.77685, + 1, + 0.89627, + 0.69317, + 0.95505, + 0.7803, + 0.84304, + 1, + 1, + 0.99112, + 1, + 1, + 1, + 1, + 0.94632, + 0.9212, + 0.9523, + 0.65218, + 0.90536, + 1, + 1, + 0.9874, + 1, + 1, + 1, + 1, + 0.95413, + 0.96731, + 0.94232, + 0.69015, + 0.97717, + 1, + 1, + 0.97122, + 1, + 0.86077, + 1, + 1, + 1, + 0.98578, + 0.83676, + 0.77224, + 0.95212, + 1, + 0.84964, + 0.99811, + 1, + 0.76897, + 1, + 1, + 0.73806, + 0.96731, + 0.89416, + 0.80956, + 1, + 1, + 0.44258, + 0.26798, + 0.68703, + 0.37428, + 0.56987, + 0.95099, + 0.37629, + 1, + 1, + 0.7098, + 0.28892, + 0.92221, + 0.34376, + 0.25773, + 0.73827, + 0.32975, + 0.6147, + 0.87448, + 0.68294, + 0.99326, + 0.69356, + 0.33427, + 0.2443, + 0.9317, + 0.35896, + 0.26704, + 0.76098, + 0.348, + 0.63735, + 0.83886, + 0.40757, + 1, + 0.96402, + 0.55721, + 0.26527, + 0.96225, + 0.463, + 0.27979, + 0.74914, + 0.38423, + 0.62752, + 0.84716, + 1, + 1, + 0.92349, + 0.4532, + 0.26576, + 0.94906, + 0.42656, + 0.3347, + 0.75301, + 0.3983, + 0.46144, + 0.89554, + 0.63063, + 0.3715, + 0.21702, + 0.01807, + 0.01416, + 0.01453, + 0.10999, + 0.00293, + 0.00226, + 0.00195, + 0.00183, + 0.0014, + ], + unstable__sensitivity: [], + }, + { + id: 'ad2a4787-c3e4-4021-a842-5388b087b549', + title: 'Paralax Breaks - Sweet Landscape (Art Project ?! remix)', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1220067', + url: 'https://prod-1.storage.jamendo.com/?trackid=1220067&format=mp32', + creator: 'Tunguska Electronic Music Society', + creator_url: 'https://www.jamendo.com/artist/343607/Tunguska_Chillout_Grooves_vol.1', + license: 'by-nd', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nd/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'downtempo', + 'electronic', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'bass', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'groovy', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'instrumental', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Paralax Breaks - Sweet Landscape (Art Project ?! remix)" by Tunguska Electronic Music Society is licensed under CC BY-ND 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nd/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'Tunguska Chillout Grooves Vol. 12', + foreign_landing_url: 'https://www.jamendo.com/album/146333/tunguska-chillout-grooves-vol-12', + creator: 'Tunguska Electronic Music Society', + creator_url: 'https://www.jamendo.com/artist/343607/Tunguska_Chillout_Grooves_vol.1', + url: null, + filesize: null, + filetype: null, + }, + duration: 368000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/ad2a4787-c3e4-4021-a842-5388b087b549/thumb/', + detail_url: 'http://localhost:49153/v1/audio/ad2a4787-c3e4-4021-a842-5388b087b549/', + related_url: 'http://localhost:49153/v1/audio/ad2a4787-c3e4-4021-a842-5388b087b549/related/', + waveform: 'http://localhost:49153/v1/audio/ad2a4787-c3e4-4021-a842-5388b087b549/waveform/', + peaks: [ + 0.00534, + 0.02176, + 0.05646, + 0.11475, + 0.16678, + 0.17496, + 0.14371, + 0.12629, + 0.11054, + 0.09278, + 0.11075, + 0.08744, + 0.08338, + 0.06238, + 0.07199, + 0.04581, + 0.0535, + 0.04254, + 0.03009, + 0.03375, + 0.02234, + 0.02527, + 0.01874, + 0.01404, + 0.01386, + 0.0069, + 0.01025, + 0.00763, + 0.00583, + 0.00574, + 0.00296, + 0.00427, + 0.0032, + 0.00247, + 0.00244, + 0.00146, + 0.06027, + 0.07611, + 0.12421, + 0.17985, + 0.20508, + 0.21714, + 0.13233, + 0.07773, + 0.05597, + 0.04297, + 0.02823, + 0.02167, + 0.01767, + 0.0116, + 0.00882, + 0.00818, + 0.00662, + 0.00385, + 0.04532, + 0.07398, + 0.13813, + 0.17573, + 0.16886, + 0.17054, + 0.20344, + 0.19086, + 0.20731, + 0.10562, + 0.06549, + 0.04535, + 0.0408, + 0.02869, + 0.0177, + 0.01654, + 0.0119, + 0.00842, + 0.06397, + 0.07779, + 0.12381, + 0.18058, + 0.20997, + 0.25886, + 0.20591, + 0.15961, + 0.15287, + 0.11713, + 0.13727, + 0.11777, + 0.09671, + 0.08918, + 0.07901, + 0.07633, + 0.06149, + 0.06052, + 0.035, + 0.03806, + 0.07062, + 0.03265, + 0.03104, + 0.03815, + 0.03964, + 0.03455, + 0.0221, + 0.02606, + 0.00977, + 0.01956, + 0.04053, + 0.05005, + 0.02634, + 0.01794, + 0.02063, + 0.02408, + 0.06473, + 0.07578, + 0.11988, + 0.18311, + 0.20402, + 0.2316, + 0.13144, + 0.07913, + 0.05676, + 0.04752, + 0.02994, + 0.05069, + 0.03088, + 0.03076, + 0.01447, + 0.06165, + 0.03702, + 0.03278, + 0.04917, + 0.07865, + 0.14393, + 0.17942, + 0.16517, + 0.18174, + 0.21046, + 0.19187, + 0.19913, + 0.10532, + 0.06848, + 0.04468, + 0.04953, + 0.07172, + 0.64595, + 0.40864, + 0.54811, + 0.24628, + 0.8193, + 0.78903, + 0.88641, + 0.77944, + 0.80218, + 0.85983, + 0.47935, + 0.18683, + 0.17292, + 0.71596, + 0.13993, + 0.46974, + 0.1623, + 0.13553, + 0.7586, + 0.41163, + 0.78701, + 0.41154, + 0.78048, + 0.76492, + 0.96713, + 0.95584, + 0.76943, + 0.69744, + 0.44185, + 0.26215, + 0.32041, + 0.78121, + 0.15323, + 0.50938, + 0.14029, + 0.23673, + 0.75918, + 0.90725, + 0.72961, + 0.77868, + 0.73183, + 0.39583, + 0.71654, + 0.60604, + 0.61007, + 0.89395, + 0.4753, + 0.19065, + 0.16401, + 0.73376, + 0.14795, + 0.47584, + 0.16401, + 0.11487, + 0.73684, + 0.4156, + 0.82284, + 0.39692, + 0.785, + 0.47423, + 0.70791, + 0.85965, + 0.57137, + 0.75066, + 0.46812, + 0.33464, + 0.28797, + 0.84982, + 0.16449, + 0.54134, + 0.1514, + 0.14521, + 0.80001, + 0.78433, + 0.74706, + 0.67718, + 1, + 0.65001, + 0.94021, + 0.78851, + 0.80535, + 0.86923, + 0.45933, + 0.18329, + 0.15528, + 0.80947, + 0.21601, + 0.67629, + 0.31822, + 0.28712, + 0.86438, + 0.54051, + 0.84014, + 0.40626, + 0.8442, + 0.7864, + 0.98096, + 0.95843, + 0.73959, + 0.73882, + 0.47987, + 0.25977, + 0.31101, + 0.91287, + 0.18241, + 0.63738, + 0.15726, + 0.27332, + 0.75979, + 0.98636, + 0.7282, + 0.75671, + 0.72109, + 0.39268, + 0.75341, + 0.58419, + 0.59847, + 0.88943, + 0.48939, + 0.20991, + 0.18198, + 0.79095, + 0.22694, + 0.60277, + 0.26081, + 0.32383, + 0.87896, + 0.50691, + 0.81893, + 0.38081, + 0.83044, + 0.47047, + 0.73928, + 0.85592, + 0.60967, + 0.72387, + 0.49409, + 0.47224, + 0.31742, + 0.31721, + 0.2414, + 0.20997, + 0.21342, + 0.18427, + 0.66103, + 0.48787, + 0.84854, + 0.44984, + 0.8276, + 0.70647, + 0.84948, + 0.74154, + 0.78442, + 0.94385, + 0.86322, + 0.86724, + 0.63076, + 0.7759, + 0.44102, + 0.94024, + 0.72744, + 0.76205, + 0.8312, + 0.80752, + 0.82519, + 0.62163, + 1, + 0.63408, + 1, + 0.79385, + 0.90893, + 0.73812, + 0.79043, + 0.76766, + 0.66805, + 0.83728, + 0.45558, + 0.68014, + 0.52031, + 0.85626, + 0.7972, + 0.99435, + 0.80868, + 0.94888, + 0.83367, + 0.64577, + 0.82846, + 0.84643, + 0.87133, + 0.81179, + 0.85617, + 0.78463, + 0.58248, + 0.91995, + 0.46947, + 0.95877, + 0.69146, + 0.74783, + 0.79656, + 0.82962, + 0.85247, + 0.6324, + 1, + 0.63805, + 0.99936, + 0.78176, + 0.97681, + 0.6599, + 0.82595, + 0.89267, + 0.63433, + 0.82507, + 0.49342, + 0.92743, + 0.59203, + 0.7329, + 0.82418, + 0.961, + 0.97528, + 0.91223, + 0.88147, + 0.70852, + 0.81558, + 0.81344, + 0.85348, + 0.79281, + 0.82983, + 0.79382, + 0.61693, + 0.98346, + 0.48149, + 0.95523, + 0.68963, + 0.72344, + 0.76501, + 0.82702, + 0.81927, + 0.65062, + 1, + 0.65398, + 0.99643, + 0.80209, + 0.95267, + 0.66454, + 0.84924, + 0.83587, + 0.67293, + 0.81622, + 0.45973, + 0.66723, + 0.57427, + 0.83853, + 0.79983, + 0.98941, + 0.78066, + 0.95373, + 0.86004, + 0.64986, + 0.80508, + 0.86276, + 0.92141, + 0.80386, + 0.90603, + 0.80645, + 0.58007, + 0.94504, + 0.51256, + 0.91614, + 0.66106, + 0.69863, + 0.83663, + 0.82507, + 0.77441, + 0.67724, + 1, + 0.67919, + 0.99997, + 0.74703, + 0.98721, + 0.66643, + 0.89547, + 0.7814, + 0.64394, + 0.79446, + 0.5013, + 0.99606, + 0.54247, + 0.80172, + 0.79812, + 0.96716, + 0.76647, + 0.9498, + 0.53035, + 0.29734, + 0.20786, + 0.24094, + 0.35902, + 0.29328, + 0.20869, + 0.24067, + 0.23289, + 0.22248, + 0.15653, + 0.19254, + 0.15922, + 0.13788, + 0.09876, + 0.08066, + 0.07251, + 0.0578, + 0.02927, + 0.04111, + 0.02509, + 0.03247, + 0.05109, + 0.05933, + 0.0679, + 0.06882, + 0.05524, + 0.07801, + 0.06247, + 0.06949, + 0.07303, + 0.07297, + 0.05954, + 0.04175, + 0.04483, + 0.03903, + 0.08634, + 0.10047, + 0.13532, + 0.19651, + 0.19126, + 0.25019, + 0.17298, + 0.14866, + 0.13257, + 0.09925, + 0.11124, + 0.09494, + 0.10288, + 0.07816, + 0.0607, + 0.05393, + 0.04852, + 0.04434, + 0.02802, + 0.02994, + 0.02362, + 0.02847, + 0.0408, + 0.07327, + 0.08286, + 0.0969, + 0.12305, + 0.13782, + 0.14154, + 0.14985, + 0.1467, + 0.14945, + 0.16309, + 0.15574, + 0.14255, + 0.14686, + 0.17759, + 0.18134, + 0.19752, + 0.23392, + 0.23289, + 0.27311, + 0.15873, + 0.13038, + 0.10193, + 0.08832, + 0.08734, + 0.08277, + 0.0889, + 0.06623, + 0.06351, + 0.05271, + 0.04233, + 0.04431, + 0.02777, + 0.02509, + 0.02286, + 0.02841, + 0.03763, + 0.06381, + 0.06778, + 0.0723, + 0.0589, + 0.07801, + 0.06793, + 0.07389, + 0.07996, + 0.07135, + 0.05921, + 0.04123, + 0.04932, + 0.03702, + 0.07471, + 0.10602, + 0.14655, + 0.19126, + 0.19144, + 0.23832, + 0.14521, + 0.10175, + 0.10822, + 0.07553, + 0.07752, + 0.08432, + 0.06735, + 0.05667, + 0.05222, + 0.05896, + 0.06708, + 0.07199, + 0.05203, + 0.03189, + 0.03024, + 0.03809, + 0.05536, + 0.07999, + 0.09165, + 0.10953, + 0.12729, + 0.16065, + 0.16794, + 0.1608, + 0.17896, + 0.16529, + 0.16892, + 0.16037, + 0.1464, + 0.1615, + 0.18427, + 0.17081, + 0.19831, + 0.19034, + 0.21638, + 0.2682, + 0.15128, + 0.1319, + 0.10816, + 0.11594, + 0.11469, + 0.12809, + 0.09259, + 0.14393, + 0.14737, + 0.13013, + 0.16013, + 0.1211, + 0.1218, + 0.1492, + 0.13175, + 0.16169, + 0.13321, + 0.20591, + 0.17878, + 0.19199, + 0.17246, + 0.20142, + 0.21033, + 0.17637, + 0.22248, + 0.16193, + 0.22407, + 0.20905, + 0.16041, + 0.16727, + 0.16575, + 0.21741, + 0.20045, + 0.23572, + 0.27451, + 0.18268, + 0.2316, + 0.25941, + 0.15394, + 0.206, + 0.22623, + 0.20356, + 0.20026, + 0.16672, + 0.2429, + 0.27311, + 0.23576, + 0.1644, + 0.19208, + 0.2555, + 0.22929, + 0.26566, + 0.30628, + 0.30241, + 0.2971, + 0.37489, + 0.2913, + 0.32942, + 0.339, + 0.29124, + 0.28684, + 0.25095, + 0.25944, + 0.31797, + 0.32224, + 0.39293, + 0.73644, + 0.51265, + 0.72866, + 0.63128, + 0.61663, + 0.8916, + 0.5522, + 0.26026, + 0.2992, + 0.8536, + 0.33631, + 0.67379, + 0.28159, + 0.35569, + 0.89218, + 0.507, + 0.84405, + 0.4839, + 0.86645, + 0.52132, + 0.77285, + 0.89938, + 0.57915, + 0.75454, + 0.53438, + 0.27378, + 0.26051, + 0.89636, + 0.24668, + 0.60137, + 0.19892, + 0.32493, + 0.93927, + 0.93847, + 0.72527, + 0.7651, + 1, + 0.67254, + 0.97577, + 0.81054, + 0.78945, + 0.96966, + 0.53044, + 0.27247, + 0.30909, + 0.92074, + 0.33045, + 0.6559, + 0.36454, + 0.40284, + 0.81985, + 0.52135, + 0.81414, + 0.52361, + 0.86245, + 0.85238, + 0.99814, + 0.97336, + 0.7532, + 0.8984, + 0.58211, + 0.74071, + 0.48436, + 0.57704, + 0.45579, + 0.42354, + 0.4333, + 0.40297, + 0.59505, + 0.52455, + 0.87432, + 0.54393, + 0.86004, + 0.85672, + 0.94852, + 0.74306, + 0.89254, + 0.98718, + 0.88055, + 0.82638, + 0.77514, + 0.79934, + 0.51222, + 0.98654, + 0.67174, + 0.81017, + 0.75842, + 0.79821, + 0.74877, + 0.71419, + 1, + 0.63134, + 0.9884, + 0.91955, + 0.94842, + 0.75369, + 0.83593, + 0.74963, + 0.72295, + 0.81277, + 0.52684, + 0.72677, + 0.53688, + 0.94031, + 0.82788, + 0.94659, + 0.85199, + 0.90304, + 0.81475, + 0.77804, + 0.83633, + 0.86825, + 0.89746, + 0.78277, + 0.81857, + 0.88189, + 0.70092, + 0.95578, + 0.52608, + 0.90722, + 0.69115, + 0.8464, + 0.79662, + 0.84246, + 0.78741, + 0.69265, + 1, + 0.71093, + 1, + 0.90762, + 0.89602, + 0.74081, + 0.92315, + 0.79055, + 0.82189, + 0.86905, + 0.64632, + 0.94366, + 0.66417, + 0.77255, + 0.83587, + 0.95193, + 1, + 0.93167, + 0.90628, + 0.79849, + 0.8619, + 0.9266, + 0.91354, + 0.85739, + 0.88656, + 0.76382, + 0.62508, + 0.94232, + 0.62813, + 0.96387, + 0.73833, + 0.75979, + 0.79504, + 0.77743, + 0.8066, + 0.65917, + 1, + 0.67211, + 0.99921, + 0.78222, + 0.96179, + 0.70363, + 0.82797, + 0.80584, + 0.72057, + 0.83801, + 0.52913, + 0.86273, + 0.59771, + 0.87939, + 0.74621, + 0.96381, + 0.87259, + 0.97885, + 0.9176, + 0.73647, + 0.88348, + 0.82907, + 0.87014, + 0.80667, + 0.8486, + 0.80212, + 0.66085, + 0.87652, + 0.52492, + 0.86886, + 0.69158, + 0.67669, + 0.80093, + 0.80874, + 0.81268, + 0.63671, + 1, + 0.70641, + 0.96185, + 0.84741, + 0.99365, + 0.68392, + 0.88589, + 0.80569, + 0.72497, + 0.84835, + 0.60915, + 1, + 0.6697, + 0.84524, + 0.75259, + 0.98172, + 0.91803, + 0.9144, + 0.91137, + 0.76525, + 0.97488, + 0.83706, + 0.82943, + 0.96188, + 0.54048, + 0.24259, + 0.21366, + 0.87518, + 0.23231, + 0.626, + 0.21043, + 0.16657, + 0.87313, + 0.52351, + 0.85989, + 0.42644, + 0.90167, + 0.74358, + 0.97916, + 1, + 0.7647, + 0.69921, + 0.5497, + 0.31422, + 0.31361, + 0.85122, + 0.19318, + 0.68532, + 0.17295, + 0.3202, + 0.77203, + 0.98373, + 0.74322, + 0.75756, + 0.74508, + 0.45351, + 0.76605, + 0.69665, + 0.66216, + 0.93756, + 0.43638, + 0.22028, + 0.22022, + 0.8999, + 0.26365, + 0.61095, + 0.13575, + 0.15332, + 0.81494, + 0.58242, + 0.83816, + 0.37608, + 0.85006, + 0.47642, + 0.71303, + 0.8876, + 0.59413, + 0.78695, + 0.51711, + 0.38231, + 0.32447, + 0.9321, + 0.16047, + 0.71761, + 0.20899, + 0.24891, + 0.9982, + 0.90057, + 0.69991, + 0.69564, + 1, + 0.73101, + 0.90451, + 0.81603, + 0.80816, + 0.86966, + 0.44591, + 0.18458, + 0.11878, + 0.828, + 0.13486, + 0.4774, + 0.29978, + 0.28361, + 0.80789, + 0.46202, + 0.77914, + 0.39827, + 0.78469, + 0.82815, + 0.949, + 0.96814, + 0.72048, + 0.69051, + 0.50502, + 0.25584, + 0.25816, + 0.81027, + 0.12741, + 0.52895, + 0.06726, + 0.20237, + 0.73122, + 0.93152, + 0.69069, + 0.67537, + 0.67553, + 0.42915, + 0.71883, + 0.59145, + 0.5891, + 0.92932, + 0.45289, + 0.15052, + 0.10959, + 0.79128, + 0.09665, + 0.47093, + 0.23969, + 0.24552, + 0.80892, + 0.44429, + 0.78945, + 0.38737, + 0.80084, + 0.52321, + 0.71776, + 0.81692, + 0.46269, + 0.78228, + 0.49437, + 0.12235, + 0.10663, + 0.7712, + 0.10504, + 0.53023, + 0.07678, + 0.13343, + 0.9241, + 0.82412, + 0.71596, + 0.7304, + 1, + 0.15488, + 0.43715, + 0.27885, + 0.25718, + 0.96564, + 0.47343, + 0.13166, + 0.12601, + 0.79546, + 0.14444, + 0.4514, + 0.13761, + 0.12165, + 0.81927, + 0.43123, + 0.73595, + 0.42546, + 0.81411, + 0.24952, + 0.44914, + 0.79568, + 0.15833, + 0.80853, + 0.43113, + 0.05924, + 0.02908, + 0.78201, + 0.07624, + 0.43272, + 0.05664, + 0.03183, + 0.7882, + 0.4174, + 0.05383, + 0.05313, + 0.80709, + 0.08795, + 0.38588, + 0.24986, + 0.23057, + 0.96542, + 0.43675, + 0.11423, + 0.12229, + 0.79565, + 0.09238, + 0.38639, + 0.09503, + 0.08255, + 0.84256, + 0.27381, + 0.80468, + 0.36979, + 0.77932, + 0.0903, + 0.24009, + 0.79919, + 0.13019, + 0.79101, + 0.31718, + 0.04633, + 0.02908, + 0.76263, + 0.03571, + 0.21271, + 0.03745, + 0.0401, + 0.86956, + 0.3217, + 0.14545, + 0.16166, + 0.11695, + 0.09006, + 0.069, + 0.05762, + 0.04181, + 0.03677, + 0.02924, + 0.02368, + 0.02478, + 0.02762, + 0.03061, + 0.02676, + 0.02484, + 0.02127, + 0.01785, + 0.01102, + 0.00998, + 0.00687, + 0.00626, + 0.00397, + 0.00171, + 0.00101, + 0.00043, + 0.00031, + 0.00024, + 0.00027, + ], + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=games&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=games&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..a3ed6bfea6a --- /dev/null +++ b/frontend/test/tapes/search/audio/q=games&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 @@ -0,0 +1,91 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:12.635Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=games&license=by&extension=mp3&source=jamendo&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:12 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept, Authorization, origin, Accept-Encoding', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '14', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '9', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '77d0b13b-5305-4419-bca8-e74ce4f33b1f', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1145', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:07 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d500e8a274b-ADL', + ], + 'content-encoding': [ + 'br', + ], + }, + body: { + result_count: 0, + page_count: 0, + page_size: 20, + page: 1, + results: [], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=games&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=games&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..0ac9b0cff43 --- /dev/null +++ b/frontend/test/tapes/search/audio/q=games&peaks=true_keep-alive.json5 @@ -0,0 +1,2734 @@ +{ + meta: { + createdAt: '2024-09-25T08:55:23.575Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=games&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Wed, 25 Sep 2024 08:55:24 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '199', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '7a975daa-5b37-4e9a-a93e-d1623e8f4d96', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'MISS', + ], + 'last-modified': [ + 'Wed, 25 Sep 2024 08:55:24 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c89cb850b8a2c3f-FRA', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: '83dda93f-ae07-4508-b3e8-248b7aa664a6', + title: 'Game Sound Wrong.wav', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/Bertrof/sounds/131657', + url: 'https://cdn.freesound.org/previews/131/131657_2398403-hq.mp3', + creator: 'Bertrof', + creator_url: 'https://freesound.org/people/Bertrof', + license: 'by', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by/3.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 54999, + filetype: 'mp3', + tags: [ + { + name: 'FX', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Incorrect', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'sound', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'sound-effects', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'video-game', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'wrong', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/131657/download/', + bit_rate: 0, + filesize: 418996, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"Game Sound Wrong.wav" by Bertrof is licensed under CC BY 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/3.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'Game Sounds', + foreign_landing_url: 'https://freesound.org/apiv2/packs/8276/', + creator: 'Bertrof', + creator_url: 'https://freesound.org/people/Bertrof/', + url: null, + filesize: null, + filetype: null, + }, + duration: 2375, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/83dda93f-ae07-4508-b3e8-248b7aa664a6/', + related_url: 'http://localhost:49153/v1/audio/83dda93f-ae07-4508-b3e8-248b7aa664a6/related/', + waveform: 'http://localhost:49153/v1/audio/83dda93f-ae07-4508-b3e8-248b7aa664a6/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '2cf1c0ce-02b6-4cd0-bfbe-44cf51557c84', + title: 'Game Sound Intro To Game.wav', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/Bertrof/sounds/131659', + url: 'https://cdn.freesound.org/previews/131/131659_2398403-hq.mp3', + creator: 'Bertrof', + creator_url: 'https://freesound.org/people/Bertrof', + license: 'by', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by/3.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 106825, + filetype: 'mp3', + tags: [ + { + name: 'FX', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'intro', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'introduction', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'jingle', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'music', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'sound', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'sound-effects', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'tune', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'video-game', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'video-game-music', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/131659/download/', + bit_rate: 0, + filesize: 837944, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"Game Sound Intro To Game.wav" by Bertrof is licensed under CC BY 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/3.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'Game Sounds', + foreign_landing_url: 'https://freesound.org/apiv2/packs/8276/', + creator: 'Bertrof', + creator_url: 'https://freesound.org/people/Bertrof/', + url: null, + filesize: null, + filetype: null, + }, + duration: 4750, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/2cf1c0ce-02b6-4cd0-bfbe-44cf51557c84/', + related_url: 'http://localhost:49153/v1/audio/2cf1c0ce-02b6-4cd0-bfbe-44cf51557c84/related/', + waveform: 'http://localhost:49153/v1/audio/2cf1c0ce-02b6-4cd0-bfbe-44cf51557c84/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'f256a7ae-5a93-4c4b-961f-292921be7538', + title: 'Retro game heal sound', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/lulyc/sounds/346116', + url: 'https://cdn.freesound.org/previews/346/346116_6051514-hq.mp3', + creator: 'lulyc', + creator_url: 'https://freesound.org/people/lulyc', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 16698, + filetype: 'mp3', + tags: [ + { + name: '8-bit', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'eat-mushroom', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'heal', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'heal-sound', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'retro', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'retro-game', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/346116/download/', + bit_rate: 0, + filesize: 61112, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"Retro game heal sound" by lulyc is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'Retro game sounds', + foreign_landing_url: 'https://freesound.org/apiv2/packs/19648/', + creator: 'lulyc', + creator_url: 'https://freesound.org/people/lulyc/', + url: null, + filesize: null, + filetype: null, + }, + duration: 646, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/f256a7ae-5a93-4c4b-961f-292921be7538/', + related_url: 'http://localhost:49153/v1/audio/f256a7ae-5a93-4c4b-961f-292921be7538/related/', + waveform: 'http://localhost:49153/v1/audio/f256a7ae-5a93-4c4b-961f-292921be7538/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '5543fd3c-6fb7-449d-99ec-ce15036070e3', + title: 'Games', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/767990', + url: 'https://prod-1.storage.jamendo.com/?trackid=767990&format=mp32', + creator: 'The Windy City', + creator_url: 'https://www.jamendo.com/artist/368378/The_Windy_City', + license: 'by-sa', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-sa/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'vocal', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Games" by The Windy City is licensed under CC BY-SA 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'The Windy City EP', + foreign_landing_url: 'https://www.jamendo.com/album/89979/the-windy-city-ep', + creator: 'The Windy City', + creator_url: 'https://www.jamendo.com/artist/368378/The_Windy_City', + url: null, + filesize: null, + filetype: null, + }, + duration: 237000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/5543fd3c-6fb7-449d-99ec-ce15036070e3/thumb/', + detail_url: 'http://localhost:49153/v1/audio/5543fd3c-6fb7-449d-99ec-ce15036070e3/', + related_url: 'http://localhost:49153/v1/audio/5543fd3c-6fb7-449d-99ec-ce15036070e3/related/', + waveform: 'http://localhost:49153/v1/audio/5543fd3c-6fb7-449d-99ec-ce15036070e3/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '71943200-706c-4e1d-98bb-fb98eb5f3eb2', + title: 'Games', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1521106', + url: 'https://prod-1.storage.jamendo.com/?trackid=1521106&format=mp32', + creator: 'Tony Petersen', + creator_url: 'https://www.jamendo.com/artist/506990/Tony_Petersen', + license: 'by-nc', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'country', + 'folk', + 'singersongwriter', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'banjo', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'guitar', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'male', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_high', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'vocal', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'vocals', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Games" by Tony Petersen is licensed under CC BY-NC 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'A Soft Place To Land', + foreign_landing_url: 'https://www.jamendo.com/album/174727/a-soft-place-to-land', + creator: 'Tony Petersen', + creator_url: 'https://www.jamendo.com/artist/506990/Tony_Petersen', + url: null, + filesize: null, + filetype: null, + }, + duration: 216000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/71943200-706c-4e1d-98bb-fb98eb5f3eb2/thumb/', + detail_url: 'http://localhost:49153/v1/audio/71943200-706c-4e1d-98bb-fb98eb5f3eb2/', + related_url: 'http://localhost:49153/v1/audio/71943200-706c-4e1d-98bb-fb98eb5f3eb2/related/', + waveform: 'http://localhost:49153/v1/audio/71943200-706c-4e1d-98bb-fb98eb5f3eb2/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '7408ac37-9986-4fe6-b71c-11316deed3ae', + title: 'Play the Game', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1093616', + url: 'https://prod-1.storage.jamendo.com/?trackid=1093616&format=mp32', + creator: 'Lilly Wolf', + creator_url: 'https://www.jamendo.com/artist/378695/lillywolf', + license: 'by', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'dance', + 'electronic', + 'pop', + 'synthpop', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'drums', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'energetic', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'female', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'synthesizer', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'vocal', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Play the Game" by Lilly Wolf is licensed under CC BY 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'Play Loud', + foreign_landing_url: 'https://www.jamendo.com/album/130349/play-loud', + creator: 'Lilly Wolf', + creator_url: 'https://www.jamendo.com/artist/378695/lillywolf', + url: null, + filesize: null, + filetype: null, + }, + duration: 230000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/7408ac37-9986-4fe6-b71c-11316deed3ae/thumb/', + detail_url: 'http://localhost:49153/v1/audio/7408ac37-9986-4fe6-b71c-11316deed3ae/', + related_url: 'http://localhost:49153/v1/audio/7408ac37-9986-4fe6-b71c-11316deed3ae/related/', + waveform: 'http://localhost:49153/v1/audio/7408ac37-9986-4fe6-b71c-11316deed3ae/waveform/', + peaks: [ + 0.26019, + 0.44198, + 0.30166, + 0.52319, + 0.39026, + 0.29122, + 0.12876, + 0.34253, + 0.23009, + 0.03036, + 0.44392, + 0.30875, + 0.45714, + 0.51352, + 0.29419, + 0.14513, + 0.27983, + 0.25384, + 0.43444, + 0.29557, + 0.29898, + 0.47205, + 0.39603, + 0.28356, + 0.12844, + 0.35035, + 0.32989, + 0.45427, + 0.30559, + 0.1088, + 0.52058, + 0.40258, + 0.26457, + 0.14236, + 0.27631, + 0.75797, + 0.47505, + 0.68723, + 0.52019, + 0.09696, + 0.7158, + 0.31009, + 0.59586, + 0.39603, + 0.73802, + 0.46544, + 0.71513, + 0.55075, + 0.67497, + 0.36069, + 0.30668, + 0.63126, + 0.38317, + 0.73949, + 0.46139, + 0.70705, + 0.5609, + 0.71797, + 0.39789, + 0.1692, + 0.59292, + 0.44788, + 0.64598, + 0.56166, + 0.67328, + 0.63382, + 0.74121, + 0.60262, + 0.96067, + 0.90694, + 0.61265, + 0.77681, + 0.85825, + 0.95265, + 0.88411, + 0.88433, + 0.90566, + 0.88216, + 0.87907, + 0.666, + 0.90052, + 0.93577, + 0.96447, + 0.92466, + 0.86151, + 0.80618, + 0.95811, + 0.92919, + 0.808, + 0.93238, + 0.92989, + 0.9207, + 0.79038, + 0.8911, + 0.8904, + 0.95077, + 0.90288, + 0.89889, + 0.88082, + 0.88006, + 0.92303, + 0.81212, + 0.93302, + 0.8118, + 0.94107, + 0.90876, + 0.83673, + 0.85429, + 0.86278, + 0.93593, + 0.91747, + 0.91339, + 0.9464, + 0.89979, + 0.62998, + 0.9396, + 0.94237, + 0.94729, + 0.8761, + 0.87316, + 0.92159, + 0.7898, + 0.96035, + 0.92166, + 0.84085, + 0.92475, + 0.9608, + 0.94806, + 0.79606, + 0.91051, + 0.88552, + 0.93273, + 0.92197, + 0.89346, + 0.90994, + 0.91224, + 0.79836, + 0.7854, + 0.9055, + 0.85286, + 0.88156, + 0.63532, + 0.90422, + 0.89567, + 0.93209, + 0.85579, + 0.91712, + 0.88989, + 0.84331, + 0.92092, + 0.84606, + 0.93647, + 0.91693, + 0.93264, + 0.87192, + 0.88979, + 0.85688, + 0.9283, + 0.92833, + 0.93743, + 0.88469, + 0.76011, + 0.94518, + 0.92941, + 0.88504, + 0.92785, + 0.93976, + 0.90726, + 0.88191, + 0.88283, + 0.77007, + 0.91195, + 0.95342, + 0.89726, + 0.91719, + 0.92287, + 0.92823, + 0.83408, + 0.88172, + 0.91655, + 0.96466, + 0.85851, + 0.95473, + 0.92874, + 0.89145, + 0.80513, + 0.92887, + 0.93739, + 0.91945, + 0.93213, + 0.97321, + 0.85381, + 0.75478, + 0.96022, + 0.87715, + 0.76656, + 0.92766, + 0.95537, + 0.95364, + 0.75552, + ], + unstable__sensitivity: [], + }, + { + id: 'c9c58302-df17-42fc-97bb-4550cff02ebd', + title: '8. B-eiger - Favourite games', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1229422', + url: 'https://prod-1.storage.jamendo.com/?trackid=1229422&format=mp32', + creator: 'B-eiger', + creator_url: 'https://www.jamendo.com/artist/471328/B-eiger', + license: 'by-nc-sa', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'rock', + 'singersongwriter', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'beiger', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'male', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'vocal', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"8. B-eiger - Favourite games" by B-eiger is licensed under CC BY-NC-SA 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'Sometimes', + foreign_landing_url: 'https://www.jamendo.com/album/147457/sometimes', + creator: 'B-eiger', + creator_url: 'https://www.jamendo.com/artist/471328/B-eiger', + url: null, + filesize: null, + filetype: null, + }, + duration: 193000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/c9c58302-df17-42fc-97bb-4550cff02ebd/thumb/', + detail_url: 'http://localhost:49153/v1/audio/c9c58302-df17-42fc-97bb-4550cff02ebd/', + related_url: 'http://localhost:49153/v1/audio/c9c58302-df17-42fc-97bb-4550cff02ebd/related/', + waveform: 'http://localhost:49153/v1/audio/c9c58302-df17-42fc-97bb-4550cff02ebd/waveform/', + peaks: [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0.00336, + 0.00946, + 0.01712, + 0.01859, + 0.02835, + 0.03241, + 0.05637, + 0.0697, + 0.08692, + 0.11884, + 0.53169, + 0.74065, + 0.78799, + 0.6755, + 0.98361, + 0.97568, + 0.76534, + 0.88403, + 0.69735, + 0.64904, + 0.75713, + 0.8385, + 0.75576, + 0.89569, + 0.72066, + 0.61519, + 0.71026, + 0.6523, + 0.56355, + 0.79183, + 0.73226, + 0.66048, + 0.93551, + 0.89611, + 0.89648, + 0.89584, + 0.88965, + 0.70476, + 0.75106, + 0.82617, + 0.64458, + 0.75564, + 0.73266, + 0.70174, + 0.70623, + 0.65584, + 0.55968, + 0.78707, + 0.80837, + 0.71328, + 0.8833, + 0.90555, + 0.79452, + 0.71905, + 0.7336, + 0.70547, + 0.79467, + 0.75085, + 0.80648, + 0.82095, + 0.77248, + 0.68999, + 0.63869, + 0.61089, + 0.57042, + 0.77474, + 0.68502, + 0.9404, + 0.87344, + 0.88485, + 0.80023, + 0.66805, + 0.75881, + 0.77038, + 0.79766, + 0.75579, + 0.6545, + 0.73067, + 0.80734, + 0.67916, + 0.68471, + 0.61644, + 0.59157, + 0.85275, + 0.81271, + 0.8836, + 0.98889, + 0.91583, + 0.87582, + 0.67837, + 0.86084, + 0.64983, + 0.81204, + 0.62819, + 0.65682, + 0.8146, + 0.80544, + 0.84237, + 0.85769, + 0.81539, + 0.75567, + 0.86978, + 0.86297, + 0.77529, + 0.96701, + 0.7813, + 0.76031, + 0.85586, + 0.68401, + 0.80639, + 0.95935, + 0.6357, + 0.79644, + 0.69912, + 0.9096, + 0.98328, + 0.79727, + 0.77029, + 0.81683, + 0.8739, + 0.80538, + 0.86157, + 0.96158, + 0.83505, + 0.81729, + 0.73687, + 0.94443, + 0.8746, + 0.85382, + 0.74056, + 0.68151, + 0.87069, + 0.91629, + 0.93506, + 0.79162, + 0.93759, + 0.84109, + 0.80621, + 0.86282, + 0.92822, + 0.96622, + 0.96768, + 0.90722, + 0.8735, + 0.76415, + 0.9827, + 0.76162, + 0.64718, + 0.14689, + 0.15015, + 0.19132, + 0.17768, + 0.12452, + 0.21317, + 0.28275, + 0.97903, + 0.84722, + 0.73165, + 0.63738, + 0.99017, + 0.73675, + 0.9241, + 0.81481, + 0.95477, + 0.95526, + 0.92871, + 0.85067, + 0.983, + 0.94079, + 0.97317, + 0.96973, + 0.97153, + 0.93445, + 0.93686, + 0.89303, + 0.85348, + 0.96808, + 0.63585, + 0.80136, + 0.65267, + 0.90143, + 0.72311, + 0.98959, + 0.81402, + 0.94507, + 0.90054, + 0.82229, + 0.81994, + 0.9866, + 0.77059, + 0.7738, + 0.69356, + 0.99783, + ], + unstable__sensitivity: [], + }, + { + id: 'b723f04a-ed36-4394-bb33-3295323bc097', + title: 'Winner Bell Game Show.aif', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/oldedgar/sounds/97980', + url: 'https://cdn.freesound.org/previews/97/97980_1490788-hq.mp3', + creator: 'oldedgar', + creator_url: 'https://freesound.org/people/oldedgar', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 49392, + filetype: 'mp3', + tags: [ + { + name: 'bell', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'game-show', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'winner', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'winner-bell', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/97980/download/', + bit_rate: 0, + filesize: 624722, + filetype: 'aiff', + sample_rate: 48000, + }, + ], + attribution: '"Winner Bell Game Show.aif" by oldedgar is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 3253, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/b723f04a-ed36-4394-bb33-3295323bc097/', + related_url: 'http://localhost:49153/v1/audio/b723f04a-ed36-4394-bb33-3295323bc097/related/', + waveform: 'http://localhost:49153/v1/audio/b723f04a-ed36-4394-bb33-3295323bc097/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '13ea82f2-eb72-4fa6-b1e2-62a9a09c9bf0', + title: 'Video Game 7.wav', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/djgriffin/sounds/172561', + url: 'https://cdn.freesound.org/previews/172/172561_45941-hq.mp3', + creator: 'djgriffin', + creator_url: 'https://freesound.org/people/djgriffin', + license: 'by', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 3536717, + filetype: 'mp3', + tags: [ + { + name: 'Danny', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Game', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Video', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'djgriffin', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'electronic', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'free', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'griffin', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'loop', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'music', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'producer', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'sync', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'tv', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/172561/download/', + bit_rate: 0, + filesize: 25556532, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"Video Game 7.wav" by djgriffin is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'video game', + foreign_landing_url: 'https://freesound.org/apiv2/packs/10794/', + creator: 'djgriffin', + creator_url: 'https://freesound.org/people/djgriffin/', + url: null, + filesize: null, + filetype: null, + }, + duration: 144878, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/13ea82f2-eb72-4fa6-b1e2-62a9a09c9bf0/', + related_url: 'http://localhost:49153/v1/audio/13ea82f2-eb72-4fa6-b1e2-62a9a09c9bf0/related/', + waveform: 'http://localhost:49153/v1/audio/13ea82f2-eb72-4fa6-b1e2-62a9a09c9bf0/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '4964c7c4-c0d3-4116-999e-c1773347629f', + title: 'Cheap Flash Game Tune', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/vikuserro/sounds/265549', + url: 'https://cdn.freesound.org/previews/265/265549_2833408-hq.mp3', + creator: 'vikuserro', + creator_url: 'https://freesound.org/people/vikuserro', + license: 'by', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 534026, + filetype: 'mp3', + tags: [ + { + name: 'cheap', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'flash', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'games', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'gra', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'looping', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'music', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'muzyka', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'tune', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/265549/download/', + bit_rate: 160000, + filesize: 549686, + filetype: 'mp3', + sample_rate: 44100, + }, + ], + attribution: '"Cheap Flash Game Tune" by vikuserro is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'Game Sounds', + foreign_landing_url: 'https://freesound.org/apiv2/packs/16386/', + creator: 'vikuserro', + creator_url: 'https://freesound.org/people/vikuserro/', + url: null, + filesize: null, + filetype: null, + }, + duration: 27468, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/4964c7c4-c0d3-4116-999e-c1773347629f/', + related_url: 'http://localhost:49153/v1/audio/4964c7c4-c0d3-4116-999e-c1773347629f/related/', + waveform: 'http://localhost:49153/v1/audio/4964c7c4-c0d3-4116-999e-c1773347629f/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '654cbaf1-8d92-47b7-9331-fb4cf22d4f17', + title: 'Video Game Coin', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/harrietniamh/sounds/415083', + url: 'https://cdn.freesound.org/previews/415/415083_4061049-hq.mp3', + creator: 'harrietniamh', + creator_url: 'https://freesound.org/people/harrietniamh', + license: 'by', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 14714, + filetype: 'mp3', + tags: [ + { + name: 'audacity', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'coin', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'computer', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'retro', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'sound', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'sound-design', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'video-game', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/415083/download/', + bit_rate: 0, + filesize: 60722, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"Video Game Coin" by harrietniamh is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'Video Game Sound Effects', + foreign_landing_url: 'https://freesound.org/apiv2/packs/23407/', + creator: 'harrietniamh', + creator_url: 'https://freesound.org/people/harrietniamh/', + url: null, + filesize: null, + filetype: null, + }, + duration: 687, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/654cbaf1-8d92-47b7-9331-fb4cf22d4f17/', + related_url: 'http://localhost:49153/v1/audio/654cbaf1-8d92-47b7-9331-fb4cf22d4f17/related/', + waveform: 'http://localhost:49153/v1/audio/654cbaf1-8d92-47b7-9331-fb4cf22d4f17/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '37185307-04a7-428b-8966-3402339ccb3a', + title: '1/2 player game', + indexed_on: '2023-05-04T00:05:01.880122Z', + foreign_landing_url: 'https://www.jamendo.com/track/81745', + url: 'https://prod-1.storage.jamendo.com/?trackid=81745&format=mp32', + creator: 'pornophonique', + creator_url: 'https://www.jamendo.com/artist/8303/pornophonique', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/de/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + '8bit', + 'electronic', + 'rock', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'electricguitar', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'gameboy', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'guitar', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'male', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_high', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'videogame', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'vocal', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"1/2 player game" by pornophonique is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/de/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: '8-bit lagerfeuer', + foreign_landing_url: 'https://www.jamendo.com/album/7505/8-bit-lagerfeuer', + creator: 'pornophonique', + creator_url: 'https://www.jamendo.com/artist/8303/pornophonique', + url: null, + filesize: null, + filetype: null, + }, + duration: 229000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/37185307-04a7-428b-8966-3402339ccb3a/thumb/', + detail_url: 'http://localhost:49153/v1/audio/37185307-04a7-428b-8966-3402339ccb3a/', + related_url: 'http://localhost:49153/v1/audio/37185307-04a7-428b-8966-3402339ccb3a/related/', + waveform: 'http://localhost:49153/v1/audio/37185307-04a7-428b-8966-3402339ccb3a/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '1758560f-7b2c-433e-b233-75049ea31c9d', + title: 'game over', + indexed_on: '2023-05-04T00:05:01.880122Z', + foreign_landing_url: 'https://www.jamendo.com/track/81746', + url: 'https://prod-1.storage.jamendo.com/?trackid=81746&format=mp32', + creator: 'pornophonique', + creator_url: 'https://www.jamendo.com/artist/8303/pornophonique', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/de/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + '8bit', + 'electronic', + 'rock', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'electricguitar', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'gameboy', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'guitar', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'male', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'videogame', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'vocal', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"game over" by pornophonique is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/de/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: '8-bit lagerfeuer', + foreign_landing_url: 'https://www.jamendo.com/album/7505/8-bit-lagerfeuer', + creator: 'pornophonique', + creator_url: 'https://www.jamendo.com/artist/8303/pornophonique', + url: null, + filesize: null, + filetype: null, + }, + duration: 204000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/1758560f-7b2c-433e-b233-75049ea31c9d/thumb/', + detail_url: 'http://localhost:49153/v1/audio/1758560f-7b2c-433e-b233-75049ea31c9d/', + related_url: 'http://localhost:49153/v1/audio/1758560f-7b2c-433e-b233-75049ea31c9d/related/', + waveform: 'http://localhost:49153/v1/audio/1758560f-7b2c-433e-b233-75049ea31c9d/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '40841476-b6a8-4e71-9bc8-064a3b6d7dd8', + title: 'Boys In Their Games', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1356875', + url: 'https://prod-1.storage.jamendo.com/?trackid=1356875&format=mp32', + creator: 'The Vow', + creator_url: 'https://www.jamendo.com/artist/467034/The_Vow', + license: 'by-nc-sa', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'alternativerock', + 'indie', + 'rock', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'energetic', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'happy', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'male', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'vocal', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Boys In Their Games" by The Vow is licensed under CC BY-NC-SA 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'You Are?', + foreign_landing_url: 'https://www.jamendo.com/album/159901/you-are', + creator: 'The Vow', + creator_url: 'https://www.jamendo.com/artist/467034/The_Vow', + url: null, + filesize: null, + filetype: null, + }, + duration: 190000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/40841476-b6a8-4e71-9bc8-064a3b6d7dd8/thumb/', + detail_url: 'http://localhost:49153/v1/audio/40841476-b6a8-4e71-9bc8-064a3b6d7dd8/', + related_url: 'http://localhost:49153/v1/audio/40841476-b6a8-4e71-9bc8-064a3b6d7dd8/related/', + waveform: 'http://localhost:49153/v1/audio/40841476-b6a8-4e71-9bc8-064a3b6d7dd8/waveform/', + peaks: [ + 0.9491, + 0.95502, + 0.94369, + 0.93564, + 0.76989, + 0.93674, + 0.86178, + 0.94778, + 0.89669, + 0.8352, + 0.90796, + 0.90399, + 0.9021, + 0.91983, + 0.97732, + 0.73458, + 0.85971, + 0.88495, + 0.81567, + 0.85238, + 0.93194, + 0.75451, + 0.87841, + 0.87283, + 0.8908, + 0.86023, + 0.88458, + 0.80663, + 0.86877, + 0.80694, + 0.94024, + 0.87796, + 0.86651, + 0.87942, + 0.86932, + 0.88711, + 0.85803, + 0.92132, + 0.90146, + 0.94742, + 0.81936, + 0.9292, + 0.82495, + 0.76992, + 0.89981, + 0.84909, + 0.7842, + 0.85965, + 0.91266, + 0.87164, + 0.96603, + 0.84277, + 0.80456, + 0.79907, + 0.88501, + 0.88888, + 0.91678, + 0.95059, + 0.92203, + 0.95291, + 0.78155, + 0.84985, + 0.95178, + 0.92364, + 0.94879, + 0.94537, + 0.86276, + 0.75014, + 0.95816, + 0.96945, + 0.86666, + 0.9635, + 0.8569, + 0.85659, + 0.95859, + 0.77136, + 0.87698, + 0.75405, + 0.86901, + 0.92489, + 0.82034, + 0.8637, + 0.87933, + 0.79849, + 0.86926, + 0.72906, + 0.84078, + 0.78161, + 0.93588, + 0.8114, + 0.85458, + 0.96957, + 0.89712, + 0.8742, + 0.74773, + 0.72335, + 0.82214, + 0.7503, + 0.62868, + 0.94955, + 0.9024, + 0.94723, + 0.84878, + 0.91592, + 0.89627, + 0.80203, + 0.95932, + 0.94424, + 0.91671, + 0.93408, + 0.86413, + 0.77432, + 0.92318, + 0.77828, + 0.93393, + 0.96188, + 0.91607, + 0.93417, + 0.75491, + 0.86169, + 0.85513, + 0.96478, + 0.88418, + 0.87817, + 0.84243, + 0.92294, + 0.96606, + 0.9003, + 0.89517, + 0.94461, + 0.90201, + 0.93054, + 0.84381, + 0.73, + 0.77651, + 0.88791, + 0.84164, + 0.81985, + 0.86029, + 0.67885, + 0.60128, + 0.63335, + 0.83831, + 0.80325, + 0.70354, + 0.73818, + 0.8677, + 0.59581, + 0.82022, + 0.74017, + 0.75985, + 0.78118, + 0.70418, + 0.95056, + 0.83035, + 0.85421, + 0.83624, + 0.93149, + 0.96509, + 0.98126, + 0.86853, + 0.89727, + 0.74081, + 0.86843, + 0.9288, + 0.9176, + 0.86666, + 0.90097, + 0.87469, + 0.92123, + 0.86572, + 0.90698, + 0.9039, + 0.92856, + 0.9418, + 0.89938, + 0.95083, + 0.82247, + 0.81979, + 0.95795, + 0.84933, + 0.82022, + 0.86779, + 0.77053, + 0.72643, + 0.67705, + 0.87191, + 0.71456, + 0.75689, + 0.66466, + 0.76391, + 0.84674, + 0.63945, + 0.71328, + 0.76693, + 0.93637, + 0.90271, + 0.91931, + 0.91415, + 0.94037, + ], + unstable__sensitivity: [], + }, + { + id: '6ad6fb63-f376-48a8-a100-0ebdc29c80f8', + title: 'Happy Game', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1658163', + url: 'https://prod-1.storage.jamendo.com/?trackid=1658163&format=mp32', + creator: 'GrayMic', + creator_url: 'https://www.jamendo.com/artist/513676/GrayMic', + license: 'by-nc-nd', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'jazz', + 'latinjazz', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'classicalguitar', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'instrumental', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'peaceful', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'soft', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_high', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'strings', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Happy Game" by GrayMic is licensed under CC BY-NC-ND 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'For A Night', + foreign_landing_url: 'https://www.jamendo.com/album/185409/for-a-night', + creator: 'GrayMic', + creator_url: 'https://www.jamendo.com/artist/513676/GrayMic', + url: null, + filesize: null, + filetype: null, + }, + duration: 193000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/6ad6fb63-f376-48a8-a100-0ebdc29c80f8/thumb/', + detail_url: 'http://localhost:49153/v1/audio/6ad6fb63-f376-48a8-a100-0ebdc29c80f8/', + related_url: 'http://localhost:49153/v1/audio/6ad6fb63-f376-48a8-a100-0ebdc29c80f8/related/', + waveform: 'http://localhost:49153/v1/audio/6ad6fb63-f376-48a8-a100-0ebdc29c80f8/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '52f7fd8e-be6f-4b2a-a87d-60820e302ea9', + title: 'game pick up object', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/Leszek_Szary/sounds/133280', + url: 'https://cdn.freesound.org/previews/133/133280_2437358-hq.mp3', + creator: 'Leszek_Szary', + creator_url: 'https://freesound.org/people/Leszek_Szary', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 9905, + filetype: 'mp3', + tags: [ + { + name: 'cartoon', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'jump', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'object', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'pick-up', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/133280/download/', + bit_rate: 0, + filesize: 127840, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"game pick up object" by Leszek_Szary is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 724, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/52f7fd8e-be6f-4b2a-a87d-60820e302ea9/', + related_url: 'http://localhost:49153/v1/audio/52f7fd8e-be6f-4b2a-a87d-60820e302ea9/related/', + waveform: 'http://localhost:49153/v1/audio/52f7fd8e-be6f-4b2a-a87d-60820e302ea9/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '2c73475f-a8ae-454f-b31e-eb207d56e0d3', + title: 'Game Over SFX and Voice.wav', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/landlucky/sounds/277403', + url: 'https://cdn.freesound.org/previews/277/277403_5333187-hq.mp3', + creator: 'landlucky', + creator_url: 'https://freesound.org/people/landlucky', + license: 'by', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by/3.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 136931, + filetype: 'mp3', + tags: [ + { + name: 'computer', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'digital', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'electromechanics', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'electronics', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'fantasy', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'film', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'fx', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'machine', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'mechanical', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'over', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'robot', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'robotics', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'sci-fi', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'science-fiction', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'sfx', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'soundscape', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/277403/download/', + bit_rate: 0, + filesize: 1130484, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"Game Over SFX and Voice.wav" by landlucky is licensed under CC BY 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/3.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'audio_pro', + foreign_landing_url: 'https://freesound.org/apiv2/packs/17120/', + creator: 'landlucky', + creator_url: 'https://freesound.org/people/landlucky/', + url: null, + filesize: null, + filetype: null, + }, + duration: 6404, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/2c73475f-a8ae-454f-b31e-eb207d56e0d3/', + related_url: 'http://localhost:49153/v1/audio/2c73475f-a8ae-454f-b31e-eb207d56e0d3/related/', + waveform: 'http://localhost:49153/v1/audio/2c73475f-a8ae-454f-b31e-eb207d56e0d3/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'fd5c521b-c321-4473-8d17-7404c6d6a04c', + title: 'Game Change', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1193487', + url: 'https://prod-1.storage.jamendo.com/?trackid=1193487&format=mp32', + creator: 'Nick Miller', + creator_url: 'https://www.jamendo.com/artist/461256/Nick_Miller', + license: 'by-sa', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-sa/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'hardrock', + 'rock', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'action', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'adventure', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'electricguitar', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'electroamplified', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'energetic', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'extremesports', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'instrumental', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'motivational', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Game Change" by Nick Miller is licensed under CC BY-SA 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'Parallel Universe', + foreign_landing_url: 'https://www.jamendo.com/album/143635/parallel-universe', + creator: 'Nick Miller', + creator_url: 'https://www.jamendo.com/artist/461256/Nick_Miller', + url: null, + filesize: null, + filetype: null, + }, + duration: 220000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/fd5c521b-c321-4473-8d17-7404c6d6a04c/thumb/', + detail_url: 'http://localhost:49153/v1/audio/fd5c521b-c321-4473-8d17-7404c6d6a04c/', + related_url: 'http://localhost:49153/v1/audio/fd5c521b-c321-4473-8d17-7404c6d6a04c/related/', + waveform: 'http://localhost:49153/v1/audio/fd5c521b-c321-4473-8d17-7404c6d6a04c/waveform/', + peaks: [ + 0.91736, + 0.596, + 0.58028, + 0.5248, + 0.9487, + 0.68288, + 0.56413, + 0.9548, + 0.56725, + 0.97269, + 0.53529, + 0.65667, + 0.84512, + 0.72393, + 0.55565, + 0.66939, + 0.92822, + 0.6057, + 0.47005, + 0.80947, + 0.76138, + 0.49159, + 0.90631, + 0.58773, + 0.64263, + 0.94626, + 0.68593, + 0.92068, + 0.65825, + 0.83361, + 0.72622, + 0.56865, + 0.98593, + 0.53578, + 0.95184, + 0.69149, + 0.75298, + 0.94058, + 0.63662, + 0.51213, + 0.76797, + 0.66918, + 0.96487, + 0.73858, + 0.86911, + 0.71941, + 0.65474, + 0.9863, + 0.65819, + 0.96234, + 0.96033, + 0.87835, + 0.97937, + 0.76119, + 0.84448, + 0.92526, + 0.68203, + 0.699, + 0.64531, + 0.87695, + 0.58672, + 0.80734, + 0.99524, + 0.76608, + 0.84765, + 0.96753, + 0.69567, + 0.90832, + 0.6733, + 0.76022, + 0.77673, + 0.58306, + 0.97845, + 0.94275, + 0.90313, + 0.96799, + 0.798, + 0.96496, + 0.63292, + 0.97122, + 0.65352, + 0.67986, + 0.91977, + 0.6509, + 0.9631, + 0.59529, + 0.98569, + 0.96481, + 0.69576, + 0.91101, + 0.92505, + 0.67461, + 0.9566, + 0.89047, + 0.74032, + 0.66768, + 0.72738, + 0.46159, + 0.45366, + 0.19166, + 0.37419, + 0.35966, + 0.31016, + 0.69088, + 0.97751, + 0.60787, + 0.93326, + 0.79882, + 0.95889, + 0.89199, + 0.77685, + 0.91082, + 0.76211, + 0.74099, + 0.94061, + 0.91693, + 0.7181, + 0.68831, + 0.91421, + 0.58419, + 0.71648, + 0.95859, + 0.90713, + 0.82781, + 0.95999, + 0.71014, + 0.96683, + 0.69927, + 0.978, + 0.6401, + 0.88083, + 0.96045, + 0.67104, + 0.9678, + 0.99771, + 0.66457, + 0.94998, + 0.80245, + 0.6646, + 0.99435, + 0.96649, + 0.66369, + 0.78268, + 0.99384, + 0.90567, + 0.66851, + 0.98389, + 0.96393, + 0.99008, + 0.71102, + 1, + 0.95816, + 0.7532, + 0.97955, + 0.96481, + 0.93271, + 0.93252, + 0.74981, + 0.96228, + 0.94296, + 0.81433, + 0.96124, + 0.85257, + 0.78161, + 0.97015, + 1, + 0.69735, + 0.77511, + 0.96384, + 0.76501, + 0.75259, + 0.95807, + 0.97693, + 0.68499, + 0.95685, + 0.8215, + 0.99103, + 0.65844, + 0.98489, + 0.68093, + 0.94034, + 0.97824, + 0.80053, + 0.94711, + 0.96991, + 0.76806, + 0.97446, + 0.82232, + 0.69344, + 0.97531, + 0.94797, + 0.75967, + 0.6588, + 1, + 0.70629, + 0.59993, + 0.96808, + 0.97491, + 0.98498, + 0.70299, + ], + unstable__sensitivity: [], + }, + { + id: '7b98cb9f-aaac-4349-bc2b-bc2e1025a523', + title: 'Norwegian football match/soccer game ambience.WAV', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/habbis92/sounds/206003', + url: 'https://cdn.freesound.org/previews/206/206003_878508-hq.mp3', + creator: 'habbis92', + creator_url: 'https://freesound.org/people/habbis92', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 4021104, + filetype: 'mp3', + tags: [ + { + name: 'Football', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'ambience', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'atmosf', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'match', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'norway', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 're', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'sarpsborg', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'soccer', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'sports', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'stavanger', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'tippeliga', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'tippeligaen', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'viking', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'xy', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'zoom', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'zoomH6', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/206003/download/', + bit_rate: 0, + filesize: 50391680, + filetype: 'wav', + sample_rate: 48000, + }, + ], + attribution: '"Norwegian football match/soccer game ambience.WAV" by habbis92 is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'Football and other sports', + foreign_landing_url: 'https://freesound.org/apiv2/packs/13149/', + creator: 'habbis92', + creator_url: 'https://freesound.org/people/habbis92/', + url: null, + filesize: null, + filetype: null, + }, + duration: 174857, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/7b98cb9f-aaac-4349-bc2b-bc2e1025a523/', + related_url: 'http://localhost:49153/v1/audio/7b98cb9f-aaac-4349-bc2b-bc2e1025a523/related/', + waveform: 'http://localhost:49153/v1/audio/7b98cb9f-aaac-4349-bc2b-bc2e1025a523/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'bb937bd7-8419-46ab-82fb-c39c16ca3722', + title: '[Media] game sound sfx (short, generic, menu)', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/waveplaySFX/sounds/246420', + url: 'https://cdn.freesound.org/previews/246/246420_1676145-hq.mp3', + creator: 'waveplaySFX', + creator_url: 'https://freesound.org/people/waveplaySFX', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 8880, + filetype: 'mp3', + tags: [ + { + name: 'application', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'bleep', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'blip', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'click', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'clicks', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'desktop', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'digital', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'effect', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'effects', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'fx', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'menu', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'pop', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'sfx', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'sound', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'virtual', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'windows', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/246420/download/', + bit_rate: 0, + filesize: 523900, + filetype: 'wav', + sample_rate: 192000, + }, + ], + attribution: '"[Media] game sound sfx (short, generic, menu)" by waveplaySFX is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: '[Media] Game/App/Movie FX Pack 1 (Complete)', + foreign_landing_url: 'https://freesound.org/apiv2/packs/12565/', + creator: 'waveplaySFX', + creator_url: 'https://freesound.org/people/waveplaySFX/', + url: null, + filesize: null, + filetype: null, + }, + duration: 340, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/bb937bd7-8419-46ab-82fb-c39c16ca3722/', + related_url: 'http://localhost:49153/v1/audio/bb937bd7-8419-46ab-82fb-c39c16ca3722/related/', + waveform: 'http://localhost:49153/v1/audio/bb937bd7-8419-46ab-82fb-c39c16ca3722/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=graphs&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=graphs&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..0f274be8772 --- /dev/null +++ b/frontend/test/tapes/search/audio/q=graphs&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 @@ -0,0 +1,91 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:13.287Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=graphs&license=by&extension=mp3&source=jamendo&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:13 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept, Authorization, origin, Accept-Encoding', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '15', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '195', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '00ebee19-a5f0-4752-8f7e-50c8e18685a3', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '84303', + ], + 'last-modified': [ + 'Thu, 19 Sep 2024 03:22:10 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d541c24274b-ADL', + ], + 'content-encoding': [ + 'br', + ], + }, + body: { + result_count: 0, + page_count: 0, + page_size: 20, + page: 1, + results: [], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=graphs&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=graphs&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..e072b59ae47 --- /dev/null +++ b/frontend/test/tapes/search/audio/q=graphs&peaks=true_keep-alive.json5 @@ -0,0 +1,993 @@ +{ + meta: { + createdAt: '2024-09-25T08:55:31.266Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=graphs&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Wed, 25 Sep 2024 08:55:32 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '199', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '56da1219-41f4-44e0-b981-128095164857', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'MISS', + ], + 'last-modified': [ + 'Wed, 25 Sep 2024 08:55:32 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c89cbb63915362b-FRA', + ], + }, + body: { + result_count: 114, + page_count: 6, + page_size: 20, + page: 1, + results: [ + { + id: '9927ae96-073b-4629-ad8f-bfec5f0ac01e', + title: 'De-Graph', + indexed_on: '2024-01-28T18:54:22.113117Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=59158392', + url: 'https://upload.wikimedia.org/wikipedia/commons/f/f4/De-Graph.ogg', + creator: 'Jeuwre', + creator_url: 'https://commons.wikimedia.org/wiki/User:Jeuwre', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 17283, + filetype: 'ogg', + tags: [], + alt_files: null, + attribution: '"De-Graph" by Jeuwre is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + audio_set: null, + duration: 1670, + bit_rate: 80000, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/9927ae96-073b-4629-ad8f-bfec5f0ac01e/', + related_url: 'http://localhost:49153/v1/audio/9927ae96-073b-4629-ad8f-bfec5f0ac01e/related/', + waveform: 'http://localhost:49153/v1/audio/9927ae96-073b-4629-ad8f-bfec5f0ac01e/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '09d5ea25-ab10-4fa3-afb9-a8d51f0a4d5a', + title: 'En-us-graph', + indexed_on: '2023-09-24T16:03:32.178985Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=50240917', + url: 'https://upload.wikimedia.org/wikipedia/commons/2/2c/En-us-graph.ogg', + creator: 'Sylvanmoon', + creator_url: 'https://commons.wikimedia.org/wiki/User:Sylvanmoon', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 14878, + filetype: 'ogg', + tags: [], + alt_files: null, + attribution: '"En-us-graph" by Sylvanmoon is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 998, + bit_rate: 96000, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/09d5ea25-ab10-4fa3-afb9-a8d51f0a4d5a/', + related_url: 'http://localhost:49153/v1/audio/09d5ea25-ab10-4fa3-afb9-a8d51f0a4d5a/related/', + waveform: 'http://localhost:49153/v1/audio/09d5ea25-ab10-4fa3-afb9-a8d51f0a4d5a/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '81617b1a-1819-4670-bc21-295a4c4412e5', + title: 'De--graph', + indexed_on: '2023-04-16T10:10:53.801420Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=86072875', + url: 'https://upload.wikimedia.org/wikipedia/commons/7/76/De--graph.ogg', + creator: 'Jeuwre', + creator_url: 'https://commons.wikimedia.org/wiki/User:Jeuwre', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 14393, + filetype: 'ogg', + tags: [], + alt_files: null, + attribution: '"De--graph" by Jeuwre is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + audio_set: null, + duration: 1410, + bit_rate: 80000, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/81617b1a-1819-4670-bc21-295a4c4412e5/', + related_url: 'http://localhost:49153/v1/audio/81617b1a-1819-4670-bc21-295a4c4412e5/related/', + waveform: 'http://localhost:49153/v1/audio/81617b1a-1819-4670-bc21-295a4c4412e5/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '690b62c0-a06b-4d4b-8937-f511866c70e8', + title: 'LL-Q188 (deu)-Jeuwre-Graphs', + indexed_on: '2023-07-02T10:26:18.558702Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=113678074', + url: 'https://upload.wikimedia.org/wikipedia/commons/f/fa/LL-Q188_%28deu%29-Jeuwre-Graphs.wav', + creator: 'Jeuwre', + creator_url: 'https://commons.wikimedia.org/wiki/User:Jeuwre', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 150866, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q188 (deu)-Jeuwre-Graphs" by Jeuwre is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 1710, + bit_rate: 705600, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/690b62c0-a06b-4d4b-8937-f511866c70e8/', + related_url: 'http://localhost:49153/v1/audio/690b62c0-a06b-4d4b-8937-f511866c70e8/related/', + waveform: 'http://localhost:49153/v1/audio/690b62c0-a06b-4d4b-8937-f511866c70e8/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'dfefcb4f-27df-4dba-83fb-e1656336344a', + title: 'LL-Q188 (deu)-Frank C. Müller--graph', + indexed_on: '2023-05-04T13:26:10.141681Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=78796215', + url: 'https://upload.wikimedia.org/wikipedia/commons/2/2b/LL-Q188_%28deu%29-Frank_C._M%C3%BCller--graph.wav', + creator: 'Speaker: Frank C. Müller Recorder: Frank C. Müller', + creator_url: 'https://lingualibre.org/wiki/Q124783', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 109356, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q188 (deu)-Frank C. Müller--graph" by Speaker: Frank C. Müller Recorder: Frank C. Müller is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 1138, + bit_rate: 768000, + sample_rate: 48000, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/dfefcb4f-27df-4dba-83fb-e1656336344a/', + related_url: 'http://localhost:49153/v1/audio/dfefcb4f-27df-4dba-83fb-e1656336344a/related/', + waveform: 'http://localhost:49153/v1/audio/dfefcb4f-27df-4dba-83fb-e1656336344a/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '9ac6aa34-8a89-41b6-a84c-9b7d80898fba', + title: 'LL-Q150 (fra)-Lepticed7-graphe', + indexed_on: '2024-05-05T13:08:47.062072Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=76668313', + url: 'https://upload.wikimedia.org/wikipedia/commons/e/e1/LL-Q150_%28fra%29-Lepticed7-graphe.wav', + creator: 'Speaker: Lepticed7 Recorder: Lepticed7', + creator_url: 'https://lingualibre.org/wiki/Q51319', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 84780, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q150 (fra)-Lepticed7-graphe" by Speaker: Lepticed7 Recorder: Lepticed7 is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 882, + bit_rate: 768000, + sample_rate: 48000, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/9ac6aa34-8a89-41b6-a84c-9b7d80898fba/', + related_url: 'http://localhost:49153/v1/audio/9ac6aa34-8a89-41b6-a84c-9b7d80898fba/related/', + waveform: 'http://localhost:49153/v1/audio/9ac6aa34-8a89-41b6-a84c-9b7d80898fba/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '83e867b1-d5b8-49e1-babc-194552bace8e', + title: 'LL-Q188 (deu)-Jeuwre-Graphe', + indexed_on: '2023-07-02T10:26:18.558702Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=113677887', + url: 'https://upload.wikimedia.org/wikipedia/commons/c/ca/LL-Q188_%28deu%29-Jeuwre-Graphe.wav', + creator: 'Jeuwre', + creator_url: 'https://commons.wikimedia.org/wiki/User:Jeuwre', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 150866, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q188 (deu)-Jeuwre-Graphe" by Jeuwre is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 1710, + bit_rate: 705600, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/83e867b1-d5b8-49e1-babc-194552bace8e/', + related_url: 'http://localhost:49153/v1/audio/83e867b1-d5b8-49e1-babc-194552bace8e/related/', + waveform: 'http://localhost:49153/v1/audio/83e867b1-d5b8-49e1-babc-194552bace8e/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '665be8a7-97c8-414a-bed4-5752c9f79539', + title: 'De-Graph (Graphentheorie)-article', + indexed_on: '2022-06-17T00:10:36.949683Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=119350375', + url: 'https://upload.wikimedia.org/wikipedia/commons/a/a0/De-Graph_%28Graphentheorie%29-article.ogg', + creator: 'Speaker: Erwin Völkening Authors of the article', + creator_url: 'https://de.wikipedia.org/wiki/Benutzer:Erwin_V%C3%B6lkening', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: null, + genres: null, + filesize: 17482191, + filetype: 'ogg', + tags: [], + alt_files: null, + attribution: '"De-Graph (Graphentheorie)-article" by Speaker: Erwin Völkening Authors of the article is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + audio_set: null, + duration: 1560079, + bit_rate: 112000, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/665be8a7-97c8-414a-bed4-5752c9f79539/', + related_url: 'http://localhost:49153/v1/audio/665be8a7-97c8-414a-bed4-5752c9f79539/related/', + waveform: 'http://localhost:49153/v1/audio/665be8a7-97c8-414a-bed4-5752c9f79539/waveform/', + peaks: [ + 0.27494, + 0.33406, + 0.48237, + 0.46212, + 0.44831, + 0.53016, + 0.44659, + 0.62333, + 0.32588, + 0.82408, + 0.86827, + 0.59047, + 0.5994, + 0.56122, + 0.65296, + 0.49025, + 0.75281, + 0.40585, + 0.50683, + 0.40008, + 0.26047, + 0.33181, + 0.40368, + 0.50758, + 0.41598, + 0.61215, + 0.58155, + 0.49085, + 0.5934, + 0.43961, + 0.59565, + 0.55334, + 0.606, + 0.4895, + 0.57322, + 0.5895, + 0.76602, + 0.43391, + 0.43061, + 0.4949, + 0.45649, + 0.58065, + 0.54089, + 0.31605, + 0.57247, + 0.55071, + 0.40833, + 0.59295, + 0.54434, + 0.54659, + 0.49025, + 0.57389, + 0.51155, + 0.71748, + 0.26564, + 0.65356, + 0.74659, + 0.67442, + 0.58747, + 0.47884, + 0.60615, + 0.52948, + 0.58785, + 0.65206, + 0.6889, + 0.56354, + 0.65019, + 0.64396, + 0.26917, + 0.60128, + 0.45176, + 0.45484, + 0.62506, + 0.76152, + 0.53923, + 0.47742, + 0.50825, + 0.55236, + 0.00068, + 0.56947, + 0.44599, + 0.40765, + 0.77944, + 0.83031, + 0.50908, + 0.57637, + 0.90758, + 0.58065, + 0.53743, + 0.8048, + 0.63053, + 0.45356, + 0.54726, + 0.53323, + 0.83458, + 0.93136, + 0.35259, + 0.74921, + 0.59025, + 0.59385, + 0.62131, + 0.69272, + 0.61598, + 0.4946, + 0.60983, + 0.55596, + 0.44336, + 0.35506, + 0.80053, + 0.47127, + 0.44816, + 0.69287, + 0.68477, + 0.60068, + 0.64149, + 0.43931, + 0.6042, + 0.53263, + 0.45034, + 0.50278, + 0.66197, + 0.54584, + 0.5099, + 0.47599, + 0.54554, + 0.59737, + 0.57479, + 0.6021, + 0.62386, + 0.74314, + 0.46557, + 0.61718, + 0.72761, + 0.58605, + 0.56774, + 0.47922, + 0.47494, + 0.57682, + 0.84861, + 0.73053, + 0.45724, + 0.59362, + 0.5066, + 0.50308, + 0.86722, + 0.66699, + 0.57262, + 0.62026, + 0.60938, + 0.52716, + 0.25131, + 0.53451, + 0.5913, + 0.54906, + 0.51605, + 0.37779, + 0.50893, + 0.56864, + 0.56069, + 0.62243, + 0.7, + 0.5958, + 0.78087, + 0.64891, + 0.53781, + 0.25911, + 0.52086, + 0.57659, + 0.43796, + 0.59662, + 0.52663, + 0.55724, + 0.89737, + 0.46287, + 0.3039, + 0.59265, + 0.62408, + 0.51913, + 0.8021, + 0.61058, + 0.46114, + 0.61755, + 0.60593, + 0.55716, + 0.76632, + 0.46857, + 0.506, + 0.37802, + 0.55994, + 0.39302, + 0.5117, + 0.45326, + 0.5997, + 0.33196, + 0.53631, + 0.65979, + 0.55971, + 0.47974, + 0.67779, + 0.4916, + ], + unstable__sensitivity: [], + }, + { + id: '799b5329-ac2d-4c4b-8659-09d5f1e758d0', + title: 'LL-Q150 (fra)-Lepticed7-graphe parfait', + indexed_on: '2024-05-05T13:08:47.062072Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=76668409', + url: 'https://upload.wikimedia.org/wikipedia/commons/4/4b/LL-Q150_%28fra%29-Lepticed7-graphe_parfait.wav', + creator: 'Speaker: Lepticed7 Recorder: Lepticed7', + creator_url: 'https://lingualibre.org/wiki/Q51319', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 109356, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q150 (fra)-Lepticed7-graphe parfait" by Speaker: Lepticed7 Recorder: Lepticed7 is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 1138, + bit_rate: 768000, + sample_rate: 48000, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/799b5329-ac2d-4c4b-8659-09d5f1e758d0/', + related_url: 'http://localhost:49153/v1/audio/799b5329-ac2d-4c4b-8659-09d5f1e758d0/related/', + waveform: 'http://localhost:49153/v1/audio/799b5329-ac2d-4c4b-8659-09d5f1e758d0/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '4aaad14b-9a29-436b-8af9-babcc3cdd907', + title: 'LL-Q150 (fra)-0x010C-graphe de connaissances', + indexed_on: '2024-08-18T14:49:24.836393Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=79436065', + url: 'https://upload.wikimedia.org/wikipedia/commons/7/7d/LL-Q150_%28fra%29-0x010C-graphe_de_connaissances.wav', + creator: 'Speaker: 0x010C Recorder: 0x010C', + creator_url: 'https://lingualibre.org/wiki/Q42', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/deed.en/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 232236, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q150 (fra)-0x010C-graphe de connaissances" by Speaker: 0x010C Recorder: 0x010C is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/deed.en/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 2418, + bit_rate: 768000, + sample_rate: 48000, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/4aaad14b-9a29-436b-8af9-babcc3cdd907/', + related_url: 'http://localhost:49153/v1/audio/4aaad14b-9a29-436b-8af9-babcc3cdd907/related/', + waveform: 'http://localhost:49153/v1/audio/4aaad14b-9a29-436b-8af9-babcc3cdd907/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'aa88e111-bd80-41dc-b660-d671b021fbb7', + title: 'LL-Q188 (deu)-Jeuwre-graph- (ˈɡʁaːf)', + indexed_on: '2023-07-02T10:26:18.558702Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=113677862', + url: 'https://upload.wikimedia.org/wikipedia/commons/a/af/LL-Q188_%28deu%29-Jeuwre-graph-_%28%CB%88%C9%A1%CA%81a%CB%90f%29.wav', + creator: 'Jeuwre', + creator_url: 'https://commons.wikimedia.org/wiki/User:Jeuwre', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 142046, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q188 (deu)-Jeuwre-graph- (ˈɡʁaːf)" by Jeuwre is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 1610, + bit_rate: 705600, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/aa88e111-bd80-41dc-b660-d671b021fbb7/', + related_url: 'http://localhost:49153/v1/audio/aa88e111-bd80-41dc-b660-d671b021fbb7/related/', + waveform: 'http://localhost:49153/v1/audio/aa88e111-bd80-41dc-b660-d671b021fbb7/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '55942633-ee07-4023-9a97-08d7f8f63874', + title: 'LL-Q150 (fra)-Lepticed7-théoricien des graphes', + indexed_on: '2024-05-05T13:08:47.062072Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=76668479', + url: 'https://upload.wikimedia.org/wikipedia/commons/b/ba/LL-Q150_%28fra%29-Lepticed7-th%C3%A9oricien_des_graphes.wav', + creator: 'Speaker: Lepticed7 Recorder: Lepticed7', + creator_url: 'https://lingualibre.org/wiki/Q51319', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 150316, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q150 (fra)-Lepticed7-théoricien des graphes" by Speaker: Lepticed7 Recorder: Lepticed7 is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 1565, + bit_rate: 768000, + sample_rate: 48000, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/55942633-ee07-4023-9a97-08d7f8f63874/', + related_url: 'http://localhost:49153/v1/audio/55942633-ee07-4023-9a97-08d7f8f63874/related/', + waveform: 'http://localhost:49153/v1/audio/55942633-ee07-4023-9a97-08d7f8f63874/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '9f8accbd-94ed-4b63-bff7-a3e37650c0c8', + title: 'LL-Q150 (fra)-Poslovitch-graphe', + indexed_on: '2023-11-26T14:17:35.990113Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=79531472', + url: 'https://upload.wikimedia.org/wikipedia/commons/1/1f/LL-Q150_%28fra%29-Poslovitch-graphe.wav', + creator: 'Speaker: Poslovitch Recorder: Poslovitch', + creator_url: 'https://lingualibre.org/wiki/Q142683', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/deed.en/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 91412, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q150 (fra)-Poslovitch-graphe" by Speaker: Poslovitch Recorder: Poslovitch is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/deed.en/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 1035, + bit_rate: 705600, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/9f8accbd-94ed-4b63-bff7-a3e37650c0c8/', + related_url: 'http://localhost:49153/v1/audio/9f8accbd-94ed-4b63-bff7-a3e37650c0c8/related/', + waveform: 'http://localhost:49153/v1/audio/9f8accbd-94ed-4b63-bff7-a3e37650c0c8/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '732bd916-262e-409b-88b7-a3f429c1a849', + title: 'LL-Q150 (fra)-Lepticed7-sous-graphe couvrant', + indexed_on: '2024-05-05T13:08:47.062072Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=76668381', + url: 'https://upload.wikimedia.org/wikipedia/commons/9/9e/LL-Q150_%28fra%29-Lepticed7-sous-graphe_couvrant.wav', + creator: 'Speaker: Lepticed7 Recorder: Lepticed7', + creator_url: 'https://lingualibre.org/wiki/Q51319', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 133932, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q150 (fra)-Lepticed7-sous-graphe couvrant" by Speaker: Lepticed7 Recorder: Lepticed7 is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 1394, + bit_rate: 768000, + sample_rate: 48000, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/732bd916-262e-409b-88b7-a3f429c1a849/', + related_url: 'http://localhost:49153/v1/audio/732bd916-262e-409b-88b7-a3f429c1a849/related/', + waveform: 'http://localhost:49153/v1/audio/732bd916-262e-409b-88b7-a3f429c1a849/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'd5e49041-20f0-4bdc-9f9a-4123e9afe811', + title: 'LL-Q150 (fra)-Lepticed7-graphe fortement connexe', + indexed_on: '2024-05-05T13:08:47.062072Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=76668357', + url: 'https://upload.wikimedia.org/wikipedia/commons/f/f8/LL-Q150_%28fra%29-Lepticed7-graphe_fortement_connexe.wav', + creator: 'Speaker: Lepticed7 Recorder: Lepticed7', + creator_url: 'https://lingualibre.org/wiki/Q51319', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 174892, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q150 (fra)-Lepticed7-graphe fortement connexe" by Speaker: Lepticed7 Recorder: Lepticed7 is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 1821, + bit_rate: 768000, + sample_rate: 48000, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/d5e49041-20f0-4bdc-9f9a-4123e9afe811/', + related_url: 'http://localhost:49153/v1/audio/d5e49041-20f0-4bdc-9f9a-4123e9afe811/related/', + waveform: 'http://localhost:49153/v1/audio/d5e49041-20f0-4bdc-9f9a-4123e9afe811/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '10d1df5a-5ef3-4b76-ba36-16bc647f3b51', + title: 'LL-Q150 (fra)-Lepticed7-théoricienne des graphes', + indexed_on: '2024-05-05T13:08:47.062072Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=76668510', + url: 'https://upload.wikimedia.org/wikipedia/commons/4/49/LL-Q150_%28fra%29-Lepticed7-th%C3%A9oricienne_des_graphes.wav', + creator: 'Speaker: Lepticed7 Recorder: Lepticed7', + creator_url: 'https://lingualibre.org/wiki/Q51319', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 166700, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q150 (fra)-Lepticed7-théoricienne des graphes" by Speaker: Lepticed7 Recorder: Lepticed7 is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 1736, + bit_rate: 768000, + sample_rate: 48000, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/10d1df5a-5ef3-4b76-ba36-16bc647f3b51/', + related_url: 'http://localhost:49153/v1/audio/10d1df5a-5ef3-4b76-ba36-16bc647f3b51/related/', + waveform: 'http://localhost:49153/v1/audio/10d1df5a-5ef3-4b76-ba36-16bc647f3b51/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '0b3f85aa-252b-4c9b-8d06-dd73d357d047', + title: 'LL-Q150 (fra)-Lepticed7-graphe orienté', + indexed_on: '2024-05-05T13:08:47.062072Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=76668325', + url: 'https://upload.wikimedia.org/wikipedia/commons/a/a5/LL-Q150_%28fra%29-Lepticed7-graphe_orient%C3%A9.wav', + creator: 'Speaker: Lepticed7 Recorder: Lepticed7', + creator_url: 'https://lingualibre.org/wiki/Q51319', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 109932, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q150 (fra)-Lepticed7-graphe orienté" by Speaker: Lepticed7 Recorder: Lepticed7 is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 1144, + bit_rate: 768000, + sample_rate: 48000, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/0b3f85aa-252b-4c9b-8d06-dd73d357d047/', + related_url: 'http://localhost:49153/v1/audio/0b3f85aa-252b-4c9b-8d06-dd73d357d047/related/', + waveform: 'http://localhost:49153/v1/audio/0b3f85aa-252b-4c9b-8d06-dd73d357d047/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '6eccb3f9-4deb-49be-95f0-2d3c16874244', + title: 'LL-Q150 (fra)-Lepticed7-graphe biparti', + indexed_on: '2024-05-05T13:08:47.062072Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=76668370', + url: 'https://upload.wikimedia.org/wikipedia/commons/1/1f/LL-Q150_%28fra%29-Lepticed7-graphe_biparti.wav', + creator: 'Speaker: Lepticed7 Recorder: Lepticed7', + creator_url: 'https://lingualibre.org/wiki/Q51319', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 150316, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q150 (fra)-Lepticed7-graphe biparti" by Speaker: Lepticed7 Recorder: Lepticed7 is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 1565, + bit_rate: 768000, + sample_rate: 48000, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/6eccb3f9-4deb-49be-95f0-2d3c16874244/', + related_url: 'http://localhost:49153/v1/audio/6eccb3f9-4deb-49be-95f0-2d3c16874244/related/', + waveform: 'http://localhost:49153/v1/audio/6eccb3f9-4deb-49be-95f0-2d3c16874244/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '27c3cf2a-aa46-4930-9b04-fed79f74d42a', + title: 'LL-Q150 (fra)-Lepticed7-graphe antisymétrique', + indexed_on: '2024-05-05T13:08:47.062072Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=76668441', + url: 'https://upload.wikimedia.org/wikipedia/commons/6/6d/LL-Q150_%28fra%29-Lepticed7-graphe_antisym%C3%A9trique.wav', + creator: 'Speaker: Lepticed7 Recorder: Lepticed7', + creator_url: 'https://lingualibre.org/wiki/Q51319', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 166700, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q150 (fra)-Lepticed7-graphe antisymétrique" by Speaker: Lepticed7 Recorder: Lepticed7 is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 1736, + bit_rate: 768000, + sample_rate: 48000, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/27c3cf2a-aa46-4930-9b04-fed79f74d42a/', + related_url: 'http://localhost:49153/v1/audio/27c3cf2a-aa46-4930-9b04-fed79f74d42a/related/', + waveform: 'http://localhost:49153/v1/audio/27c3cf2a-aa46-4930-9b04-fed79f74d42a/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '351eb4a2-b54e-4d37-8a3d-4ed5c04a9466', + title: 'LL-Q150 (fra)-Jérémy-Günther-Heinz Jähnick-théoricien des graphes', + indexed_on: '2023-10-25T00:11:01.009369Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=139445495', + url: 'https://upload.wikimedia.org/wikipedia/commons/f/f8/LL-Q150_%28fra%29-J%C3%A9r%C3%A9my-G%C3%BCnther-Heinz_J%C3%A4hnick-th%C3%A9oricien_des_graphes.wav', + creator: 'Speaker: Jérémy-Günther-Heinz Jähnick Recorder: Jérémy-Günther-Heinz Jähnick', + creator_url: 'https://lingualibre.org/wiki/Q1094311', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 156460, + filetype: 'wav', + tags: [], + alt_files: null, + attribution: '"LL-Q150 (fra)-Jérémy-Günther-Heinz Jähnick-théoricien des graphes" by Speaker: Jérémy-Günther-Heinz Jähnick Recorder: Jérémy-Günther-Heinz Jähnick is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 1629, + bit_rate: 768000, + sample_rate: 48000, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/351eb4a2-b54e-4d37-8a3d-4ed5c04a9466/', + related_url: 'http://localhost:49153/v1/audio/351eb4a2-b54e-4d37-8a3d-4ed5c04a9466/related/', + waveform: 'http://localhost:49153/v1/audio/351eb4a2-b54e-4d37-8a3d-4ed5c04a9466/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=outsourced+accountant&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=outsourced+accountant&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..0253b369dc8 --- /dev/null +++ b/frontend/test/tapes/search/audio/q=outsourced+accountant&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 @@ -0,0 +1,91 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:12.196Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=outsourced+accountant&license=by&extension=mp3&source=jamendo&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:12 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept, Authorization, origin, Accept-Encoding', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '16', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '11', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '3fddb6f1-e63d-4f75-bfbd-af84c6c90d4c', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1146', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:06 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d4d4ab8274b-ADL', + ], + 'content-encoding': [ + 'br', + ], + }, + body: { + result_count: 0, + page_count: 0, + page_size: 20, + page: 1, + results: [], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=outsourced+accountant&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=outsourced+accountant&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..da6fa01cbe8 --- /dev/null +++ b/frontend/test/tapes/search/audio/q=outsourced+accountant&peaks=true_keep-alive.json5 @@ -0,0 +1,91 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:11.077Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=outsourced+accountant&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:11 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept, Authorization, origin, Accept-Encoding', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '18', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '13', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '8fdc9b98-23e4-458d-9d06-f9f29ec4e000', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1146', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:05 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d4649cf274a-ADL', + ], + 'content-encoding': [ + 'br', + ], + }, + body: { + result_count: 0, + page_count: 0, + page_size: 20, + page: 1, + results: [], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=plane&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=plane&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..236d0844580 --- /dev/null +++ b/frontend/test/tapes/search/audio/q=plane&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 @@ -0,0 +1,91 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:12.344Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=plane&license=by&extension=mp3&source=jamendo&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:12 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept, Authorization, origin, Accept-Encoding', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '15', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '195', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '0828f008-71a4-4f25-9c1c-37d9ef959fe4', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '84297', + ], + 'last-modified': [ + 'Thu, 19 Sep 2024 03:22:15 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d4e3bf2274b-ADL', + ], + 'content-encoding': [ + 'br', + ], + }, + body: { + result_count: 0, + page_count: 0, + page_size: 20, + page: 1, + results: [], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=plane&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=plane&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..e42ac9a7350 --- /dev/null +++ b/frontend/test/tapes/search/audio/q=plane&peaks=true_keep-alive.json5 @@ -0,0 +1,2375 @@ +{ + meta: { + createdAt: '2024-09-25T08:55:22.257Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=plane&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Wed, 25 Sep 2024 08:55:23 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '199', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '6d019f04-f614-4a46-a789-687cdaa28edf', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'MISS', + ], + 'last-modified': [ + 'Wed, 25 Sep 2024 08:55:23 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c89cb7ced4c690f-FRA', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: '5c01dfef-145b-4999-866a-e550e7803b52', + title: 'Plane Flying By', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/sonically_sound/sounds/612644', + url: 'https://cdn.freesound.org/previews/612/612644_12946258-hq.mp3', + creator: 'sonically_sound', + creator_url: 'https://freesound.org/people/sonically_sound', + license: 'by', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 1316483, + filetype: 'mp3', + tags: [ + { + name: '3-D', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: '3-d', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: '3D', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: '3d', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Airplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'By', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Fly', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Flying', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Pass', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Passing', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Plane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'aircraft', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'airplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'fly', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'flying', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'pass', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'passing', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/612644/download/', + bit_rate: 0, + filesize: 4078403, + filetype: 'flac', + sample_rate: 44100, + }, + ], + attribution: '"Plane Flying By" by sonically_sound is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'Aircraft', + foreign_landing_url: 'https://freesound.org/apiv2/packs/35529/', + creator: 'sonically_sound', + creator_url: 'https://freesound.org/people/sonically_sound/', + url: null, + filesize: null, + filetype: null, + }, + duration: 57840, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/5c01dfef-145b-4999-866a-e550e7803b52/', + related_url: 'http://localhost:49153/v1/audio/5c01dfef-145b-4999-866a-e550e7803b52/related/', + waveform: 'http://localhost:49153/v1/audio/5c01dfef-145b-4999-866a-e550e7803b52/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '0e61bb6a-effd-41d0-a90b-b07ad8c39870', + title: 'plane', + indexed_on: '2022-02-24T01:34:42.275707Z', + foreign_landing_url: 'https://www.jamendo.com/track/78480', + url: 'https://prod-1.storage.jamendo.com/?trackid=78480&format=mp32', + creator: 'Wasaru', + creator_url: 'https://www.jamendo.com/artist/3917/saru', + license: 'by-nc-nd', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'ambient', + 'breakbeat', + 'triphop', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'instrumental', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'male', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'peaceful', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'sad', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"plane" by Wasaru is licensed under CC BY-NC-ND 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: 'Fragments of Stories', + foreign_landing_url: 'https://www.jamendo.com/album/7130/fragments-of-stories', + creator: 'Wasaru', + creator_url: 'https://www.jamendo.com/artist/3917/saru', + url: null, + filesize: null, + filetype: null, + }, + duration: 141000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/0e61bb6a-effd-41d0-a90b-b07ad8c39870/thumb/', + detail_url: 'http://localhost:49153/v1/audio/0e61bb6a-effd-41d0-a90b-b07ad8c39870/', + related_url: 'http://localhost:49153/v1/audio/0e61bb6a-effd-41d0-a90b-b07ad8c39870/related/', + waveform: 'http://localhost:49153/v1/audio/0e61bb6a-effd-41d0-a90b-b07ad8c39870/waveform/', + peaks: [ + 0.43433, + 0.35344, + 0.27346, + 0.18896, + 0.15674, + 0.17218, + 0.13584, + 0.11976, + 0.34817, + 0.28897, + 0.22574, + 0.11969, + 0.1178, + 0.13678, + 0.09852, + 0.0639, + 0.38607, + 0.32149, + 0.23702, + 0.15742, + 0.12162, + 0.35074, + 0.33885, + 0.22949, + 0.18488, + 0.14415, + 0.12419, + 0.10892, + 0.08126, + 0.46895, + 0.48212, + 0.36431, + 0.29275, + 0.20994, + 0.17481, + 0.12722, + 0.07261, + 0.22642, + 0.22898, + 0.15438, + 0.11182, + 0.05927, + 0.38924, + 0.77402, + 0.47405, + 0.46155, + 0.4528, + 0.30947, + 0.2657, + 0.24415, + 0.41366, + 0.44348, + 0.39718, + 0.30781, + 0.21672, + 0.2686, + 0.24651, + 0.15536, + 0.42632, + 0.41589, + 0.33351, + 0.28427, + 0.19153, + 0.12185, + 0.63048, + 0.47621, + 0.35543, + 0.40576, + 0.33517, + 0.22915, + 0.22979, + 0.164, + 0.5882, + 0.58172, + 0.43933, + 0.2734, + 0.27671, + 0.28951, + 0.15485, + 0.12017, + 0.32625, + 0.25438, + 0.21689, + 0.1534, + 0.06525, + 0.63292, + 0.86204, + 0.60309, + 0.42626, + 0.30342, + 0.31578, + 0.26347, + 0.17012, + 0.3555, + 0.41714, + 0.27796, + 0.21014, + 0.20514, + 0.30629, + 0.29309, + 0.19497, + 0.3911, + 0.34743, + 0.30528, + 0.19045, + 0.12814, + 0.8337, + 0.61255, + 0.61974, + 0.70776, + 0.50167, + 0.28528, + 0.35233, + 0.34341, + 0.4888, + 0.5553, + 0.53041, + 0.38623, + 0.28454, + 0.24905, + 0.44672, + 0.22182, + 0.2838, + 0.35905, + 0.17984, + 0.12753, + 0.0769, + 0.20207, + 0.85656, + 0.68925, + 0.44983, + 0.41595, + 0.25793, + 0.25918, + 0.21186, + 0.52913, + 0.90601, + 0.60374, + 0.64842, + 0.42325, + 0.279, + 0.70019, + 0.18991, + 0.07417, + 0.87902, + 0.75778, + 0.48114, + 0.17154, + 0.35445, + 0.98983, + 0.7543, + 0.63244, + 0.8647, + 0.52454, + 0.48749, + 0.22841, + 0.1048, + 0.98737, + 0.86112, + 0.51603, + 0.29261, + 0.20392, + 0.98967, + 0.39262, + 0.09538, + 0.85244, + 0.844, + 0.5828, + 0.44091, + 0.18143, + 0.99392, + 0.89956, + 0.60059, + 0.98781, + 0.98723, + 0.57273, + 0.66875, + 0.1791, + 0.98514, + 0.98629, + 0.78581, + 0.62272, + 0.2836, + 0.15245, + 0.98912, + 0.24185, + 0.41778, + 0.7573, + 0.59465, + 0.31014, + 0.14722, + 0.59266, + 0.97045, + 0.75092, + 0.93357, + 0.82911, + 0.56709, + 0.62606, + 0.29981, + 0.10669, + ], + unstable__sensitivity: [], + }, + { + id: '8fdef75f-a27e-4162-86fc-783715c8322a', + title: 'Military Plane Radio Chatter.flac', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/qubodup/sounds/182817', + url: 'https://cdn.freesound.org/previews/182/182817_71257-hq.mp3', + creator: 'qubodup', + creator_url: 'https://freesound.org/people/qubodup', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 1500000, + filetype: 'mp3', + tags: [ + { + name: 'army', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'b-52', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'chain-of-command', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'chatter', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'commands', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'communication', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'hacking', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'infiltration', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'intercom', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'military', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'order', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'orders', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'radio', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'secret', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'secure-channel', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'spy', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'tactical', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/182817/download/', + bit_rate: 0, + filesize: 3589702, + filetype: 'flac', + sample_rate: 48000, + }, + ], + attribution: '"Military Plane Radio Chatter.flac" by qubodup is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 65416, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/8fdef75f-a27e-4162-86fc-783715c8322a/', + related_url: 'http://localhost:49153/v1/audio/8fdef75f-a27e-4162-86fc-783715c8322a/related/', + waveform: 'http://localhost:49153/v1/audio/8fdef75f-a27e-4162-86fc-783715c8322a/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'f6a39df1-3de9-4510-9bda-fe5f425ef6b8', + title: 'Propeller Plane', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/cliftonmcarlson/sounds/251971', + url: 'https://cdn.freesound.org/previews/251/251971_3530854-hq.mp3', + creator: 'cliftonmcarlson', + creator_url: 'https://freesound.org/people/cliftonmcarlson', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 668352, + filetype: 'mp3', + tags: [ + { + name: 'Aircraft', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Airplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Field-Recording', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Flight', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Flying', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'LAX', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Landing', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Overhead', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Plane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Propeller', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Transportation', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Vintage', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/251971/download/', + bit_rate: 0, + filesize: 4546956, + filetype: 'wav', + sample_rate: 48000, + }, + ], + attribution: '"Propeller Plane" by cliftonmcarlson is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'Airport/Runway/Landing Strip Sounds', + foreign_landing_url: 'https://freesound.org/apiv2/packs/15475/', + creator: 'cliftonmcarlson', + creator_url: 'https://freesound.org/people/cliftonmcarlson/', + url: null, + filesize: null, + filetype: null, + }, + duration: 30447, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/f6a39df1-3de9-4510-9bda-fe5f425ef6b8/', + related_url: 'http://localhost:49153/v1/audio/f6a39df1-3de9-4510-9bda-fe5f425ef6b8/related/', + waveform: 'http://localhost:49153/v1/audio/f6a39df1-3de9-4510-9bda-fe5f425ef6b8/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '59b7cdc9-eaf5-4824-ae57-1ec0f127f054', + title: 'plane noise.wav', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/NOISE.INC/sounds/45388', + url: 'https://cdn.freesound.org/previews/45/45388_49629-hq.mp3', + creator: 'NOISE.INC', + creator_url: 'https://freesound.org/people/NOISE.INC', + license: 'sampling+', + license_version: '1.0', + license_url: 'https://creativecommons.org/licenses/sampling+/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 537768, + filetype: 'mp3', + tags: [ + { + name: 'aircraft', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'engine', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'field-recordings', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/45388/download/', + bit_rate: 0, + filesize: 6295552, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"plane noise.wav" by NOISE.INC is licensed under CC Sampling+ 1.0. To view a copy of this license, visit https://creativecommons.org/licenses/sampling+/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'airport/planes', + foreign_landing_url: 'https://freesound.org/apiv2/packs/2883/', + creator: 'NOISE.INC', + creator_url: 'https://freesound.org/people/NOISE.INC/', + url: null, + filesize: null, + filetype: null, + }, + duration: 23777, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/59b7cdc9-eaf5-4824-ae57-1ec0f127f054/', + related_url: 'http://localhost:49153/v1/audio/59b7cdc9-eaf5-4824-ae57-1ec0f127f054/related/', + waveform: 'http://localhost:49153/v1/audio/59b7cdc9-eaf5-4824-ae57-1ec0f127f054/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '97b95349-c3aa-4254-8e9a-5dbab0137c6d', + title: 'plane flyover landing.wav', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/tim.kahn/sounds/199264', + url: 'https://cdn.freesound.org/previews/199/199264_7037-hq.mp3', + creator: 'tim.kahn', + creator_url: 'https://freesound.org/people/tim.kahn', + license: 'by-nc', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-nc/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 1106160, + filetype: 'mp3', + tags: [ + { + name: 'airplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'airport', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'aviation', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'field-recording', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'flyover', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'geotagged', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'landing', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'loud', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'outside', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'pdx', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'stereo', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/199264/download/', + bit_rate: 0, + filesize: 28325206, + filetype: 'wav', + sample_rate: 96000, + }, + ], + attribution: '"plane flyover landing.wav" by tim.kahn is licensed under CC BY-NC 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/4.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 49172, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/97b95349-c3aa-4254-8e9a-5dbab0137c6d/', + related_url: 'http://localhost:49153/v1/audio/97b95349-c3aa-4254-8e9a-5dbab0137c6d/related/', + waveform: 'http://localhost:49153/v1/audio/97b95349-c3aa-4254-8e9a-5dbab0137c6d/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '0cd4e904-0e20-46ee-8d36-71ada13d49b3', + title: 'Propeller plane', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/Breviceps/sounds/515293', + url: 'https://cdn.freesound.org/previews/515/515293_9159316-hq.mp3', + creator: 'Breviceps', + creator_url: 'https://freesound.org/people/Breviceps', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 675586, + filetype: 'mp3', + tags: [ + { + name: 'aircraft', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'airplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'flight', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'propeller', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'sky', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/515293/download/', + bit_rate: 0, + filesize: 5231456, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"Propeller plane" by Breviceps is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 29656, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/0cd4e904-0e20-46ee-8d36-71ada13d49b3/', + related_url: 'http://localhost:49153/v1/audio/0cd4e904-0e20-46ee-8d36-71ada13d49b3/related/', + waveform: 'http://localhost:49153/v1/audio/0cd4e904-0e20-46ee-8d36-71ada13d49b3/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '223e7056-5173-4e8e-a3b7-8250fb64453b', + title: 'Planes landing.flac', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/Sempoo/sounds/131417', + url: 'https://cdn.freesound.org/previews/131/131417_116752-hq.mp3', + creator: 'Sempoo', + creator_url: 'https://freesound.org/people/Sempoo', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 11820048, + filetype: 'mp3', + tags: [ + { + name: 'helicopter', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'jet', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'landing', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'swish', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'swoosh', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'take-off', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'woosh', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/131417/download/', + bit_rate: 0, + filesize: 46931356, + filetype: 'flac', + sample_rate: 48000, + }, + ], + attribution: '"Planes landing.flac" by Sempoo is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 517453, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/223e7056-5173-4e8e-a3b7-8250fb64453b/', + related_url: 'http://localhost:49153/v1/audio/223e7056-5173-4e8e-a3b7-8250fb64453b/related/', + waveform: 'http://localhost:49153/v1/audio/223e7056-5173-4e8e-a3b7-8250fb64453b/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '12a1ce1f-55fa-4d15-9b76-3e746e6a83c4', + title: 'Propellor Plane Fly-By.wav', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/digifishmusic/sounds/54968', + url: 'https://cdn.freesound.org/previews/54/54968_29541-hq.mp3', + creator: 'digifishmusic', + creator_url: 'https://freesound.org/people/digifishmusic', + license: 'by', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 975642, + filetype: 'mp3', + tags: [ + { + name: 'aircraft', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'airplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'airport', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'areroplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'engine', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'engines', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'propellor', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'rex-regional-express', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'roar', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'rumble', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'runway', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'saab-340a', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'take-off', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'takeoff', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'transport', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'turbo-prop', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/54968/download/', + bit_rate: 0, + filesize: 7450284, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"Propellor Plane Fly-By.wav" by digifishmusic is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'Air Travel / Airways / Airlines', + foreign_landing_url: 'https://freesound.org/apiv2/packs/1864/', + creator: 'digifishmusic', + creator_url: 'https://freesound.org/people/digifishmusic/', + url: null, + filesize: null, + filetype: null, + }, + duration: 42234, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/12a1ce1f-55fa-4d15-9b76-3e746e6a83c4/', + related_url: 'http://localhost:49153/v1/audio/12a1ce1f-55fa-4d15-9b76-3e746e6a83c4/related/', + waveform: 'http://localhost:49153/v1/audio/12a1ce1f-55fa-4d15-9b76-3e746e6a83c4/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'd1c0a8c1-3627-46c4-9b90-183e1fd0c4e4', + title: 'bi-plane dives.wav', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/Timbre/sounds/115270', + url: 'https://cdn.freesound.org/previews/115/115270_1015240-hq.mp3', + creator: 'Timbre', + creator_url: 'https://freesound.org/people/Timbre', + license: 'by-nc', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-nc/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 637232, + filetype: 'mp3', + tags: [ + { + name: 'biplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'buzz', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'dive', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'engine', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'prop', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'propeller', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'synthetic', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/115270/download/', + bit_rate: 0, + filesize: 4261788, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"bi-plane dives.wav" by Timbre is licensed under CC BY-NC 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/4.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'synthetic engine', + foreign_landing_url: 'https://freesound.org/apiv2/packs/7226/', + creator: 'Timbre', + creator_url: 'https://freesound.org/people/Timbre/', + url: null, + filesize: null, + filetype: null, + }, + duration: 24159, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/d1c0a8c1-3627-46c4-9b90-183e1fd0c4e4/', + related_url: 'http://localhost:49153/v1/audio/d1c0a8c1-3627-46c4-9b90-183e1fd0c4e4/related/', + waveform: 'http://localhost:49153/v1/audio/d1c0a8c1-3627-46c4-9b90-183e1fd0c4e4/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '0d2ee5c2-1dfb-415c-af6e-6f4b1e39c519', + title: 'plane-over-suburbia.wav', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/Enhanced_Dimensions/sounds/154927', + url: 'https://cdn.freesound.org/previews/154/154927_2788741-hq.mp3', + creator: 'Enhanced_Dimensions', + creator_url: 'https://freesound.org/people/Enhanced_Dimensions', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 769204, + filetype: 'mp3', + tags: [ + { + name: 'aeroplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'aircraft', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'birds', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'fly', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'garden', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'over', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'suburbia', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'tweeting', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/154927/download/', + bit_rate: 0, + filesize: 12000432, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"plane-over-suburbia.wav" by Enhanced_Dimensions is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 34000, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/0d2ee5c2-1dfb-415c-af6e-6f4b1e39c519/', + related_url: 'http://localhost:49153/v1/audio/0d2ee5c2-1dfb-415c-af6e-6f4b1e39c519/related/', + waveform: 'http://localhost:49153/v1/audio/0d2ee5c2-1dfb-415c-af6e-6f4b1e39c519/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '976eee32-9290-40ef-be56-aade8d75d368', + title: 'Small Plane at 100 feet approx. Stereo', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/Duophonic/sounds/242952', + url: 'https://cdn.freesound.org/previews/242/242952_1001802-hq.mp3', + creator: 'Duophonic', + creator_url: 'https://freesound.org/people/Duophonic', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 1273536, + filetype: 'mp3', + tags: [ + { + name: 'Aircraft', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Flight', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Plane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Stereo', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'small', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/242952/download/', + bit_rate: 0, + filesize: 16656274, + filetype: 'wav', + sample_rate: 48000, + }, + ], + attribution: '"Small Plane at 100 feet approx. Stereo" by Duophonic is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 57831, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/976eee32-9290-40ef-be56-aade8d75d368/', + related_url: 'http://localhost:49153/v1/audio/976eee32-9290-40ef-be56-aade8d75d368/related/', + waveform: 'http://localhost:49153/v1/audio/976eee32-9290-40ef-be56-aade8d75d368/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'ad3cbd68-565d-4e38-b100-92dfb4c48780', + title: 'Seat Belt Sound Interior Passanger Plane (Modern).wav', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/Rock%20Savage/sounds/76325', + url: 'https://cdn.freesound.org/previews/76/76325_737031-hq.mp3', + creator: 'Rock Savage', + creator_url: 'https://freesound.org/people/Rock%20Savage', + license: 'sampling+', + license_version: '1.0', + license_url: 'https://creativecommons.org/licenses/sampling+/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 391036, + filetype: 'mp3', + tags: [ + { + name: 'aircraft', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'airplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'interior', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'jet', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'modern', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'passenger', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/76325/download/', + bit_rate: 0, + filesize: 4580080, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"Seat Belt Sound Interior Passanger Plane (Modern).wav" by Rock Savage is licensed under CC Sampling+ 1.0. To view a copy of this license, visit https://creativecommons.org/licenses/sampling+/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 17305, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/ad3cbd68-565d-4e38-b100-92dfb4c48780/', + related_url: 'http://localhost:49153/v1/audio/ad3cbd68-565d-4e38-b100-92dfb4c48780/related/', + waveform: 'http://localhost:49153/v1/audio/ad3cbd68-565d-4e38-b100-92dfb4c48780/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '58a8a545-9797-4435-8b5d-fcf5f17b6f19', + title: 'Interior Passanger Plane (Modern).wav', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/Rock%20Savage/sounds/76324', + url: 'https://cdn.freesound.org/previews/76/76324_737031-hq.mp3', + creator: 'Rock Savage', + creator_url: 'https://freesound.org/people/Rock%20Savage', + license: 'sampling+', + license_version: '1.0', + license_url: 'https://creativecommons.org/licenses/sampling+/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 870422, + filetype: 'mp3', + tags: [ + { + name: 'aircraft', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'airplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'interior', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'jet', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'modern', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'passenger', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/76324/download/', + bit_rate: 0, + filesize: 10278760, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"Interior Passanger Plane (Modern).wav" by Rock Savage is licensed under CC Sampling+ 1.0. To view a copy of this license, visit https://creativecommons.org/licenses/sampling+/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 38842, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/58a8a545-9797-4435-8b5d-fcf5f17b6f19/', + related_url: 'http://localhost:49153/v1/audio/58a8a545-9797-4435-8b5d-fcf5f17b6f19/related/', + waveform: 'http://localhost:49153/v1/audio/58a8a545-9797-4435-8b5d-fcf5f17b6f19/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '16be9aec-e897-4165-bd29-b1a95da70b3c', + title: 'Plane Cessna Taxi Prop wash.wav', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/Cheeseheadburger/sounds/141522', + url: 'https://cdn.freesound.org/previews/141/141522_2479316-hq.mp3', + creator: 'Cheeseheadburger', + creator_url: 'https://freesound.org/people/Cheeseheadburger', + license: 'by', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 2252852, + filetype: 'mp3', + tags: [ + { + name: 'Cessna', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Plane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Propeller', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Taxi', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'prop', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'tickoverpropwash', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/141522/download/', + bit_rate: 0, + filesize: 17552724, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"Plane Cessna Taxi Prop wash.wav" by Cheeseheadburger is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 99498, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/16be9aec-e897-4165-bd29-b1a95da70b3c/', + related_url: 'http://localhost:49153/v1/audio/16be9aec-e897-4165-bd29-b1a95da70b3c/related/', + waveform: 'http://localhost:49153/v1/audio/16be9aec-e897-4165-bd29-b1a95da70b3c/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'cae4b8de-f5d5-45df-9b6b-6009cab620af', + title: 'Plane Interior', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/Vurca/sounds/341591', + url: 'https://cdn.freesound.org/previews/341/341591_3200265-hq.mp3', + creator: 'Vurca', + creator_url: 'https://freesound.org/people/Vurca', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 7467984, + filetype: 'mp3', + tags: [ + { + name: '16bit', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: '48000', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'aeroplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'aircraft', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'airplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'aviation', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'cabin-noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'engine', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'flight', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'inside', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'jet', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'pilot', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/341591/download/', + bit_rate: 0, + filesize: 24468244, + filetype: 'flac', + sample_rate: 48000, + }, + ], + attribution: '"Plane Interior" by Vurca is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 329386, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/cae4b8de-f5d5-45df-9b6b-6009cab620af/', + related_url: 'http://localhost:49153/v1/audio/cae4b8de-f5d5-45df-9b6b-6009cab620af/related/', + waveform: 'http://localhost:49153/v1/audio/cae4b8de-f5d5-45df-9b6b-6009cab620af/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'bbb24875-5f92-4744-88e9-dc832484e933', + title: '017 screaming baby on plane 2.flac', + indexed_on: '2022-03-22T02:25:00.183410Z', + foreign_landing_url: 'https://freesound.org/people/tim.kahn/sounds/31985', + url: 'https://cdn.freesound.org/previews/31/31985_7037-hq.mp3', + creator: 'tim.kahn', + creator_url: 'https://freesound.org/people/tim.kahn', + license: 'by', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 2470176, + filetype: 'mp3', + tags: [ + { + name: 'airplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'child', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'cry', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'scream', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/31985/download/', + bit_rate: 0, + filesize: 7446653, + filetype: 'flac', + sample_rate: 48000, + }, + ], + attribution: '"017 screaming baby on plane 2.flac" by tim.kahn is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'Airports and Airplanes', + foreign_landing_url: 'https://freesound.org/apiv2/packs/3872/', + creator: 'tim.kahn', + creator_url: 'https://freesound.org/people/tim.kahn/', + url: null, + filesize: null, + filetype: null, + }, + duration: 108757, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/bbb24875-5f92-4744-88e9-dc832484e933/', + related_url: 'http://localhost:49153/v1/audio/bbb24875-5f92-4744-88e9-dc832484e933/related/', + waveform: 'http://localhost:49153/v1/audio/bbb24875-5f92-4744-88e9-dc832484e933/waveform/', + peaks: [ + 0.21138, + 0.23041, + 0.17305, + 0.14388, + 0.14164, + 0.156, + 0.2524, + 0.22467, + 0.11956, + 0.13886, + 0.16946, + 0.18885, + 0.1876, + 0.3655, + 0.27044, + 0.26102, + 0.19675, + 0.19657, + 0.20851, + 0.20402, + 0.15995, + 0.21075, + 0.14325, + 0.17539, + 0.29665, + 0.41154, + 0.57445, + 0.90584, + 0.69931, + 0.8046, + 0.84705, + 0.82497, + 0.7003, + 0.57176, + 0.43102, + 0.37636, + 0.40131, + 1, + 0.32888, + 0.11848, + 0.23346, + 0.23858, + 0.13984, + 0.13868, + 0.17036, + 0.16094, + 0.11633, + 0.20635, + 0.22637, + 0.12818, + 0.15447, + 0.13078, + 0.26578, + 0.23633, + 0.20644, + 0.13966, + 0.11669, + 0.09496, + 0.12351, + 0.1332, + 0.10933, + 0.13329, + 0.14631, + 0.14649, + 0.17629, + 0.18903, + 0.13607, + 0.12207, + 0.15986, + 0.08689, + 0.15753, + 0.28364, + 0.25626, + 0.29872, + 0.30159, + 0.37429, + 0.39198, + 0.24405, + 0.19666, + 0.16157, + 0.17216, + 0.35401, + 0.4575, + 0.43596, + 0.56252, + 0.54636, + 0.40759, + 0.41666, + 0.3471, + 0.35419, + 0.25168, + 0.15789, + 0.16282, + 0.18427, + 0.18436, + 0.23517, + 0.21506, + 0.1762, + 0.14047, + 0.1367, + 0.15008, + 0.19253, + 0.19558, + 0.11157, + 0.22422, + 0.1963, + 0.22368, + 0.16722, + 0.12333, + 0.14801, + 0.14523, + 0.15672, + 0.16381, + 0.1578, + 0.24172, + 0.16551, + 0.16937, + 0.20151, + 0.19953, + 0.20959, + 0.19011, + 0.18068, + 0.20501, + 0.14173, + 0.12028, + 0.13625, + 0.24711, + 0.27107, + 0.30392, + 0.47105, + 0.48182, + 0.53335, + 0.32708, + 0.34036, + 0.24693, + 0.23795, + 0.142, + 0.1919, + 0.11381, + 0.13042, + 0.18939, + 0.24935, + 0.43048, + 0.36792, + 0.37833, + 0.35428, + 0.28552, + 0.26766, + 0.3979, + 0.2226, + 0.20806, + 0.21075, + 0.14128, + 0.20025, + 0.14577, + 0.19208, + 0.1315, + 0.15079, + 0.19666, + 0.14361, + 0.1385, + 0.13482, + 0.14613, + 0.15483, + 0.15044, + 0.15403, + 0.1665, + 0.12566, + 0.09829, + 0.12494, + 0.13931, + 0.1735, + 0.1437, + 0.17368, + 0.12108, + 0.10968, + 0.13598, + 0.22646, + 0.38022, + 0.29647, + 0.32672, + 0.3392, + 0.38129, + 0.3024, + 0.36047, + 0.22323, + 0.15304, + 0.15977, + 0.2042, + 0.6635, + 0.51827, + 0.60237, + 0.61853, + 0.61422, + 0.50615, + 0.53972, + 0.45759, + 0.31137, + 0.30832, + 0.156, + ], + unstable__sensitivity: [], + }, + { + id: '8f125b08-0039-4bf6-9600-dbccf7960310', + title: 'En-us-plane', + indexed_on: '2024-09-08T22:29:12.929732Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=1118850', + url: 'https://upload.wikimedia.org/wikipedia/commons/e/e8/En-us-plane.ogg', + creator: 'Dvortygirl', + creator_url: 'https://commons.wikimedia.org/wiki/User:Dvortygirl', + license: 'by-sa', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-sa/3.0/', + provider: 'wikimedia_audio', + source: 'wikimedia_audio', + category: 'pronunciation', + genres: null, + filesize: 11190, + filetype: 'ogg', + tags: [], + alt_files: null, + attribution: '"En-us-plane" by Dvortygirl is licensed under CC BY-SA 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: null, + duration: 673, + bit_rate: 96001, + sample_rate: 44100, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/8f125b08-0039-4bf6-9600-dbccf7960310/', + related_url: 'http://localhost:49153/v1/audio/8f125b08-0039-4bf6-9600-dbccf7960310/related/', + waveform: 'http://localhost:49153/v1/audio/8f125b08-0039-4bf6-9600-dbccf7960310/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '3697b5ec-cd28-49a3-a97c-2fb807c08b5e', + title: 'Plane Loop.flac', + indexed_on: '2022-10-01T04:02:44.560321Z', + foreign_landing_url: 'https://freesound.org/people/qubodup/sounds/184723', + url: 'https://cdn.freesound.org/previews/184/184723_71257-hq.mp3', + creator: 'qubodup', + creator_url: 'https://freesound.org/people/qubodup', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 235104, + filetype: 'mp3', + tags: [ + { + name: 'flying', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'flight', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'warfare', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'army', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'air-force', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'air', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'soldier', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'wind', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'transportation', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'vehicle', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'military', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'technology', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'war', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'aviation', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'jet', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'fighter', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/184723/download/', + bit_rate: 0, + filesize: 911802, + filetype: 'flac', + sample_rate: 48000, + }, + ], + attribution: '"Plane Loop.flac" by qubodup is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 10000, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/3697b5ec-cd28-49a3-a97c-2fb807c08b5e/', + related_url: 'http://localhost:49153/v1/audio/3697b5ec-cd28-49a3-a97c-2fb807c08b5e/related/', + waveform: 'http://localhost:49153/v1/audio/3697b5ec-cd28-49a3-a97c-2fb807c08b5e/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '4486e786-835e-486c-a5b8-480086fc3b41', + title: 'Propeller plane flyby.flac', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/YuriNikolai/sounds/347973', + url: 'https://cdn.freesound.org/previews/347/347973_6329768-hq.mp3', + creator: 'YuriNikolai', + creator_url: 'https://freesound.org/people/YuriNikolai', + license: 'by', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 61672, + filetype: 'mp3', + tags: [ + { + name: 'Propeller', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'airplane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'engine', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'machine', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'motor', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'revving', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/347973/download/', + bit_rate: 0, + filesize: 309557, + filetype: 'flac', + sample_rate: 44100, + }, + ], + attribution: '"Propeller plane flyby.flac" by YuriNikolai is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 3320, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/4486e786-835e-486c-a5b8-480086fc3b41/', + related_url: 'http://localhost:49153/v1/audio/4486e786-835e-486c-a5b8-480086fc3b41/related/', + waveform: 'http://localhost:49153/v1/audio/4486e786-835e-486c-a5b8-480086fc3b41/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=school+clip+art&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=school+clip+art&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..5f51a310f3e --- /dev/null +++ b/frontend/test/tapes/search/audio/q=school+clip+art&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 @@ -0,0 +1,91 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:12.761Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=school+clip+art&license=by&extension=mp3&source=jamendo&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:12 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept, Authorization, origin, Accept-Encoding', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '168', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + 'c11da1cf-ce09-4363-bbc6-557c317f0e3d', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1144', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:08 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d50cfa9274b-ADL', + ], + 'content-encoding': [ + 'br', + ], + }, + body: { + result_count: 0, + page_count: 0, + page_size: 20, + page: 1, + results: [], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=school+clip+art&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=school+clip+art&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..696f4110628 --- /dev/null +++ b/frontend/test/tapes/search/audio/q=school+clip+art&peaks=true_keep-alive.json5 @@ -0,0 +1,175 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:11.648Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=school+clip+art&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:11 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '14', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '194', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + 'bd58d5bc-366e-4551-b1f4-52aa4e208b10', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '84290', + ], + 'last-modified': [ + 'Thu, 19 Sep 2024 03:22:21 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d49dde4274b-ADL', + ], + }, + body: { + result_count: 1, + page_count: 1, + page_size: 20, + page: 1, + results: [ + { + id: '3ab495f2-32a1-4aab-bc5a-a13e45c74b12', + title: 'miromuseunwalkaround.aif', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/happyband/sounds/69882', + url: 'https://cdn.freesound.org/previews/69/69882_425517-hq.mp3', + creator: 'happyband', + creator_url: 'https://freesound.org/people/happyband', + license: 'sampling+', + license_version: '1.0', + license_url: 'https://creativecommons.org/licenses/sampling+/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 4794845, + filetype: 'mp3', + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'gallery', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'interior', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'joan', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'miro', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'museum', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/69882/download/', + bit_rate: 0, + filesize: 56066048, + filetype: 'aiff', + sample_rate: 44100, + }, + ], + attribution: '"miromuseunwalkaround.aif" by happyband is licensed under CC Sampling+ 1.0. To view a copy of this license, visit https://creativecommons.org/licenses/sampling+/1.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'Barcelona - Public Interiors', + foreign_landing_url: 'https://freesound.org/apiv2/packs/4431/', + creator: 'happyband', + creator_url: 'https://freesound.org/people/happyband/', + url: null, + filesize: null, + filetype: null, + }, + duration: 211888, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/3ab495f2-32a1-4aab-bc5a-a13e45c74b12/', + related_url: 'http://localhost:49153/v1/audio/3ab495f2-32a1-4aab-bc5a-a13e45c74b12/related/', + waveform: 'http://localhost:49153/v1/audio/3ab495f2-32a1-4aab-bc5a-a13e45c74b12/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=tree+leaf+nutrition&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=tree+leaf+nutrition&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..98feb1ba2d4 --- /dev/null +++ b/frontend/test/tapes/search/audio/q=tree+leaf+nutrition&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 @@ -0,0 +1,91 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:12.490Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=tree+leaf+nutrition&license=by&extension=mp3&source=jamendo&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:12 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept, Authorization, origin, Accept-Encoding', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '15', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '10', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '9aa41e13-da8f-4459-8037-76dcbdb92a1a', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1146', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:06 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d4f1d2c274b-ADL', + ], + 'content-encoding': [ + 'br', + ], + }, + body: { + result_count: 0, + page_count: 0, + page_size: 20, + page: 1, + results: [], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=tree+leaf+nutrition&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=tree+leaf+nutrition&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..796f261025b --- /dev/null +++ b/frontend/test/tapes/search/audio/q=tree+leaf+nutrition&peaks=true_keep-alive.json5 @@ -0,0 +1,91 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:11.328Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=tree+leaf+nutrition&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:11 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept, Authorization, origin, Accept-Encoding', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '18', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '167', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '6efc44a1-4134-4785-9ab8-e89f37aca5d2', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1145', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:06 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d47db12274b-ADL', + ], + 'content-encoding': [ + 'br', + ], + }, + body: { + result_count: 0, + page_count: 0, + page_size: 20, + page: 1, + results: [], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=windy+day+music&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=windy+day+music&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..f277512276f --- /dev/null +++ b/frontend/test/tapes/search/audio/q=windy+day+music&license=by&extension=mp3&source=jamendo&peaks=true_keep-alive.json5 @@ -0,0 +1,91 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:12.888Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=windy+day+music&license=by&extension=mp3&source=jamendo&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:12 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept, Authorization, origin, Accept-Encoding', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '9', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '186', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '07ca5f41-272f-461d-8776-7c83e66f04ee', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '75604', + ], + 'last-modified': [ + 'Thu, 19 Sep 2024 05:47:08 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d51989f274b-ADL', + ], + 'content-encoding': [ + 'br', + ], + }, + body: { + result_count: 0, + page_count: 0, + page_size: 20, + page: 1, + results: [], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/audio/q=windy+day+music&peaks=true_keep-alive.json5 b/frontend/test/tapes/search/audio/q=windy+day+music&peaks=true_keep-alive.json5 new file mode 100644 index 00000000000..ef822a87d5a --- /dev/null +++ b/frontend/test/tapes/search/audio/q=windy+day+music&peaks=true_keep-alive.json5 @@ -0,0 +1,1545 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:11.780Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/audio/?q=windy+day+music&peaks=true', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:11 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '13', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '8', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '19f0fe13-7321-438e-a962-7324579f3efd', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1143', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:08 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d4aa889274a-ADL', + ], + }, + body: { + result_count: 11, + page_count: 1, + page_size: 20, + page: 1, + results: [ + { + id: '37502873-5f81-4e14-8fcd-c915936984e5', + title: 'Windy day - Cinematic Fantasy Music atmo Amb soundscape.wav', + indexed_on: '2022-06-01T12:00:12.608809Z', + foreign_landing_url: 'https://freesound.org/people/szegvari/sounds/595713', + url: 'https://cdn.freesound.org/previews/595/595713_2282212-hq.mp3', + creator: 'szegvari', + creator_url: 'https://freesound.org/people/szegvari', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 1619040, + filetype: 'mp3', + tags: [ + { + name: 'Amb', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Ambiance', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Ambience', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'atmo', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Atmosphere', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Cinematic', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Creepy', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Environment', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Fantasy', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Music', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'Sound-Design', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'soundscape', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/595713/download/', + bit_rate: 0, + filesize: 19690028, + filetype: 'wav', + sample_rate: 48000, + }, + ], + attribution: '"Windy day - Cinematic Fantasy Music atmo Amb soundscape.wav" by szegvari is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 68368, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/37502873-5f81-4e14-8fcd-c915936984e5/', + related_url: 'http://localhost:49153/v1/audio/37502873-5f81-4e14-8fcd-c915936984e5/related/', + waveform: 'http://localhost:49153/v1/audio/37502873-5f81-4e14-8fcd-c915936984e5/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'bfd29b75-b2ec-429f-a732-edfa9a717040', + title: 'Music For Ait Of Either Of Windy Days And 風もあれば霧もあれば', + indexed_on: '2022-08-01T21:56:38.264750Z', + foreign_landing_url: 'https://www.jamendo.com/track/1264887', + url: 'https://prod-1.storage.jamendo.com/?trackid=1264887&format=mp32', + creator: 'Ambient Samurai - Ichiro NAKAGAWA', + creator_url: 'https://www.jamendo.com/artist/357163/Ambient_Samurai_-_Ichiro_NAKAGAWA', + license: 'by', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by/3.0/', + provider: 'jamendo', + source: 'jamendo', + category: 'music', + genres: [ + 'ambient', + 'world', + ], + filesize: null, + filetype: 'mp32', + tags: [ + { + name: 'instrumental', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'speed_medium', + accuracy: null, + unstable__provider: 'jamendo', + }, + { + name: 'zoomr16', + accuracy: null, + unstable__provider: 'jamendo', + }, + ], + alt_files: null, + attribution: '"Music For Ait Of Either Of Windy Days And 風もあれば霧もあれば" by Ambient Samurai - Ichiro NAKAGAWA is licensed under CC BY 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/3.0/.', + fields_matched: [ + 'title', + ], + mature: false, + audio_set: { + title: "Rainbow of Times 2015-8-11 part 2 at Legendary Studio Cat's Eye", + foreign_landing_url: 'https://www.jamendo.com/album/151179/rainbow-of-times-2015-8-11-part-2-at-legendary-studio-cat-s-eye', + creator: 'Ambient Samurai - Ichiro NAKAGAWA', + creator_url: 'https://www.jamendo.com/artist/357163/Ambient_Samurai_-_Ichiro_NAKAGAWA', + url: null, + filesize: null, + filetype: null, + }, + duration: 538000, + bit_rate: null, + sample_rate: null, + thumbnail: 'http://localhost:49153/v1/audio/bfd29b75-b2ec-429f-a732-edfa9a717040/thumb/', + detail_url: 'http://localhost:49153/v1/audio/bfd29b75-b2ec-429f-a732-edfa9a717040/', + related_url: 'http://localhost:49153/v1/audio/bfd29b75-b2ec-429f-a732-edfa9a717040/related/', + waveform: 'http://localhost:49153/v1/audio/bfd29b75-b2ec-429f-a732-edfa9a717040/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '6e6ec83c-f680-4949-874e-17207a647f5f', + title: 'A Windy Day At The Warfair.wav', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/freekit/sounds/700048', + url: 'https://cdn.freesound.org/previews/700/700048_14225204-hq.mp3', + creator: 'freekit', + creator_url: 'https://freesound.org/people/freekit', + license: 'by-nc', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-nc/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 4171581, + filetype: 'mp3', + tags: [ + { + name: 'ambience', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'atmosphere', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'chanting', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'children-scream', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'civil-war-re-enactment', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'crowd', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'drum', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'drums', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'field-recording', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'metal', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'music', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'people', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'rhythmic', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'shouting', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'soundscape', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'street', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'voices', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'wind', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/700048/download/', + bit_rate: 0, + filesize: 46689518, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"A Windy Day At The Warfair.wav" by freekit is licensed under CC BY-NC 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/4.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 176453, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/6e6ec83c-f680-4949-874e-17207a647f5f/', + related_url: 'http://localhost:49153/v1/audio/6e6ec83c-f680-4949-874e-17207a647f5f/related/', + waveform: 'http://localhost:49153/v1/audio/6e6ec83c-f680-4949-874e-17207a647f5f/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'bd236a2e-e161-41d9-b630-7986f911683d', + title: 'Dark-Wind', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/CosmicEmbers/sounds/387486', + url: 'https://cdn.freesound.org/previews/387/387486_2895542-hq.mp3', + creator: 'CosmicEmbers', + creator_url: 'https://freesound.org/people/CosmicEmbers', + license: 'by', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by/3.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 7255104, + filetype: 'mp3', + tags: [ + { + name: 'apocalypse', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'calm-before-the-storm', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'dark-wind', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'desolation', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'earie-wind', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'emptiness', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'empty-fields', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'fields-of-wind', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'gale', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'gust', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'slow-wind', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'steady-wind', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'storm', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'weather', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'wind', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'windy', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'windy-day', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'windy-field', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/387486/download/', + bit_rate: 0, + filesize: 61331756, + filetype: 'wav', + sample_rate: 48000, + }, + ], + attribution: '"Dark-Wind" by CosmicEmbers is licensed under CC BY 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/3.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + audio_set: null, + duration: 319414, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/bd236a2e-e161-41d9-b630-7986f911683d/', + related_url: 'http://localhost:49153/v1/audio/bd236a2e-e161-41d9-b630-7986f911683d/related/', + waveform: 'http://localhost:49153/v1/audio/bd236a2e-e161-41d9-b630-7986f911683d/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'b5273599-74c6-4195-98b5-3e9f9b31623c', + title: 'wind indoors LONG 150823_0739.ogg', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/klankbeeld/sounds/332026', + url: 'https://cdn.freesound.org/previews/332/332026_1648170-hq.mp3', + creator: 'klankbeeld', + creator_url: 'https://freesound.org/people/klankbeeld', + license: 'by', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 39793824, + filetype: 'mp3', + tags: [ + { + name: 'afternoon', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'ambience', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'ambient', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'apartment', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'atmo', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'atmosphere', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'background-sound', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'barn', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'blow', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'blowing', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'day-time', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'gale', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'general-noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'gust', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'house', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'howling', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'indoors', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'inside', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'nature', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'room-noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'room-tone', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'stereo', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'weather', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'white-noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'wind', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'windy', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/332026/download/', + bit_rate: 653000, + filesize: 140767583, + filetype: 'ogg', + sample_rate: 96000, + }, + ], + attribution: '"wind indoors LONG 150823_0739.ogg" by klankbeeld is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'room-tone wind 2015', + foreign_landing_url: 'https://freesound.org/apiv2/packs/34619/', + creator: 'klankbeeld', + creator_url: 'https://freesound.org/people/klankbeeld/', + url: null, + filesize: null, + filetype: null, + }, + duration: 1724180, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/b5273599-74c6-4195-98b5-3e9f9b31623c/', + related_url: 'http://localhost:49153/v1/audio/b5273599-74c6-4195-98b5-3e9f9b31623c/related/', + waveform: 'http://localhost:49153/v1/audio/b5273599-74c6-4195-98b5-3e9f9b31623c/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: 'bffb97a1-ccb3-4ab6-ac3a-aefd9deeee3a', + title: 'SpringGardenApril NL 160407_01.ogg', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/klankbeeld/sounds/362798', + url: 'https://cdn.freesound.org/previews/362/362798_1648170-hq.mp3', + creator: 'klankbeeld', + creator_url: 'https://freesound.org/people/klankbeeld', + license: 'by', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 73230720, + filetype: 'mp3', + tags: [ + { + name: 'afternoon', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'ambience', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'ambient', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'atmosphere', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'atmospheric', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'back-yard', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'background-sound', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'birds', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'bumble-bees', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'calm', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'chicken', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'day-time', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'dripping', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'field-recording', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'garden', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'general-noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'hamlet', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'park', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'peaceful', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'rain', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'relaxing', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'soundscape', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'spring', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'suburb', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'suburban', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'village', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'white-noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'wind', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/362798/download/', + bit_rate: 628000, + filesize: 281687603, + filetype: 'ogg', + sample_rate: 96000, + }, + ], + attribution: '"SpringGardenApril NL 160407_01.ogg" by klankbeeld is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'village NL EU 2016', + foreign_landing_url: 'https://freesound.org/apiv2/packs/34418/', + creator: 'klankbeeld', + creator_url: 'https://freesound.org/people/klankbeeld/', + url: null, + filesize: null, + filetype: null, + }, + duration: 3587120, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/bffb97a1-ccb3-4ab6-ac3a-aefd9deeee3a/', + related_url: 'http://localhost:49153/v1/audio/bffb97a1-ccb3-4ab6-ac3a-aefd9deeee3a/related/', + waveform: 'http://localhost:49153/v1/audio/bffb97a1-ccb3-4ab6-ac3a-aefd9deeee3a/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '747b7308-9e1e-483d-b03f-356b29577355', + title: 'wind 5-7 bft suburb 150331_0555.ogg', + indexed_on: '2022-11-01T13:48:32.970278Z', + foreign_landing_url: 'https://freesound.org/people/klankbeeld/sounds/321244', + url: 'https://cdn.freesound.org/previews/321/321244_1648170-hq.mp3', + creator: 'klankbeeld', + creator_url: 'https://freesound.org/people/klankbeeld', + license: 'by', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 37064736, + filetype: 'mp3', + tags: [ + { + name: 'ambience', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'ambient', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'apartment-building', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'atmos', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'atmosphere', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'atmospheric', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'background-sound', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'bare', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'branches', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'field-recording', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'force-7', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'gale', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'gale-force', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'general-noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'gust', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'intense', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'nature', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'nature-sound', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'outdoor', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'storm', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'stormy', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'strong', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'tree', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'trees', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'weather', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'white-noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'wind', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'windy', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/321244/download/', + bit_rate: 474000, + filesize: 95807805, + filetype: 'ogg', + sample_rate: 48000, + }, + ], + attribution: '"wind 5-7 bft suburb 150331_0555.ogg" by klankbeeld is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'city wind NL EU 2015', + foreign_landing_url: 'https://freesound.org/apiv2/packs/34508/', + creator: 'klankbeeld', + creator_url: 'https://freesound.org/people/klankbeeld/', + url: null, + filesize: null, + filetype: null, + }, + duration: 1614860, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/747b7308-9e1e-483d-b03f-356b29577355/', + related_url: 'http://localhost:49153/v1/audio/747b7308-9e1e-483d-b03f-356b29577355/related/', + waveform: 'http://localhost:49153/v1/audio/747b7308-9e1e-483d-b03f-356b29577355/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '86f0eb65-4761-427e-a3f6-7e237256eba4', + title: 'storm 5-8 bft suburb 150331_0554.flac', + indexed_on: '2023-03-20T17:21:54.283284Z', + foreign_landing_url: 'https://freesound.org/people/klankbeeld/sounds/271040', + url: 'https://cdn.freesound.org/previews/271/271040_1648170-hq.mp3', + creator: 'klankbeeld', + creator_url: 'https://freesound.org/people/klankbeeld', + license: 'by', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by/4.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 18395328, + filetype: 'mp3', + tags: [ + { + name: 'atmosphere', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'outdoor', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'general-noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'ambiance', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'gale', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'windy', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'weather', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'bare', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'ambient', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'soundscape', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'stormy', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'nature-sound', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'white-noise', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'atmos', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'storm', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'ambience', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'field-recording', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'nature', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'trees', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'branches', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'strong', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'intense', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'wind', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'atmospheric', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'gale-force', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'gust', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'tree', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'force-8', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'apartment-building', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'background-sound', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/271040/download/', + bit_rate: 0, + filesize: 156699892, + filetype: 'flac', + sample_rate: 48000, + }, + ], + attribution: '"storm 5-8 bft suburb 150331_0554.flac" by klankbeeld is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + audio_set: { + title: 'city wind NL EU 2015', + foreign_landing_url: 'https://freesound.org/apiv2/packs/34508/', + creator: 'klankbeeld', + creator_url: 'https://freesound.org/people/klankbeeld/', + url: null, + filesize: null, + filetype: null, + }, + duration: 797720, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/86f0eb65-4761-427e-a3f6-7e237256eba4/', + related_url: 'http://localhost:49153/v1/audio/86f0eb65-4761-427e-a3f6-7e237256eba4/related/', + waveform: 'http://localhost:49153/v1/audio/86f0eb65-4761-427e-a3f6-7e237256eba4/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '967453b6-eee3-484f-b440-2806bd8870c8', + title: 'Steps on leaves in the forest', + indexed_on: '2024-05-21T15:00:07.873258Z', + foreign_landing_url: 'https://freesound.org/people/Magnesus/sounds/606961', + url: 'https://cdn.freesound.org/previews/606/606961_2008500-hq.mp3', + creator: 'Magnesus', + creator_url: 'https://freesound.org/people/Magnesus', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 1155435, + filetype: 'mp3', + tags: [ + { + name: 'foot', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'footsteps', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'forest', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'leaves', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'steps', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'walk', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'walking', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/606961/download/', + bit_rate: 0, + filesize: 4504020, + filetype: 'flac', + sample_rate: 44100, + }, + ], + attribution: '"Steps on leaves in the forest" by Magnesus is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + ], + mature: false, + audio_set: null, + duration: 47736, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/967453b6-eee3-484f-b440-2806bd8870c8/', + related_url: 'http://localhost:49153/v1/audio/967453b6-eee3-484f-b440-2806bd8870c8/related/', + waveform: 'http://localhost:49153/v1/audio/967453b6-eee3-484f-b440-2806bd8870c8/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '188d1e78-050a-493f-a2a8-fb420fe401e5', + title: 'Center Congregational Church_Manchester CT_120422.wav', + indexed_on: '2024-04-18T18:52:10.009444Z', + foreign_landing_url: 'https://freesound.org/people/Fungussmunguss/sounds/662901', + url: 'https://cdn.freesound.org/previews/662/662901_5741312-hq.mp3', + creator: 'Fungussmunguss', + creator_url: 'https://freesound.org/people/Fungussmunguss', + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 16618368, + filetype: 'mp3', + tags: [ + { + name: 'ambience', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'chimes', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'church-bells', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'connecticut', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'field-recording', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'manchester-connecticut', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'manchester-ct', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'soundscape', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'united-states', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'USA', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/662901/download/', + bit_rate: 0, + filesize: 215363672, + filetype: 'wav', + sample_rate: 48000, + }, + ], + attribution: '"Center Congregational Church_Manchester CT_120422.wav" by Fungussmunguss is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + ], + mature: false, + audio_set: null, + duration: 747789, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/188d1e78-050a-493f-a2a8-fb420fe401e5/', + related_url: 'http://localhost:49153/v1/audio/188d1e78-050a-493f-a2a8-fb420fe401e5/related/', + waveform: 'http://localhost:49153/v1/audio/188d1e78-050a-493f-a2a8-fb420fe401e5/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + { + id: '806cd49b-a9dc-4e68-9b2a-c9c5e50b3f86', + title: 'SoundSketch Project.wav', + indexed_on: '2022-06-01T12:00:12.608809Z', + foreign_landing_url: 'https://freesound.org/people/czieger/sounds/564933', + url: 'https://cdn.freesound.org/previews/564/564933_12526245-hq.mp3', + creator: 'czieger', + creator_url: 'https://freesound.org/people/czieger', + license: 'by-nc', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-nc/3.0/', + provider: 'freesound', + source: 'freesound', + category: null, + genres: null, + filesize: 1390931, + filetype: 'mp3', + tags: [ + { + name: 'ambience', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'mix', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'atmosphere', + accuracy: null, + unstable__provider: 'freesound', + }, + { + name: 'background', + accuracy: null, + unstable__provider: 'freesound', + }, + ], + alt_files: [ + { + url: 'https://freesound.org/apiv2/sounds/564933/download/', + bit_rate: 0, + filesize: 10768992, + filetype: 'wav', + sample_rate: 44100, + }, + ], + attribution: '"SoundSketch Project.wav" by czieger is licensed under CC BY-NC 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/3.0/.', + fields_matched: [ + 'description', + ], + mature: false, + audio_set: null, + duration: 60929, + bit_rate: 128000, + sample_rate: null, + thumbnail: null, + detail_url: 'http://localhost:49153/v1/audio/806cd49b-a9dc-4e68-9b2a-c9c5e50b3f86/', + related_url: 'http://localhost:49153/v1/audio/806cd49b-a9dc-4e68-9b2a-c9c5e50b3f86/related/', + waveform: 'http://localhost:49153/v1/audio/806cd49b-a9dc-4e68-9b2a-c9c5e50b3f86/waveform/', + peaks: [], + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=Dom+Quixote+de+la+Mancha&license=by&extension=jpg&source=flickr_keep-alive.json5 b/frontend/test/tapes/search/images/q=Dom+Quixote+de+la+Mancha&license=by&extension=jpg&source=flickr_keep-alive.json5 new file mode 100644 index 00000000000..a7b22d77718 --- /dev/null +++ b/frontend/test/tapes/search/images/q=Dom+Quixote+de+la+Mancha&license=by&extension=jpg&source=flickr_keep-alive.json5 @@ -0,0 +1,269 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:11.648Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=Dom+Quixote+de+la+Mancha&license=by&extension=jpg&source=flickr', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:11 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '17', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '194', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '19a9e838-0f41-4a1e-b7ac-4d23c2c8d5b9', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1149', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:02 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d49df11274a-ADL', + ], + }, + body: { + result_count: 1, + page_count: 1, + page_size: 20, + page: 1, + results: [ + { + id: '804216ba-8b3f-46b1-8e22-2e6b7ae5f3a9', + title: '000742 - Alcalá de Henares', + indexed_on: '2016-11-17T15:07:01.088819Z', + foreign_landing_url: 'https://www.flickr.com/photos/12066793@N05/2992443258', + url: 'https://live.staticflickr.com/3151/2992443258_c7882e2d3e_b.jpg', + creator: 'M.Peinado', + creator_url: 'https://www.flickr.com/photos/12066793@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2008', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '26102008', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'alcalu00e1dehenares', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'canon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'canoneos1000d', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'capilladeloidor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cervantes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'comunidaddemadrid', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'elquijote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'espau00f1a', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'libro', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'migueldecervanes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'octubrede2008', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'quijote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'quixote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'book', + accuracy: 0.94322, + unstable__provider: 'clarifai', + }, + { + name: 'book bindings', + accuracy: 0.98257, + unstable__provider: 'clarifai', + }, + { + name: 'business', + accuracy: 0.93809, + unstable__provider: 'clarifai', + }, + { + name: 'document', + accuracy: 0.98539, + unstable__provider: 'clarifai', + }, + { + name: 'education', + accuracy: 0.94498, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.9152, + unstable__provider: 'clarifai', + }, + { + name: 'literature', + accuracy: 0.90133, + unstable__provider: 'clarifai', + }, + { + name: 'page', + accuracy: 0.96564, + unstable__provider: 'clarifai', + }, + { + name: 'paper', + accuracy: 0.99239, + unstable__provider: 'clarifai', + }, + { + name: 'poetry', + accuracy: 0.94088, + unstable__provider: 'clarifai', + }, + { + name: 'text', + accuracy: 0.93652, + unstable__provider: 'clarifai', + }, + { + name: 'wood', + accuracy: 0.93356, + unstable__provider: 'clarifai', + }, + { + name: 'writing', + accuracy: 0.9693, + unstable__provider: 'clarifai', + }, + ], + attribution: '"000742 - Alcalá de Henares" by M.Peinado is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/804216ba-8b3f-46b1-8e22-2e6b7ae5f3a9/thumb/', + detail_url: 'http://localhost:49153/v1/images/804216ba-8b3f-46b1-8e22-2e6b7ae5f3a9/', + related_url: 'http://localhost:49153/v1/images/804216ba-8b3f-46b1-8e22-2e6b7ae5f3a9/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=Dom+Quixote+de+la+Mancha_keep-alive.json5 b/frontend/test/tapes/search/images/q=Dom+Quixote+de+la+Mancha_keep-alive.json5 new file mode 100644 index 00000000000..2502f073dc5 --- /dev/null +++ b/frontend/test/tapes/search/images/q=Dom+Quixote+de+la+Mancha_keep-alive.json5 @@ -0,0 +1,900 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:10.399Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=Dom+Quixote+de+la+Mancha', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:10 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '161', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '600fb16b-a2d1-4b14-a52b-58d078ff7bf2', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '75692', + ], + 'last-modified': [ + 'Thu, 19 Sep 2024 05:45:38 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d420a8c274b-ADL', + ], + }, + body: { + result_count: 11, + page_count: 1, + page_size: 20, + page: 1, + results: [ + { + id: '398ad6ad-1942-4ecb-b65b-c46536ef86de', + title: 'Dom Quixote de La Mancha', + indexed_on: '2018-11-09T02:22:56.756031Z', + foreign_landing_url: 'https://www.flickr.com/photos/100157339@N07/10136165585', + url: 'https://live.staticflickr.com/5324/10136165585_fe15408702_b.jpg', + creator: 'fotoaquila1', + creator_url: 'https://www.flickr.com/photos/100157339@N07', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"Dom Quixote de La Mancha" by fotoaquila1 is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/398ad6ad-1942-4ecb-b65b-c46536ef86de/thumb/', + detail_url: 'http://localhost:49153/v1/images/398ad6ad-1942-4ecb-b65b-c46536ef86de/', + related_url: 'http://localhost:49153/v1/images/398ad6ad-1942-4ecb-b65b-c46536ef86de/related/', + unstable__sensitivity: [], + }, + { + id: 'd089afe4-fe84-439b-a5b6-459c8597b29a', + title: 'Don Quijote permanece colgado y atado por la muñeca por la malicia de la hija del ventero y de Maritornes', + indexed_on: '2020-04-03T13:55:30.137715Z', + foreign_landing_url: 'https://www.flickr.com/photos/59464842@N05/13979408615', + url: 'https://live.staticflickr.com/7365/13979408615_da37afdc73_b.jpg', + creator: 'Biblioteca Nacional de España', + creator_url: 'https://www.flickr.com/photos/59464842@N05', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '17thcentury', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bibliotecanacionaldeespau00f1a', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bne', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dibujos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'donquijotedelamancha', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'donquixote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'drawings', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'elquijote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nationallibraryofspain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sigloxvii', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Don Quijote permanece colgado y atado por la muñeca por la malicia de la hija del ventero y de Maritornes" by Biblioteca Nacional de España is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 1024, + width: 869, + thumbnail: 'http://localhost:49153/v1/images/d089afe4-fe84-439b-a5b6-459c8597b29a/thumb/', + detail_url: 'http://localhost:49153/v1/images/d089afe4-fe84-439b-a5b6-459c8597b29a/', + related_url: 'http://localhost:49153/v1/images/d089afe4-fe84-439b-a5b6-459c8597b29a/related/', + unstable__sensitivity: [], + }, + { + id: 'b155d0ee-b7fa-4722-b868-0209be648830', + title: 'La destrucción de los Cueros de Vino hecha por Don Quijote quien, todavía dormido, los toma en la Venta por Gigantes', + indexed_on: '2020-04-03T13:55:30.137715Z', + foreign_landing_url: 'https://www.flickr.com/photos/59464842@N05/13956308996', + url: 'https://live.staticflickr.com/7359/13956308996_3a009420b4_b.jpg', + creator: 'Biblioteca Nacional de España', + creator_url: 'https://www.flickr.com/photos/59464842@N05', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '17thcentury', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bibliotecanacionaldeespaña', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bibliotecanacionaldeespau00f1a', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bne', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dibujos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'donquijotedelamancha', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'donquixote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'drawings', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'elquijote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nationallibraryofspain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sigloxvii', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"La destrucción de los Cueros de Vino hecha por Don Quijote quien, todavía dormido, los toma en la Venta por Gigantes" by Biblioteca Nacional de España is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 1024, + width: 897, + thumbnail: 'http://localhost:49153/v1/images/b155d0ee-b7fa-4722-b868-0209be648830/thumb/', + detail_url: 'http://localhost:49153/v1/images/b155d0ee-b7fa-4722-b868-0209be648830/', + related_url: 'http://localhost:49153/v1/images/b155d0ee-b7fa-4722-b868-0209be648830/related/', + unstable__sensitivity: [], + }, + { + id: '8368a4a7-f8b7-4805-9a89-4347800304fc', + title: 'Zipf-euro-3 Spanish (Don Quixote) and Portuguese (Dom Casmurro)', + indexed_on: '2023-05-10T00:07:13.839360Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=131702391', + url: 'https://upload.wikimedia.org/wikipedia/commons/9/92/Zipf-euro-3_Spanish_%28Don_Quixote%29_and_Portuguese_%28Dom_Casmurro%29.svg', + creator: 'Jorge Stolfi', + creator_url: 'https://commons.wikimedia.org/wiki/User:Jorge_Stolfi', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia', + source: 'wikimedia', + category: 'illustration', + filesize: 1407980, + filetype: 'svg', + tags: [], + attribution: '"Zipf-euro-3 Spanish (Don Quixote) and Portuguese (Dom Casmurro)" by Jorge Stolfi is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 504, + width: 512, + thumbnail: 'http://localhost:49153/v1/images/8368a4a7-f8b7-4805-9a89-4347800304fc/thumb/', + detail_url: 'http://localhost:49153/v1/images/8368a4a7-f8b7-4805-9a89-4347800304fc/', + related_url: 'http://localhost:49153/v1/images/8368a4a7-f8b7-4805-9a89-4347800304fc/related/', + unstable__sensitivity: [], + }, + { + id: '1de2983b-69bd-46a5-9cc5-8a6035217b2d', + title: 'Don Quijote desea combatir contra uno de los Leones que envían al Rey de España, que no se digna a salir de su lugar', + indexed_on: '2020-04-03T13:55:30.137715Z', + foreign_landing_url: 'https://www.flickr.com/photos/59464842@N05/13999444133', + url: 'https://live.staticflickr.com/2899/13999444133_65e639870a_b.jpg', + creator: 'Biblioteca Nacional de España', + creator_url: 'https://www.flickr.com/photos/59464842@N05', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '17thcentury', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bibliotecanacionaldeespau00f1a', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bne', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dibujos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'donquijotedelamancha', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'donquixote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'drawings', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'elquijote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nationallibraryofspain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sigloxvii', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Don Quijote desea combatir contra uno de los Leones que envían al Rey de España, que no se digna a salir de su lugar" by Biblioteca Nacional de España is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 1024, + width: 891, + thumbnail: 'http://localhost:49153/v1/images/1de2983b-69bd-46a5-9cc5-8a6035217b2d/thumb/', + detail_url: 'http://localhost:49153/v1/images/1de2983b-69bd-46a5-9cc5-8a6035217b2d/', + related_url: 'http://localhost:49153/v1/images/1de2983b-69bd-46a5-9cc5-8a6035217b2d/related/', + unstable__sensitivity: [], + }, + { + id: '2768c1a0-95fc-49aa-86b3-03d121f4e401', + title: 'Don Quijote, apaleado, es llevado a casa en un carro de bueyes', + indexed_on: '2020-04-03T13:55:30.137715Z', + foreign_landing_url: 'https://www.flickr.com/photos/59464842@N05/13979437355', + url: 'https://live.staticflickr.com/7226/13979437355_a4e6e89f6f_b.jpg', + creator: 'Biblioteca Nacional de España', + creator_url: 'https://www.flickr.com/photos/59464842@N05', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '17thcentury', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bibliotecanacionaldeespau00f1a', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bne', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dibujos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'donquijotedelamancha', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'donquixote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'drawings', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'elquijote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nationallibraryofspain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sigloxvii', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Don Quijote, apaleado, es llevado a casa en un carro de bueyes" by Biblioteca Nacional de España is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 1024, + width: 843, + thumbnail: 'http://localhost:49153/v1/images/2768c1a0-95fc-49aa-86b3-03d121f4e401/thumb/', + detail_url: 'http://localhost:49153/v1/images/2768c1a0-95fc-49aa-86b3-03d121f4e401/', + related_url: 'http://localhost:49153/v1/images/2768c1a0-95fc-49aa-86b3-03d121f4e401/related/', + unstable__sensitivity: [], + }, + { + id: '0b89c6a2-89a5-43e8-a496-12ba3e6f9fce', + title: 'Don Quijote es colpeado por un grupo de penitentes que toma por encantadores', + indexed_on: '2020-04-03T13:55:30.137715Z', + foreign_landing_url: 'https://www.flickr.com/photos/59464842@N05/13976261291', + url: 'https://live.staticflickr.com/7345/13976261291_a31767c841_b.jpg', + creator: 'Biblioteca Nacional de España', + creator_url: 'https://www.flickr.com/photos/59464842@N05', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '17thcentury', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bibliotecanacionaldeespau00f1a', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bne', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dibujos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'donquijotedelamancha', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'donquixote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'drawings', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'elquijote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nationallibraryofspain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sigloxvii', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Don Quijote es colpeado por un grupo de penitentes que toma por encantadores" by Biblioteca Nacional de España is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 1024, + width: 818, + thumbnail: 'http://localhost:49153/v1/images/0b89c6a2-89a5-43e8-a496-12ba3e6f9fce/thumb/', + detail_url: 'http://localhost:49153/v1/images/0b89c6a2-89a5-43e8-a496-12ba3e6f9fce/', + related_url: 'http://localhost:49153/v1/images/0b89c6a2-89a5-43e8-a496-12ba3e6f9fce/related/', + unstable__sensitivity: [], + }, + { + id: '804216ba-8b3f-46b1-8e22-2e6b7ae5f3a9', + title: '000742 - Alcalá de Henares', + indexed_on: '2016-11-17T15:07:01.088819Z', + foreign_landing_url: 'https://www.flickr.com/photos/12066793@N05/2992443258', + url: 'https://live.staticflickr.com/3151/2992443258_c7882e2d3e_b.jpg', + creator: 'M.Peinado', + creator_url: 'https://www.flickr.com/photos/12066793@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2008', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '26102008', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'alcalu00e1dehenares', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'canon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'canoneos1000d', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'capilladeloidor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cervantes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'comunidaddemadrid', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'elquijote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'espau00f1a', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'libro', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'migueldecervanes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'octubrede2008', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'quijote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'quixote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'book', + accuracy: 0.94322, + unstable__provider: 'clarifai', + }, + { + name: 'book bindings', + accuracy: 0.98257, + unstable__provider: 'clarifai', + }, + { + name: 'business', + accuracy: 0.93809, + unstable__provider: 'clarifai', + }, + { + name: 'document', + accuracy: 0.98539, + unstable__provider: 'clarifai', + }, + { + name: 'education', + accuracy: 0.94498, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.9152, + unstable__provider: 'clarifai', + }, + { + name: 'literature', + accuracy: 0.90133, + unstable__provider: 'clarifai', + }, + { + name: 'page', + accuracy: 0.96564, + unstable__provider: 'clarifai', + }, + { + name: 'paper', + accuracy: 0.99239, + unstable__provider: 'clarifai', + }, + { + name: 'poetry', + accuracy: 0.94088, + unstable__provider: 'clarifai', + }, + { + name: 'text', + accuracy: 0.93652, + unstable__provider: 'clarifai', + }, + { + name: 'wood', + accuracy: 0.93356, + unstable__provider: 'clarifai', + }, + { + name: 'writing', + accuracy: 0.9693, + unstable__provider: 'clarifai', + }, + ], + attribution: '"000742 - Alcalá de Henares" by M.Peinado is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/804216ba-8b3f-46b1-8e22-2e6b7ae5f3a9/thumb/', + detail_url: 'http://localhost:49153/v1/images/804216ba-8b3f-46b1-8e22-2e6b7ae5f3a9/', + related_url: 'http://localhost:49153/v1/images/804216ba-8b3f-46b1-8e22-2e6b7ae5f3a9/related/', + unstable__sensitivity: [], + }, + { + id: '33927684-d656-41a9-955f-9e09699b605c', + title: 'homem de lata 1', + indexed_on: '2018-11-07T20:03:57.748699Z', + foreign_landing_url: 'https://www.flickr.com/photos/52656172@N00/385280875', + url: 'https://live.staticflickr.com/151/385280875_00c2a1cfc0.jpg', + creator: '~LuLu~ BR', + creator_url: 'https://www.flickr.com/photos/52656172@N00', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'camburi', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'domquixote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'satatue', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'store', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"homem de lata 1" by ~LuLu~ BR is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 375, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/33927684-d656-41a9-955f-9e09699b605c/thumb/', + detail_url: 'http://localhost:49153/v1/images/33927684-d656-41a9-955f-9e09699b605c/', + related_url: 'http://localhost:49153/v1/images/33927684-d656-41a9-955f-9e09699b605c/related/', + unstable__sensitivity: [], + }, + { + id: '92e80e36-67e8-4457-aae9-340944798a04', + title: '000742 - Alcalá de Henares (2992443258)', + indexed_on: '2020-05-20T08:54:20.237735Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=26522275', + url: 'https://upload.wikimedia.org/wikipedia/commons/e/e4/000742_-_Alcal%C3%A1_de_Henares_%282992443258%29.jpg', + creator: 'M.Peinado from Alcalá de Henares, España', + creator_url: 'https://www.flickr.com/people/12066793@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'wikimedia', + source: 'wikimedia', + category: null, + filesize: 3457467, + filetype: 'jpg', + tags: [], + attribution: '"000742 - Alcalá de Henares (2992443258)" by M.Peinado from Alcalá de Henares, España is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 2592, + width: 3888, + thumbnail: 'http://localhost:49153/v1/images/92e80e36-67e8-4457-aae9-340944798a04/thumb/', + detail_url: 'http://localhost:49153/v1/images/92e80e36-67e8-4457-aae9-340944798a04/', + related_url: 'http://localhost:49153/v1/images/92e80e36-67e8-4457-aae9-340944798a04/related/', + unstable__sensitivity: [], + }, + { + id: 'aa8291e8-3f5c-40fd-abb8-9e2c7e0cd354', + title: 'Don Quijote, queriendo obligar a los Galeotes que había liberado a presentar sus respetos a Dulcinea, es apedreado por ellos', + indexed_on: '2020-04-03T13:55:30.137715Z', + foreign_landing_url: 'https://www.flickr.com/photos/59464842@N05/13979821724', + url: 'https://live.staticflickr.com/7415/13979821724_64ff39ed62_b.jpg', + creator: 'Biblioteca Nacional de España', + creator_url: 'https://www.flickr.com/photos/59464842@N05', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '17thcentury', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bibliotecanacionaldeespau00f1a', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bne', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dibujos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'donquijotedelamancha', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'donquixote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'drawings', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'elquijote', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nationallibraryofspain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sigloxvii', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Don Quijote, queriendo obligar a los Galeotes que había liberado a presentar sus respetos a Dulcinea, es apedreado por ellos" by Biblioteca Nacional de España is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 1024, + width: 831, + thumbnail: 'http://localhost:49153/v1/images/aa8291e8-3f5c-40fd-abb8-9e2c7e0cd354/thumb/', + detail_url: 'http://localhost:49153/v1/images/aa8291e8-3f5c-40fd-abb8-9e2c7e0cd354/', + related_url: 'http://localhost:49153/v1/images/aa8291e8-3f5c-40fd-abb8-9e2c7e0cd354/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=French+government&license=by&extension=jpg&source=flickr_keep-alive.json5 b/frontend/test/tapes/search/images/q=French+government&license=by&extension=jpg&source=flickr_keep-alive.json5 new file mode 100644 index 00000000000..319fe522ae4 --- /dev/null +++ b/frontend/test/tapes/search/images/q=French+government&license=by&extension=jpg&source=flickr_keep-alive.json5 @@ -0,0 +1,1462 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:11.475Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=French+government&license=by&extension=jpg&source=flickr', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:11 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '179', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + 'c9749cb7-5138-4f94-81dc-55d779774bc9', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1150', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:01 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d48cc5e274b-ADL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: 'f6c46185-5e35-4678-aa00-152d729a1151', + title: 'SAIGON 1866 - French Government Floating Dock at Saigon, Cochin-China. Ụ nổi sửa chữa tàu tại Saigon năm 1866', + indexed_on: '2020-04-03T15:58:31.270036Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/14075614891', + url: 'https://live.staticflickr.com/5467/14075614891_87f7aa140e_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'military', + accuracy: 0.92145, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.95613, + unstable__provider: 'clarifai', + }, + { + name: 'print', + accuracy: 0.9729, + unstable__provider: 'clarifai', + }, + { + name: 'vintage', + accuracy: 0.95876, + unstable__provider: 'clarifai', + }, + { + name: 'sea', + accuracy: 0.93474, + unstable__provider: 'clarifai', + }, + { + name: 'war', + accuracy: 0.92086, + unstable__provider: 'clarifai', + }, + { + name: 'warship', + accuracy: 0.90488, + unstable__provider: 'clarifai', + }, + { + name: 'watercraft', + accuracy: 0.99187, + unstable__provider: 'clarifai', + }, + { + name: 'transportation system', + accuracy: 0.96996, + unstable__provider: 'clarifai', + }, + { + name: 'water', + accuracy: 0.91042, + unstable__provider: 'clarifai', + }, + { + name: 'engraving', + accuracy: 0.93961, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.96512, + unstable__provider: 'clarifai', + }, + { + name: 'old', + accuracy: 0.9471, + unstable__provider: 'clarifai', + }, + { + name: 'ship', + accuracy: 0.99083, + unstable__provider: 'clarifai', + }, + { + name: 'shipwreck', + accuracy: 0.92665, + unstable__provider: 'clarifai', + }, + { + name: 'vehicle', + accuracy: 0.95843, + unstable__provider: 'clarifai', + }, + ], + attribution: '"SAIGON 1866 - French Government Floating Dock at Saigon, Cochin-China. Ụ nổi sửa chữa tàu tại Saigon năm 1866" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 712, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/f6c46185-5e35-4678-aa00-152d729a1151/thumb/', + detail_url: 'http://localhost:49153/v1/images/f6c46185-5e35-4678-aa00-152d729a1151/', + related_url: 'http://localhost:49153/v1/images/f6c46185-5e35-4678-aa00-152d729a1151/related/', + unstable__sensitivity: [], + }, + { + id: '48220906-7f22-4473-aa0c-4b707ca00557', + title: '65i People standing at government building shortly before Communist takeover of city from the French. Oct 1954', + indexed_on: '2020-04-22T21:46:33.066174Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/5116889788', + url: 'https://live.staticflickr.com/1238/5116889788_e64bfa9c31_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'architecture', + accuracy: 0.97747, + unstable__provider: 'clarifai', + }, + { + name: 'building', + accuracy: 0.94126, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.96667, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.93913, + unstable__provider: 'clarifai', + }, + { + name: 'administration', + accuracy: 0.94322, + unstable__provider: 'clarifai', + }, + { + name: 'outdoors', + accuracy: 0.94495, + unstable__provider: 'clarifai', + }, + ], + attribution: '"65i People standing at government building shortly before Communist takeover of city from the French. Oct 1954" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 682, + thumbnail: 'http://localhost:49153/v1/images/48220906-7f22-4473-aa0c-4b707ca00557/thumb/', + detail_url: 'http://localhost:49153/v1/images/48220906-7f22-4473-aa0c-4b707ca00557/', + related_url: 'http://localhost:49153/v1/images/48220906-7f22-4473-aa0c-4b707ca00557/related/', + unstable__sensitivity: [], + }, + { + id: 'c0d2bc8f-1eef-4e6a-92f8-9de426a4c1a4', + title: '65j People riding bicycles past government building shortly before Communist takeover of city from the French. Oct 1954', + indexed_on: '2020-04-22T21:46:33.066174Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/5116889874', + url: 'https://live.staticflickr.com/1385/5116889874_81e371d0ea_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'people', + accuracy: 0.97761, + unstable__provider: 'clarifai', + }, + { + name: 'recreation', + accuracy: 0.96313, + unstable__provider: 'clarifai', + }, + { + name: 'transportation system', + accuracy: 0.98199, + unstable__provider: 'clarifai', + }, + { + name: 'vehicle', + accuracy: 0.97733, + unstable__provider: 'clarifai', + }, + { + name: 'cyclist', + accuracy: 0.9839, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.96048, + unstable__provider: 'clarifai', + }, + { + name: 'road', + accuracy: 0.96191, + unstable__provider: 'clarifai', + }, + { + name: 'seated', + accuracy: 0.99162, + unstable__provider: 'clarifai', + }, + { + name: 'bike', + accuracy: 0.98644, + unstable__provider: 'clarifai', + }, + { + name: 'biker', + accuracy: 0.99417, + unstable__provider: 'clarifai', + }, + { + name: 'wheel', + accuracy: 0.99496, + unstable__provider: 'clarifai', + }, + { + name: 'adult', + accuracy: 0.92986, + unstable__provider: 'clarifai', + }, + { + name: 'street', + accuracy: 0.97747, + unstable__provider: 'clarifai', + }, + ], + attribution: '"65j People riding bicycles past government building shortly before Communist takeover of city from the French. Oct 1954" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 673, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/c0d2bc8f-1eef-4e6a-92f8-9de426a4c1a4/thumb/', + detail_url: 'http://localhost:49153/v1/images/c0d2bc8f-1eef-4e6a-92f8-9de426a4c1a4/', + related_url: 'http://localhost:49153/v1/images/c0d2bc8f-1eef-4e6a-92f8-9de426a4c1a4/related/', + unstable__sensitivity: [], + }, + { + id: 'a65d18a5-4490-47d7-bceb-9cdfe850c464', + title: '65k Men changing flags on government building shortly before Communist takeover of city from the French. Oct 1954', + indexed_on: '2020-04-22T21:46:33.066174Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/5116288569', + url: 'https://live.staticflickr.com/4132/5116288569_cd8843b221_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'outdoors', + accuracy: 0.94932, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.99598, + unstable__provider: 'clarifai', + }, + { + name: 'group', + accuracy: 0.94421, + unstable__provider: 'clarifai', + }, + { + name: 'home', + accuracy: 0.95752, + unstable__provider: 'clarifai', + }, + { + name: 'palm', + accuracy: 0.90316, + unstable__provider: 'clarifai', + }, + { + name: 'street', + accuracy: 0.91743, + unstable__provider: 'clarifai', + }, + { + name: 'adult', + accuracy: 0.96917, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.94478, + unstable__provider: 'clarifai', + }, + { + name: 'architecture', + accuracy: 0.9316, + unstable__provider: 'clarifai', + }, + { + name: 'group together', + accuracy: 0.90433, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.95047, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.93503, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.92045, + unstable__provider: 'clarifai', + }, + ], + attribution: '"65k Men changing flags on government building shortly before Communist takeover of city from the French. Oct 1954" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 702, + thumbnail: 'http://localhost:49153/v1/images/a65d18a5-4490-47d7-bceb-9cdfe850c464/thumb/', + detail_url: 'http://localhost:49153/v1/images/a65d18a5-4490-47d7-bceb-9cdfe850c464/', + related_url: 'http://localhost:49153/v1/images/a65d18a5-4490-47d7-bceb-9cdfe850c464/related/', + unstable__sensitivity: [], + }, + { + id: 'fcf3a7c7-7e41-42f1-8801-bcaf9310cc2a', + title: 'People standing near government building shortly before Communist takeover of city from the French. Oct 1954', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/5116890002', + url: 'https://live.staticflickr.com/1389/5116890002_79ee8bdfa4_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"People standing near government building shortly before Communist takeover of city from the French. Oct 1954" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 682, + thumbnail: 'http://localhost:49153/v1/images/fcf3a7c7-7e41-42f1-8801-bcaf9310cc2a/thumb/', + detail_url: 'http://localhost:49153/v1/images/fcf3a7c7-7e41-42f1-8801-bcaf9310cc2a/', + related_url: 'http://localhost:49153/v1/images/fcf3a7c7-7e41-42f1-8801-bcaf9310cc2a/related/', + unstable__sensitivity: [], + }, + { + id: 'ccd7147b-31c5-4399-b2fe-9d07ec57b52b', + title: 'Lê Văn Viễn (Bảy Viễn), thủ lãnh Bình Xuyên - July 1948 - French Indo China Government official Vien Bay, reading a prepared speech.', + indexed_on: '2020-03-29T03:24:26.012128Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/18010688138', + url: 'https://live.staticflickr.com/8862/18010688138_e3284d8985_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'man', + accuracy: 0.9797, + unstable__provider: 'clarifai', + }, + { + name: 'group', + accuracy: 0.98261, + unstable__provider: 'clarifai', + }, + { + name: 'administration', + accuracy: 0.91395, + unstable__provider: 'clarifai', + }, + { + name: 'adult', + accuracy: 0.98975, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.99866, + unstable__provider: 'clarifai', + }, + { + name: 'two', + accuracy: 0.97047, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Lê Văn Viễn (Bảy Viễn), thủ lãnh Bình Xuyên - July 1948 - French Indo China Government official Vien Bay, reading a prepared speech." by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 826, + thumbnail: 'http://localhost:49153/v1/images/ccd7147b-31c5-4399-b2fe-9d07ec57b52b/thumb/', + detail_url: 'http://localhost:49153/v1/images/ccd7147b-31c5-4399-b2fe-9d07ec57b52b/', + related_url: 'http://localhost:49153/v1/images/ccd7147b-31c5-4399-b2fe-9d07ec57b52b/related/', + unstable__sensitivity: [], + }, + { + id: 'd0e58ebc-1bb3-4f89-8d59-b3d42d9c070c', + title: 'July 1948 - French Indo China Government official Vien Bay, holding his hand up to mouth. by Jack Birns', + indexed_on: '2020-03-29T03:24:26.012128Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/18010688108', + url: 'https://live.staticflickr.com/7795/18010688108_e7b9a83eb2_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"July 1948 - French Indo China Government official Vien Bay, holding his hand up to mouth. by Jack Birns" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 794, + thumbnail: 'http://localhost:49153/v1/images/d0e58ebc-1bb3-4f89-8d59-b3d42d9c070c/thumb/', + detail_url: 'http://localhost:49153/v1/images/d0e58ebc-1bb3-4f89-8d59-b3d42d9c070c/', + related_url: 'http://localhost:49153/v1/images/d0e58ebc-1bb3-4f89-8d59-b3d42d9c070c/related/', + unstable__sensitivity: [], + }, + { + id: 'b2e65b53-a8bc-4570-bd80-2043de3e8e3a', + title: 'Saigon City Hall - 23 September 1945 French takeover of government services', + indexed_on: '2020-04-06T05:06:23.865584Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/15344253203', + url: 'https://live.staticflickr.com/7492/15344253203_616aa65c03.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"Saigon City Hall - 23 September 1945 French takeover of government services" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 345, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/b2e65b53-a8bc-4570-bd80-2043de3e8e3a/thumb/', + detail_url: 'http://localhost:49153/v1/images/b2e65b53-a8bc-4570-bd80-2043de3e8e3a/', + related_url: 'http://localhost:49153/v1/images/b2e65b53-a8bc-4570-bd80-2043de3e8e3a/related/', + unstable__sensitivity: [], + }, + { + id: '26b30ab2-6839-437f-8f3e-71f342961af5', + title: 'Fleur Pellerin, Minister Delegate with responsibility for Small and Medium-Sized Enterprises, Innovation & The Digital Economy, The French Government', + indexed_on: '2020-04-14T02:50:27.248746Z', + foreign_landing_url: 'https://www.flickr.com/photos/86704644@N00/8252427049', + url: 'https://live.staticflickr.com/8207/8252427049_caf46dddba_b.jpg', + creator: 'LeWeb14', + creator_url: 'https://www.flickr.com/photos/86704644@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'leweb', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'leweb12', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'leweb2012', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.94796, + unstable__provider: 'clarifai', + }, + { + name: 'chair', + accuracy: 0.95587, + unstable__provider: 'clarifai', + }, + { + name: 'computer', + accuracy: 0.93155, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.93671, + unstable__provider: 'clarifai', + }, + { + name: 'internet', + accuracy: 0.92063, + unstable__provider: 'clarifai', + }, + { + name: 'light', + accuracy: 0.92642, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.90255, + unstable__provider: 'clarifai', + }, + { + name: 'music', + accuracy: 0.94725, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.95056, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.97796, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.95759, + unstable__provider: 'clarifai', + }, + { + name: 'seat', + accuracy: 0.96433, + unstable__provider: 'clarifai', + }, + { + name: 'sit', + accuracy: 0.9902, + unstable__provider: 'clarifai', + }, + { + name: 'sitting', + accuracy: 0.94335, + unstable__provider: 'clarifai', + }, + { + name: 'sofa', + accuracy: 0.91408, + unstable__provider: 'clarifai', + }, + { + name: 'technology', + accuracy: 0.94707, + unstable__provider: 'clarifai', + }, + { + name: 'woman', + accuracy: 0.95522, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Fleur Pellerin, Minister Delegate with responsibility for Small and Medium-Sized Enterprises, Innovation & The Digital Economy, The French Government" by LeWeb14 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/26b30ab2-6839-437f-8f3e-71f342961af5/thumb/', + detail_url: 'http://localhost:49153/v1/images/26b30ab2-6839-437f-8f3e-71f342961af5/', + related_url: 'http://localhost:49153/v1/images/26b30ab2-6839-437f-8f3e-71f342961af5/related/', + unstable__sensitivity: [], + }, + { + id: 'c7526ee0-0761-4947-9410-c03c94a9609b', + title: 'Floating dock built at Saigon for the French Government', + indexed_on: '2020-03-15T07:56:58.959954Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/44634771011', + url: 'https://live.staticflickr.com/1870/44634771011_7a8500deed_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"Floating dock built at Saigon for the French Government" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 648, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/c7526ee0-0761-4947-9410-c03c94a9609b/thumb/', + detail_url: 'http://localhost:49153/v1/images/c7526ee0-0761-4947-9410-c03c94a9609b/', + related_url: 'http://localhost:49153/v1/images/c7526ee0-0761-4947-9410-c03c94a9609b/related/', + unstable__sensitivity: [], + }, + { + id: '9f3587c6-f962-49ea-86b6-4b446bf4050b', + title: '1866 - Floating dock constructed for the French Government at Saigon, Cochin-China', + indexed_on: '2016-11-17T04:56:21.245746Z', + foreign_landing_url: 'https://www.flickr.com/photos/97930879@N02/9540902845', + url: 'https://live.staticflickr.com/7419/9540902845_30eeae1909_b.jpg', + creator: 'Tommy Japan 79', + creator_url: 'https://www.flickr.com/photos/97930879@N02', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: 0.97078, + unstable__provider: 'clarifai', + }, + { + name: 'old', + accuracy: 0.96468, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.97221, + unstable__provider: 'clarifai', + }, + { + name: 'print', + accuracy: 0.99699, + unstable__provider: 'clarifai', + }, + { + name: 'sepia pigment', + accuracy: 0.94838, + unstable__provider: 'clarifai', + }, + { + name: 'vintage', + accuracy: 0.98825, + unstable__provider: 'clarifai', + }, + { + name: 'warship', + accuracy: 0.91098, + unstable__provider: 'clarifai', + }, + { + name: 'water', + accuracy: 0.92753, + unstable__provider: 'clarifai', + }, + { + name: 'etching', + accuracy: 0.92128, + unstable__provider: 'clarifai', + }, + { + name: 'lithograph', + accuracy: 0.94032, + unstable__provider: 'clarifai', + }, + { + name: 'military', + accuracy: 0.92994, + unstable__provider: 'clarifai', + }, + { + name: 'ship', + accuracy: 0.97585, + unstable__provider: 'clarifai', + }, + { + name: 'retro', + accuracy: 0.97553, + unstable__provider: 'clarifai', + }, + { + name: 'antique', + accuracy: 0.97839, + unstable__provider: 'clarifai', + }, + { + name: 'engraving', + accuracy: 0.97425, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.98671, + unstable__provider: 'clarifai', + }, + { + name: 'transportation system', + accuracy: 0.93236, + unstable__provider: 'clarifai', + }, + { + name: 'vehicle', + accuracy: 0.98013, + unstable__provider: 'clarifai', + }, + { + name: 'watercraft', + accuracy: 0.99419, + unstable__provider: 'clarifai', + }, + ], + attribution: '"1866 - Floating dock constructed for the French Government at Saigon, Cochin-China" by Tommy Japan 79 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 706, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/9f3587c6-f962-49ea-86b6-4b446bf4050b/thumb/', + detail_url: 'http://localhost:49153/v1/images/9f3587c6-f962-49ea-86b6-4b446bf4050b/', + related_url: 'http://localhost:49153/v1/images/9f3587c6-f962-49ea-86b6-4b446bf4050b/related/', + unstable__sensitivity: [], + }, + { + id: 'fa340db3-b154-4155-8e84-e72abd6f9c8e', + title: 'Cyrille Vincey, Qunb with Fleur Pellerin, The French Government', + indexed_on: '2020-04-14T02:50:27.248746Z', + foreign_landing_url: 'https://www.flickr.com/photos/86704644@N00/8252431653', + url: 'https://live.staticflickr.com/8057/8252431653_737373c432_b.jpg', + creator: 'LeWeb14', + creator_url: 'https://www.flickr.com/photos/86704644@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'leweb', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'leweb12', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'leweb2012', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Cyrille Vincey, Qunb with Fleur Pellerin, The French Government" by LeWeb14 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/fa340db3-b154-4155-8e84-e72abd6f9c8e/thumb/', + detail_url: 'http://localhost:49153/v1/images/fa340db3-b154-4155-8e84-e72abd6f9c8e/', + related_url: 'http://localhost:49153/v1/images/fa340db3-b154-4155-8e84-e72abd6f9c8e/related/', + unstable__sensitivity: [], + }, + { + id: 'dd171449-623f-4967-8bb0-416706a2def9', + title: 'Government Building Cayenne French Guiana', + indexed_on: '2020-03-28T05:30:33.683200Z', + foreign_landing_url: 'https://www.flickr.com/photos/49399018@N00/16149082043', + url: 'https://live.staticflickr.com/7615/16149082043_1c9cfa1b90_b.jpg', + creator: 'amanderson2', + creator_url: 'https://www.flickr.com/photos/49399018@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'cayenne', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'frenchguiana', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'guyane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'architecture', + accuracy: 0.9956, + unstable__provider: 'clarifai', + }, + { + name: 'building', + accuracy: 0.98058, + unstable__provider: 'clarifai', + }, + { + name: 'daylight', + accuracy: 0.95275, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.94015, + unstable__provider: 'clarifai', + }, + { + name: 'home', + accuracy: 0.98817, + unstable__provider: 'clarifai', + }, + { + name: 'house', + accuracy: 0.97582, + unstable__provider: 'clarifai', + }, + { + name: 'lawn', + accuracy: 0.92759, + unstable__provider: 'clarifai', + }, + { + name: 'mansion', + accuracy: 0.93836, + unstable__provider: 'clarifai', + }, + { + name: 'outdoors', + accuracy: 0.97045, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.9709, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.94138, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Government Building Cayenne French Guiana" by amanderson2 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/dd171449-623f-4967-8bb0-416706a2def9/thumb/', + detail_url: 'http://localhost:49153/v1/images/dd171449-623f-4967-8bb0-416706a2def9/', + related_url: 'http://localhost:49153/v1/images/dd171449-623f-4967-8bb0-416706a2def9/related/', + unstable__sensitivity: [], + }, + { + id: '6bdfc2b4-1514-49df-bac4-ae74cdedda37', + title: 'Map of the British and French dominions in North America, drawn by order of the British government in 1755, showing what that government then conceded as New England', + indexed_on: '2020-04-08T10:18:22.986288Z', + foreign_landing_url: 'https://www.flickr.com/photos/24528911@N05/9138601070', + url: 'https://live.staticflickr.com/3753/9138601070_30a6943de1.jpg', + creator: 'Norman B. Leventhal Map Center at the BPL', + creator_url: 'https://www.flickr.com/photos/24528911@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'chalk out', + accuracy: 0.95343, + unstable__provider: 'clarifai', + }, + { + name: 'margin', + accuracy: 0.93776, + unstable__provider: 'clarifai', + }, + { + name: 'picture frame', + accuracy: 0.91417, + unstable__provider: 'clarifai', + }, + { + name: 'topography', + accuracy: 0.92776, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.90975, + unstable__provider: 'clarifai', + }, + { + name: 'graph', + accuracy: 0.91019, + unstable__provider: 'clarifai', + }, + { + name: 'map', + accuracy: 0.99155, + unstable__provider: 'clarifai', + }, + { + name: 'guidance', + accuracy: 0.90029, + unstable__provider: 'clarifai', + }, + { + name: 'old', + accuracy: 0.90707, + unstable__provider: 'clarifai', + }, + { + name: 'paper', + accuracy: 0.93561, + unstable__provider: 'clarifai', + }, + { + name: 'atlas', + accuracy: 0.90579, + unstable__provider: 'clarifai', + }, + { + name: 'cartography', + accuracy: 0.98545, + unstable__provider: 'clarifai', + }, + { + name: 'geography', + accuracy: 0.97203, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.95051, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Map of the British and French dominions in North America, drawn by order of the British government in 1755, showing what that government then conceded as New England" by Norman B. Leventhal Map Center at the BPL is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 499, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/6bdfc2b4-1514-49df-bac4-ae74cdedda37/thumb/', + detail_url: 'http://localhost:49153/v1/images/6bdfc2b4-1514-49df-bac4-ae74cdedda37/', + related_url: 'http://localhost:49153/v1/images/6bdfc2b4-1514-49df-bac4-ae74cdedda37/related/', + unstable__sensitivity: [], + }, + { + id: '5f7ae142-779c-4285-87a5-08dada7d7723', + title: 'French Government Tourist Office 1951', + indexed_on: '2024-02-16T00:03:45.143384Z', + foreign_landing_url: 'https://www.flickr.com/photos/80682954@N00/53530886068', + url: 'https://live.staticflickr.com/65535/53530886068_d4bbd3ba14_b.jpg', + creator: 'Nesster', + creator_url: 'https://www.flickr.com/photos/80682954@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: 'photograph', + filesize: null, + filetype: 'jpg', + tags: [ + { + name: '1951', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ad', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'advert', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'advertisement', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'atlantic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'december', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'magazine', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'print', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'vintage', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"French Government Tourist Office 1951" by Nesster is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 257, + thumbnail: 'http://localhost:49153/v1/images/5f7ae142-779c-4285-87a5-08dada7d7723/thumb/', + detail_url: 'http://localhost:49153/v1/images/5f7ae142-779c-4285-87a5-08dada7d7723/', + related_url: 'http://localhost:49153/v1/images/5f7ae142-779c-4285-87a5-08dada7d7723/related/', + unstable__sensitivity: [], + }, + { + id: 'a59ac649-e4f8-4efd-be4c-da81ce7a2549', + title: 'F-RAFB FA7X French Air Force (Government) VKO 1', + indexed_on: '2020-03-19T23:55:54.072286Z', + foreign_landing_url: 'https://www.flickr.com/photos/139464552@N04/33338289096', + url: 'https://live.staticflickr.com/3889/33338289096_72d5edf10d_b.jpg', + creator: 'Papas.Dos', + creator_url: 'https://www.flickr.com/photos/139464552@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'aircraft', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'airplane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'planespotting', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"F-RAFB FA7X French Air Force (Government) VKO 1" by Papas.Dos is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 576, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/a59ac649-e4f8-4efd-be4c-da81ce7a2549/thumb/', + detail_url: 'http://localhost:49153/v1/images/a59ac649-e4f8-4efd-be4c-da81ce7a2549/', + related_url: 'http://localhost:49153/v1/images/a59ac649-e4f8-4efd-be4c-da81ce7a2549/related/', + unstable__sensitivity: [], + }, + { + id: '0a78ae16-0b83-4424-945b-8dfde21fb6f2', + title: 'F-RAFB FA7X French Air Force (Government) VKO 2', + indexed_on: '2020-03-19T23:55:54.072286Z', + foreign_landing_url: 'https://www.flickr.com/photos/139464552@N04/32996171860', + url: 'https://live.staticflickr.com/3874/32996171860_f85b0928f7_b.jpg', + creator: 'Papas.Dos', + creator_url: 'https://www.flickr.com/photos/139464552@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'aircraft', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'airplane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'planespotting', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"F-RAFB FA7X French Air Force (Government) VKO 2" by Papas.Dos is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 576, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/0a78ae16-0b83-4424-945b-8dfde21fb6f2/thumb/', + detail_url: 'http://localhost:49153/v1/images/0a78ae16-0b83-4424-945b-8dfde21fb6f2/', + related_url: 'http://localhost:49153/v1/images/0a78ae16-0b83-4424-945b-8dfde21fb6f2/related/', + unstable__sensitivity: [], + }, + { + id: 'f17f109d-acd5-4d16-91bd-79dc1b73b60d', + title: "Image taken from page 460 of 'Travels in Upper and Lower Egypt, undertaken by order of the old government of France ... Translated from the French [by - Monk?]. (Hilaria Hunteriana [strictures on Dr. Hunter's translation of these travels].)'", + indexed_on: '2020-04-10T17:33:24.608563Z', + foreign_landing_url: 'https://www.flickr.com/photos/106138792@N02/10421979814', + url: 'https://live.staticflickr.com/2875/10421979814_23273eaeda_m.jpg', + creator: 'mechanicalcurator', + creator_url: 'https://www.flickr.com/photos/106138792@N02', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'bldigital', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'date1800', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mechanicalcurator', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'publicdomain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pubplacelondon', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: "\"Image taken from page 460 of 'Travels in Upper and Lower Egypt, undertaken by order of the old government of France ... Translated from the French [by - Monk?]. (Hilaria Hunteriana [strictures on Dr. Hunter's translation of these travels].)'\" by mechanicalcurator is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.", + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 237, + width: 240, + thumbnail: 'http://localhost:49153/v1/images/f17f109d-acd5-4d16-91bd-79dc1b73b60d/thumb/', + detail_url: 'http://localhost:49153/v1/images/f17f109d-acd5-4d16-91bd-79dc1b73b60d/', + related_url: 'http://localhost:49153/v1/images/f17f109d-acd5-4d16-91bd-79dc1b73b60d/related/', + unstable__sensitivity: [], + }, + { + id: 'daadace2-4c9e-4614-baee-49dc9ae5c2dc', + title: "Image taken from page 460 of 'Travels in Upper and Lower Egypt, undertaken by order of the old government of France ... Translated from the French [by - Monk?]. (Hilaria Hunteriana [strictures on Dr. Hunter's translation of these travels].)'", + indexed_on: '2020-04-10T17:33:24.608563Z', + foreign_landing_url: 'https://www.flickr.com/photos/106138792@N02/10422038775', + url: 'https://live.staticflickr.com/5536/10422038775_a9da9c88d5.jpg', + creator: 'mechanicalcurator', + creator_url: 'https://www.flickr.com/photos/106138792@N02', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'bldigital', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'date1800', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mechanicalcurator', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'publicdomain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pubplacelondon', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: "\"Image taken from page 460 of 'Travels in Upper and Lower Egypt, undertaken by order of the old government of France ... Translated from the French [by - Monk?]. (Hilaria Hunteriana [strictures on Dr. Hunter's translation of these travels].)'\" by mechanicalcurator is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.", + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 500, + width: 189, + thumbnail: 'http://localhost:49153/v1/images/daadace2-4c9e-4614-baee-49dc9ae5c2dc/thumb/', + detail_url: 'http://localhost:49153/v1/images/daadace2-4c9e-4614-baee-49dc9ae5c2dc/', + related_url: 'http://localhost:49153/v1/images/daadace2-4c9e-4614-baee-49dc9ae5c2dc/related/', + unstable__sensitivity: [], + }, + { + id: '7cbbe863-32c9-42f0-91ee-0016b6993b4d', + title: "Image taken from page 460 of 'Travels in Upper and Lower Egypt, undertaken by order of the old government of France ... Translated from the French [by - Monk?]. (Hilaria Hunteriana [strictures on Dr. Hunter's translation of these travels].)'", + indexed_on: '2020-04-10T17:33:24.608563Z', + foreign_landing_url: 'https://www.flickr.com/photos/106138792@N02/10422017204', + url: 'https://live.staticflickr.com/2885/10422017204_cbf5fa77f5.jpg', + creator: 'mechanicalcurator', + creator_url: 'https://www.flickr.com/photos/106138792@N02', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'bldigital', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'date1800', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mechanicalcurator', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'publicdomain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pubplacelondon', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: "\"Image taken from page 460 of 'Travels in Upper and Lower Egypt, undertaken by order of the old government of France ... Translated from the French [by - Monk?]. (Hilaria Hunteriana [strictures on Dr. Hunter's translation of these travels].)'\" by mechanicalcurator is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.", + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 500, + width: 163, + thumbnail: 'http://localhost:49153/v1/images/7cbbe863-32c9-42f0-91ee-0016b6993b4d/thumb/', + detail_url: 'http://localhost:49153/v1/images/7cbbe863-32c9-42f0-91ee-0016b6993b4d/', + related_url: 'http://localhost:49153/v1/images/7cbbe863-32c9-42f0-91ee-0016b6993b4d/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=French+government_keep-alive.json5 b/frontend/test/tapes/search/images/q=French+government_keep-alive.json5 new file mode 100644 index 00000000000..8fcaa219fd7 --- /dev/null +++ b/frontend/test/tapes/search/images/q=French+government_keep-alive.json5 @@ -0,0 +1,1307 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:10.279Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=French+government', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:10 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '2', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '170', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '9a1b2085-4c23-42e3-987f-04895da5b441', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '84249', + ], + 'last-modified': [ + 'Thu, 19 Sep 2024 03:23:01 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d414962274b-ADL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: 'f6c46185-5e35-4678-aa00-152d729a1151', + title: 'SAIGON 1866 - French Government Floating Dock at Saigon, Cochin-China. Ụ nổi sửa chữa tàu tại Saigon năm 1866', + indexed_on: '2020-04-03T15:58:31.270036Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/14075614891', + url: 'https://live.staticflickr.com/5467/14075614891_87f7aa140e_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'military', + accuracy: 0.92145, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.95613, + unstable__provider: 'clarifai', + }, + { + name: 'print', + accuracy: 0.9729, + unstable__provider: 'clarifai', + }, + { + name: 'vintage', + accuracy: 0.95876, + unstable__provider: 'clarifai', + }, + { + name: 'sea', + accuracy: 0.93474, + unstable__provider: 'clarifai', + }, + { + name: 'war', + accuracy: 0.92086, + unstable__provider: 'clarifai', + }, + { + name: 'warship', + accuracy: 0.90488, + unstable__provider: 'clarifai', + }, + { + name: 'watercraft', + accuracy: 0.99187, + unstable__provider: 'clarifai', + }, + { + name: 'transportation system', + accuracy: 0.96996, + unstable__provider: 'clarifai', + }, + { + name: 'water', + accuracy: 0.91042, + unstable__provider: 'clarifai', + }, + { + name: 'engraving', + accuracy: 0.93961, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.96512, + unstable__provider: 'clarifai', + }, + { + name: 'old', + accuracy: 0.9471, + unstable__provider: 'clarifai', + }, + { + name: 'ship', + accuracy: 0.99083, + unstable__provider: 'clarifai', + }, + { + name: 'shipwreck', + accuracy: 0.92665, + unstable__provider: 'clarifai', + }, + { + name: 'vehicle', + accuracy: 0.95843, + unstable__provider: 'clarifai', + }, + ], + attribution: '"SAIGON 1866 - French Government Floating Dock at Saigon, Cochin-China. Ụ nổi sửa chữa tàu tại Saigon năm 1866" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 712, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/f6c46185-5e35-4678-aa00-152d729a1151/thumb/', + detail_url: 'http://localhost:49153/v1/images/f6c46185-5e35-4678-aa00-152d729a1151/', + related_url: 'http://localhost:49153/v1/images/f6c46185-5e35-4678-aa00-152d729a1151/related/', + unstable__sensitivity: [], + }, + { + id: 'feb45552-63bc-469e-9136-12ce01e09477', + title: 'File:Emblem of the Provisional Government of the French Republic.svg', + indexed_on: '2020-03-04T00:24:27.971898Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=74540907', + url: 'https://upload.wikimedia.org/wikipedia/commons/e/ef/Emblem_of_the_Provisional_Government_of_the_French_Republic.svg', + creator: 'Samhanin', + creator_url: 'https://commons.wikimedia.org/wiki/User:Samhanin', + license: 'cc0', + license_version: '1.0', + license_url: 'http://creativecommons.org/publicdomain/zero/1.0/deed.en', + provider: 'wikimedia', + source: 'wikimedia', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"File:Emblem of the Provisional Government of the French Republic.svg" by Samhanin is marked with CC0 1.0. To view the terms, visit http://creativecommons.org/publicdomain/zero/1.0/deed.en.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 285, + width: 480, + thumbnail: 'http://localhost:49153/v1/images/feb45552-63bc-469e-9136-12ce01e09477/thumb/', + detail_url: 'http://localhost:49153/v1/images/feb45552-63bc-469e-9136-12ce01e09477/', + related_url: 'http://localhost:49153/v1/images/feb45552-63bc-469e-9136-12ce01e09477/related/', + unstable__sensitivity: [], + }, + { + id: '48220906-7f22-4473-aa0c-4b707ca00557', + title: '65i People standing at government building shortly before Communist takeover of city from the French. Oct 1954', + indexed_on: '2020-04-22T21:46:33.066174Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/5116889788', + url: 'https://live.staticflickr.com/1238/5116889788_e64bfa9c31_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'architecture', + accuracy: 0.97747, + unstable__provider: 'clarifai', + }, + { + name: 'building', + accuracy: 0.94126, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.96667, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.93913, + unstable__provider: 'clarifai', + }, + { + name: 'administration', + accuracy: 0.94322, + unstable__provider: 'clarifai', + }, + { + name: 'outdoors', + accuracy: 0.94495, + unstable__provider: 'clarifai', + }, + ], + attribution: '"65i People standing at government building shortly before Communist takeover of city from the French. Oct 1954" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 682, + thumbnail: 'http://localhost:49153/v1/images/48220906-7f22-4473-aa0c-4b707ca00557/thumb/', + detail_url: 'http://localhost:49153/v1/images/48220906-7f22-4473-aa0c-4b707ca00557/', + related_url: 'http://localhost:49153/v1/images/48220906-7f22-4473-aa0c-4b707ca00557/related/', + unstable__sensitivity: [], + }, + { + id: 'c0d2bc8f-1eef-4e6a-92f8-9de426a4c1a4', + title: '65j People riding bicycles past government building shortly before Communist takeover of city from the French. Oct 1954', + indexed_on: '2020-04-22T21:46:33.066174Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/5116889874', + url: 'https://live.staticflickr.com/1385/5116889874_81e371d0ea_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'people', + accuracy: 0.97761, + unstable__provider: 'clarifai', + }, + { + name: 'recreation', + accuracy: 0.96313, + unstable__provider: 'clarifai', + }, + { + name: 'transportation system', + accuracy: 0.98199, + unstable__provider: 'clarifai', + }, + { + name: 'vehicle', + accuracy: 0.97733, + unstable__provider: 'clarifai', + }, + { + name: 'cyclist', + accuracy: 0.9839, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.96048, + unstable__provider: 'clarifai', + }, + { + name: 'road', + accuracy: 0.96191, + unstable__provider: 'clarifai', + }, + { + name: 'seated', + accuracy: 0.99162, + unstable__provider: 'clarifai', + }, + { + name: 'bike', + accuracy: 0.98644, + unstable__provider: 'clarifai', + }, + { + name: 'biker', + accuracy: 0.99417, + unstable__provider: 'clarifai', + }, + { + name: 'wheel', + accuracy: 0.99496, + unstable__provider: 'clarifai', + }, + { + name: 'adult', + accuracy: 0.92986, + unstable__provider: 'clarifai', + }, + { + name: 'street', + accuracy: 0.97747, + unstable__provider: 'clarifai', + }, + ], + attribution: '"65j People riding bicycles past government building shortly before Communist takeover of city from the French. Oct 1954" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 673, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/c0d2bc8f-1eef-4e6a-92f8-9de426a4c1a4/thumb/', + detail_url: 'http://localhost:49153/v1/images/c0d2bc8f-1eef-4e6a-92f8-9de426a4c1a4/', + related_url: 'http://localhost:49153/v1/images/c0d2bc8f-1eef-4e6a-92f8-9de426a4c1a4/related/', + unstable__sensitivity: [], + }, + { + id: 'a65d18a5-4490-47d7-bceb-9cdfe850c464', + title: '65k Men changing flags on government building shortly before Communist takeover of city from the French. Oct 1954', + indexed_on: '2020-04-22T21:46:33.066174Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/5116288569', + url: 'https://live.staticflickr.com/4132/5116288569_cd8843b221_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'outdoors', + accuracy: 0.94932, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.99598, + unstable__provider: 'clarifai', + }, + { + name: 'group', + accuracy: 0.94421, + unstable__provider: 'clarifai', + }, + { + name: 'home', + accuracy: 0.95752, + unstable__provider: 'clarifai', + }, + { + name: 'palm', + accuracy: 0.90316, + unstable__provider: 'clarifai', + }, + { + name: 'street', + accuracy: 0.91743, + unstable__provider: 'clarifai', + }, + { + name: 'adult', + accuracy: 0.96917, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.94478, + unstable__provider: 'clarifai', + }, + { + name: 'architecture', + accuracy: 0.9316, + unstable__provider: 'clarifai', + }, + { + name: 'group together', + accuracy: 0.90433, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.95047, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.93503, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.92045, + unstable__provider: 'clarifai', + }, + ], + attribution: '"65k Men changing flags on government building shortly before Communist takeover of city from the French. Oct 1954" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 702, + thumbnail: 'http://localhost:49153/v1/images/a65d18a5-4490-47d7-bceb-9cdfe850c464/thumb/', + detail_url: 'http://localhost:49153/v1/images/a65d18a5-4490-47d7-bceb-9cdfe850c464/', + related_url: 'http://localhost:49153/v1/images/a65d18a5-4490-47d7-bceb-9cdfe850c464/related/', + unstable__sensitivity: [], + }, + { + id: 'fcf3a7c7-7e41-42f1-8801-bcaf9310cc2a', + title: 'People standing near government building shortly before Communist takeover of city from the French. Oct 1954', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/5116890002', + url: 'https://live.staticflickr.com/1389/5116890002_79ee8bdfa4_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"People standing near government building shortly before Communist takeover of city from the French. Oct 1954" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 682, + thumbnail: 'http://localhost:49153/v1/images/fcf3a7c7-7e41-42f1-8801-bcaf9310cc2a/thumb/', + detail_url: 'http://localhost:49153/v1/images/fcf3a7c7-7e41-42f1-8801-bcaf9310cc2a/', + related_url: 'http://localhost:49153/v1/images/fcf3a7c7-7e41-42f1-8801-bcaf9310cc2a/related/', + unstable__sensitivity: [], + }, + { + id: '1b3200e4-a2f7-4db1-ac15-7d1903be3f6b', + title: 'File:Seal of the Government-General of French Equatorial Africa.svg', + indexed_on: '2020-03-04T12:51:51.904667Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=65123397', + url: 'https://upload.wikimedia.org/wikipedia/commons/8/8c/Seal_of_the_Government-General_of_French_Equatorial_Africa.svg', + creator: 'Samhanin', + creator_url: 'https://commons.wikimedia.org/wiki/User:Samhanin', + license: 'cc0', + license_version: '1.0', + license_url: 'http://creativecommons.org/publicdomain/zero/1.0/deed.en', + provider: 'wikimedia', + source: 'wikimedia', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"File:Seal of the Government-General of French Equatorial Africa.svg" by Samhanin is marked with CC0 1.0. To view the terms, visit http://creativecommons.org/publicdomain/zero/1.0/deed.en.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 512, + width: 512, + thumbnail: 'http://localhost:49153/v1/images/1b3200e4-a2f7-4db1-ac15-7d1903be3f6b/thumb/', + detail_url: 'http://localhost:49153/v1/images/1b3200e4-a2f7-4db1-ac15-7d1903be3f6b/', + related_url: 'http://localhost:49153/v1/images/1b3200e4-a2f7-4db1-ac15-7d1903be3f6b/related/', + unstable__sensitivity: [], + }, + { + id: 'de95e6e5-0782-46f0-9585-af72dc23faaa', + title: '1866 - Floating dock constructed for the French Government at Saigon, Cochin-China', + indexed_on: '2020-04-21T14:12:31.318146Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/4585996456', + url: 'https://live.staticflickr.com/4044/4585996456_a77c68904d_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '1866', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dock', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dockflottant', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'floatingdock', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'saigon', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"1866 - Floating dock constructed for the French Government at Saigon, Cochin-China" by manhhai is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 707, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/de95e6e5-0782-46f0-9585-af72dc23faaa/thumb/', + detail_url: 'http://localhost:49153/v1/images/de95e6e5-0782-46f0-9585-af72dc23faaa/', + related_url: 'http://localhost:49153/v1/images/de95e6e5-0782-46f0-9585-af72dc23faaa/related/', + unstable__sensitivity: [], + }, + { + id: 'ccd7147b-31c5-4399-b2fe-9d07ec57b52b', + title: 'Lê Văn Viễn (Bảy Viễn), thủ lãnh Bình Xuyên - July 1948 - French Indo China Government official Vien Bay, reading a prepared speech.', + indexed_on: '2020-03-29T03:24:26.012128Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/18010688138', + url: 'https://live.staticflickr.com/8862/18010688138_e3284d8985_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'man', + accuracy: 0.9797, + unstable__provider: 'clarifai', + }, + { + name: 'group', + accuracy: 0.98261, + unstable__provider: 'clarifai', + }, + { + name: 'administration', + accuracy: 0.91395, + unstable__provider: 'clarifai', + }, + { + name: 'adult', + accuracy: 0.98975, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.99866, + unstable__provider: 'clarifai', + }, + { + name: 'two', + accuracy: 0.97047, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Lê Văn Viễn (Bảy Viễn), thủ lãnh Bình Xuyên - July 1948 - French Indo China Government official Vien Bay, reading a prepared speech." by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 826, + thumbnail: 'http://localhost:49153/v1/images/ccd7147b-31c5-4399-b2fe-9d07ec57b52b/thumb/', + detail_url: 'http://localhost:49153/v1/images/ccd7147b-31c5-4399-b2fe-9d07ec57b52b/', + related_url: 'http://localhost:49153/v1/images/ccd7147b-31c5-4399-b2fe-9d07ec57b52b/related/', + unstable__sensitivity: [], + }, + { + id: 'd0e58ebc-1bb3-4f89-8d59-b3d42d9c070c', + title: 'July 1948 - French Indo China Government official Vien Bay, holding his hand up to mouth. by Jack Birns', + indexed_on: '2020-03-29T03:24:26.012128Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/18010688108', + url: 'https://live.staticflickr.com/7795/18010688108_e7b9a83eb2_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"July 1948 - French Indo China Government official Vien Bay, holding his hand up to mouth. by Jack Birns" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 794, + thumbnail: 'http://localhost:49153/v1/images/d0e58ebc-1bb3-4f89-8d59-b3d42d9c070c/thumb/', + detail_url: 'http://localhost:49153/v1/images/d0e58ebc-1bb3-4f89-8d59-b3d42d9c070c/', + related_url: 'http://localhost:49153/v1/images/d0e58ebc-1bb3-4f89-8d59-b3d42d9c070c/related/', + unstable__sensitivity: [], + }, + { + id: 'b2e65b53-a8bc-4570-bd80-2043de3e8e3a', + title: 'Saigon City Hall - 23 September 1945 French takeover of government services', + indexed_on: '2020-04-06T05:06:23.865584Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/15344253203', + url: 'https://live.staticflickr.com/7492/15344253203_616aa65c03.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"Saigon City Hall - 23 September 1945 French takeover of government services" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 345, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/b2e65b53-a8bc-4570-bd80-2043de3e8e3a/thumb/', + detail_url: 'http://localhost:49153/v1/images/b2e65b53-a8bc-4570-bd80-2043de3e8e3a/', + related_url: 'http://localhost:49153/v1/images/b2e65b53-a8bc-4570-bd80-2043de3e8e3a/related/', + unstable__sensitivity: [], + }, + { + id: '1a12e820-0d50-423c-b27e-10991a98bdd0', + title: 'Vietnamese-style seal of the Government-General of French Indochina', + indexed_on: '2024-02-25T11:39:58.248509Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=106057947', + url: 'https://upload.wikimedia.org/wikipedia/commons/1/11/Vietnamese-style_seal_of_the_Government-General_of_French_Indochina.svg', + creator: 'Sodacan', + creator_url: 'https://commons.wikimedia.org/wiki/User:Sodacan', + license: 'by-sa', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by-sa/4.0/', + provider: 'wikimedia', + source: 'wikimedia', + category: 'illustration', + filesize: 117752, + filetype: 'svg', + tags: [], + attribution: '"Vietnamese-style seal of the Government-General of French Indochina" by Sodacan is licensed under CC BY-SA 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/4.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 281, + width: 188, + thumbnail: 'http://localhost:49153/v1/images/1a12e820-0d50-423c-b27e-10991a98bdd0/thumb/', + detail_url: 'http://localhost:49153/v1/images/1a12e820-0d50-423c-b27e-10991a98bdd0/', + related_url: 'http://localhost:49153/v1/images/1a12e820-0d50-423c-b27e-10991a98bdd0/related/', + unstable__sensitivity: [], + }, + { + id: 'cfd4c63c-4f0f-4c30-857a-b4c0e171bb9c', + title: 'Standard of the Free French Government of Chad, 1940–1942', + indexed_on: '2020-02-12T16:02:11.076098Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=76717670', + url: 'https://upload.wikimedia.org/wikipedia/commons/2/25/Standard_of_the_Free_French_Government_of_Chad%2C_1940%E2%80%931942.svg', + creator: 'Dahn', + creator_url: 'https://commons.wikimedia.org/wiki/User:Dahn', + license: 'by', + license_version: '4.0', + license_url: 'https://creativecommons.org/licenses/by/4.0/', + provider: 'wikimedia', + source: 'wikimedia', + category: 'illustration', + filesize: 10656, + filetype: 'svg', + tags: [], + attribution: '"Standard of the Free French Government of Chad, 1940–1942" by Dahn is licensed under CC BY 4.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 938, + width: 952, + thumbnail: 'http://localhost:49153/v1/images/cfd4c63c-4f0f-4c30-857a-b4c0e171bb9c/thumb/', + detail_url: 'http://localhost:49153/v1/images/cfd4c63c-4f0f-4c30-857a-b4c0e171bb9c/', + related_url: 'http://localhost:49153/v1/images/cfd4c63c-4f0f-4c30-857a-b4c0e171bb9c/related/', + unstable__sensitivity: [], + }, + { + id: '75d56c61-ae63-4eeb-a18c-d33ba0aedaa2', + title: 'Bendigo. The French Empire style Law Courts. Architect was the government architect George Lawson. Built 1896.', + indexed_on: '2020-03-01T10:22:54.271062Z', + foreign_landing_url: 'https://www.flickr.com/photos/82134796@N03/20396470423', + url: 'https://live.staticflickr.com/5713/20396470423_e4cb0fc9b4_b.jpg', + creator: 'denisbin', + creator_url: 'https://www.flickr.com/photos/82134796@N03', + license: 'by-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'architecture', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bendigo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'building', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'government', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'interioir', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'shamrock', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'shamrockhotel', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'townhall', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'vahland', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Bendigo. The French Empire style Law Courts. Architect was the government architect George Lawson. Built 1896." by denisbin is licensed under CC BY-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/75d56c61-ae63-4eeb-a18c-d33ba0aedaa2/thumb/', + detail_url: 'http://localhost:49153/v1/images/75d56c61-ae63-4eeb-a18c-d33ba0aedaa2/', + related_url: 'http://localhost:49153/v1/images/75d56c61-ae63-4eeb-a18c-d33ba0aedaa2/related/', + unstable__sensitivity: [], + }, + { + id: '26b30ab2-6839-437f-8f3e-71f342961af5', + title: 'Fleur Pellerin, Minister Delegate with responsibility for Small and Medium-Sized Enterprises, Innovation & The Digital Economy, The French Government', + indexed_on: '2020-04-14T02:50:27.248746Z', + foreign_landing_url: 'https://www.flickr.com/photos/86704644@N00/8252427049', + url: 'https://live.staticflickr.com/8207/8252427049_caf46dddba_b.jpg', + creator: 'LeWeb14', + creator_url: 'https://www.flickr.com/photos/86704644@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'leweb', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'leweb12', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'leweb2012', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.94796, + unstable__provider: 'clarifai', + }, + { + name: 'chair', + accuracy: 0.95587, + unstable__provider: 'clarifai', + }, + { + name: 'computer', + accuracy: 0.93155, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.93671, + unstable__provider: 'clarifai', + }, + { + name: 'internet', + accuracy: 0.92063, + unstable__provider: 'clarifai', + }, + { + name: 'light', + accuracy: 0.92642, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.90255, + unstable__provider: 'clarifai', + }, + { + name: 'music', + accuracy: 0.94725, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.95056, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.97796, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.95759, + unstable__provider: 'clarifai', + }, + { + name: 'seat', + accuracy: 0.96433, + unstable__provider: 'clarifai', + }, + { + name: 'sit', + accuracy: 0.9902, + unstable__provider: 'clarifai', + }, + { + name: 'sitting', + accuracy: 0.94335, + unstable__provider: 'clarifai', + }, + { + name: 'sofa', + accuracy: 0.91408, + unstable__provider: 'clarifai', + }, + { + name: 'technology', + accuracy: 0.94707, + unstable__provider: 'clarifai', + }, + { + name: 'woman', + accuracy: 0.95522, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Fleur Pellerin, Minister Delegate with responsibility for Small and Medium-Sized Enterprises, Innovation & The Digital Economy, The French Government" by LeWeb14 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/26b30ab2-6839-437f-8f3e-71f342961af5/thumb/', + detail_url: 'http://localhost:49153/v1/images/26b30ab2-6839-437f-8f3e-71f342961af5/', + related_url: 'http://localhost:49153/v1/images/26b30ab2-6839-437f-8f3e-71f342961af5/related/', + unstable__sensitivity: [], + }, + { + id: 'c7526ee0-0761-4947-9410-c03c94a9609b', + title: 'Floating dock built at Saigon for the French Government', + indexed_on: '2020-03-15T07:56:58.959954Z', + foreign_landing_url: 'https://www.flickr.com/photos/13476480@N07/44634771011', + url: 'https://live.staticflickr.com/1870/44634771011_7a8500deed_b.jpg', + creator: 'manhhai', + creator_url: 'https://www.flickr.com/photos/13476480@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"Floating dock built at Saigon for the French Government" by manhhai is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 648, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/c7526ee0-0761-4947-9410-c03c94a9609b/thumb/', + detail_url: 'http://localhost:49153/v1/images/c7526ee0-0761-4947-9410-c03c94a9609b/', + related_url: 'http://localhost:49153/v1/images/c7526ee0-0761-4947-9410-c03c94a9609b/related/', + unstable__sensitivity: [], + }, + { + id: '9f3587c6-f962-49ea-86b6-4b446bf4050b', + title: '1866 - Floating dock constructed for the French Government at Saigon, Cochin-China', + indexed_on: '2016-11-17T04:56:21.245746Z', + foreign_landing_url: 'https://www.flickr.com/photos/97930879@N02/9540902845', + url: 'https://live.staticflickr.com/7419/9540902845_30eeae1909_b.jpg', + creator: 'Tommy Japan 79', + creator_url: 'https://www.flickr.com/photos/97930879@N02', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: 0.97078, + unstable__provider: 'clarifai', + }, + { + name: 'old', + accuracy: 0.96468, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.97221, + unstable__provider: 'clarifai', + }, + { + name: 'print', + accuracy: 0.99699, + unstable__provider: 'clarifai', + }, + { + name: 'sepia pigment', + accuracy: 0.94838, + unstable__provider: 'clarifai', + }, + { + name: 'vintage', + accuracy: 0.98825, + unstable__provider: 'clarifai', + }, + { + name: 'warship', + accuracy: 0.91098, + unstable__provider: 'clarifai', + }, + { + name: 'water', + accuracy: 0.92753, + unstable__provider: 'clarifai', + }, + { + name: 'etching', + accuracy: 0.92128, + unstable__provider: 'clarifai', + }, + { + name: 'lithograph', + accuracy: 0.94032, + unstable__provider: 'clarifai', + }, + { + name: 'military', + accuracy: 0.92994, + unstable__provider: 'clarifai', + }, + { + name: 'ship', + accuracy: 0.97585, + unstable__provider: 'clarifai', + }, + { + name: 'retro', + accuracy: 0.97553, + unstable__provider: 'clarifai', + }, + { + name: 'antique', + accuracy: 0.97839, + unstable__provider: 'clarifai', + }, + { + name: 'engraving', + accuracy: 0.97425, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.98671, + unstable__provider: 'clarifai', + }, + { + name: 'transportation system', + accuracy: 0.93236, + unstable__provider: 'clarifai', + }, + { + name: 'vehicle', + accuracy: 0.98013, + unstable__provider: 'clarifai', + }, + { + name: 'watercraft', + accuracy: 0.99419, + unstable__provider: 'clarifai', + }, + ], + attribution: '"1866 - Floating dock constructed for the French Government at Saigon, Cochin-China" by Tommy Japan 79 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 706, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/9f3587c6-f962-49ea-86b6-4b446bf4050b/thumb/', + detail_url: 'http://localhost:49153/v1/images/9f3587c6-f962-49ea-86b6-4b446bf4050b/', + related_url: 'http://localhost:49153/v1/images/9f3587c6-f962-49ea-86b6-4b446bf4050b/related/', + unstable__sensitivity: [], + }, + { + id: '43848075-07f0-44dd-a106-83eecf1a3ae4', + title: 'File:Stenbock House, the seat of the Estonian Government, in French flag colours.jpg', + indexed_on: '2020-04-28T13:26:20.572959Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=45034444', + url: 'https://upload.wikimedia.org/wikipedia/commons/1/18/Stenbock_House%2C_the_seat_of_the_Estonian_Government%2C_in_French_flag_colours.jpg', + creator: 'Estonian Government', + creator_url: null, + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'wikimedia', + source: 'wikimedia', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"File:Stenbock House, the seat of the Estonian Government, in French flag colours.jpg" by Estonian Government is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1799, + width: 2400, + thumbnail: 'http://localhost:49153/v1/images/43848075-07f0-44dd-a106-83eecf1a3ae4/thumb/', + detail_url: 'http://localhost:49153/v1/images/43848075-07f0-44dd-a106-83eecf1a3ae4/', + related_url: 'http://localhost:49153/v1/images/43848075-07f0-44dd-a106-83eecf1a3ae4/related/', + unstable__sensitivity: [], + }, + { + id: '30936b01-6d00-4ec2-a256-3b4ed2a73d1f', + title: 'Family photo of No Money for Terror conference orginized by the French Government', + indexed_on: '2019-04-16T16:19:00.634374Z', + foreign_landing_url: 'https://www.flickr.com/photos/32771300@N02/40834447195', + url: 'https://live.staticflickr.com/975/40834447195_76a7c45f16_b.jpg', + creator: 'Organisation for Economic Co-operation and Develop', + creator_url: 'https://www.flickr.com/photos/32771300@N02', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'bank', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'conference', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'family', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'for', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'french', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'government', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'gurria', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'imf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lagarde', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'macron', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'money', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'no', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'orginized', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'photo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'terror', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'world', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Family photo of No Money for Terror conference orginized by the French Government" by Organisation for Economic Co-operation and Develop is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/30936b01-6d00-4ec2-a256-3b4ed2a73d1f/thumb/', + detail_url: 'http://localhost:49153/v1/images/30936b01-6d00-4ec2-a256-3b4ed2a73d1f/', + related_url: 'http://localhost:49153/v1/images/30936b01-6d00-4ec2-a256-3b4ed2a73d1f/related/', + unstable__sensitivity: [], + }, + { + id: '2577f8b1-0c00-48c5-89e6-9b5981192a96', + title: 'French government', + indexed_on: '2022-09-11T05:15:39.604591Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=384213', + url: 'https://upload.wikimedia.org/wikipedia/commons/4/4e/French_government.svg', + creator: 'David Monniaux', + creator_url: 'https://commons.wikimedia.org/wiki/User:David.Monniaux', + license: 'by-sa', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by-sa/3.0/', + provider: 'wikimedia', + source: 'wikimedia', + category: 'illustration', + filesize: 9151, + filetype: 'svg', + tags: [], + attribution: '"French government" by David Monniaux is licensed under CC BY-SA 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/3.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 444, + width: 512, + thumbnail: 'http://localhost:49153/v1/images/2577f8b1-0c00-48c5-89e6-9b5981192a96/thumb/', + detail_url: 'http://localhost:49153/v1/images/2577f8b1-0c00-48c5-89e6-9b5981192a96/', + related_url: 'http://localhost:49153/v1/images/2577f8b1-0c00-48c5-89e6-9b5981192a96/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=Juan+L%C3%B3pez&license=by&extension=jpg&source=flickr_keep-alive.json5 b/frontend/test/tapes/search/images/q=Juan+L%C3%B3pez&license=by&extension=jpg&source=flickr_keep-alive.json5 new file mode 100644 index 00000000000..6fd55878dee --- /dev/null +++ b/frontend/test/tapes/search/images/q=Juan+L%C3%B3pez&license=by&extension=jpg&source=flickr_keep-alive.json5 @@ -0,0 +1,1357 @@ +{ + meta: { + createdAt: '2024-09-20T02:46:49.725Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=Juan+L%C3%B3pez&license=by&extension=jpg&source=flickr', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:46:49 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '199', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '5eba35a9-82d9-4441-bdfe-f84e90d3effd', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '74268', + ], + 'last-modified': [ + 'Thu, 19 Sep 2024 06:09:01 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7cc11e634ff1-MEL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: 'ba7939cd-8279-4c1d-8a78-0f474273a148', + title: "Juan López Figueroa's Star of Eden # 47", + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/69208357@N00/5526156582', + url: 'https://live.staticflickr.com/5054/5526156582_ac91f1e5cc_b.jpg', + creator: 'georigami', + creator_url: 'https://www.flickr.com/photos/69208357@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'origami', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'origamifan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'papel', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'paper', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'papiroflexia', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan López Figueroa\'s Star of Eden # 47" by georigami is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/ba7939cd-8279-4c1d-8a78-0f474273a148/thumb/', + detail_url: 'http://localhost:49153/v1/images/ba7939cd-8279-4c1d-8a78-0f474273a148/', + related_url: 'http://localhost:49153/v1/images/ba7939cd-8279-4c1d-8a78-0f474273a148/related/', + unstable__sensitivity: [], + }, + { + id: 'b41aa00c-8dc4-442f-bf01-115f33c2345e', + title: 'David Santana, Juan José López, Sergio Pérez (Parrot)', + indexed_on: '2016-11-17T10:48:04.584873Z', + foreign_landing_url: 'https://www.flickr.com/photos/57010320@N06/6417909677', + url: 'https://live.staticflickr.com/6098/6417909677_221de48db3_b.jpg', + creator: 'Xataka', + creator_url: 'https://www.flickr.com/photos/57010320@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'premiosxataka2011', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'actor', + accuracy: 0.98429, + unstable__provider: 'clarifai', + }, + { + name: 'actress', + accuracy: 0.91175, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.96593, + unstable__provider: 'clarifai', + }, + { + name: 'movie', + accuracy: 0.95891, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.95381, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.94283, + unstable__provider: 'clarifai', + }, + { + name: 'recreation', + accuracy: 0.9637, + unstable__provider: 'clarifai', + }, + ], + attribution: '"David Santana, Juan José López, Sergio Pérez (Parrot)" by Xataka is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 678, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/b41aa00c-8dc4-442f-bf01-115f33c2345e/thumb/', + detail_url: 'http://localhost:49153/v1/images/b41aa00c-8dc4-442f-bf01-115f33c2345e/', + related_url: 'http://localhost:49153/v1/images/b41aa00c-8dc4-442f-bf01-115f33c2345e/related/', + unstable__sensitivity: [], + }, + { + id: 'c1a557b4-cca9-4f7d-875f-da1f71c68c0b', + title: 'Reunión el Gobernador Electo de San Luis Potosí, Juan Manuel Carreras López.', + indexed_on: '2020-03-29T22:45:38.163414Z', + foreign_landing_url: 'https://www.flickr.com/photos/90642778@N05/20076468819', + url: 'https://live.staticflickr.com/400/20076468819_737690f627_b.jpg', + creator: 'Presidencia de la República Mexicana', + creator_url: 'https://www.flickr.com/photos/90642778@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2015', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'enriquepeu00f1anieto', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'enriquepe\\xf1anieto', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'epn‪‬', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'epnu202au202c', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'gobernadorelecto', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juanmanuelcarreraslu00f3pez', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juanmanuelcarrerasl\\xf3pez', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mu00e9xico', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'm\\xe9xico', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'peu00f1anieto', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pe\\xf1anieto', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '‪presidencia20122018‬', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'presidente', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'reuniu00f3n', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'reuni\\xf3n', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sanluispotosu00ed', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sanluispotos\\xed', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'u202apresidencia20122018u202c', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Reunión el Gobernador Electo de San Luis Potosí, Juan Manuel Carreras López." by Presidencia de la República Mexicana is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 681, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/c1a557b4-cca9-4f7d-875f-da1f71c68c0b/thumb/', + detail_url: 'http://localhost:49153/v1/images/c1a557b4-cca9-4f7d-875f-da1f71c68c0b/', + related_url: 'http://localhost:49153/v1/images/c1a557b4-cca9-4f7d-875f-da1f71c68c0b/related/', + unstable__sensitivity: [], + }, + { + id: '0bf032bc-ba2c-4fe9-b42b-46ecf3d43b7b', + title: 'Antonio Ortiz (Weblogs SL), Juan José López (Parrot), Lidia Sánchez (Garmin) y Ángel Sevillano (TomTom)', + indexed_on: '2016-11-17T20:22:35.167559Z', + foreign_landing_url: 'https://www.flickr.com/photos/57010320@N06/6399254755', + url: 'https://live.staticflickr.com/7154/6399254755_a20bcc2d00_b.jpg', + creator: 'Xataka', + creator_url: 'https://www.flickr.com/photos/57010320@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2011', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'premios', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'xataka', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'business', + accuracy: 0.90582, + unstable__provider: 'clarifai', + }, + { + name: 'festival', + accuracy: 0.90121, + unstable__provider: 'clarifai', + }, + { + name: 'movie', + accuracy: 0.92951, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.94469, + unstable__provider: 'clarifai', + }, + { + name: 'recreation', + accuracy: 0.93269, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Antonio Ortiz (Weblogs SL), Juan José López (Parrot), Lidia Sánchez (Garmin) y Ángel Sevillano (TomTom)" by Xataka is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/0bf032bc-ba2c-4fe9-b42b-46ecf3d43b7b/thumb/', + detail_url: 'http://localhost:49153/v1/images/0bf032bc-ba2c-4fe9-b42b-46ecf3d43b7b/', + related_url: 'http://localhost:49153/v1/images/0bf032bc-ba2c-4fe9-b42b-46ecf3d43b7b/related/', + unstable__sensitivity: [], + }, + { + id: '2547f349-fc12-447f-b673-c0a1493845d2', + title: '08 - D. Antonio Alemany López, Dña. Pilar López Partida y D. Juan Manuel Ortiz Carranza', + indexed_on: '2020-04-13T14:49:32.103701Z', + foreign_landing_url: 'https://www.flickr.com/photos/46905439@N06/8042939727', + url: 'https://live.staticflickr.com/8449/8042939727_d872b3e2e9_b.jpg', + creator: 'vanesasanchez', + creator_url: 'https://www.flickr.com/photos/46905439@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'adult', + accuracy: 0.97704, + unstable__provider: 'clarifai', + }, + { + name: 'election', + accuracy: 0.90878, + unstable__provider: 'clarifai', + }, + { + name: 'furniture', + accuracy: 0.94025, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.90612, + unstable__provider: 'clarifai', + }, + { + name: 'woman', + accuracy: 0.92594, + unstable__provider: 'clarifai', + }, + { + name: 'festival', + accuracy: 0.90916, + unstable__provider: 'clarifai', + }, + { + name: 'group', + accuracy: 0.95462, + unstable__provider: 'clarifai', + }, + { + name: 'home', + accuracy: 0.93303, + unstable__provider: 'clarifai', + }, + { + name: 'leader', + accuracy: 0.94373, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.97093, + unstable__provider: 'clarifai', + }, + { + name: 'administration', + accuracy: 0.94181, + unstable__provider: 'clarifai', + }, + { + name: 'building', + accuracy: 0.92814, + unstable__provider: 'clarifai', + }, + { + name: 'landscape', + accuracy: 0.93841, + unstable__provider: 'clarifai', + }, + { + name: 'museum', + accuracy: 0.90645, + unstable__provider: 'clarifai', + }, + { + name: 'wear', + accuracy: 0.92816, + unstable__provider: 'clarifai', + }, + { + name: 'business', + accuracy: 0.91347, + unstable__provider: 'clarifai', + }, + { + name: 'meeting', + accuracy: 0.92271, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.94713, + unstable__provider: 'clarifai', + }, + { + name: 'room', + accuracy: 0.97936, + unstable__provider: 'clarifai', + }, + ], + attribution: '"08 - D. Antonio Alemany López, Dña. Pilar López Partida y D. Juan Manuel Ortiz Carranza" by vanesasanchez is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/2547f349-fc12-447f-b673-c0a1493845d2/thumb/', + detail_url: 'http://localhost:49153/v1/images/2547f349-fc12-447f-b673-c0a1493845d2/', + related_url: 'http://localhost:49153/v1/images/2547f349-fc12-447f-b673-c0a1493845d2/related/', + unstable__sensitivity: [], + }, + { + id: '106958b6-2f58-4bc5-81c7-304668448ce2', + title: 'GESTORIA ADMINISTRATIVA JUAN RÍOS LÓPEZ', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/31196957@N07/7879874278', + url: 'https://live.staticflickr.com/8306/7879874278_43c6f5d098_b.jpg', + creator: 'GipuzkoaKultura', + creator_url: 'https://www.flickr.com/photos/31196957@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"GESTORIA ADMINISTRATIVA JUAN RÍOS LÓPEZ" by GipuzkoaKultura is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 204, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/106958b6-2f58-4bc5-81c7-304668448ce2/thumb/', + detail_url: 'http://localhost:49153/v1/images/106958b6-2f58-4bc5-81c7-304668448ce2/', + related_url: 'http://localhost:49153/v1/images/106958b6-2f58-4bc5-81c7-304668448ce2/related/', + unstable__sensitivity: [], + }, + { + id: 'f00f7fe4-1611-4648-98de-c59c7d8ae905', + title: 'Juan José López (Parrot) y Ángel Sevillano (TomTom)', + indexed_on: '2016-11-16T20:51:38.650935Z', + foreign_landing_url: 'https://www.flickr.com/photos/57010320@N06/6417758377', + url: 'https://live.staticflickr.com/7018/6417758377_311ee25e1a_b.jpg', + creator: 'Xataka', + creator_url: 'https://www.flickr.com/photos/57010320@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'premiosxataka2011', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'actor', + accuracy: 0.99452, + unstable__provider: 'clarifai', + }, + { + name: 'actress', + accuracy: 0.97946, + unstable__provider: 'clarifai', + }, + { + name: 'arrival', + accuracy: 0.90055, + unstable__provider: 'clarifai', + }, + { + name: 'ceremony', + accuracy: 0.90994, + unstable__provider: 'clarifai', + }, + { + name: 'editorial', + accuracy: 0.96404, + unstable__provider: 'clarifai', + }, + { + name: 'festival', + accuracy: 0.92297, + unstable__provider: 'clarifai', + }, + { + name: 'film festival', + accuracy: 0.92454, + unstable__provider: 'clarifai', + }, + { + name: 'movie', + accuracy: 0.98045, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.94125, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.94637, + unstable__provider: 'clarifai', + }, + { + name: 'recreation', + accuracy: 0.98639, + unstable__provider: 'clarifai', + }, + { + name: 'red carpet', + accuracy: 0.97672, + unstable__provider: 'clarifai', + }, + { + name: 'sign', + accuracy: 0.9036, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Juan José López (Parrot) y Ángel Sevillano (TomTom)" by Xataka is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 678, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/f00f7fe4-1611-4648-98de-c59c7d8ae905/thumb/', + detail_url: 'http://localhost:49153/v1/images/f00f7fe4-1611-4648-98de-c59c7d8ae905/', + related_url: 'http://localhost:49153/v1/images/f00f7fe4-1611-4648-98de-c59c7d8ae905/related/', + unstable__sensitivity: [], + }, + { + id: '8bceb29a-e71d-42f9-a0cd-65071ac954a1', + title: 'GIR00050 Juan Pedro López', + indexed_on: '2023-03-11T22:03:45.187675Z', + foreign_landing_url: 'https://www.flickr.com/photos/115827683@N07/52123463674', + url: 'https://live.staticflickr.com/65535/52123463674_4c7b331f48_b.jpg', + creator: 'babbo1957', + creator_url: 'https://www.flickr.com/photos/115827683@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: 'photograph', + filesize: null, + filetype: 'jpg', + tags: [ + { + name: '2022', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'giro', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'italia', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"GIR00050 Juan Pedro López" by babbo1957 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 846, + thumbnail: 'http://localhost:49153/v1/images/8bceb29a-e71d-42f9-a0cd-65071ac954a1/thumb/', + detail_url: 'http://localhost:49153/v1/images/8bceb29a-e71d-42f9-a0cd-65071ac954a1/', + related_url: 'http://localhost:49153/v1/images/8bceb29a-e71d-42f9-a0cd-65071ac954a1/related/', + unstable__sensitivity: [], + }, + { + id: '3cfbe1c4-9f21-4334-8e10-47cf89c38237', + title: 'Juan Manuel López y Camilo Córdoba', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/56518546@N07/5485746619', + url: 'https://live.staticflickr.com/5177/5485746619_dd5e23b3eb_b.jpg', + creator: 'vivaiquique', + creator_url: 'https://www.flickr.com/photos/56518546@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'iquique', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tango', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'violentango', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan Manuel López y Camilo Córdoba" by vivaiquique is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 639, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/3cfbe1c4-9f21-4334-8e10-47cf89c38237/thumb/', + detail_url: 'http://localhost:49153/v1/images/3cfbe1c4-9f21-4334-8e10-47cf89c38237/', + related_url: 'http://localhost:49153/v1/images/3cfbe1c4-9f21-4334-8e10-47cf89c38237/related/', + unstable__sensitivity: [], + }, + { + id: '8ec4cb61-6a3a-4d77-b163-c1a0f6798bd3', + title: 'Juan Manuel López y Camilo Córdoba', + indexed_on: '2020-04-15T21:30:21.656118Z', + foreign_landing_url: 'https://www.flickr.com/photos/56518546@N07/5486341850', + url: 'https://live.staticflickr.com/5138/5486341850_15ba70ec8c_b.jpg', + creator: 'vivaiquique', + creator_url: 'https://www.flickr.com/photos/56518546@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'iquique', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tango', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'violentango', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan Manuel López y Camilo Córdoba" by vivaiquique is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 776, + thumbnail: 'http://localhost:49153/v1/images/8ec4cb61-6a3a-4d77-b163-c1a0f6798bd3/thumb/', + detail_url: 'http://localhost:49153/v1/images/8ec4cb61-6a3a-4d77-b163-c1a0f6798bd3/', + related_url: 'http://localhost:49153/v1/images/8ec4cb61-6a3a-4d77-b163-c1a0f6798bd3/related/', + unstable__sensitivity: [], + }, + { + id: '481d7b18-198f-458e-a95b-e2d87a37efb2', + title: 'Ricardo Jusid (bajo) y Juan Manuel López (guitarra)', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/56518546@N07/5486292118', + url: 'https://live.staticflickr.com/5093/5486292118_c9cb68e927_b.jpg', + creator: 'vivaiquique', + creator_url: 'https://www.flickr.com/photos/56518546@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'iquique', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tango', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'violentango', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Ricardo Jusid (bajo) y Juan Manuel López (guitarra)" by vivaiquique is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/481d7b18-198f-458e-a95b-e2d87a37efb2/thumb/', + detail_url: 'http://localhost:49153/v1/images/481d7b18-198f-458e-a95b-e2d87a37efb2/', + related_url: 'http://localhost:49153/v1/images/481d7b18-198f-458e-a95b-e2d87a37efb2/related/', + unstable__sensitivity: [], + }, + { + id: '8e8dbdea-6e80-4279-9614-da70529b5995', + title: 'Reunión el Gobernador Electo de San Luis Potosí, Juan Manuel Carreras López.', + indexed_on: '2020-03-29T22:45:38.163414Z', + foreign_landing_url: 'https://www.flickr.com/photos/90642778@N05/19640441074', + url: 'https://live.staticflickr.com/497/19640441074_d8c6fb9d0b_b.jpg', + creator: 'Presidencia de la República Mexicana', + creator_url: 'https://www.flickr.com/photos/90642778@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2015', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'enriquepeu00f1anieto', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'epnu202au202c', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'gobernadorelecto', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juanmanuelcarreraslu00f3pez', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mu00e9xico', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'peu00f1anieto', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'presidente', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'reuniu00f3n', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sanluispotosu00ed', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'u202apresidencia20122018u202c', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Reunión el Gobernador Electo de San Luis Potosí, Juan Manuel Carreras López." by Presidencia de la República Mexicana is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 1024, + width: 851, + thumbnail: 'http://localhost:49153/v1/images/8e8dbdea-6e80-4279-9614-da70529b5995/thumb/', + detail_url: 'http://localhost:49153/v1/images/8e8dbdea-6e80-4279-9614-da70529b5995/', + related_url: 'http://localhost:49153/v1/images/8e8dbdea-6e80-4279-9614-da70529b5995/related/', + unstable__sensitivity: [], + }, + { + id: 'e632e29c-2e9c-4b22-bfc7-504f8e1d6b2b', + title: 'Ricardo Jusid (bajo) y Juan Manuel López (guitarra)', + indexed_on: '2020-04-15T21:30:21.656118Z', + foreign_landing_url: 'https://www.flickr.com/photos/56518546@N07/5485701137', + url: 'https://live.staticflickr.com/5133/5485701137_8706ba9b2f_b.jpg', + creator: 'vivaiquique', + creator_url: 'https://www.flickr.com/photos/56518546@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'iquique', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tango', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'violentango', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'concert', + accuracy: 0.94725, + unstable__provider: 'clarifai', + }, + { + name: 'music', + accuracy: 0.97939, + unstable__provider: 'clarifai', + }, + { + name: 'performance', + accuracy: 0.98684, + unstable__provider: 'clarifai', + }, + { + name: 'stage', + accuracy: 0.94601, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Ricardo Jusid (bajo) y Juan Manuel López (guitarra)" by vivaiquique is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 518, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/e632e29c-2e9c-4b22-bfc7-504f8e1d6b2b/thumb/', + detail_url: 'http://localhost:49153/v1/images/e632e29c-2e9c-4b22-bfc7-504f8e1d6b2b/', + related_url: 'http://localhost:49153/v1/images/e632e29c-2e9c-4b22-bfc7-504f8e1d6b2b/related/', + unstable__sensitivity: [], + }, + { + id: '475ce500-da0d-4708-8734-651d2ad7927e', + title: 'Olga Palombi (Social Media SL) y Juan José López (Parrot)', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/57010320@N06/6399255385', + url: 'https://live.staticflickr.com/7145/6399255385_125858f3a7_b.jpg', + creator: 'Xataka', + creator_url: 'https://www.flickr.com/photos/57010320@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2011', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'premios', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'xataka', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Olga Palombi (Social Media SL) y Juan José López (Parrot)" by Xataka is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/475ce500-da0d-4708-8734-651d2ad7927e/thumb/', + detail_url: 'http://localhost:49153/v1/images/475ce500-da0d-4708-8734-651d2ad7927e/', + related_url: 'http://localhost:49153/v1/images/475ce500-da0d-4708-8734-651d2ad7927e/related/', + unstable__sensitivity: [], + }, + { + id: '845026f3-95a3-4a25-b891-afe17f35f3fd', + title: 'Ricardo Jusid (bajo) y Juan Manuel López (guitarra)', + indexed_on: '2018-12-21T12:34:40.573425Z', + foreign_landing_url: 'https://www.flickr.com/photos/56518546@N07/5486297416', + url: 'https://live.staticflickr.com/5091/5486297416_b601171eb5_b.jpg', + creator: 'vivaiquique', + creator_url: 'https://www.flickr.com/photos/56518546@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'iquique', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tango', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'violentango', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Ricardo Jusid (bajo) y Juan Manuel López (guitarra)" by vivaiquique is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/845026f3-95a3-4a25-b891-afe17f35f3fd/thumb/', + detail_url: 'http://localhost:49153/v1/images/845026f3-95a3-4a25-b891-afe17f35f3fd/', + related_url: 'http://localhost:49153/v1/images/845026f3-95a3-4a25-b891-afe17f35f3fd/related/', + unstable__sensitivity: [], + }, + { + id: 'a7d784f7-887a-4175-86e2-9189d2f9c933', + title: 'Juan Manuel Domínguez y Diego López Nájera. VI Jornadas Fundación García Cugat 2015', + indexed_on: '2020-03-31T12:43:22.129207Z', + foreign_landing_url: 'https://www.flickr.com/photos/87151394@N08/23600562479', + url: 'https://live.staticflickr.com/1474/23600562479_2aa0647cdb_b.jpg', + creator: 'Fundación Garcia Cugat', + creator_url: 'https://www.flickr.com/photos/87151394@N08', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: 'photograph', + filesize: null, + filetype: 'jpg', + tags: [ + { + name: 'catedrademediicinaregenerativa', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'célulasmadre', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cu00e9lulasmadre', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'diegolópeznájera', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'diegolu00f3peznu00e1jera', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'factoresdecrecimiento', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fundacióngarcíacugat', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fundaciu00f3ngarcu00edacugat', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'investigaciónbiomédica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'investigaciónymedicina', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'investigaciu00f3nbiomu00e9dica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'investigaciu00f3nymedicina', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juanmanueldomínguez', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juanmanueldomu00ednguez', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'medicina', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'medicinaregenerativa', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'prgf', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan Manuel Domínguez y Diego López Nájera. VI Jornadas Fundación García Cugat 2015" by Fundación Garcia Cugat is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 576, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/a7d784f7-887a-4175-86e2-9189d2f9c933/thumb/', + detail_url: 'http://localhost:49153/v1/images/a7d784f7-887a-4175-86e2-9189d2f9c933/', + related_url: 'http://localhost:49153/v1/images/a7d784f7-887a-4175-86e2-9189d2f9c933/related/', + unstable__sensitivity: [], + }, + { + id: 'a69d6541-a8f7-4f57-a9f7-9bbe94185806', + title: 'Aux marges du discours : personnes, temps, lieux, objets : actes du Xe Congrès International de linguistique française, Cadix, 27-29 novembre 2013 / réunis et présentés par Juan Manuel López Muñoz', + indexed_on: '2018-11-09T10:31:06.910129Z', + foreign_landing_url: 'https://www.flickr.com/photos/139494057@N07/26554771797', + url: 'https://live.staticflickr.com/880/26554771797_8bcf78056c_b.jpg', + creator: 'bhumanidades', + creator_url: 'https://www.flickr.com/photos/139494057@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2018', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Aux marges du discours : personnes, temps, lieux, objets : actes du Xe Congrès International de linguistique française, Cadix, 27-29 novembre 2013 / réunis et présentés par Juan Manuel López Muñoz" by bhumanidades is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1000, + width: 643, + thumbnail: 'http://localhost:49153/v1/images/a69d6541-a8f7-4f57-a9f7-9bbe94185806/thumb/', + detail_url: 'http://localhost:49153/v1/images/a69d6541-a8f7-4f57-a9f7-9bbe94185806/', + related_url: 'http://localhost:49153/v1/images/a69d6541-a8f7-4f57-a9f7-9bbe94185806/related/', + unstable__sensitivity: [], + }, + { + id: '83f99bb5-c957-44f6-99ca-d06de373ce80', + title: 'Ricardo Jusid (bajo) y Juan Manuel López (guitarra)', + indexed_on: '2020-04-15T21:30:21.656118Z', + foreign_landing_url: 'https://www.flickr.com/photos/56518546@N07/5486294250', + url: 'https://live.staticflickr.com/5293/5486294250_2f4b67a488_b.jpg', + creator: 'vivaiquique', + creator_url: 'https://www.flickr.com/photos/56518546@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'iquique', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tango', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'violentango', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Ricardo Jusid (bajo) y Juan Manuel López (guitarra)" by vivaiquique is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/83f99bb5-c957-44f6-99ca-d06de373ce80/thumb/', + detail_url: 'http://localhost:49153/v1/images/83f99bb5-c957-44f6-99ca-d06de373ce80/', + related_url: 'http://localhost:49153/v1/images/83f99bb5-c957-44f6-99ca-d06de373ce80/related/', + unstable__sensitivity: [], + }, + { + id: '4bb029b3-f942-4da7-9f03-5215e5ee4cf4', + title: 'Noticias generales del estado que han tenido las armas: una nueva crónica del Perú (1578-1683) / Ismael Jiménez Jiménez; [atribuidas a Juan Luis López, marqués del Risco]', + indexed_on: '2020-03-14T06:36:34.067735Z', + foreign_landing_url: 'https://www.flickr.com/photos/139494057@N07/27556150388', + url: 'https://live.staticflickr.com/804/27556150388_e8d18453e5_b.jpg', + creator: 'bhumanidades', + creator_url: 'https://www.flickr.com/photos/139494057@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2018', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Noticias generales del estado que han tenido las armas: una nueva crónica del Perú (1578-1683) / Ismael Jiménez Jiménez; [atribuidas a Juan Luis López, marqués del Risco]" by bhumanidades is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 1024, + width: 744, + thumbnail: 'http://localhost:49153/v1/images/4bb029b3-f942-4da7-9f03-5215e5ee4cf4/thumb/', + detail_url: 'http://localhost:49153/v1/images/4bb029b3-f942-4da7-9f03-5215e5ee4cf4/', + related_url: 'http://localhost:49153/v1/images/4bb029b3-f942-4da7-9f03-5215e5ee4cf4/related/', + unstable__sensitivity: [], + }, + { + id: 'ea457e14-7510-4b89-bc54-8d337bc36126', + title: 'Mexicanismos en el Diccionario de la lengua española / Juan López', + indexed_on: '2020-03-15T06:34:47.891349Z', + foreign_landing_url: 'https://www.flickr.com/photos/139494057@N07/29550366157', + url: 'https://live.staticflickr.com/1849/29550366157_d4a3b3a153_m.jpg', + creator: 'bhumanidades', + creator_url: 'https://www.flickr.com/photos/139494057@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2018', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Mexicanismos en el Diccionario de la lengua española / Juan López" by bhumanidades is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 240, + width: 180, + thumbnail: 'http://localhost:49153/v1/images/ea457e14-7510-4b89-bc54-8d337bc36126/thumb/', + detail_url: 'http://localhost:49153/v1/images/ea457e14-7510-4b89-bc54-8d337bc36126/', + related_url: 'http://localhost:49153/v1/images/ea457e14-7510-4b89-bc54-8d337bc36126/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=Juan+L%C3%B3pez_keep-alive.json5 b/frontend/test/tapes/search/images/q=Juan+L%C3%B3pez_keep-alive.json5 new file mode 100644 index 00000000000..7c136b660a6 --- /dev/null +++ b/frontend/test/tapes/search/images/q=Juan+L%C3%B3pez_keep-alive.json5 @@ -0,0 +1,1637 @@ +{ + meta: { + createdAt: '2024-09-20T02:46:49.705Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=Juan+L%C3%B3pez', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:46:49 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '194', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '9dfd57e0-7050-4f28-80d9-055172016c8c', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1125', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:04 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7cc10e66274a-ADL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: '938e7461-c00f-4022-98dd-5f79c407aa89', + title: 'Juan López de Uralde', + indexed_on: '2020-04-22T18:29:30.182804Z', + foreign_landing_url: 'https://www.flickr.com/photos/49524344@N05/5065669230', + url: 'https://live.staticflickr.com/4091/5065669230_9280761a6e.jpg', + creator: 'Casa de América', + creator_url: 'https://www.flickr.com/photos/49524344@N05', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'de', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lópez', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lu00f3pez', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'uralde', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan López de Uralde" by Casa de América is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 332, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/938e7461-c00f-4022-98dd-5f79c407aa89/thumb/', + detail_url: 'http://localhost:49153/v1/images/938e7461-c00f-4022-98dd-5f79c407aa89/', + related_url: 'http://localhost:49153/v1/images/938e7461-c00f-4022-98dd-5f79c407aa89/related/', + unstable__sensitivity: [], + }, + { + id: 'd0fc79cc-7174-43ed-ad16-eae7e7c7a13f', + title: 'Juan López de Uralde', + indexed_on: '2020-04-22T18:29:30.182804Z', + foreign_landing_url: 'https://www.flickr.com/photos/49524344@N05/5065669494', + url: 'https://live.staticflickr.com/4144/5065669494_742281f39e.jpg', + creator: 'Casa de América', + creator_url: 'https://www.flickr.com/photos/49524344@N05', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'de', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lu00f3pez', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'uralde', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan López de Uralde" by Casa de América is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 332, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/d0fc79cc-7174-43ed-ad16-eae7e7c7a13f/thumb/', + detail_url: 'http://localhost:49153/v1/images/d0fc79cc-7174-43ed-ad16-eae7e7c7a13f/', + related_url: 'http://localhost:49153/v1/images/d0fc79cc-7174-43ed-ad16-eae7e7c7a13f/related/', + unstable__sensitivity: [], + }, + { + id: '3be15137-23e0-4346-9e44-9342d87950c2', + title: 'Juan López de Uralde', + indexed_on: '2020-04-22T18:29:30.182804Z', + foreign_landing_url: 'https://www.flickr.com/photos/49524344@N05/5065669402', + url: 'https://live.staticflickr.com/4148/5065669402_9f8eca1a97.jpg', + creator: 'Casa de América', + creator_url: 'https://www.flickr.com/photos/49524344@N05', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'de', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lu00f3pez', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'uralde', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan López de Uralde" by Casa de América is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 332, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/3be15137-23e0-4346-9e44-9342d87950c2/thumb/', + detail_url: 'http://localhost:49153/v1/images/3be15137-23e0-4346-9e44-9342d87950c2/', + related_url: 'http://localhost:49153/v1/images/3be15137-23e0-4346-9e44-9342d87950c2/related/', + unstable__sensitivity: [], + }, + { + id: '542482b7-484c-42f0-b9f6-4b5ab69228e8', + title: 'UNA ESTRELLA POR LA LIBERTAD DE JUAN LÓPEZ DE URALDE Y GREENPEACE. STAURASTRUM PARADOXUM', + indexed_on: '2020-04-20T18:23:33.122468Z', + foreign_landing_url: 'https://www.flickr.com/photos/25898159@N07/4248651165', + url: 'https://live.staticflickr.com/4005/4248651165_0de7dabe58_b.jpg', + creator: 'PROYECTO AGUA** /** WATER PROJECT', + creator_url: 'https://www.flickr.com/photos/25898159@N07', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'antonioguillén', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'antonioguillu00e9n', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'antonioguill\\xe9n', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'conjugadas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'conjugate', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'desmidiaceae', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'désmidos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'desmids', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'du00e9smidos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fotografíamicroscópica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fotografíasmicroscópicas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fotografu00edamicroscu00f3pica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fotografu00edasmicroscu00f3picas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fotograf\\xedasmicrosc\\xf3picas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'greenpeace', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'iesbatalladeclavijo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'imágenesmicroscópicas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'imu00e1genesmicroscu00f3picas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'im\\xe1genesmicrosc\\xf3picas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juanlópezdeuralde', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juanlu00f3pezdeuralde', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juanl\\xf3pezdeuralde', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lagunadepeces', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lavidaocultadelagua', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'libertad', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'microorganismos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'microphotography', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'microscopy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'photomicrography', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pondlife', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'proyectoagua', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sanabria', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'staurastrum', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'staurastrumparadoxum', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'thelifehiddenofthewater', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'vidaoculta', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'vidaocultadelagua', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'zamora', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"UNA ESTRELLA POR LA LIBERTAD DE JUAN LÓPEZ DE URALDE Y GREENPEACE. STAURASTRUM PARADOXUM" by PROYECTO AGUA** /** WATER PROJECT is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 664, + width: 1000, + thumbnail: 'http://localhost:49153/v1/images/542482b7-484c-42f0-b9f6-4b5ab69228e8/thumb/', + detail_url: 'http://localhost:49153/v1/images/542482b7-484c-42f0-b9f6-4b5ab69228e8/', + related_url: 'http://localhost:49153/v1/images/542482b7-484c-42f0-b9f6-4b5ab69228e8/related/', + unstable__sensitivity: [], + }, + { + id: 'e21d7aca-2944-432e-be7d-f0a38be182f1', + title: 'Juan López', + indexed_on: '2018-11-08T01:45:17.652714Z', + foreign_landing_url: 'https://www.flickr.com/photos/26072666@N04/3488768352', + url: 'https://live.staticflickr.com/3414/3488768352_dd849a654a_b.jpg', + creator: 'javiersanp', + creator_url: 'https://www.flickr.com/photos/26072666@N04', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'buenavistadelnorte', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'canarias', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'espacionaturalprotegido', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hiking', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juanlu00f3pez', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juanl\\xf3pez', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'loscarrizales', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'notas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'parquerural', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'senderismo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tenerife', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'teno', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'toponimia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'unidadambientalcrasasysecas', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan López" by javiersanp is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/e21d7aca-2944-432e-be7d-f0a38be182f1/thumb/', + detail_url: 'http://localhost:49153/v1/images/e21d7aca-2944-432e-be7d-f0a38be182f1/', + related_url: 'http://localhost:49153/v1/images/e21d7aca-2944-432e-be7d-f0a38be182f1/related/', + unstable__sensitivity: [], + }, + { + id: 'ba7939cd-8279-4c1d-8a78-0f474273a148', + title: "Juan López Figueroa's Star of Eden # 47", + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/69208357@N00/5526156582', + url: 'https://live.staticflickr.com/5054/5526156582_ac91f1e5cc_b.jpg', + creator: 'georigami', + creator_url: 'https://www.flickr.com/photos/69208357@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'origami', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'origamifan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'papel', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'paper', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'papiroflexia', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan López Figueroa\'s Star of Eden # 47" by georigami is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/ba7939cd-8279-4c1d-8a78-0f474273a148/thumb/', + detail_url: 'http://localhost:49153/v1/images/ba7939cd-8279-4c1d-8a78-0f474273a148/', + related_url: 'http://localhost:49153/v1/images/ba7939cd-8279-4c1d-8a78-0f474273a148/related/', + unstable__sensitivity: [], + }, + { + id: 'bc8d9a53-4d58-45f1-8805-385db1d971ec', + title: 'Asambleístas Kléver García, Juan Carlos López y Paco Fierro en la sesión No. 138 del Pleno de la Asamblea Nacional', + indexed_on: '2020-04-18T03:44:20.849509Z', + foreign_landing_url: 'https://www.flickr.com/photos/31582298@N08/6428513499', + url: 'https://live.staticflickr.com/7020/6428513499_6a5d0e26cc_b.jpg', + creator: 'Asamblea Nacional del Ecuador', + creator_url: 'https://www.flickr.com/photos/31582298@N08', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"Asambleístas Kléver García, Juan Carlos López y Paco Fierro en la sesión No. 138 del Pleno de la Asamblea Nacional" by Asamblea Nacional del Ecuador is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/bc8d9a53-4d58-45f1-8805-385db1d971ec/thumb/', + detail_url: 'http://localhost:49153/v1/images/bc8d9a53-4d58-45f1-8805-385db1d971ec/', + related_url: 'http://localhost:49153/v1/images/bc8d9a53-4d58-45f1-8805-385db1d971ec/related/', + unstable__sensitivity: [], + }, + { + id: 'a55fab2b-26f8-47b0-9436-6489f0c36014', + title: 'Juan Torres López', + indexed_on: '2020-04-07T23:40:35.734214Z', + foreign_landing_url: 'https://www.flickr.com/photos/70739053@N02/8839520388', + url: 'https://live.staticflickr.com/8269/8839520388_2ac9e99bf7_b.jpg', + creator: 'sevillareport', + creator_url: 'https://www.flickr.com/photos/70739053@N02', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '15m', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'attac', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'catedrático', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'catedru00e1tico', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'catedr\\xe1tico', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'economíaaplicada', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'economista', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'economu00edaaplicada', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'econom\\xedaaplicada', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'entrevista', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juantorreslópez', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juantorreslu00f3pez', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juantorresl\\xf3pez', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'universidaddesevilla', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'us', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan Torres López" by sevillareport is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 686, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/a55fab2b-26f8-47b0-9436-6489f0c36014/thumb/', + detail_url: 'http://localhost:49153/v1/images/a55fab2b-26f8-47b0-9436-6489f0c36014/', + related_url: 'http://localhost:49153/v1/images/a55fab2b-26f8-47b0-9436-6489f0c36014/related/', + unstable__sensitivity: [], + }, + { + id: 'b0a76a6b-0525-483b-b155-cbde22274854', + title: 'El soldado que mira al Gurugú, del escultor Juan López López', + indexed_on: '2020-04-25T07:07:34.954831Z', + foreign_landing_url: 'https://www.flickr.com/photos/35407568@N06/3808690345', + url: 'https://live.staticflickr.com/3457/3808690345_f2181a020d_b.jpg', + creator: 'GonzalezNovo', + creator_url: 'https://www.flickr.com/photos/35407568@N06', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'pwmelilla', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"El soldado que mira al Gurugú, del escultor Juan López López" by GonzalezNovo is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 1024, + width: 780, + thumbnail: 'http://localhost:49153/v1/images/b0a76a6b-0525-483b-b155-cbde22274854/thumb/', + detail_url: 'http://localhost:49153/v1/images/b0a76a6b-0525-483b-b155-cbde22274854/', + related_url: 'http://localhost:49153/v1/images/b0a76a6b-0525-483b-b155-cbde22274854/related/', + unstable__sensitivity: [], + }, + { + id: '72cc0eed-6650-4535-91e1-8c1157257a7b', + title: 'Rogelio López Cuenca, Antonio Jara y Juan Calatrava', + indexed_on: '2020-04-24T03:31:30.926745Z', + foreign_landing_url: 'https://www.flickr.com/photos/36147500@N06/3337711005', + url: 'https://live.staticflickr.com/3566/3337711005_80df070c9f_m.jpg', + creator: 'FAAQ', + creator_url: 'https://www.flickr.com/photos/36147500@N06', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'sutilezadelcambio', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Rogelio López Cuenca, Antonio Jara y Juan Calatrava" by FAAQ is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 160, + width: 240, + thumbnail: 'http://localhost:49153/v1/images/72cc0eed-6650-4535-91e1-8c1157257a7b/thumb/', + detail_url: 'http://localhost:49153/v1/images/72cc0eed-6650-4535-91e1-8c1157257a7b/', + related_url: 'http://localhost:49153/v1/images/72cc0eed-6650-4535-91e1-8c1157257a7b/related/', + unstable__sensitivity: [], + }, + { + id: 'daedf165-7a70-4875-bb4d-04c5cdb12f06', + title: 'Elena López y Manolo Abad de la UNIA acompañaron a Juan José Millás', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/75997126@N00/6350578762', + url: 'https://live.staticflickr.com/6034/6350578762_076f89c21c_b.jpg', + creator: 'Universidad Internacional de Andalucía (UNIA)', + creator_url: 'https://www.flickr.com/photos/75997126@N00', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'larabidamillu00e1s', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'larabidamill\\xe1s', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Elena López y Manolo Abad de la UNIA acompañaron a Juan José Millás" by Universidad Internacional de Andalucía (UNIA) is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 1024, + width: 683, + thumbnail: 'http://localhost:49153/v1/images/daedf165-7a70-4875-bb4d-04c5cdb12f06/thumb/', + detail_url: 'http://localhost:49153/v1/images/daedf165-7a70-4875-bb4d-04c5cdb12f06/', + related_url: 'http://localhost:49153/v1/images/daedf165-7a70-4875-bb4d-04c5cdb12f06/related/', + unstable__sensitivity: [], + }, + { + id: 'b41aa00c-8dc4-442f-bf01-115f33c2345e', + title: 'David Santana, Juan José López, Sergio Pérez (Parrot)', + indexed_on: '2016-11-17T10:48:04.584873Z', + foreign_landing_url: 'https://www.flickr.com/photos/57010320@N06/6417909677', + url: 'https://live.staticflickr.com/6098/6417909677_221de48db3_b.jpg', + creator: 'Xataka', + creator_url: 'https://www.flickr.com/photos/57010320@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'premiosxataka2011', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'actor', + accuracy: 0.98429, + unstable__provider: 'clarifai', + }, + { + name: 'actress', + accuracy: 0.91175, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.96593, + unstable__provider: 'clarifai', + }, + { + name: 'movie', + accuracy: 0.95891, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.95381, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.94283, + unstable__provider: 'clarifai', + }, + { + name: 'recreation', + accuracy: 0.9637, + unstable__provider: 'clarifai', + }, + ], + attribution: '"David Santana, Juan José López, Sergio Pérez (Parrot)" by Xataka is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 678, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/b41aa00c-8dc4-442f-bf01-115f33c2345e/thumb/', + detail_url: 'http://localhost:49153/v1/images/b41aa00c-8dc4-442f-bf01-115f33c2345e/', + related_url: 'http://localhost:49153/v1/images/b41aa00c-8dc4-442f-bf01-115f33c2345e/related/', + unstable__sensitivity: [], + }, + { + id: '22f3bae1-50b6-4a10-a46e-da240fb785b3', + title: 'Juan López', + indexed_on: '2020-04-28T08:57:28.268840Z', + foreign_landing_url: 'https://www.flickr.com/photos/26072666@N04/2608701985', + url: 'https://live.staticflickr.com/3172/2608701985_fa0cfb9fca_b.jpg', + creator: 'javiersanp', + creator_url: 'https://www.flickr.com/photos/26072666@N04', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'buenavistadelnorte', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'canarias', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'espacionaturalprotegido', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hiking', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'masca', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'notas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'panorama', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'parquerural', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'senderismo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tenerife', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'teno', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'unidadambientalcrasasysecas', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan López" by javiersanp is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 358, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/22f3bae1-50b6-4a10-a46e-da240fb785b3/thumb/', + detail_url: 'http://localhost:49153/v1/images/22f3bae1-50b6-4a10-a46e-da240fb785b3/', + related_url: 'http://localhost:49153/v1/images/22f3bae1-50b6-4a10-a46e-da240fb785b3/related/', + unstable__sensitivity: [], + }, + { + id: 'f1e3aeba-49e2-4bcb-9054-e418d27ae41f', + title: 'Juan Torres López', + indexed_on: '2020-04-02T20:37:20.311616Z', + foreign_landing_url: 'https://www.flickr.com/photos/43344863@N04/11947087313', + url: 'https://live.staticflickr.com/3724/11947087313_c3e5d51f5d_b.jpg', + creator: 'UPO - Universidad Pablo de Olavide', + creator_url: 'https://www.flickr.com/photos/43344863@N04', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'brasil', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'derechoshumanos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'españa', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'espau00f1a', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'iberoamérica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'iberoamu00e9rica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mesaredonda', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'seminario', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'upo', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan Torres López" by UPO - Universidad Pablo de Olavide is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/f1e3aeba-49e2-4bcb-9054-e418d27ae41f/thumb/', + detail_url: 'http://localhost:49153/v1/images/f1e3aeba-49e2-4bcb-9054-e418d27ae41f/', + related_url: 'http://localhost:49153/v1/images/f1e3aeba-49e2-4bcb-9054-e418d27ae41f/related/', + unstable__sensitivity: [], + }, + { + id: 'd96bf8da-55c0-4ba7-9d37-0108d2ab72b5', + title: 'Juan Torres López', + indexed_on: '2020-04-02T20:37:20.311616Z', + foreign_landing_url: 'https://www.flickr.com/photos/43344863@N04/11947086103', + url: 'https://live.staticflickr.com/3702/11947086103_fd5a9dd7a8_b.jpg', + creator: 'UPO - Universidad Pablo de Olavide', + creator_url: 'https://www.flickr.com/photos/43344863@N04', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'brasil', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'derechoshumanos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'españa', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'espau00f1a', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'iberoamérica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'iberoamu00e9rica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mesaredonda', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'seminario', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'upo', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan Torres López" by UPO - Universidad Pablo de Olavide is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/d96bf8da-55c0-4ba7-9d37-0108d2ab72b5/thumb/', + detail_url: 'http://localhost:49153/v1/images/d96bf8da-55c0-4ba7-9d37-0108d2ab72b5/', + related_url: 'http://localhost:49153/v1/images/d96bf8da-55c0-4ba7-9d37-0108d2ab72b5/related/', + unstable__sensitivity: [], + }, + { + id: 'c8af528e-8017-48a3-b77e-d8687358683c', + title: 'Juan Torres López', + indexed_on: '2020-04-02T20:37:20.311616Z', + foreign_landing_url: 'https://www.flickr.com/photos/43344863@N04/11947634586', + url: 'https://live.staticflickr.com/2827/11947634586_bbaed4de51_b.jpg', + creator: 'UPO - Universidad Pablo de Olavide', + creator_url: 'https://www.flickr.com/photos/43344863@N04', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'brasil', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'derechoshumanos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'espau00f1a', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'iberoamu00e9rica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mesaredonda', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'seminario', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'upo', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan Torres López" by UPO - Universidad Pablo de Olavide is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/c8af528e-8017-48a3-b77e-d8687358683c/thumb/', + detail_url: 'http://localhost:49153/v1/images/c8af528e-8017-48a3-b77e-d8687358683c/', + related_url: 'http://localhost:49153/v1/images/c8af528e-8017-48a3-b77e-d8687358683c/related/', + unstable__sensitivity: [], + }, + { + id: '2e1c4abc-8500-486e-84d3-097beacd0a79', + title: 'Juan Torres López', + indexed_on: '2020-04-02T20:37:20.311616Z', + foreign_landing_url: 'https://www.flickr.com/photos/43344863@N04/11947090623', + url: 'https://live.staticflickr.com/3670/11947090623_e6dfeca503_b.jpg', + creator: 'UPO - Universidad Pablo de Olavide', + creator_url: 'https://www.flickr.com/photos/43344863@N04', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'brasil', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'derechoshumanos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'espau00f1a', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'iberoamu00e9rica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mesaredonda', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'seminario', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'upo', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan Torres López" by UPO - Universidad Pablo de Olavide is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/2e1c4abc-8500-486e-84d3-097beacd0a79/thumb/', + detail_url: 'http://localhost:49153/v1/images/2e1c4abc-8500-486e-84d3-097beacd0a79/', + related_url: 'http://localhost:49153/v1/images/2e1c4abc-8500-486e-84d3-097beacd0a79/related/', + unstable__sensitivity: [], + }, + { + id: '5c3f810d-2614-4d05-b651-0d827a55f411', + title: 'Juan Torres López', + indexed_on: '2020-04-02T20:37:20.311616Z', + foreign_landing_url: 'https://www.flickr.com/photos/43344863@N04/11947082643', + url: 'https://live.staticflickr.com/5480/11947082643_b0d872c242_b.jpg', + creator: 'UPO - Universidad Pablo de Olavide', + creator_url: 'https://www.flickr.com/photos/43344863@N04', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'brasil', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'derechoshumanos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'españa', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'espau00f1a', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'iberoamérica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'iberoamu00e9rica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mesaredonda', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'seminario', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'upo', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan Torres López" by UPO - Universidad Pablo de Olavide is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/5c3f810d-2614-4d05-b651-0d827a55f411/thumb/', + detail_url: 'http://localhost:49153/v1/images/5c3f810d-2614-4d05-b651-0d827a55f411/', + related_url: 'http://localhost:49153/v1/images/5c3f810d-2614-4d05-b651-0d827a55f411/related/', + unstable__sensitivity: [], + }, + { + id: '4b401919-ef4c-4a3b-b698-da7e677d9881', + title: 'Juan López desde La Fortaleza de Masca.', + indexed_on: '2020-04-28T08:57:28.268840Z', + foreign_landing_url: 'https://www.flickr.com/photos/26072666@N04/2609542490', + url: 'https://live.staticflickr.com/3268/2609542490_3bc5d9227e_b.jpg', + creator: 'javiersanp', + creator_url: 'https://www.flickr.com/photos/26072666@N04', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'buenavistadelnorte', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'canarias', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'espacionaturalprotegido', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'favoritas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hiking', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'masca', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'notas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'panorama', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'parquerural', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'senderismo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tenerife', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'teno', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'toponimia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'unidadambientalcrasasysecas', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Juan López desde La Fortaleza de Masca." by javiersanp is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 615, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/4b401919-ef4c-4a3b-b698-da7e677d9881/thumb/', + detail_url: 'http://localhost:49153/v1/images/4b401919-ef4c-4a3b-b698-da7e677d9881/', + related_url: 'http://localhost:49153/v1/images/4b401919-ef4c-4a3b-b698-da7e677d9881/related/', + unstable__sensitivity: [], + }, + { + id: 'd36e7778-9800-4da9-a930-c1d5a2a7049f', + title: '¡No! de Juan Manuel LÓPEZ MORA', + indexed_on: '2020-04-24T21:41:35.511147Z', + foreign_landing_url: 'https://www.flickr.com/photos/38600336@N04/3653959316', + url: 'https://live.staticflickr.com/3644/3653959316_5f31e425d2_b.jpg', + creator: 'Fundación Caja Rural Jaén', + creator_url: 'https://www.flickr.com/photos/38600336@N04', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'andalucia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'caja', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cajaruraljaén', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cajaruraljau00e9n', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'carolinafundacioncrjes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'crjfcrjjaenla', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'españa', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'espau00f1a', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'exposiciones', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fcrj', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fundacion', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fundacióncajaruraljaén', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fundacioncrj', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fundaciu00f3ncajaruraljau00e9n', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jaen', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jaén', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jaenfundacion', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jau00e9n', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lacarolina', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'proyectos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rural', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"¡No! de Juan Manuel LÓPEZ MORA" by Fundación Caja Rural Jaén is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 1024, + width: 768, + thumbnail: 'http://localhost:49153/v1/images/d36e7778-9800-4da9-a930-c1d5a2a7049f/thumb/', + detail_url: 'http://localhost:49153/v1/images/d36e7778-9800-4da9-a930-c1d5a2a7049f/', + related_url: 'http://localhost:49153/v1/images/d36e7778-9800-4da9-a930-c1d5a2a7049f/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=art&license=by&extension=jpg&source=flickr_keep-alive.json5 b/frontend/test/tapes/search/images/q=art&license=by&extension=jpg&source=flickr_keep-alive.json5 new file mode 100644 index 00000000000..95d02d6d0b9 --- /dev/null +++ b/frontend/test/tapes/search/images/q=art&license=by&extension=jpg&source=flickr_keep-alive.json5 @@ -0,0 +1,1767 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:08.919Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=art&license=by&extension=jpg&source=flickr', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:08 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '194', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + 'f2d43cc2-bc17-4ea5-9ea0-945b81a68a69', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1153', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:27:55 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d390cb2274b-ADL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: '0acc1527-a093-43a3-aadc-482180b9bdbf', + title: 'Pixel Art - Sky TV', + indexed_on: '2020-05-03T21:03:26.217851Z', + foreign_landing_url: 'https://www.flickr.com/photos/83599920@N00/2065863328', + url: 'https://live.staticflickr.com/2191/2065863328_3c91d21a9e_b.jpg', + creator: 'Sabrina Eras', + creator_url: 'https://www.flickr.com/photos/83599920@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pixel', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Pixel Art - Sky TV" by Sabrina Eras is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 694, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/0acc1527-a093-43a3-aadc-482180b9bdbf/thumb/', + detail_url: 'http://localhost:49153/v1/images/0acc1527-a093-43a3-aadc-482180b9bdbf/', + related_url: 'http://localhost:49153/v1/images/0acc1527-a093-43a3-aadc-482180b9bdbf/related/', + unstable__sensitivity: [], + }, + { + id: 'f5ab3e3e-0c85-49d4-9a73-a044a9ff7096', + title: 'Graffiti Art', + indexed_on: '2019-01-09T15:50:09.407538Z', + foreign_landing_url: 'https://www.flickr.com/photos/36521985736@N01/4258973012', + url: 'https://live.staticflickr.com/4015/4258973012_fb00c2d09c_b.jpg', + creator: 'Bytemarks', + creator_url: 'https://www.flickr.com/photos/36521985736@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graffiti', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Graffiti Art" by Bytemarks is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/f5ab3e3e-0c85-49d4-9a73-a044a9ff7096/thumb/', + detail_url: 'http://localhost:49153/v1/images/f5ab3e3e-0c85-49d4-9a73-a044a9ff7096/', + related_url: 'http://localhost:49153/v1/images/f5ab3e3e-0c85-49d4-9a73-a044a9ff7096/related/', + unstable__sensitivity: [], + }, + { + id: '5f44768a-027a-4ff0-9e21-44179c67bf54', + title: 'street art', + indexed_on: '2020-05-07T10:56:26.157195Z', + foreign_landing_url: 'https://www.flickr.com/photos/56269974@N00/6507697', + url: 'https://live.staticflickr.com/4/6507697_057c89810f.jpg', + creator: 'dtack', + creator_url: 'https://www.flickr.com/photos/56269974@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cartoon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'illustration', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'street', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: 0.94296, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.90257, + unstable__provider: 'clarifai', + }, + { + name: 'old', + accuracy: 0.9357, + unstable__provider: 'clarifai', + }, + { + name: 'paper', + accuracy: 0.9214, + unstable__provider: 'clarifai', + }, + { + name: 'retro', + accuracy: 0.96029, + unstable__provider: 'clarifai', + }, + { + name: 'vintage', + accuracy: 0.90345, + unstable__provider: 'clarifai', + }, + ], + attribution: '"street art" by dtack is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 375, + thumbnail: 'http://localhost:49153/v1/images/5f44768a-027a-4ff0-9e21-44179c67bf54/thumb/', + detail_url: 'http://localhost:49153/v1/images/5f44768a-027a-4ff0-9e21-44179c67bf54/', + related_url: 'http://localhost:49153/v1/images/5f44768a-027a-4ff0-9e21-44179c67bf54/related/', + unstable__sensitivity: [], + }, + { + id: '39612ad5-c241-4fae-8047-3c5353fe5517', + title: 'Art', + indexed_on: '2020-04-10T17:47:19.524291Z', + foreign_landing_url: 'https://www.flickr.com/photos/63723146@N08/7267281500', + url: 'https://live.staticflickr.com/7085/7267281500_55cb6692e3_b.jpg', + creator: 'rockindave1', + creator_url: 'https://www.flickr.com/photos/63723146@N08', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Art" by rockindave1 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/39612ad5-c241-4fae-8047-3c5353fe5517/thumb/', + detail_url: 'http://localhost:49153/v1/images/39612ad5-c241-4fae-8047-3c5353fe5517/', + related_url: 'http://localhost:49153/v1/images/39612ad5-c241-4fae-8047-3c5353fe5517/related/', + unstable__sensitivity: [], + }, + { + id: 'c098a1c7-6907-41dd-b320-0879a4494cbc', + title: 'island art', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/42182506@N05/5335888717', + url: 'https://live.staticflickr.com/5206/5335888717_0fc4fbeeb3_b.jpg', + creator: 'rakkhi', + creator_url: 'https://www.flickr.com/photos/42182506@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'met', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'new', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'york', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"island art" by rakkhi is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 765, + thumbnail: 'http://localhost:49153/v1/images/c098a1c7-6907-41dd-b320-0879a4494cbc/thumb/', + detail_url: 'http://localhost:49153/v1/images/c098a1c7-6907-41dd-b320-0879a4494cbc/', + related_url: 'http://localhost:49153/v1/images/c098a1c7-6907-41dd-b320-0879a4494cbc/related/', + unstable__sensitivity: [], + }, + { + id: '007ad046-fb58-4775-8fbc-1324216c4368', + title: 'Urban Street Art #hotchick #streetart #dailyshoot #torrevieja', + indexed_on: '2020-04-13T03:32:32.235718Z', + foreign_landing_url: 'https://www.flickr.com/photos/46018453@N06/7789057294', + url: 'https://live.staticflickr.com/8296/7789057294_7db4d8b129_b.jpg', + creator: 'Leshaines123', + creator_url: 'https://www.flickr.com/photos/46018453@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'anawesomeshot', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'colour', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'contrast', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'grafitti', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hotchick', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'me2youphotographylevel1', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'paint', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'street', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'torrevieja', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: 0.95124, + unstable__provider: 'clarifai', + }, + { + name: 'design', + accuracy: 0.9044, + unstable__provider: 'clarifai', + }, + { + name: 'graffiti', + accuracy: 0.99129, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.93139, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Urban Street Art #hotchick #streetart #dailyshoot #torrevieja" by Leshaines123 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 621, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/007ad046-fb58-4775-8fbc-1324216c4368/thumb/', + detail_url: 'http://localhost:49153/v1/images/007ad046-fb58-4775-8fbc-1324216c4368/', + related_url: 'http://localhost:49153/v1/images/007ad046-fb58-4775-8fbc-1324216c4368/related/', + unstable__sensitivity: [], + }, + { + id: '96739b33-d2ec-45c2-a3c0-3937a0061f3e', + title: 'Sigma 50mm 1.4 Art HDR', + indexed_on: '2020-04-04T10:41:17.459848Z', + foreign_landing_url: 'https://www.flickr.com/photos/119678691@N02/14547443666', + url: 'https://live.staticflickr.com/2912/14547443666_aab339b43a_b.jpg', + creator: 'be creator', + creator_url: 'https://www.flickr.com/photos/119678691@N02', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '14', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '50mm', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '6d', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'canon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sigma', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Sigma 50mm 1.4 Art HDR" by be creator is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 679, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/96739b33-d2ec-45c2-a3c0-3937a0061f3e/thumb/', + detail_url: 'http://localhost:49153/v1/images/96739b33-d2ec-45c2-a3c0-3937a0061f3e/', + related_url: 'http://localhost:49153/v1/images/96739b33-d2ec-45c2-a3c0-3937a0061f3e/related/', + unstable__sensitivity: [], + }, + { + id: '8aff0205-dcdf-4539-80e5-ebfd5cb817ad', + title: 'art', + indexed_on: '2020-04-25T08:11:33.158376Z', + foreign_landing_url: 'https://www.flickr.com/photos/61083113@N00/3827129553', + url: 'https://live.staticflickr.com/2461/3827129553_aea8113850_b.jpg', + creator: 'idugh', + creator_url: 'https://www.flickr.com/photos/61083113@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'grafiti', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'seattle', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"art" by idugh is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/8aff0205-dcdf-4539-80e5-ebfd5cb817ad/thumb/', + detail_url: 'http://localhost:49153/v1/images/8aff0205-dcdf-4539-80e5-ebfd5cb817ad/', + related_url: 'http://localhost:49153/v1/images/8aff0205-dcdf-4539-80e5-ebfd5cb817ad/related/', + unstable__sensitivity: [], + }, + { + id: 'b9e82a5c-91d1-4798-9afb-ec9a4ea723ff', + title: 'Street Art Painting on Brick Face Canvas', + indexed_on: '2020-03-28T18:49:31.134496Z', + foreign_landing_url: 'https://www.flickr.com/photos/39160147@N03/17124441607', + url: 'https://live.staticflickr.com/7706/17124441607_151bc04228_b.jpg', + creator: 'JeepersMedia', + creator_url: 'https://www.flickr.com/photos/39160147@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'street', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.90679, + unstable__provider: 'clarifai', + }, + { + name: 'art', + accuracy: 0.9118, + unstable__provider: 'clarifai', + }, + { + name: 'building', + accuracy: 0.9131, + unstable__provider: 'clarifai', + }, + { + name: 'cap', + accuracy: 0.90353, + unstable__provider: 'clarifai', + }, + { + name: 'gang', + accuracy: 0.90032, + unstable__provider: 'clarifai', + }, + { + name: 'graffiti', + accuracy: 0.99611, + unstable__provider: 'clarifai', + }, + { + name: 'lid', + accuracy: 0.93688, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.94807, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.97346, + unstable__provider: 'clarifai', + }, + { + name: 'street', + accuracy: 0.96626, + unstable__provider: 'clarifai', + }, + { + name: 'urban', + accuracy: 0.9556, + unstable__provider: 'clarifai', + }, + { + name: 'vandalism', + accuracy: 0.91301, + unstable__provider: 'clarifai', + }, + { + name: 'vehicle', + accuracy: 0.91078, + unstable__provider: 'clarifai', + }, + { + name: 'wall', + accuracy: 0.95053, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Street Art Painting on Brick Face Canvas" by JeepersMedia is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 1021, + thumbnail: 'http://localhost:49153/v1/images/b9e82a5c-91d1-4798-9afb-ec9a4ea723ff/thumb/', + detail_url: 'http://localhost:49153/v1/images/b9e82a5c-91d1-4798-9afb-ec9a4ea723ff/', + related_url: 'http://localhost:49153/v1/images/b9e82a5c-91d1-4798-9afb-ec9a4ea723ff/related/', + unstable__sensitivity: [], + }, + { + id: 'b69d3a69-9919-42a3-9e6f-84028be4dc5a', + title: 'Marc Chagall, America Windows, detail, Art Institute Chicago', + indexed_on: '2016-11-17T13:16:56.287145Z', + foreign_landing_url: 'https://www.flickr.com/photos/61533954@N00/9433423871', + url: 'https://live.staticflickr.com/7382/9433423871_ec9ee21924_b.jpg', + creator: 'Dimitry B', + creator_url: 'https://www.flickr.com/photos/61533954@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'america', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'americawindow', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blue', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'chagall', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'chicago', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'glass', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'illinois', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'insitute', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marc', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'red', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'stained', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'usa', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'vitrage', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'abstract', + accuracy: 0.91614, + unstable__provider: 'clarifai', + }, + { + name: 'art', + accuracy: 0.96006, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Marc Chagall, America Windows, detail, Art Institute Chicago" by Dimitry B is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/b69d3a69-9919-42a3-9e6f-84028be4dc5a/thumb/', + detail_url: 'http://localhost:49153/v1/images/b69d3a69-9919-42a3-9e6f-84028be4dc5a/', + related_url: 'http://localhost:49153/v1/images/b69d3a69-9919-42a3-9e6f-84028be4dc5a/related/', + unstable__sensitivity: [], + }, + { + id: 'cae38d11-8bf6-4ac6-b3f7-84f2131ebb26', + title: 'Art Piece 7', + indexed_on: '2020-04-16T02:52:24.186253Z', + foreign_landing_url: 'https://www.flickr.com/photos/33334577@N06/5572631859', + url: 'https://live.staticflickr.com/5184/5572631859_8077b879dc_b.jpg', + creator: 'GlitterandFrills', + creator_url: 'https://www.flickr.com/photos/33334577@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'colorful', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'eyes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'face', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'paint', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'watercolor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: 0.97179, + unstable__provider: 'clarifai', + }, + { + name: 'artistic', + accuracy: 0.95727, + unstable__provider: 'clarifai', + }, + { + name: 'cephalopod ink', + accuracy: 0.9632, + unstable__provider: 'clarifai', + }, + { + name: 'color', + accuracy: 0.91075, + unstable__provider: 'clarifai', + }, + { + name: 'creativity', + accuracy: 0.93417, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.92019, + unstable__provider: 'clarifai', + }, + { + name: 'ink', + accuracy: 0.93635, + unstable__provider: 'clarifai', + }, + { + name: 'painting', + accuracy: 0.96504, + unstable__provider: 'clarifai', + }, + { + name: 'paper', + accuracy: 0.90648, + unstable__provider: 'clarifai', + }, + { + name: 'watercolor', + accuracy: 0.96514, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Art Piece 7" by GlitterandFrills is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 723, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/cae38d11-8bf6-4ac6-b3f7-84f2131ebb26/thumb/', + detail_url: 'http://localhost:49153/v1/images/cae38d11-8bf6-4ac6-b3f7-84f2131ebb26/', + related_url: 'http://localhost:49153/v1/images/cae38d11-8bf6-4ac6-b3f7-84f2131ebb26/related/', + unstable__sensitivity: [], + }, + { + id: 'e22e1951-3744-4d1f-bc14-564ae11e0d06', + title: 'Yoshitomo Nara x YNG Installation @ Art Basel Switzerland', + indexed_on: '2016-11-16T20:28:24.315108Z', + foreign_landing_url: 'https://www.flickr.com/photos/32628328@N00/3623111190', + url: 'https://live.staticflickr.com/3659/3623111190_a1fb57e91a_b.jpg', + creator: 'paalia', + creator_url: 'https://www.flickr.com/photos/32628328@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'furniture', + accuracy: 0.97196, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.94254, + unstable__provider: 'clarifai', + }, + { + name: 'painting', + accuracy: 0.97482, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.9885, + unstable__provider: 'clarifai', + }, + { + name: 'room', + accuracy: 0.99105, + unstable__provider: 'clarifai', + }, + { + name: 'seat', + accuracy: 0.91063, + unstable__provider: 'clarifai', + }, + { + name: 'art', + accuracy: 0.92149, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Yoshitomo Nara x YNG Installation @ Art Basel Switzerland" by paalia is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 767, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/e22e1951-3744-4d1f-bc14-564ae11e0d06/thumb/', + detail_url: 'http://localhost:49153/v1/images/e22e1951-3744-4d1f-bc14-564ae11e0d06/', + related_url: 'http://localhost:49153/v1/images/e22e1951-3744-4d1f-bc14-564ae11e0d06/related/', + unstable__sensitivity: [], + }, + { + id: '09cfa5e8-9041-4f08-921b-2e1ba66c5f03', + title: 'Art work #dailyshoot #red', + indexed_on: '2020-04-13T03:32:32.235718Z', + foreign_landing_url: 'https://www.flickr.com/photos/46018453@N06/7789043840', + url: 'https://live.staticflickr.com/8435/7789043840_ee20c82ed2_b.jpg', + creator: 'Leshaines123', + creator_url: 'https://www.flickr.com/photos/46018453@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'acrylic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'compensation', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'exposure', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'female', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'model', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'red', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'work', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: 0.97518, + unstable__provider: 'clarifai', + }, + { + name: 'artistic', + accuracy: 0.94372, + unstable__provider: 'clarifai', + }, + { + name: 'color', + accuracy: 0.94286, + unstable__provider: 'clarifai', + }, + { + name: 'graffiti', + accuracy: 0.96367, + unstable__provider: 'clarifai', + }, + { + name: 'love', + accuracy: 0.94004, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.93761, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.96028, + unstable__provider: 'clarifai', + }, + { + name: 'street', + accuracy: 0.91028, + unstable__provider: 'clarifai', + }, + { + name: 'texture', + accuracy: 0.93693, + unstable__provider: 'clarifai', + }, + { + name: 'vintage', + accuracy: 0.9206, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Art work #dailyshoot #red" by Leshaines123 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 612, + thumbnail: 'http://localhost:49153/v1/images/09cfa5e8-9041-4f08-921b-2e1ba66c5f03/thumb/', + detail_url: 'http://localhost:49153/v1/images/09cfa5e8-9041-4f08-921b-2e1ba66c5f03/', + related_url: 'http://localhost:49153/v1/images/09cfa5e8-9041-4f08-921b-2e1ba66c5f03/related/', + unstable__sensitivity: [], + }, + { + id: '5e53798a-46a2-417a-9cff-92f20d91e753', + title: 'Street Art Torrevieja Spain #dailyshoot', + indexed_on: '2016-11-17T08:55:52.719609Z', + foreign_landing_url: 'https://www.flickr.com/photos/46018453@N06/7164701472', + url: 'https://live.staticflickr.com/5446/7164701472_7170887b83_b.jpg', + creator: 'Leshaines123', + creator_url: 'https://www.flickr.com/photos/46018453@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: 600671, + filetype: null, + tags: [ + { + name: '365', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'colour', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dailyshoot', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'grafitti', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'monster', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'patterns', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'street', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'torrevieja', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: 0.97251, + unstable__provider: 'clarifai', + }, + { + name: 'artistic', + accuracy: 0.92602, + unstable__provider: 'clarifai', + }, + { + name: 'color', + accuracy: 0.91808, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.90546, + unstable__provider: 'clarifai', + }, + { + name: 'graphic', + accuracy: 0.96333, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.9772, + unstable__provider: 'clarifai', + }, + { + name: 'painting', + accuracy: 0.93654, + unstable__provider: 'clarifai', + }, + { + name: 'visuals', + accuracy: 0.93499, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Street Art Torrevieja Spain #dailyshoot" by Leshaines123 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 703, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/5e53798a-46a2-417a-9cff-92f20d91e753/thumb/', + detail_url: 'http://localhost:49153/v1/images/5e53798a-46a2-417a-9cff-92f20d91e753/', + related_url: 'http://localhost:49153/v1/images/5e53798a-46a2-417a-9cff-92f20d91e753/related/', + unstable__sensitivity: [], + }, + { + id: 'd67ff36e-0fa3-4c78-ae87-6e0380ffe341', + title: 'Fruit Veggie Art', + indexed_on: '2020-03-27T18:23:30.843823Z', + foreign_landing_url: 'https://www.flickr.com/photos/9702291@N05/16328936655', + url: 'https://live.staticflickr.com/8593/16328936655_9568499438_b.jpg', + creator: 'NicoleMariePhotoworks', + creator_url: 'https://www.flickr.com/photos/9702291@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'healthy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'vegetables', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Fruit Veggie Art" by NicoleMariePhotoworks is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/d67ff36e-0fa3-4c78-ae87-6e0380ffe341/thumb/', + detail_url: 'http://localhost:49153/v1/images/d67ff36e-0fa3-4c78-ae87-6e0380ffe341/', + related_url: 'http://localhost:49153/v1/images/d67ff36e-0fa3-4c78-ae87-6e0380ffe341/related/', + unstable__sensitivity: [], + }, + { + id: '601595cd-7dff-4367-9dfe-e5c81a78f211', + title: 'unhas decoradas nails art', + indexed_on: '2020-04-25T05:50:34.934390Z', + foreign_landing_url: 'https://www.flickr.com/photos/31824034@N02/3783334928', + url: 'https://live.staticflickr.com/2659/3783334928_4b5ab678a0_b.jpg', + creator: 'monibela', + creator_url: 'https://www.flickr.com/photos/31824034@N02', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'decoradas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nails', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'unhas', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"unhas decoradas nails art" by monibela is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 728, + width: 976, + thumbnail: 'http://localhost:49153/v1/images/601595cd-7dff-4367-9dfe-e5c81a78f211/thumb/', + detail_url: 'http://localhost:49153/v1/images/601595cd-7dff-4367-9dfe-e5c81a78f211/', + related_url: 'http://localhost:49153/v1/images/601595cd-7dff-4367-9dfe-e5c81a78f211/related/', + unstable__sensitivity: [], + }, + { + id: '08dc94ae-2b33-4645-94a9-136cd7c6bea7', + title: 'Graffiti Art', + indexed_on: '2016-11-16T20:49:57.846871Z', + foreign_landing_url: 'https://www.flickr.com/photos/64097751@N00/1129033182', + url: 'https://live.staticflickr.com/1155/1129033182_f584e2a568_b.jpg', + creator: "Dominic's pics", + creator_url: 'https://www.flickr.com/photos/64097751@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: 3044680, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'boarding', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'brighton', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'building', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'construction', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'eastsussex', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graffiti', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'painted', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'princeregentswimmingpool', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'site', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: 0.96283, + unstable__provider: 'clarifai', + }, + { + name: 'creativity', + accuracy: 0.93308, + unstable__provider: 'clarifai', + }, + { + name: 'design', + accuracy: 0.95241, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.92735, + unstable__provider: 'clarifai', + }, + { + name: 'graffiti', + accuracy: 0.9928, + unstable__provider: 'clarifai', + }, + { + name: 'graphic', + accuracy: 0.91492, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.9765, + unstable__provider: 'clarifai', + }, + { + name: 'image', + accuracy: 0.90655, + unstable__provider: 'clarifai', + }, + { + name: 'spray', + accuracy: 0.96467, + unstable__provider: 'clarifai', + }, + { + name: 'symbol', + accuracy: 0.90283, + unstable__provider: 'clarifai', + }, + { + name: 'vandalism', + accuracy: 0.95819, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Graffiti Art" by Dominic\'s pics is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 569, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/08dc94ae-2b33-4645-94a9-136cd7c6bea7/thumb/', + detail_url: 'http://localhost:49153/v1/images/08dc94ae-2b33-4645-94a9-136cd7c6bea7/', + related_url: 'http://localhost:49153/v1/images/08dc94ae-2b33-4645-94a9-136cd7c6bea7/related/', + unstable__sensitivity: [], + }, + { + id: 'aec539c7-277e-4435-9050-45e2a896f962', + title: 'art', + indexed_on: '2020-03-27T19:43:29.732342Z', + foreign_landing_url: 'https://www.flickr.com/photos/96106108@N07/16186037189', + url: 'https://live.staticflickr.com/8667/16186037189_4830f24756_b.jpg', + creator: 'd26b73', + creator_url: 'https://www.flickr.com/photos/96106108@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blackwhite', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bw', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'geometry', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'noiretblanc', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'street', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tclx100', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'urban', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'x100s', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"art" by d26b73 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/aec539c7-277e-4435-9050-45e2a896f962/thumb/', + detail_url: 'http://localhost:49153/v1/images/aec539c7-277e-4435-9050-45e2a896f962/', + related_url: 'http://localhost:49153/v1/images/aec539c7-277e-4435-9050-45e2a896f962/related/', + unstable__sensitivity: [], + }, + { + id: 'afbd3a4b-aa29-4278-8027-4ee0a4b8b62b', + title: 'Art Nouveau Tiles', + indexed_on: '2016-11-17T02:29:42.506890Z', + foreign_landing_url: 'https://www.flickr.com/photos/46944516@N00/3135328269', + url: 'https://live.staticflickr.com/3251/3135328269_3bc95c3f37_b.jpg', + creator: 'pedrosimoes7', + creator_url: 'https://www.flickr.com/photos/46944516@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'artdeco', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'artnouveau', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cc', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ceramic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'creativecommons', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'design', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'labelleépoque', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'labelleeu0301poque', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lisbon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'madredeusconvent', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'portugal', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tiles', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tilesportuguesemuseum', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: 0.92397, + unstable__provider: 'clarifai', + }, + { + name: 'classic', + accuracy: 0.91074, + unstable__provider: 'clarifai', + }, + { + name: 'design', + accuracy: 0.92143, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.94119, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.90735, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.90587, + unstable__provider: 'clarifai', + }, + { + name: 'retro', + accuracy: 0.95355, + unstable__provider: 'clarifai', + }, + { + name: 'vector', + accuracy: 0.92483, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Art Nouveau Tiles" by pedrosimoes7 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 571, + thumbnail: 'http://localhost:49153/v1/images/afbd3a4b-aa29-4278-8027-4ee0a4b8b62b/thumb/', + detail_url: 'http://localhost:49153/v1/images/afbd3a4b-aa29-4278-8027-4ee0a4b8b62b/', + related_url: 'http://localhost:49153/v1/images/afbd3a4b-aa29-4278-8027-4ee0a4b8b62b/related/', + unstable__sensitivity: [], + }, + { + id: '62b63dfc-a6af-459c-897a-cbf0e83f838e', + title: 'art', + indexed_on: '2016-11-17T05:39:01.840237Z', + foreign_landing_url: 'https://www.flickr.com/photos/62021300@N00/6935682365', + url: 'https://live.staticflickr.com/7180/6935682365_7bff43cf4f_b.jpg', + creator: 'Incase.', + creator_url: 'https://www.flickr.com/photos/62021300@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'artshow', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'thisla', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'abstract', + accuracy: 0.93871, + unstable__provider: 'clarifai', + }, + { + name: 'art', + accuracy: 0.97344, + unstable__provider: 'clarifai', + }, + { + name: 'color', + accuracy: 0.90361, + unstable__provider: 'clarifai', + }, + { + name: 'decoration', + accuracy: 0.95363, + unstable__provider: 'clarifai', + }, + { + name: 'design', + accuracy: 0.96676, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.93202, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.97808, + unstable__provider: 'clarifai', + }, + { + name: 'pattern', + accuracy: 0.96905, + unstable__provider: 'clarifai', + }, + { + name: 'texture', + accuracy: 0.95796, + unstable__provider: 'clarifai', + }, + { + name: 'vector', + accuracy: 0.92435, + unstable__provider: 'clarifai', + }, + { + name: 'wallpaper', + accuracy: 0.92068, + unstable__provider: 'clarifai', + }, + ], + attribution: '"art" by Incase. is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/62b63dfc-a6af-459c-897a-cbf0e83f838e/thumb/', + detail_url: 'http://localhost:49153/v1/images/62b63dfc-a6af-459c-897a-cbf0e83f838e/', + related_url: 'http://localhost:49153/v1/images/62b63dfc-a6af-459c-897a-cbf0e83f838e/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=art_keep-alive.json5 b/frontend/test/tapes/search/images/q=art_keep-alive.json5 new file mode 100644 index 00000000000..fd9842b1f23 --- /dev/null +++ b/frontend/test/tapes/search/images/q=art_keep-alive.json5 @@ -0,0 +1,1163 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:08.884Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=art', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:08 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '194', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + 'baafdf41-2463-473e-8a0a-1d3f98467520', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1153', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:27:55 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d38cd07274a-ADL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: 'fd402982-9d2e-4145-b934-22efab50fa2d', + title: 'Art', + indexed_on: '2018-11-09T02:22:56.756031Z', + foreign_landing_url: 'https://www.flickr.com/photos/27376687@N05/11383924094', + url: 'https://live.staticflickr.com/7359/11383924094_b99e640b95_b.jpg', + creator: 'raffacama', + creator_url: 'https://www.flickr.com/photos/27376687@N05', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Art" by raffacama is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 789, + thumbnail: 'http://localhost:49153/v1/images/fd402982-9d2e-4145-b934-22efab50fa2d/thumb/', + detail_url: 'http://localhost:49153/v1/images/fd402982-9d2e-4145-b934-22efab50fa2d/', + related_url: 'http://localhost:49153/v1/images/fd402982-9d2e-4145-b934-22efab50fa2d/related/', + unstable__sensitivity: [], + }, + { + id: '0acc1527-a093-43a3-aadc-482180b9bdbf', + title: 'Pixel Art - Sky TV', + indexed_on: '2020-05-03T21:03:26.217851Z', + foreign_landing_url: 'https://www.flickr.com/photos/83599920@N00/2065863328', + url: 'https://live.staticflickr.com/2191/2065863328_3c91d21a9e_b.jpg', + creator: 'Sabrina Eras', + creator_url: 'https://www.flickr.com/photos/83599920@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pixel', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Pixel Art - Sky TV" by Sabrina Eras is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 694, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/0acc1527-a093-43a3-aadc-482180b9bdbf/thumb/', + detail_url: 'http://localhost:49153/v1/images/0acc1527-a093-43a3-aadc-482180b9bdbf/', + related_url: 'http://localhost:49153/v1/images/0acc1527-a093-43a3-aadc-482180b9bdbf/related/', + unstable__sensitivity: [], + }, + { + id: '7dd4daad-6f23-4ea0-8773-71f3689284cb', + title: 'Coffee Art', + indexed_on: '2020-04-17T15:47:24.106951Z', + foreign_landing_url: 'https://www.flickr.com/photos/67853976@N07/6187959374', + url: 'https://live.staticflickr.com/6160/6187959374_417c887caf_b.jpg', + creator: 'amanda28192', + creator_url: 'https://www.flickr.com/photos/67853976@N07', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'coffee', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Coffee Art" by amanda28192 is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/7dd4daad-6f23-4ea0-8773-71f3689284cb/thumb/', + detail_url: 'http://localhost:49153/v1/images/7dd4daad-6f23-4ea0-8773-71f3689284cb/', + related_url: 'http://localhost:49153/v1/images/7dd4daad-6f23-4ea0-8773-71f3689284cb/related/', + unstable__sensitivity: [], + }, + { + id: 'f5ab3e3e-0c85-49d4-9a73-a044a9ff7096', + title: 'Graffiti Art', + indexed_on: '2019-01-09T15:50:09.407538Z', + foreign_landing_url: 'https://www.flickr.com/photos/36521985736@N01/4258973012', + url: 'https://live.staticflickr.com/4015/4258973012_fb00c2d09c_b.jpg', + creator: 'Bytemarks', + creator_url: 'https://www.flickr.com/photos/36521985736@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graffiti', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Graffiti Art" by Bytemarks is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/f5ab3e3e-0c85-49d4-9a73-a044a9ff7096/thumb/', + detail_url: 'http://localhost:49153/v1/images/f5ab3e3e-0c85-49d4-9a73-a044a9ff7096/', + related_url: 'http://localhost:49153/v1/images/f5ab3e3e-0c85-49d4-9a73-a044a9ff7096/related/', + unstable__sensitivity: [], + }, + { + id: '12d05403-cbf3-475c-aedc-688fcf6127af', + title: 'Cuba Art', + indexed_on: '2020-04-12T03:27:21.089035Z', + foreign_landing_url: 'https://www.flickr.com/photos/29468339@N02/6979432120', + url: 'https://live.staticflickr.com/7038/6979432120_aa234dae30_b.jpg', + creator: '@Doug88888', + creator_url: 'https://www.flickr.com/photos/29468339@N02', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cuba', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Cuba Art" by @Doug88888 is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 731, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/12d05403-cbf3-475c-aedc-688fcf6127af/thumb/', + detail_url: 'http://localhost:49153/v1/images/12d05403-cbf3-475c-aedc-688fcf6127af/', + related_url: 'http://localhost:49153/v1/images/12d05403-cbf3-475c-aedc-688fcf6127af/related/', + unstable__sensitivity: [], + }, + { + id: 'd407f8c8-087d-41ef-8b4d-b07e86c7def4', + title: 'Line art', + indexed_on: '2020-04-04T19:55:19.061368Z', + foreign_landing_url: 'https://www.flickr.com/photos/30924550@N04/14872845933', + url: 'https://live.staticflickr.com/3876/14872845933_0d6152c9b2_b.jpg', + creator: 'walmarc04', + creator_url: 'https://www.flickr.com/photos/30924550@N04', + license: 'pdm', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/mark/1.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'image', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'line', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Line art" by walmarc04 is marked with Public Domain Mark 1.0. To view the terms, visit https://creativecommons.org/publicdomain/mark/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/d407f8c8-087d-41ef-8b4d-b07e86c7def4/thumb/', + detail_url: 'http://localhost:49153/v1/images/d407f8c8-087d-41ef-8b4d-b07e86c7def4/', + related_url: 'http://localhost:49153/v1/images/d407f8c8-087d-41ef-8b4d-b07e86c7def4/related/', + unstable__sensitivity: [], + }, + { + id: '807151e4-279c-48db-9930-d514fdf7dc2a', + title: 'Line art', + indexed_on: '2020-04-04T19:55:19.061368Z', + foreign_landing_url: 'https://www.flickr.com/photos/30924550@N04/14666392888', + url: 'https://live.staticflickr.com/5559/14666392888_5358a55527_b.jpg', + creator: 'walmarc04', + creator_url: 'https://www.flickr.com/photos/30924550@N04', + license: 'pdm', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/mark/1.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'image', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'line', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Line art" by walmarc04 is marked with Public Domain Mark 1.0. To view the terms, visit https://creativecommons.org/publicdomain/mark/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/807151e4-279c-48db-9930-d514fdf7dc2a/thumb/', + detail_url: 'http://localhost:49153/v1/images/807151e4-279c-48db-9930-d514fdf7dc2a/', + related_url: 'http://localhost:49153/v1/images/807151e4-279c-48db-9930-d514fdf7dc2a/related/', + unstable__sensitivity: [], + }, + { + id: '5f44768a-027a-4ff0-9e21-44179c67bf54', + title: 'street art', + indexed_on: '2020-05-07T10:56:26.157195Z', + foreign_landing_url: 'https://www.flickr.com/photos/56269974@N00/6507697', + url: 'https://live.staticflickr.com/4/6507697_057c89810f.jpg', + creator: 'dtack', + creator_url: 'https://www.flickr.com/photos/56269974@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cartoon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'illustration', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'street', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: 0.94296, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.90257, + unstable__provider: 'clarifai', + }, + { + name: 'old', + accuracy: 0.9357, + unstable__provider: 'clarifai', + }, + { + name: 'paper', + accuracy: 0.9214, + unstable__provider: 'clarifai', + }, + { + name: 'retro', + accuracy: 0.96029, + unstable__provider: 'clarifai', + }, + { + name: 'vintage', + accuracy: 0.90345, + unstable__provider: 'clarifai', + }, + ], + attribution: '"street art" by dtack is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 375, + thumbnail: 'http://localhost:49153/v1/images/5f44768a-027a-4ff0-9e21-44179c67bf54/thumb/', + detail_url: 'http://localhost:49153/v1/images/5f44768a-027a-4ff0-9e21-44179c67bf54/', + related_url: 'http://localhost:49153/v1/images/5f44768a-027a-4ff0-9e21-44179c67bf54/related/', + unstable__sensitivity: [], + }, + { + id: '39612ad5-c241-4fae-8047-3c5353fe5517', + title: 'Art', + indexed_on: '2020-04-10T17:47:19.524291Z', + foreign_landing_url: 'https://www.flickr.com/photos/63723146@N08/7267281500', + url: 'https://live.staticflickr.com/7085/7267281500_55cb6692e3_b.jpg', + creator: 'rockindave1', + creator_url: 'https://www.flickr.com/photos/63723146@N08', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Art" by rockindave1 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/39612ad5-c241-4fae-8047-3c5353fe5517/thumb/', + detail_url: 'http://localhost:49153/v1/images/39612ad5-c241-4fae-8047-3c5353fe5517/', + related_url: 'http://localhost:49153/v1/images/39612ad5-c241-4fae-8047-3c5353fe5517/related/', + unstable__sensitivity: [], + }, + { + id: '64987dc6-b641-4edc-b558-a2ae834b77ea', + title: 'Street-Art in Rennes #12', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/31797858@N00/4536157898', + url: 'https://live.staticflickr.com/4025/4536157898_ae32e50f6c_b.jpg', + creator: 'Alexandre Dulaunoy', + creator_url: 'https://www.flickr.com/photos/31797858@N00', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rennes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'stencil', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'streetart', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Street-Art in Rennes #12" by Alexandre Dulaunoy is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 683, + thumbnail: 'http://localhost:49153/v1/images/64987dc6-b641-4edc-b558-a2ae834b77ea/thumb/', + detail_url: 'http://localhost:49153/v1/images/64987dc6-b641-4edc-b558-a2ae834b77ea/', + related_url: 'http://localhost:49153/v1/images/64987dc6-b641-4edc-b558-a2ae834b77ea/related/', + unstable__sensitivity: [], + }, + { + id: 'c098a1c7-6907-41dd-b320-0879a4494cbc', + title: 'island art', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/42182506@N05/5335888717', + url: 'https://live.staticflickr.com/5206/5335888717_0fc4fbeeb3_b.jpg', + creator: 'rakkhi', + creator_url: 'https://www.flickr.com/photos/42182506@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'met', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'new', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'york', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"island art" by rakkhi is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 765, + thumbnail: 'http://localhost:49153/v1/images/c098a1c7-6907-41dd-b320-0879a4494cbc/thumb/', + detail_url: 'http://localhost:49153/v1/images/c098a1c7-6907-41dd-b320-0879a4494cbc/', + related_url: 'http://localhost:49153/v1/images/c098a1c7-6907-41dd-b320-0879a4494cbc/related/', + unstable__sensitivity: [], + }, + { + id: '7fa511f1-0f74-4a50-9d4d-96faed10bde4', + title: 'Graffiti art in the Albany', + indexed_on: '2018-11-07T20:03:57.748699Z', + foreign_landing_url: 'https://www.flickr.com/photos/34784132@N00/385522478', + url: 'https://live.staticflickr.com/186/385522478_d5fb5a833e_b.jpg', + creator: 'hindsightery', + creator_url: 'https://www.flickr.com/photos/34784132@N00', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'albany', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graffiti', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'toilet', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Graffiti art in the Albany" by hindsightery is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 768, + thumbnail: 'http://localhost:49153/v1/images/7fa511f1-0f74-4a50-9d4d-96faed10bde4/thumb/', + detail_url: 'http://localhost:49153/v1/images/7fa511f1-0f74-4a50-9d4d-96faed10bde4/', + related_url: 'http://localhost:49153/v1/images/7fa511f1-0f74-4a50-9d4d-96faed10bde4/related/', + unstable__sensitivity: [], + }, + { + id: '917b73d0-5f5f-43f6-8196-586b3c1c5c95', + title: 'Art', + indexed_on: '2020-04-09T23:08:28.124144Z', + foreign_landing_url: 'https://www.flickr.com/photos/50274810@N04/6710165029', + url: 'https://live.staticflickr.com/7162/6710165029_f80fd65018_b.jpg', + creator: 'Suz-anne', + creator_url: 'https://www.flickr.com/photos/50274810@N04', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'scottblackwell', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Art" by Suz-anne is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 654, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/917b73d0-5f5f-43f6-8196-586b3c1c5c95/thumb/', + detail_url: 'http://localhost:49153/v1/images/917b73d0-5f5f-43f6-8196-586b3c1c5c95/', + related_url: 'http://localhost:49153/v1/images/917b73d0-5f5f-43f6-8196-586b3c1c5c95/related/', + unstable__sensitivity: [], + }, + { + id: 'b25184a1-2e56-4bf4-8bcb-8a98bd07f438', + title: 'Whimsical Art', + indexed_on: '2018-11-09T02:22:56.756031Z', + foreign_landing_url: 'https://www.flickr.com/photos/82256086@N00/14744129493', + url: 'https://live.staticflickr.com/3854/14744129493_53cf016663_b.jpg', + creator: 'Stanley Zimny (Thank You for 50 Million views)', + creator_url: 'https://www.flickr.com/photos/82256086@N00', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'washington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Whimsical Art" by Stanley Zimny (Thank You for 50 Million views) is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/b25184a1-2e56-4bf4-8bcb-8a98bd07f438/thumb/', + detail_url: 'http://localhost:49153/v1/images/b25184a1-2e56-4bf4-8bcb-8a98bd07f438/', + related_url: 'http://localhost:49153/v1/images/b25184a1-2e56-4bf4-8bcb-8a98bd07f438/related/', + unstable__sensitivity: [], + }, + { + id: '066fed5a-9070-4f93-b420-5cf12321a81d', + title: 'Art', + indexed_on: '2020-04-03T19:54:18.968659Z', + foreign_landing_url: 'https://www.flickr.com/photos/50318388@N00/14179361071', + url: 'https://live.staticflickr.com/7362/14179361071_d31cb1145c_b.jpg', + creator: 'mag3737', + creator_url: 'https://www.flickr.com/photos/50318388@N00', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graffiti', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Art" by mag3737 is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 832, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/066fed5a-9070-4f93-b420-5cf12321a81d/thumb/', + detail_url: 'http://localhost:49153/v1/images/066fed5a-9070-4f93-b420-5cf12321a81d/', + related_url: 'http://localhost:49153/v1/images/066fed5a-9070-4f93-b420-5cf12321a81d/related/', + unstable__sensitivity: [], + }, + { + id: '22fff923-fd06-44ba-8467-e7404bf5d0ed', + title: 'San Francisco Palace of Fine Arts in Sunset Color', + indexed_on: '2020-04-15T23:21:18.330513Z', + foreign_landing_url: 'https://www.flickr.com/photos/55514420@N00/5516248185', + url: 'https://live.staticflickr.com/5215/5516248185_11fa2c8fd5.jpg', + creator: 'davidyuweb', + creator_url: 'https://www.flickr.com/photos/55514420@N00', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'arts', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'california', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'color', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fine', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'francisco', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'palace', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'san', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sanfrancisco', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sfbay', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sfist', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sunset', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'usa', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"San Francisco Palace of Fine Arts in Sunset Color" by davidyuweb is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 367, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/22fff923-fd06-44ba-8467-e7404bf5d0ed/thumb/', + detail_url: 'http://localhost:49153/v1/images/22fff923-fd06-44ba-8467-e7404bf5d0ed/', + related_url: 'http://localhost:49153/v1/images/22fff923-fd06-44ba-8467-e7404bf5d0ed/related/', + unstable__sensitivity: [], + }, + { + id: 'd77c1f9e-b40d-45b3-bb4b-5ebe2eb7a75b', + title: 'living art', + indexed_on: '2019-04-24T18:49:52.595039Z', + foreign_landing_url: 'https://www.flickr.com/photos/55747750@N02/8210039066', + url: 'https://live.staticflickr.com/8338/8210039066_b5f7c38f1b_b.jpg', + creator: 'PATRICE OUELLET', + creator_url: 'https://www.flickr.com/photos/55747750@N02', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'affiche', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'livingart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'patricephotographiste', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'poster', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"living art" by PATRICE OUELLET is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/d77c1f9e-b40d-45b3-bb4b-5ebe2eb7a75b/thumb/', + detail_url: 'http://localhost:49153/v1/images/d77c1f9e-b40d-45b3-bb4b-5ebe2eb7a75b/', + related_url: 'http://localhost:49153/v1/images/d77c1f9e-b40d-45b3-bb4b-5ebe2eb7a75b/related/', + unstable__sensitivity: [], + }, + { + id: 'e7abe0a1-044a-4c86-856b-c3eed87e5035', + title: 'Art Alley, Rapid City SD - Jul 2015, 12', + indexed_on: '2020-03-30T01:50:25.818699Z', + foreign_landing_url: 'https://www.flickr.com/photos/72098626@N00/19940453664', + url: 'https://live.staticflickr.com/632/19940453664_4f90dd7b4f_b.jpg', + creator: 'Ed Yourdon', + creator_url: 'https://www.flickr.com/photos/72098626@N00', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'artalley', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'artist', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rapidcity', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'southdakota', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Art Alley, Rapid City SD - Jul 2015, 12" by Ed Yourdon is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/e7abe0a1-044a-4c86-856b-c3eed87e5035/thumb/', + detail_url: 'http://localhost:49153/v1/images/e7abe0a1-044a-4c86-856b-c3eed87e5035/', + related_url: 'http://localhost:49153/v1/images/e7abe0a1-044a-4c86-856b-c3eed87e5035/related/', + unstable__sensitivity: [], + }, + { + id: '5827e3b5-4958-4886-b82d-a9b4f4a993d4', + title: 'Art Alley, Rapid City SD - Jul 2015, 28', + indexed_on: '2020-03-30T02:46:29.161592Z', + foreign_landing_url: 'https://www.flickr.com/photos/72098626@N00/20464400079', + url: 'https://live.staticflickr.com/5725/20464400079_ce790315f9_b.jpg', + creator: 'Ed Yourdon', + creator_url: 'https://www.flickr.com/photos/72098626@N00', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'alley', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bravo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rapidcity', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'southdakota', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Art Alley, Rapid City SD - Jul 2015, 28" by Ed Yourdon is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/5827e3b5-4958-4886-b82d-a9b4f4a993d4/thumb/', + detail_url: 'http://localhost:49153/v1/images/5827e3b5-4958-4886-b82d-a9b4f4a993d4/', + related_url: 'http://localhost:49153/v1/images/5827e3b5-4958-4886-b82d-a9b4f4a993d4/related/', + unstable__sensitivity: [], + }, + { + id: '007ad046-fb58-4775-8fbc-1324216c4368', + title: 'Urban Street Art #hotchick #streetart #dailyshoot #torrevieja', + indexed_on: '2020-04-13T03:32:32.235718Z', + foreign_landing_url: 'https://www.flickr.com/photos/46018453@N06/7789057294', + url: 'https://live.staticflickr.com/8296/7789057294_7db4d8b129_b.jpg', + creator: 'Leshaines123', + creator_url: 'https://www.flickr.com/photos/46018453@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'anawesomeshot', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'colour', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'contrast', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'grafitti', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hotchick', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'me2youphotographylevel1', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'paint', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'street', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'torrevieja', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: 0.95124, + unstable__provider: 'clarifai', + }, + { + name: 'design', + accuracy: 0.9044, + unstable__provider: 'clarifai', + }, + { + name: 'graffiti', + accuracy: 0.99129, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.93139, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Urban Street Art #hotchick #streetart #dailyshoot #torrevieja" by Leshaines123 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 621, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/007ad046-fb58-4775-8fbc-1324216c4368/thumb/', + detail_url: 'http://localhost:49153/v1/images/007ad046-fb58-4775-8fbc-1324216c4368/', + related_url: 'http://localhost:49153/v1/images/007ad046-fb58-4775-8fbc-1324216c4368/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=games&license=by&extension=jpg&source=flickr_keep-alive.json5 b/frontend/test/tapes/search/images/q=games&license=by&extension=jpg&source=flickr_keep-alive.json5 new file mode 100644 index 00000000000..5816dfbd3dd --- /dev/null +++ b/frontend/test/tapes/search/images/q=games&license=by&extension=jpg&source=flickr_keep-alive.json5 @@ -0,0 +1,1649 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:10.786Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=games&license=by&extension=jpg&source=flickr', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:10 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '14', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '7926b8cd-acd1-4524-9c96-8574f10955f3', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1150', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:00 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d447e3a274b-ADL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: '9380b203-4eb2-467e-a600-278837a7874e', + title: 'Games', + indexed_on: '2020-04-04T23:11:22.753756Z', + foreign_landing_url: 'https://www.flickr.com/photos/85714479@N00/14948886566', + url: 'https://live.staticflickr.com/3887/14948886566_7f606b520a_b.jpg', + creator: 'Ian D', + creator_url: 'https://www.flickr.com/photos/85714479@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'consoles', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'gaming', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pc', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Games" by Ian D is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/9380b203-4eb2-467e-a600-278837a7874e/thumb/', + detail_url: 'http://localhost:49153/v1/images/9380b203-4eb2-467e-a600-278837a7874e/', + related_url: 'http://localhost:49153/v1/images/9380b203-4eb2-467e-a600-278837a7874e/related/', + unstable__sensitivity: [], + }, + { + id: '2d6881f0-0026-442e-9735-13760fc43100', + title: 'games', + indexed_on: '2020-04-15T19:12:31.484552Z', + foreign_landing_url: 'https://www.flickr.com/photos/18090920@N07/5442733913', + url: 'https://live.staticflickr.com/4139/5442733913_a2b374fdff.jpg', + creator: 'Sean MacEntee', + creator_url: 'https://www.flickr.com/photos/18090920@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"games" by Sean MacEntee is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 167, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/2d6881f0-0026-442e-9735-13760fc43100/thumb/', + detail_url: 'http://localhost:49153/v1/images/2d6881f0-0026-442e-9735-13760fc43100/', + related_url: 'http://localhost:49153/v1/images/2d6881f0-0026-442e-9735-13760fc43100/related/', + unstable__sensitivity: [], + }, + { + id: '5769cc1e-0780-445d-8224-3119c7eec246', + title: 'The game', + indexed_on: '2020-02-28T00:42:06.029189Z', + foreign_landing_url: 'https://www.flickr.com/photos/12836528@N00/16753968686', + url: 'https://live.staticflickr.com/8739/16753968686_9859983d9d_b.jpg', + creator: 'kevin dooley', + creator_url: 'https://www.flickr.com/photos/12836528@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kowa', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"The game" by kevin dooley is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/5769cc1e-0780-445d-8224-3119c7eec246/thumb/', + detail_url: 'http://localhost:49153/v1/images/5769cc1e-0780-445d-8224-3119c7eec246/', + related_url: 'http://localhost:49153/v1/images/5769cc1e-0780-445d-8224-3119c7eec246/related/', + unstable__sensitivity: [], + }, + { + id: '08f54b9e-a2ea-4872-b5d2-982f84709df2', + title: 'Video Games', + indexed_on: '2020-04-03T01:40:21.045938Z', + foreign_landing_url: 'https://www.flickr.com/photos/39160147@N03/13004789275', + url: 'https://live.staticflickr.com/2438/13004789275_212609f629_b.jpg', + creator: 'JeepersMedia', + creator_url: 'https://www.flickr.com/photos/39160147@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Video Games" by JeepersMedia is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/08f54b9e-a2ea-4872-b5d2-982f84709df2/thumb/', + detail_url: 'http://localhost:49153/v1/images/08f54b9e-a2ea-4872-b5d2-982f84709df2/', + related_url: 'http://localhost:49153/v1/images/08f54b9e-a2ea-4872-b5d2-982f84709df2/related/', + unstable__sensitivity: [], + }, + { + id: 'cc48287b-d071-47ff-b13e-c224ca984ab1', + title: 'Video Games', + indexed_on: '2020-04-03T01:40:21.045938Z', + foreign_landing_url: 'https://www.flickr.com/photos/39160147@N03/13005228904', + url: 'https://live.staticflickr.com/3182/13005228904_7c937a0634_b.jpg', + creator: 'JeepersMedia', + creator_url: 'https://www.flickr.com/photos/39160147@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Video Games" by JeepersMedia is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/cc48287b-d071-47ff-b13e-c224ca984ab1/thumb/', + detail_url: 'http://localhost:49153/v1/images/cc48287b-d071-47ff-b13e-c224ca984ab1/', + related_url: 'http://localhost:49153/v1/images/cc48287b-d071-47ff-b13e-c224ca984ab1/related/', + unstable__sensitivity: [], + }, + { + id: '7af066af-da52-4966-b7ca-35d90e8eb433', + title: 'Video Games', + indexed_on: '2020-04-03T01:40:21.045938Z', + foreign_landing_url: 'https://www.flickr.com/photos/39160147@N03/13004941393', + url: 'https://live.staticflickr.com/7298/13004941393_474cd23345.jpg', + creator: 'JeepersMedia', + creator_url: 'https://www.flickr.com/photos/39160147@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Video Games" by JeepersMedia is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/7af066af-da52-4966-b7ca-35d90e8eb433/thumb/', + detail_url: 'http://localhost:49153/v1/images/7af066af-da52-4966-b7ca-35d90e8eb433/', + related_url: 'http://localhost:49153/v1/images/7af066af-da52-4966-b7ca-35d90e8eb433/related/', + unstable__sensitivity: [], + }, + { + id: '4dd0158f-6f60-4e86-9595-55b8b30f136f', + title: 'Video Games', + indexed_on: '2020-04-03T01:40:21.045938Z', + foreign_landing_url: 'https://www.flickr.com/photos/39160147@N03/13004944973', + url: 'https://live.staticflickr.com/7329/13004944973_c0193f950c.jpg', + creator: 'JeepersMedia', + creator_url: 'https://www.flickr.com/photos/39160147@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Video Games" by JeepersMedia is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/4dd0158f-6f60-4e86-9595-55b8b30f136f/thumb/', + detail_url: 'http://localhost:49153/v1/images/4dd0158f-6f60-4e86-9595-55b8b30f136f/', + related_url: 'http://localhost:49153/v1/images/4dd0158f-6f60-4e86-9595-55b8b30f136f/related/', + unstable__sensitivity: [], + }, + { + id: '35c08953-8b67-4690-a0d7-8d9fd295bacb', + title: 'Game Night', + indexed_on: '2018-11-08T01:45:17.652714Z', + foreign_landing_url: 'https://www.flickr.com/photos/46042146@N00/2844911324', + url: 'https://live.staticflickr.com/3262/2844911324_ca034817a0_b.jpg', + creator: 'Randy Son Of Robert', + creator_url: 'https://www.flickr.com/photos/46042146@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'board', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'settlersofcatan', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Game Night" by Randy Son Of Robert is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/35c08953-8b67-4690-a0d7-8d9fd295bacb/thumb/', + detail_url: 'http://localhost:49153/v1/images/35c08953-8b67-4690-a0d7-8d9fd295bacb/', + related_url: 'http://localhost:49153/v1/images/35c08953-8b67-4690-a0d7-8d9fd295bacb/related/', + unstable__sensitivity: [], + }, + { + id: '78374554-15a3-40af-95a6-ae087872377a', + title: 'Game', + indexed_on: '2020-04-24T14:45:32.109074Z', + foreign_landing_url: 'https://www.flickr.com/photos/49024304@N00/3533928276', + url: 'https://live.staticflickr.com/2143/3533928276_1022640ece_b.jpg', + creator: 'anyjazz65', + creator_url: 'https://www.flickr.com/photos/49024304@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'ajo65', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'barrels', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blogthmural20130722', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Game" by anyjazz65 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 681, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/78374554-15a3-40af-95a6-ae087872377a/thumb/', + detail_url: 'http://localhost:49153/v1/images/78374554-15a3-40af-95a6-ae087872377a/', + related_url: 'http://localhost:49153/v1/images/78374554-15a3-40af-95a6-ae087872377a/related/', + unstable__sensitivity: [], + }, + { + id: 'b7f628bd-fb42-4805-aa4c-91eeb66b739e', + title: 'Gaming', + indexed_on: '2020-04-04T04:41:18.745141Z', + foreign_landing_url: 'https://www.flickr.com/photos/27938098@N05/14227727019', + url: 'https://live.staticflickr.com/3908/14227727019_ffc8dabaf8_b.jpg', + creator: 'molinoa', + creator_url: 'https://www.flickr.com/photos/27938098@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'gaming', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lgbtq', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'love', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'super', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'business', + accuracy: 0.92425, + unstable__provider: 'clarifai', + }, + { + name: 'education', + accuracy: 0.90483, + unstable__provider: 'clarifai', + }, + { + name: 'text', + accuracy: 0.90792, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Gaming" by molinoa is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 576, + thumbnail: 'http://localhost:49153/v1/images/b7f628bd-fb42-4805-aa4c-91eeb66b739e/thumb/', + detail_url: 'http://localhost:49153/v1/images/b7f628bd-fb42-4805-aa4c-91eeb66b739e/', + related_url: 'http://localhost:49153/v1/images/b7f628bd-fb42-4805-aa4c-91eeb66b739e/related/', + unstable__sensitivity: [], + }, + { + id: '67065413-ebaa-4b50-8ee4-4629b078fc8a', + title: 'Video Games', + indexed_on: '2020-04-03T01:40:21.045938Z', + foreign_landing_url: 'https://www.flickr.com/photos/39160147@N03/13004788785', + url: 'https://live.staticflickr.com/3574/13004788785_208ab61a65_b.jpg', + creator: 'JeepersMedia', + creator_url: 'https://www.flickr.com/photos/39160147@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.97265, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.95438, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.96533, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.98483, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.91427, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Video Games" by JeepersMedia is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/67065413-ebaa-4b50-8ee4-4629b078fc8a/thumb/', + detail_url: 'http://localhost:49153/v1/images/67065413-ebaa-4b50-8ee4-4629b078fc8a/', + related_url: 'http://localhost:49153/v1/images/67065413-ebaa-4b50-8ee4-4629b078fc8a/related/', + unstable__sensitivity: [], + }, + { + id: '8bd0cd89-610a-48a8-af2a-51aeb98cdcf9', + title: 'Video Games', + indexed_on: '2020-04-03T01:40:21.045938Z', + foreign_landing_url: 'https://www.flickr.com/photos/39160147@N03/13004812675', + url: 'https://live.staticflickr.com/3216/13004812675_c40c0fd00e_b.jpg', + creator: 'JeepersMedia', + creator_url: 'https://www.flickr.com/photos/39160147@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.94784, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.90566, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.93879, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.92441, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.98331, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.91777, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Video Games" by JeepersMedia is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/8bd0cd89-610a-48a8-af2a-51aeb98cdcf9/thumb/', + detail_url: 'http://localhost:49153/v1/images/8bd0cd89-610a-48a8-af2a-51aeb98cdcf9/', + related_url: 'http://localhost:49153/v1/images/8bd0cd89-610a-48a8-af2a-51aeb98cdcf9/related/', + unstable__sensitivity: [], + }, + { + id: '96728710-81ad-44d9-a5f5-4ecec1bd9ff1', + title: 'Part 4: The History of Video Gaming Consoles 1972 - 2014', + indexed_on: '2020-04-04T08:13:30.957893Z', + foreign_landing_url: 'https://www.flickr.com/photos/123532517@N06/14482782276', + url: 'https://live.staticflickr.com/2917/14482782276_36c92ea5ed_b.jpg', + creator: 'iluvs1udk', + creator_url: 'https://www.flickr.com/photos/123532517@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '4', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'consoles', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'gaming', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'history', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'infographic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'microsoft', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'part', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sony', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Part 4: The History of Video Gaming Consoles 1972 - 2014" by iluvs1udk is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 591, + thumbnail: 'http://localhost:49153/v1/images/96728710-81ad-44d9-a5f5-4ecec1bd9ff1/thumb/', + detail_url: 'http://localhost:49153/v1/images/96728710-81ad-44d9-a5f5-4ecec1bd9ff1/', + related_url: 'http://localhost:49153/v1/images/96728710-81ad-44d9-a5f5-4ecec1bd9ff1/related/', + unstable__sensitivity: [], + }, + { + id: 'f5fa02fe-c20d-4934-83b5-a288a23f93a4', + title: 'Video Games', + indexed_on: '2020-04-03T01:40:21.045938Z', + foreign_landing_url: 'https://www.flickr.com/photos/39160147@N03/13004969343', + url: 'https://live.staticflickr.com/2154/13004969343_4ff42272b8_b.jpg', + creator: 'JeepersMedia', + creator_url: 'https://www.flickr.com/photos/39160147@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.94668, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.97724, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.91395, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.97934, + unstable__provider: 'clarifai', + }, + { + name: 'person', + accuracy: 0.90515, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.93051, + unstable__provider: 'clarifai', + }, + { + name: 'young', + accuracy: 0.91827, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Video Games" by JeepersMedia is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/f5fa02fe-c20d-4934-83b5-a288a23f93a4/thumb/', + detail_url: 'http://localhost:49153/v1/images/f5fa02fe-c20d-4934-83b5-a288a23f93a4/', + related_url: 'http://localhost:49153/v1/images/f5fa02fe-c20d-4934-83b5-a288a23f93a4/related/', + unstable__sensitivity: [], + }, + { + id: '5b65a038-3fbe-4824-90fe-ce905fcdf085', + title: 'Game On - Let the Race Begin', + indexed_on: '2020-04-04T15:45:26.079458Z', + foreign_landing_url: 'https://www.flickr.com/photos/29487672@N07/14534509559', + url: 'https://live.staticflickr.com/3866/14534509559_414f4786d8_b.jpg', + creator: 'Scott 97006', + creator_url: 'https://www.flickr.com/photos/29487672@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'boy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'boys', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fun', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'go', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lads', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'play', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'race', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'run', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'win', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Game On - Let the Race Begin" by Scott 97006 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 696, + thumbnail: 'http://localhost:49153/v1/images/5b65a038-3fbe-4824-90fe-ce905fcdf085/thumb/', + detail_url: 'http://localhost:49153/v1/images/5b65a038-3fbe-4824-90fe-ce905fcdf085/', + related_url: 'http://localhost:49153/v1/images/5b65a038-3fbe-4824-90fe-ce905fcdf085/related/', + unstable__sensitivity: [], + }, + { + id: '3b8cad77-2a6c-4042-ba67-c65922e39159', + title: 'Video Games', + indexed_on: '2020-04-03T01:40:21.045938Z', + foreign_landing_url: 'https://www.flickr.com/photos/39160147@N03/13005197414', + url: 'https://live.staticflickr.com/3695/13005197414_8ff3bf476a_b.jpg', + creator: 'JeepersMedia', + creator_url: 'https://www.flickr.com/photos/39160147@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.95578, + unstable__provider: 'clarifai', + }, + { + name: 'business', + accuracy: 0.95763, + unstable__provider: 'clarifai', + }, + { + name: 'commerce', + accuracy: 0.9006, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.92811, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.94106, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.92458, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.98167, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.91691, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Video Games" by JeepersMedia is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/3b8cad77-2a6c-4042-ba67-c65922e39159/thumb/', + detail_url: 'http://localhost:49153/v1/images/3b8cad77-2a6c-4042-ba67-c65922e39159/', + related_url: 'http://localhost:49153/v1/images/3b8cad77-2a6c-4042-ba67-c65922e39159/related/', + unstable__sensitivity: [], + }, + { + id: 'ea836e0a-e871-4cf3-9b54-69c239814752', + title: 'chess game', + indexed_on: '2020-04-15T14:11:29.189299Z', + foreign_landing_url: 'https://www.flickr.com/photos/53133240@N00/5347237755', + url: 'https://live.staticflickr.com/5050/5347237755_33539acea3_b.jpg', + creator: 'Muffet', + creator_url: 'https://www.flickr.com/photos/53133240@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'boxboroughma', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'chess', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'library', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sargeantmemoriallibrary', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'board game', + accuracy: 0.99541, + unstable__provider: 'clarifai', + }, + { + name: 'chess', + accuracy: 0.99999, + unstable__provider: 'clarifai', + }, + { + name: 'chess rook', + accuracy: 0.99896, + unstable__provider: 'clarifai', + }, + { + name: 'competition', + accuracy: 0.98834, + unstable__provider: 'clarifai', + }, + { + name: 'decision', + accuracy: 0.99451, + unstable__provider: 'clarifai', + }, + { + name: 'game', + accuracy: 0.98438, + unstable__provider: 'clarifai', + }, + { + name: 'gameplan', + accuracy: 0.9999, + unstable__provider: 'clarifai', + }, + { + name: 'intelligence', + accuracy: 0.98969, + unstable__provider: 'clarifai', + }, + { + name: 'knight', + accuracy: 0.99922, + unstable__provider: 'clarifai', + }, + { + name: 'leisure', + accuracy: 0.98956, + unstable__provider: 'clarifai', + }, + { + name: 'mate', + accuracy: 0.99919, + unstable__provider: 'clarifai', + }, + { + name: 'move', + accuracy: 0.97386, + unstable__provider: 'clarifai', + }, + { + name: 'pawn', + accuracy: 0.99971, + unstable__provider: 'clarifai', + }, + { + name: 'piece', + accuracy: 0.97352, + unstable__provider: 'clarifai', + }, + { + name: 'queen', + accuracy: 0.99962, + unstable__provider: 'clarifai', + }, + { + name: 'skirmish', + accuracy: 0.99426, + unstable__provider: 'clarifai', + }, + { + name: 'strategic', + accuracy: 0.99785, + unstable__provider: 'clarifai', + }, + { + name: 'tactic', + accuracy: 0.98785, + unstable__provider: 'clarifai', + }, + { + name: 'victory', + accuracy: 0.99641, + unstable__provider: 'clarifai', + }, + { + name: 'win', + accuracy: 0.99138, + unstable__provider: 'clarifai', + }, + ], + attribution: '"chess game" by Muffet is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 682, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/ea836e0a-e871-4cf3-9b54-69c239814752/thumb/', + detail_url: 'http://localhost:49153/v1/images/ea836e0a-e871-4cf3-9b54-69c239814752/', + related_url: 'http://localhost:49153/v1/images/ea836e0a-e871-4cf3-9b54-69c239814752/related/', + unstable__sensitivity: [], + }, + { + id: 'e7d06fab-b50e-4a8d-8ae9-5a88df998014', + title: '1983 Jungle Adventure / Woodman Hand-Held Game', + indexed_on: '2020-04-24T18:18:33.528037Z', + foreign_landing_url: 'https://www.flickr.com/photos/83346641@N00/3594710082', + url: 'https://live.staticflickr.com/3660/3594710082_4e88bdf6dd_b.jpg', + creator: 'JD Hancock', + creator_url: 'https://www.flickr.com/photos/83346641@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'cc', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'galleried', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'image', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'inkitchen', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jdhancock', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jdshouseofmiscellany', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jungleadventure', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'masudaya', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nogeo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'photo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'picture', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'playtime', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'toy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'videogame', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'videogames', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'woodman', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'yellow', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'business', + accuracy: 0.9054, + unstable__provider: 'clarifai', + }, + { + name: 'display', + accuracy: 0.97442, + unstable__provider: 'clarifai', + }, + { + name: 'equipment', + accuracy: 0.91017, + unstable__provider: 'clarifai', + }, + { + name: 'technology', + accuracy: 0.95182, + unstable__provider: 'clarifai', + }, + ], + attribution: '"1983 Jungle Adventure / Woodman Hand-Held Game" by JD Hancock is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 767, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/e7d06fab-b50e-4a8d-8ae9-5a88df998014/thumb/', + detail_url: 'http://localhost:49153/v1/images/e7d06fab-b50e-4a8d-8ae9-5a88df998014/', + related_url: 'http://localhost:49153/v1/images/e7d06fab-b50e-4a8d-8ae9-5a88df998014/related/', + unstable__sensitivity: [], + }, + { + id: 'e435ab14-ebfd-4a33-9f62-cfa06734de32', + title: 'Vectrex: vector gaming goodness!', + indexed_on: '2020-04-27T19:35:32.881080Z', + foreign_landing_url: 'https://www.flickr.com/photos/35448539@N00/2380594010', + url: 'https://live.staticflickr.com/3084/2380594010_0a8d469074_b.jpg', + creator: 'blakespot', + creator_url: 'https://www.flickr.com/photos/35448539@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'computer', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'console', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'gaming', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hardware', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'o2', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'retro', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sgi', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'business', + accuracy: 0.96693, + unstable__provider: 'clarifai', + }, + { + name: 'computer', + accuracy: 0.98634, + unstable__provider: 'clarifai', + }, + { + name: 'data', + accuracy: 0.90949, + unstable__provider: 'clarifai', + }, + { + name: 'electronics', + accuracy: 0.96465, + unstable__provider: 'clarifai', + }, + { + name: 'equipment', + accuracy: 0.90802, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.94948, + unstable__provider: 'clarifai', + }, + { + name: 'internet', + accuracy: 0.94843, + unstable__provider: 'clarifai', + }, + { + name: 'laptop', + accuracy: 0.90063, + unstable__provider: 'clarifai', + }, + { + name: 'screen', + accuracy: 0.9443, + unstable__provider: 'clarifai', + }, + { + name: 'technology', + accuracy: 0.99143, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Vectrex: vector gaming goodness!" by blakespot is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/e435ab14-ebfd-4a33-9f62-cfa06734de32/thumb/', + detail_url: 'http://localhost:49153/v1/images/e435ab14-ebfd-4a33-9f62-cfa06734de32/', + related_url: 'http://localhost:49153/v1/images/e435ab14-ebfd-4a33-9f62-cfa06734de32/related/', + unstable__sensitivity: [], + }, + { + id: '9c86d3b0-b4d7-47d5-9996-e89c920b1e18', + title: 'Beluga Hunting Game', + indexed_on: '2016-11-16T21:12:28.146815Z', + foreign_landing_url: 'https://www.flickr.com/photos/31856336@N03/6317159792', + url: 'https://live.staticflickr.com/6050/6317159792_64909f1d8f_b.jpg', + creator: 'subarcticmike', + creator_url: 'https://www.flickr.com/photos/31856336@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2011', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'arctic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'artifact', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'arviajuaq', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'arviat', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'beluga', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'canada', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'geotagged', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'glaciated', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'glaciation', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hudsonbay', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hunting', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'inuit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kayaks', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kivalliq', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nunavut', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'permafrost', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plant', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rock', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sentryisland', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'subarcticmike', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tundra', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'environment', + accuracy: 0.9527, + unstable__provider: 'clarifai', + }, + { + name: 'grass', + accuracy: 0.937, + unstable__provider: 'clarifai', + }, + { + name: 'landscape', + accuracy: 0.9658, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.99256, + unstable__provider: 'clarifai', + }, + { + name: 'outdoors', + accuracy: 0.95727, + unstable__provider: 'clarifai', + }, + { + name: 'rock', + accuracy: 0.98862, + unstable__provider: 'clarifai', + }, + { + name: 'scene', + accuracy: 0.92939, + unstable__provider: 'clarifai', + }, + { + name: 'stone', + accuracy: 0.98894, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.94022, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.92076, + unstable__provider: 'clarifai', + }, + { + name: 'water', + accuracy: 0.96096, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Beluga Hunting Game" by subarcticmike is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/9c86d3b0-b4d7-47d5-9996-e89c920b1e18/thumb/', + detail_url: 'http://localhost:49153/v1/images/9c86d3b0-b4d7-47d5-9996-e89c920b1e18/', + related_url: 'http://localhost:49153/v1/images/9c86d3b0-b4d7-47d5-9996-e89c920b1e18/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=games_keep-alive.json5 b/frontend/test/tapes/search/images/q=games_keep-alive.json5 new file mode 100644 index 00000000000..f77d76567b3 --- /dev/null +++ b/frontend/test/tapes/search/images/q=games_keep-alive.json5 @@ -0,0 +1,1136 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:09.802Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=games', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:09 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '18', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '195', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + 'b72dc619-04f4-4006-a614-2633a548c4b0', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1148', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:01 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d3e4c84274b-ADL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: '9380b203-4eb2-467e-a600-278837a7874e', + title: 'Games', + indexed_on: '2020-04-04T23:11:22.753756Z', + foreign_landing_url: 'https://www.flickr.com/photos/85714479@N00/14948886566', + url: 'https://live.staticflickr.com/3887/14948886566_7f606b520a_b.jpg', + creator: 'Ian D', + creator_url: 'https://www.flickr.com/photos/85714479@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'consoles', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'gaming', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pc', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Games" by Ian D is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/9380b203-4eb2-467e-a600-278837a7874e/thumb/', + detail_url: 'http://localhost:49153/v1/images/9380b203-4eb2-467e-a600-278837a7874e/', + related_url: 'http://localhost:49153/v1/images/9380b203-4eb2-467e-a600-278837a7874e/related/', + unstable__sensitivity: [], + }, + { + id: '2d6881f0-0026-442e-9735-13760fc43100', + title: 'games', + indexed_on: '2020-04-15T19:12:31.484552Z', + foreign_landing_url: 'https://www.flickr.com/photos/18090920@N07/5442733913', + url: 'https://live.staticflickr.com/4139/5442733913_a2b374fdff.jpg', + creator: 'Sean MacEntee', + creator_url: 'https://www.flickr.com/photos/18090920@N07', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"games" by Sean MacEntee is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 167, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/2d6881f0-0026-442e-9735-13760fc43100/thumb/', + detail_url: 'http://localhost:49153/v1/images/2d6881f0-0026-442e-9735-13760fc43100/', + related_url: 'http://localhost:49153/v1/images/2d6881f0-0026-442e-9735-13760fc43100/related/', + unstable__sensitivity: [], + }, + { + id: '5769cc1e-0780-445d-8224-3119c7eec246', + title: 'The game', + indexed_on: '2020-02-28T00:42:06.029189Z', + foreign_landing_url: 'https://www.flickr.com/photos/12836528@N00/16753968686', + url: 'https://live.staticflickr.com/8739/16753968686_9859983d9d_b.jpg', + creator: 'kevin dooley', + creator_url: 'https://www.flickr.com/photos/12836528@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kowa', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"The game" by kevin dooley is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/5769cc1e-0780-445d-8224-3119c7eec246/thumb/', + detail_url: 'http://localhost:49153/v1/images/5769cc1e-0780-445d-8224-3119c7eec246/', + related_url: 'http://localhost:49153/v1/images/5769cc1e-0780-445d-8224-3119c7eec246/related/', + unstable__sensitivity: [], + }, + { + id: '08f54b9e-a2ea-4872-b5d2-982f84709df2', + title: 'Video Games', + indexed_on: '2020-04-03T01:40:21.045938Z', + foreign_landing_url: 'https://www.flickr.com/photos/39160147@N03/13004789275', + url: 'https://live.staticflickr.com/2438/13004789275_212609f629_b.jpg', + creator: 'JeepersMedia', + creator_url: 'https://www.flickr.com/photos/39160147@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Video Games" by JeepersMedia is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/08f54b9e-a2ea-4872-b5d2-982f84709df2/thumb/', + detail_url: 'http://localhost:49153/v1/images/08f54b9e-a2ea-4872-b5d2-982f84709df2/', + related_url: 'http://localhost:49153/v1/images/08f54b9e-a2ea-4872-b5d2-982f84709df2/related/', + unstable__sensitivity: [], + }, + { + id: 'cc48287b-d071-47ff-b13e-c224ca984ab1', + title: 'Video Games', + indexed_on: '2020-04-03T01:40:21.045938Z', + foreign_landing_url: 'https://www.flickr.com/photos/39160147@N03/13005228904', + url: 'https://live.staticflickr.com/3182/13005228904_7c937a0634_b.jpg', + creator: 'JeepersMedia', + creator_url: 'https://www.flickr.com/photos/39160147@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Video Games" by JeepersMedia is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/cc48287b-d071-47ff-b13e-c224ca984ab1/thumb/', + detail_url: 'http://localhost:49153/v1/images/cc48287b-d071-47ff-b13e-c224ca984ab1/', + related_url: 'http://localhost:49153/v1/images/cc48287b-d071-47ff-b13e-c224ca984ab1/related/', + unstable__sensitivity: [], + }, + { + id: '6a239f7a-b53e-485a-a7a1-738a60c8c306', + title: 'Game', + indexed_on: '2020-04-18T02:02:22.356100Z', + foreign_landing_url: 'https://www.flickr.com/photos/80546354@N00/6371863511', + url: 'https://live.staticflickr.com/6105/6371863511_0d3d4a842f_b.jpg', + creator: 'Howard Dickins', + creator_url: 'https://www.flickr.com/photos/80546354@N00', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'thingaweek', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Game" by Howard Dickins is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 614, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/6a239f7a-b53e-485a-a7a1-738a60c8c306/thumb/', + detail_url: 'http://localhost:49153/v1/images/6a239f7a-b53e-485a-a7a1-738a60c8c306/', + related_url: 'http://localhost:49153/v1/images/6a239f7a-b53e-485a-a7a1-738a60c8c306/related/', + unstable__sensitivity: [], + }, + { + id: '7af066af-da52-4966-b7ca-35d90e8eb433', + title: 'Video Games', + indexed_on: '2020-04-03T01:40:21.045938Z', + foreign_landing_url: 'https://www.flickr.com/photos/39160147@N03/13004941393', + url: 'https://live.staticflickr.com/7298/13004941393_474cd23345.jpg', + creator: 'JeepersMedia', + creator_url: 'https://www.flickr.com/photos/39160147@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Video Games" by JeepersMedia is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/7af066af-da52-4966-b7ca-35d90e8eb433/thumb/', + detail_url: 'http://localhost:49153/v1/images/7af066af-da52-4966-b7ca-35d90e8eb433/', + related_url: 'http://localhost:49153/v1/images/7af066af-da52-4966-b7ca-35d90e8eb433/related/', + unstable__sensitivity: [], + }, + { + id: '4dd0158f-6f60-4e86-9595-55b8b30f136f', + title: 'Video Games', + indexed_on: '2020-04-03T01:40:21.045938Z', + foreign_landing_url: 'https://www.flickr.com/photos/39160147@N03/13004944973', + url: 'https://live.staticflickr.com/7329/13004944973_c0193f950c.jpg', + creator: 'JeepersMedia', + creator_url: 'https://www.flickr.com/photos/39160147@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Video Games" by JeepersMedia is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/4dd0158f-6f60-4e86-9595-55b8b30f136f/thumb/', + detail_url: 'http://localhost:49153/v1/images/4dd0158f-6f60-4e86-9595-55b8b30f136f/', + related_url: 'http://localhost:49153/v1/images/4dd0158f-6f60-4e86-9595-55b8b30f136f/related/', + unstable__sensitivity: [], + }, + { + id: '5043cf6f-bfc3-4331-b315-e8387b4b8134', + title: 'game=life juego=vida', + indexed_on: '2020-05-03T23:54:27.217895Z', + foreign_landing_url: 'https://www.flickr.com/photos/73486964@N00/2125295316', + url: 'https://live.staticflickr.com/2037/2125295316_8435e41e9b_b.jpg', + creator: 'egoten', + creator_url: 'https://www.flickr.com/photos/73486964@N00', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"game=life juego=vida" by egoten is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 779, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/5043cf6f-bfc3-4331-b315-e8387b4b8134/thumb/', + detail_url: 'http://localhost:49153/v1/images/5043cf6f-bfc3-4331-b315-e8387b4b8134/', + related_url: 'http://localhost:49153/v1/images/5043cf6f-bfc3-4331-b315-e8387b4b8134/related/', + unstable__sensitivity: [], + }, + { + id: 'b325f5f7-68c6-4b3e-bc01-a80637071184', + title: 'GARC the game.', + indexed_on: '2020-04-04T15:07:23.009200Z', + foreign_landing_url: 'https://www.flickr.com/photos/43378406@N08/14509033418', + url: 'https://live.staticflickr.com/3884/14509033418_789bdc4da6_b.jpg', + creator: 'Si-MOCs', + creator_url: 'https://www.flickr.com/photos/43378406@N08', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'board', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'garc', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"GARC the game." by Si-MOCs is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/b325f5f7-68c6-4b3e-bc01-a80637071184/thumb/', + detail_url: 'http://localhost:49153/v1/images/b325f5f7-68c6-4b3e-bc01-a80637071184/', + related_url: 'http://localhost:49153/v1/images/b325f5f7-68c6-4b3e-bc01-a80637071184/related/', + unstable__sensitivity: [], + }, + { + id: '35c08953-8b67-4690-a0d7-8d9fd295bacb', + title: 'Game Night', + indexed_on: '2018-11-08T01:45:17.652714Z', + foreign_landing_url: 'https://www.flickr.com/photos/46042146@N00/2844911324', + url: 'https://live.staticflickr.com/3262/2844911324_ca034817a0_b.jpg', + creator: 'Randy Son Of Robert', + creator_url: 'https://www.flickr.com/photos/46042146@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'board', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'settlersofcatan', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Game Night" by Randy Son Of Robert is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/35c08953-8b67-4690-a0d7-8d9fd295bacb/thumb/', + detail_url: 'http://localhost:49153/v1/images/35c08953-8b67-4690-a0d7-8d9fd295bacb/', + related_url: 'http://localhost:49153/v1/images/35c08953-8b67-4690-a0d7-8d9fd295bacb/related/', + unstable__sensitivity: [], + }, + { + id: 'b96a2068-b38e-483d-a760-8be7c158bde2', + title: 'Game', + indexed_on: '2018-11-07T20:03:57.748699Z', + foreign_landing_url: 'https://www.flickr.com/photos/20241671@N00/411554446', + url: 'https://live.staticflickr.com/128/411554446_58936571ed_b.jpg', + creator: 'jonathan_moreau', + creator_url: 'https://www.flickr.com/photos/20241671@N00', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'dallas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'stars', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Game" by jonathan_moreau is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/b96a2068-b38e-483d-a760-8be7c158bde2/thumb/', + detail_url: 'http://localhost:49153/v1/images/b96a2068-b38e-483d-a760-8be7c158bde2/', + related_url: 'http://localhost:49153/v1/images/b96a2068-b38e-483d-a760-8be7c158bde2/related/', + unstable__sensitivity: [], + }, + { + id: 'c081ebf0-d216-4a2a-97e9-cc92458918f0', + title: 'Games Day 2011', + indexed_on: '2020-04-15T18:47:19.998637Z', + foreign_landing_url: 'https://www.flickr.com/photos/22974618@N00/5437336536', + url: 'https://live.staticflickr.com/5296/5437336536_b8e0eb7df0_b.jpg', + creator: 'Sergey Galyonkin', + creator_url: 'https://www.flickr.com/photos/22974618@N00', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'battleforbritain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cybersport', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'il2', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kiev', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kyiv', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'thewitcher2', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'u0431u0438u0442u0432u0430u0437u0430u0431u0440u0438u0442u0430u043du0438u044e', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ukraine', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Games Day 2011" by Sergey Galyonkin is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 683, + thumbnail: 'http://localhost:49153/v1/images/c081ebf0-d216-4a2a-97e9-cc92458918f0/thumb/', + detail_url: 'http://localhost:49153/v1/images/c081ebf0-d216-4a2a-97e9-cc92458918f0/', + related_url: 'http://localhost:49153/v1/images/c081ebf0-d216-4a2a-97e9-cc92458918f0/related/', + unstable__sensitivity: [], + }, + { + id: '9f72087f-4e44-402e-9847-8c5ac821040e', + title: 'Games Day 2011', + indexed_on: '2020-04-15T18:47:19.998637Z', + foreign_landing_url: 'https://www.flickr.com/photos/22974618@N00/5437348728', + url: 'https://live.staticflickr.com/5300/5437348728_93e3ce87ac_b.jpg', + creator: 'Sergey Galyonkin', + creator_url: 'https://www.flickr.com/photos/22974618@N00', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '1csoftclub', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'battleforbritain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cybersport', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'il2', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kiev', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kyiv', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'thewitcher2', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'u0431u0438u0442u0432u0430u0437u0430u0431u0440u0438u0442u0430u043du0438u044e', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ukraine', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Games Day 2011" by Sergey Galyonkin is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/9f72087f-4e44-402e-9847-8c5ac821040e/thumb/', + detail_url: 'http://localhost:49153/v1/images/9f72087f-4e44-402e-9847-8c5ac821040e/', + related_url: 'http://localhost:49153/v1/images/9f72087f-4e44-402e-9847-8c5ac821040e/related/', + unstable__sensitivity: [], + }, + { + id: '1cbb3a6f-87c3-4836-9cd4-a345f7053bdd', + title: 'game', + indexed_on: '2020-05-06T02:34:29.125464Z', + foreign_landing_url: 'https://www.flickr.com/photos/56739839@N00/213189325', + url: 'https://live.staticflickr.com/65/213189325_8b68267348_b.jpg', + creator: 'elvissa', + creator_url: 'https://www.flickr.com/photos/56739839@N00', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'msh0806', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'msh080616', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'scrabble', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"game" by elvissa is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 681, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/1cbb3a6f-87c3-4836-9cd4-a345f7053bdd/thumb/', + detail_url: 'http://localhost:49153/v1/images/1cbb3a6f-87c3-4836-9cd4-a345f7053bdd/', + related_url: 'http://localhost:49153/v1/images/1cbb3a6f-87c3-4836-9cd4-a345f7053bdd/related/', + unstable__sensitivity: [], + }, + { + id: '4ba930af-a0fc-49a0-b40e-9eff5cfdb1ec', + title: 'Rare video game peripherals', + indexed_on: '2020-04-21T10:41:34.221913Z', + foreign_landing_url: 'https://www.flickr.com/photos/48564837@N05/4529592666', + url: 'https://live.staticflickr.com/4037/4529592666_dfc3a00101_b.jpg', + creator: 'Generic Brand Productions', + creator_url: 'https://www.flickr.com/photos/48564837@N05', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'peripherals', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rare', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'video', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Rare video game peripherals" by Generic Brand Productions is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 702, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/4ba930af-a0fc-49a0-b40e-9eff5cfdb1ec/thumb/', + detail_url: 'http://localhost:49153/v1/images/4ba930af-a0fc-49a0-b40e-9eff5cfdb1ec/', + related_url: 'http://localhost:49153/v1/images/4ba930af-a0fc-49a0-b40e-9eff5cfdb1ec/related/', + unstable__sensitivity: [], + }, + { + id: 'd69e27b0-cafb-4ca5-af8a-d698ccaa0687', + title: 'waiting game 2', + indexed_on: '2020-05-02T22:56:27.995015Z', + foreign_landing_url: 'https://www.flickr.com/photos/8094551@N03/579162156', + url: 'https://live.staticflickr.com/1357/579162156_38f52cf018.jpg', + creator: 'flavijus', + creator_url: 'https://www.flickr.com/photos/8094551@N03', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'linescurves', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'theme', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waiting', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"waiting game 2" by flavijus is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 245, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/d69e27b0-cafb-4ca5-af8a-d698ccaa0687/thumb/', + detail_url: 'http://localhost:49153/v1/images/d69e27b0-cafb-4ca5-af8a-d698ccaa0687/', + related_url: 'http://localhost:49153/v1/images/d69e27b0-cafb-4ca5-af8a-d698ccaa0687/related/', + unstable__sensitivity: [], + }, + { + id: 'bb7c2584-4230-4c79-ab97-61ff47dfb149', + title: 'Games', + indexed_on: '2018-11-07T20:03:57.748699Z', + foreign_landing_url: 'https://www.flickr.com/photos/32365294@N00/141256473', + url: 'https://live.staticflickr.com/51/141256473_39af52a550.jpg', + creator: 'Adam Mulligan', + creator_url: 'https://www.flickr.com/photos/32365294@N00', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'crap', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'largest', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pile', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Games" by Adam Mulligan is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 213, + thumbnail: 'http://localhost:49153/v1/images/bb7c2584-4230-4c79-ab97-61ff47dfb149/thumb/', + detail_url: 'http://localhost:49153/v1/images/bb7c2584-4230-4c79-ab97-61ff47dfb149/', + related_url: 'http://localhost:49153/v1/images/bb7c2584-4230-4c79-ab97-61ff47dfb149/related/', + unstable__sensitivity: [], + }, + { + id: 'f88a9df0-eafd-47da-85de-43a65cfa5961', + title: 'Games Day 2011', + indexed_on: '2020-04-15T18:47:19.998637Z', + foreign_landing_url: 'https://www.flickr.com/photos/22974618@N00/5437345780', + url: 'https://live.staticflickr.com/4081/5437345780_6840048f3c_b.jpg', + creator: 'Sergey Galyonkin', + creator_url: 'https://www.flickr.com/photos/22974618@N00', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '1csoftclub', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'battleforbritain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cybersport', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'games', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'gamesday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'il2', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kiev', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kyiv', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'thewitcher2', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'u0431u0438u0442u0432u0430u0437u0430u0431u0440u0438u0442u0430u043du0438u044e', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ukraine', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Games Day 2011" by Sergey Galyonkin is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/f88a9df0-eafd-47da-85de-43a65cfa5961/thumb/', + detail_url: 'http://localhost:49153/v1/images/f88a9df0-eafd-47da-85de-43a65cfa5961/', + related_url: 'http://localhost:49153/v1/images/f88a9df0-eafd-47da-85de-43a65cfa5961/related/', + unstable__sensitivity: [], + }, + { + id: '9f7c9fc7-52c3-48b3-95a4-cff16c1d65c2', + title: 'iTunes Album Art Game 2', + indexed_on: '2020-05-07T13:16:22.978745Z', + foreign_landing_url: 'https://www.flickr.com/photos/33175256@N00/17130986', + url: 'https://live.staticflickr.com/13/17130986_f1c38c12bd_b.jpg', + creator: 'tupton', + creator_url: 'https://www.flickr.com/photos/33175256@N00', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'album', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'albumart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'game', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'itunes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'music', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"iTunes Album Art Game 2" by tupton is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/9f7c9fc7-52c3-48b3-95a4-cff16c1d65c2/thumb/', + detail_url: 'http://localhost:49153/v1/images/9f7c9fc7-52c3-48b3-95a4-cff16c1d65c2/', + related_url: 'http://localhost:49153/v1/images/9f7c9fc7-52c3-48b3-95a4-cff16c1d65c2/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=graphs&license=by&extension=jpg&source=flickr_keep-alive.json5 b/frontend/test/tapes/search/images/q=graphs&license=by&extension=jpg&source=flickr_keep-alive.json5 new file mode 100644 index 00000000000..3c9bb0750aa --- /dev/null +++ b/frontend/test/tapes/search/images/q=graphs&license=by&extension=jpg&source=flickr_keep-alive.json5 @@ -0,0 +1,1894 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:11.789Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=graphs&license=by&extension=jpg&source=flickr', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:11 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '174', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '63ddc7f9-ebcd-476d-a88d-9d2c53963c12', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1148', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:03 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d4abf2f274b-ADL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: '7db8f1f8-fc50-4700-9263-1ccfa39e2254', + title: 'Conversation Graph', + indexed_on: '2020-04-24T03:31:30.926745Z', + foreign_landing_url: 'https://www.flickr.com/photos/58428285@N00/3337399057', + url: 'https://live.staticflickr.com/3605/3337399057_b6bd7ac138.jpg', + creator: 'cambodia4kidsorg', + creator_url: 'https://www.flickr.com/photos/58428285@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'conversation', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'participate', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Conversation Graph" by cambodia4kidsorg is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 380, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/7db8f1f8-fc50-4700-9263-1ccfa39e2254/thumb/', + detail_url: 'http://localhost:49153/v1/images/7db8f1f8-fc50-4700-9263-1ccfa39e2254/', + related_url: 'http://localhost:49153/v1/images/7db8f1f8-fc50-4700-9263-1ccfa39e2254/related/', + unstable__sensitivity: [], + }, + { + id: 'b79a33a3-ebcc-447c-802a-b33e30fe217a', + title: 'Social Media Marketing ROI Graph', + indexed_on: '2018-12-21T12:34:40.573425Z', + foreign_landing_url: 'https://www.flickr.com/photos/33524159@N00/6226402138', + url: 'https://live.staticflickr.com/6044/6226402138_061f4a67ac_b.jpg', + creator: "Alan O'Rourke", + creator_url: 'https://www.flickr.com/photos/33524159@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'coins', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marketing', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'money', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'roi', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socialmedia', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Social Media Marketing ROI Graph" by Alan O\'Rourke is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/b79a33a3-ebcc-447c-802a-b33e30fe217a/thumb/', + detail_url: 'http://localhost:49153/v1/images/b79a33a3-ebcc-447c-802a-b33e30fe217a/', + related_url: 'http://localhost:49153/v1/images/b79a33a3-ebcc-447c-802a-b33e30fe217a/related/', + unstable__sensitivity: [], + }, + { + id: '2c6513d6-c838-4457-bfdf-e638dab58be7', + title: '20120227-NodeXL-Twitter-#NICAR network graph', + indexed_on: '2020-04-11T12:50:28.990216Z', + foreign_landing_url: 'https://www.flickr.com/photos/49503165485@N01/6937396055', + url: 'https://live.staticflickr.com/7177/6937396055_b483ff0d0e_b.jpg', + creator: 'Marc_Smith', + creator_url: 'https://www.flickr.com/photos/49503165485@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'computerassistedreporting', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'network', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nicar', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nicar2012', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nodexl', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socialmedia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'twitter', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"20120227-NodeXL-Twitter-#NICAR network graph" by Marc_Smith is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/2c6513d6-c838-4457-bfdf-e638dab58be7/thumb/', + detail_url: 'http://localhost:49153/v1/images/2c6513d6-c838-4457-bfdf-e638dab58be7/', + related_url: 'http://localhost:49153/v1/images/2c6513d6-c838-4457-bfdf-e638dab58be7/related/', + unstable__sensitivity: [], + }, + { + id: '36ce630c-7600-4b13-89eb-f11f9748f635', + title: '20120129-NodeXL-Twitter-educon network graph', + indexed_on: '2020-04-10T11:31:29.972328Z', + foreign_landing_url: 'https://www.flickr.com/photos/49503165485@N01/6785112263', + url: 'https://live.staticflickr.com/7018/6785112263_561350d914_b.jpg', + creator: 'Marc_Smith', + creator_url: 'https://www.flickr.com/photos/49503165485@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'chart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'educon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'map', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'network', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nodexl', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sna', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socialmedia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"20120129-NodeXL-Twitter-educon network graph" by Marc_Smith is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/36ce630c-7600-4b13-89eb-f11f9748f635/thumb/', + detail_url: 'http://localhost:49153/v1/images/36ce630c-7600-4b13-89eb-f11f9748f635/', + related_url: 'http://localhost:49153/v1/images/36ce630c-7600-4b13-89eb-f11f9748f635/related/', + unstable__sensitivity: [], + }, + { + id: '94a49695-594f-49d2-8f24-314ffdbedfb8', + title: 'circle graph of traffic', + indexed_on: '2020-04-24T01:35:31.714351Z', + foreign_landing_url: 'https://www.flickr.com/photos/94168846@N00/3305542857', + url: 'https://live.staticflickr.com/3266/3305542857_f3e85e8cda.jpg', + creator: 'jimmiehomeschoolmom', + creator_url: 'https://www.flickr.com/photos/94168846@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'circlegraph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'homeschool', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'math', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'business', + accuracy: 0.96143, + unstable__provider: 'clarifai', + }, + { + name: 'creativity', + accuracy: 0.91451, + unstable__provider: 'clarifai', + }, + { + name: 'data', + accuracy: 0.94114, + unstable__provider: 'clarifai', + }, + { + name: 'design', + accuracy: 0.92876, + unstable__provider: 'clarifai', + }, + { + name: 'diagram', + accuracy: 0.99759, + unstable__provider: 'clarifai', + }, + { + name: 'graph', + accuracy: 0.99626, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.98888, + unstable__provider: 'clarifai', + }, + { + name: 'image', + accuracy: 0.90415, + unstable__provider: 'clarifai', + }, + { + name: 'pie', + accuracy: 0.95642, + unstable__provider: 'clarifai', + }, + { + name: 'presentation', + accuracy: 0.96193, + unstable__provider: 'clarifai', + }, + { + name: 'progress', + accuracy: 0.98695, + unstable__provider: 'clarifai', + }, + { + name: 'round', + accuracy: 0.98732, + unstable__provider: 'clarifai', + }, + { + name: 'shape', + accuracy: 0.94886, + unstable__provider: 'clarifai', + }, + { + name: 'statistics', + accuracy: 0.96206, + unstable__provider: 'clarifai', + }, + { + name: 'summary', + accuracy: 0.91854, + unstable__provider: 'clarifai', + }, + { + name: 'vector', + accuracy: 0.98183, + unstable__provider: 'clarifai', + }, + { + name: 'written report', + accuracy: 0.97441, + unstable__provider: 'clarifai', + }, + ], + attribution: '"circle graph of traffic" by jimmiehomeschoolmom is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 386, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/94a49695-594f-49d2-8f24-314ffdbedfb8/thumb/', + detail_url: 'http://localhost:49153/v1/images/94a49695-594f-49d2-8f24-314ffdbedfb8/', + related_url: 'http://localhost:49153/v1/images/94a49695-594f-49d2-8f24-314ffdbedfb8/related/', + unstable__sensitivity: [], + }, + { + id: '2e2e5469-0814-432e-b742-ea89cf3b73e8', + title: '20120226-NodeXL-Twitter-strataconf network graph large', + indexed_on: '2019-04-18T12:45:58.000782Z', + foreign_landing_url: 'https://www.flickr.com/photos/49503165485@N01/6934127903', + url: 'https://live.staticflickr.com/7041/6934127903_41e46c23c6_b.jpg', + creator: 'Marc_Smith', + creator_url: 'https://www.flickr.com/photos/49503165485@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'chart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'eventgraph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'map', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'network', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nodexl', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sna', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socialmedia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'strataconf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'twitter', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"20120226-NodeXL-Twitter-strataconf network graph large" by Marc_Smith is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/2e2e5469-0814-432e-b742-ea89cf3b73e8/thumb/', + detail_url: 'http://localhost:49153/v1/images/2e2e5469-0814-432e-b742-ea89cf3b73e8/', + related_url: 'http://localhost:49153/v1/images/2e2e5469-0814-432e-b742-ea89cf3b73e8/related/', + unstable__sensitivity: [], + }, + { + id: '93d73818-0552-4aa5-a51b-cd6c189ce416', + title: 'graph (2)', + indexed_on: '2020-04-11T18:14:28.791564Z', + foreign_landing_url: 'https://www.flickr.com/photos/36096710@N05/6971476389', + url: 'https://live.staticflickr.com/7064/6971476389_3913efa04d.jpg', + creator: 'NSS22', + creator_url: 'https://www.flickr.com/photos/36096710@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'graphs', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"graph (2)" by NSS22 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 386, + thumbnail: 'http://localhost:49153/v1/images/93d73818-0552-4aa5-a51b-cd6c189ce416/thumb/', + detail_url: 'http://localhost:49153/v1/images/93d73818-0552-4aa5-a51b-cd6c189ce416/', + related_url: 'http://localhost:49153/v1/images/93d73818-0552-4aa5-a51b-cd6c189ce416/related/', + unstable__sensitivity: [], + }, + { + id: '9615466c-fb78-4275-bfcf-347917849558', + title: 'graph', + indexed_on: '2020-04-11T18:14:28.791564Z', + foreign_landing_url: 'https://www.flickr.com/photos/36096710@N05/6971476339', + url: 'https://live.staticflickr.com/7059/6971476339_0da38f96d2.jpg', + creator: 'NSS22', + creator_url: 'https://www.flickr.com/photos/36096710@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'graphs', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"graph" by NSS22 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 386, + thumbnail: 'http://localhost:49153/v1/images/9615466c-fb78-4275-bfcf-347917849558/thumb/', + detail_url: 'http://localhost:49153/v1/images/9615466c-fb78-4275-bfcf-347917849558/', + related_url: 'http://localhost:49153/v1/images/9615466c-fb78-4275-bfcf-347917849558/related/', + unstable__sensitivity: [], + }, + { + id: '4edb0e73-0108-4144-b47f-e67edf2fe55c', + title: 'Social Media Marketing ROI Graph - Blue', + indexed_on: '2020-04-17T18:02:21.306474Z', + foreign_landing_url: 'https://www.flickr.com/photos/33524159@N00/6225881707', + url: 'https://live.staticflickr.com/6033/6225881707_9afb3cc3bb_b.jpg', + creator: "Alan O'Rourke", + creator_url: 'https://www.flickr.com/photos/33524159@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'achievement', + accuracy: 0.95924, + unstable__provider: 'clarifai', + }, + { + name: 'business', + accuracy: 0.94811, + unstable__provider: 'clarifai', + }, + { + name: 'coins', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'desktop', + accuracy: 0.91432, + unstable__provider: 'clarifai', + }, + { + name: 'diagram', + accuracy: 0.95737, + unstable__provider: 'clarifai', + }, + { + name: 'economy', + accuracy: 0.94826, + unstable__provider: 'clarifai', + }, + { + name: 'finance', + accuracy: 0.97243, + unstable__provider: 'clarifai', + }, + { + name: 'financial', + accuracy: 0.93225, + unstable__provider: 'clarifai', + }, + { + name: 'gain', + accuracy: 0.9169, + unstable__provider: 'clarifai', + }, + { + name: 'graph', + accuracy: 0.98656, + unstable__provider: 'clarifai', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'growth', + accuracy: 0.98351, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.96044, + unstable__provider: 'clarifai', + }, + { + name: 'investment', + accuracy: 0.97442, + unstable__provider: 'clarifai', + }, + { + name: 'marketing', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'money', + accuracy: 0.95096, + unstable__provider: 'clarifai', + }, + { + name: 'money', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'progress', + accuracy: 0.90061, + unstable__provider: 'clarifai', + }, + { + name: 'roi', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'shares', + accuracy: 0.91255, + unstable__provider: 'clarifai', + }, + { + name: 'socialmedia', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Social Media Marketing ROI Graph - Blue" by Alan O\'Rourke is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/4edb0e73-0108-4144-b47f-e67edf2fe55c/thumb/', + detail_url: 'http://localhost:49153/v1/images/4edb0e73-0108-4144-b47f-e67edf2fe55c/', + related_url: 'http://localhost:49153/v1/images/4edb0e73-0108-4144-b47f-e67edf2fe55c/related/', + unstable__sensitivity: [], + }, + { + id: '4d01341a-267a-4352-9233-a175384f4836', + title: '20120305-NodeXL-Twitter-pawcon network graph', + indexed_on: '2020-04-11T17:03:31.303988Z', + foreign_landing_url: 'https://www.flickr.com/photos/49503165485@N01/6956981781', + url: 'https://live.staticflickr.com/7045/6956981781_eac86a4e1e_b.jpg', + creator: 'Marc_Smith', + creator_url: 'https://www.flickr.com/photos/49503165485@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2012', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'analytics', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'chart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'map', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'network', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nodexl', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pawcon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'predictive', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'report', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sanfrancisco', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sna', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'twitter', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"20120305-NodeXL-Twitter-pawcon network graph" by Marc_Smith is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/4d01341a-267a-4352-9233-a175384f4836/thumb/', + detail_url: 'http://localhost:49153/v1/images/4d01341a-267a-4352-9233-a175384f4836/', + related_url: 'http://localhost:49153/v1/images/4d01341a-267a-4352-9233-a175384f4836/related/', + unstable__sensitivity: [], + }, + { + id: '658d5ce1-574b-474a-b606-ee3cb21bf933', + title: '20120212-NodeXL-Twitter-socbiz network graph', + indexed_on: '2020-04-11T03:56:30.357358Z', + foreign_landing_url: 'https://www.flickr.com/photos/49503165485@N01/6871711979', + url: 'https://live.staticflickr.com/7179/6871711979_bbe5b1ae1f_b.jpg', + creator: 'Marc_Smith', + creator_url: 'https://www.flickr.com/photos/49503165485@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'chart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'map', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'network', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nodexl', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'report', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sna', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socbiz', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socialmedia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'twitter', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"20120212-NodeXL-Twitter-socbiz network graph" by Marc_Smith is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/658d5ce1-574b-474a-b606-ee3cb21bf933/thumb/', + detail_url: 'http://localhost:49153/v1/images/658d5ce1-574b-474a-b606-ee3cb21bf933/', + related_url: 'http://localhost:49153/v1/images/658d5ce1-574b-474a-b606-ee3cb21bf933/related/', + unstable__sensitivity: [], + }, + { + id: '608ce637-462e-40dd-b681-c5b05b577820', + title: 'Epicurious HTML graph', + indexed_on: '2020-05-02T05:46:29.877802Z', + foreign_landing_url: 'https://www.flickr.com/photos/26325011@N00/352461415', + url: 'https://live.staticflickr.com/131/352461415_0ab94caa02.jpg', + creator: 'Noah Sussman', + creator_url: 'https://www.flickr.com/photos/26325011@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'aarf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'abstraction', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'analysis', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'animation', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'debugging', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'generated', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'html', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'onemorebugcom', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'overview', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'processing', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'projectepicurious', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'refactoring', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualizations', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'website', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'websitesasgraphs', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Epicurious HTML graph" by Noah Sussman is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 498, + thumbnail: 'http://localhost:49153/v1/images/608ce637-462e-40dd-b681-c5b05b577820/thumb/', + detail_url: 'http://localhost:49153/v1/images/608ce637-462e-40dd-b681-c5b05b577820/', + related_url: 'http://localhost:49153/v1/images/608ce637-462e-40dd-b681-c5b05b577820/related/', + unstable__sensitivity: [], + }, + { + id: '51415bfe-5ea1-474d-a45a-92ad0a359b84', + title: '3D Employment Graph', + indexed_on: '2020-04-10T14:23:31.077522Z', + foreign_landing_url: 'https://www.flickr.com/photos/86530412@N02/7934039676', + url: 'https://live.staticflickr.com/8171/7934039676_bdbfe39813_b.jpg', + creator: 'ccPixs.com', + creator_url: 'https://www.flickr.com/photos/86530412@N02', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '3d', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bar', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'commons', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'creative', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'employment', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'growth', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'job', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'people', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'accomplishment', + accuracy: 0.93279, + unstable__provider: 'clarifai', + }, + { + name: 'achievement', + accuracy: 0.96303, + unstable__provider: 'clarifai', + }, + { + name: 'business', + accuracy: 0.98982, + unstable__provider: 'clarifai', + }, + { + name: 'data', + accuracy: 0.97193, + unstable__provider: 'clarifai', + }, + { + name: 'diagram', + accuracy: 0.98137, + unstable__provider: 'clarifai', + }, + { + name: 'finance', + accuracy: 0.97975, + unstable__provider: 'clarifai', + }, + { + name: 'forecast', + accuracy: 0.95101, + unstable__provider: 'clarifai', + }, + { + name: 'gain', + accuracy: 0.94483, + unstable__provider: 'clarifai', + }, + { + name: 'graph', + accuracy: 0.99119, + unstable__provider: 'clarifai', + }, + { + name: 'graphic design', + accuracy: 0.97646, + unstable__provider: 'clarifai', + }, + { + name: 'growth', + accuracy: 0.99566, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.96263, + unstable__provider: 'clarifai', + }, + { + name: 'improvement', + accuracy: 0.95702, + unstable__provider: 'clarifai', + }, + { + name: 'increase', + accuracy: 0.97324, + unstable__provider: 'clarifai', + }, + { + name: 'market', + accuracy: 0.92778, + unstable__provider: 'clarifai', + }, + { + name: 'progress', + accuracy: 0.98806, + unstable__provider: 'clarifai', + }, + { + name: 'statistics', + accuracy: 0.97999, + unstable__provider: 'clarifai', + }, + { + name: 'stripe', + accuracy: 0.97032, + unstable__provider: 'clarifai', + }, + { + name: 'written report', + accuracy: 0.96292, + unstable__provider: 'clarifai', + }, + ], + attribution: '"3D Employment Graph" by ccPixs.com is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/51415bfe-5ea1-474d-a45a-92ad0a359b84/thumb/', + detail_url: 'http://localhost:49153/v1/images/51415bfe-5ea1-474d-a45a-92ad0a359b84/', + related_url: 'http://localhost:49153/v1/images/51415bfe-5ea1-474d-a45a-92ad0a359b84/related/', + unstable__sensitivity: [], + }, + { + id: '0747d420-d5da-4574-957b-5454f02b954c', + title: 'Graph Search by Facebook is a threat to Google', + indexed_on: '2020-04-06T16:05:19.706818Z', + foreign_landing_url: 'https://www.flickr.com/photos/91924031@N08/8390977087', + url: 'https://live.staticflickr.com/8098/8390977087_845d38453e.jpg', + creator: 'Bob Massa', + creator_url: 'https://www.flickr.com/photos/91924031@N08', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'facebook', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'google', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'search', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'threat', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Graph Search by Facebook is a threat to Google" by Bob Massa is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 375, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/0747d420-d5da-4574-957b-5454f02b954c/thumb/', + detail_url: 'http://localhost:49153/v1/images/0747d420-d5da-4574-957b-5454f02b954c/', + related_url: 'http://localhost:49153/v1/images/0747d420-d5da-4574-957b-5454f02b954c/related/', + unstable__sensitivity: [], + }, + { + id: 'ca55d60a-f05f-4a41-8e71-582d405d3e8d', + title: 'Network Graph of Bookmark Tags', + indexed_on: '2018-12-21T12:34:40.573425Z', + foreign_landing_url: 'https://www.flickr.com/photos/10970592@N04/5352508316', + url: 'https://live.staticflickr.com/5242/5352508316_5f3f65b65a_b.jpg', + creator: 'aaronparecki', + creator_url: 'https://www.flickr.com/photos/10970592@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'cloud', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'network', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tags', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ucinet', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Network Graph of Bookmark Tags" by aaronparecki is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 625, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/ca55d60a-f05f-4a41-8e71-582d405d3e8d/thumb/', + detail_url: 'http://localhost:49153/v1/images/ca55d60a-f05f-4a41-8e71-582d405d3e8d/', + related_url: 'http://localhost:49153/v1/images/ca55d60a-f05f-4a41-8e71-582d405d3e8d/related/', + unstable__sensitivity: [], + }, + { + id: 'a5b8e4fe-d802-4c0a-85d9-663d43d9015d', + title: 'Twittergrams: Morning Tweet Graph', + indexed_on: '2020-04-25T07:38:30.661742Z', + foreign_landing_url: 'https://www.flickr.com/photos/55772089@N00/3818265053', + url: 'https://live.staticflickr.com/3504/3818265053_0ece9c1a57_b.jpg', + creator: 'blprnt_van', + creator_url: 'https://www.flickr.com/photos/55772089@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'chart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'infoviz', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'processingorg', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'twitter', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'achievement', + accuracy: 0.90339, + unstable__provider: 'clarifai', + }, + { + name: 'business', + accuracy: 0.96657, + unstable__provider: 'clarifai', + }, + { + name: 'cardiology', + accuracy: 0.96966, + unstable__provider: 'clarifai', + }, + { + name: 'chart', + accuracy: 0.95376, + unstable__provider: 'clarifai', + }, + { + name: 'data', + accuracy: 0.91404, + unstable__provider: 'clarifai', + }, + { + name: 'diagram', + accuracy: 0.9743, + unstable__provider: 'clarifai', + }, + { + name: 'graph', + accuracy: 0.99547, + unstable__provider: 'clarifai', + }, + { + name: 'growth', + accuracy: 0.97562, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.90966, + unstable__provider: 'clarifai', + }, + { + name: 'paper', + accuracy: 0.98365, + unstable__provider: 'clarifai', + }, + { + name: 'pulse', + accuracy: 0.98959, + unstable__provider: 'clarifai', + }, + { + name: 'research', + accuracy: 0.91309, + unstable__provider: 'clarifai', + }, + { + name: 'statistics', + accuracy: 0.97026, + unstable__provider: 'clarifai', + }, + { + name: 'written report', + accuracy: 0.94505, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Twittergrams: Morning Tweet Graph" by blprnt_van is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 709, + width: 990, + thumbnail: 'http://localhost:49153/v1/images/a5b8e4fe-d802-4c0a-85d9-663d43d9015d/thumb/', + detail_url: 'http://localhost:49153/v1/images/a5b8e4fe-d802-4c0a-85d9-663d43d9015d/', + related_url: 'http://localhost:49153/v1/images/a5b8e4fe-d802-4c0a-85d9-663d43d9015d/related/', + unstable__sensitivity: [], + }, + { + id: '7a46d237-f008-4ca1-a48d-f8199e8bb580', + title: '20120109-NodeXL-Twitter-waze network graph', + indexed_on: '2020-04-09T17:17:28.784704Z', + foreign_landing_url: 'https://www.flickr.com/photos/49503165485@N01/6670326297', + url: 'https://live.staticflickr.com/7156/6670326297_d271e6f230_b.jpg', + creator: 'Marc_Smith', + creator_url: 'https://www.flickr.com/photos/49503165485@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'chart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'map', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'network', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nodexl', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socialmedia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'twitter', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waze', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"20120109-NodeXL-Twitter-waze network graph" by Marc_Smith is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/7a46d237-f008-4ca1-a48d-f8199e8bb580/thumb/', + detail_url: 'http://localhost:49153/v1/images/7a46d237-f008-4ca1-a48d-f8199e8bb580/', + related_url: 'http://localhost:49153/v1/images/7a46d237-f008-4ca1-a48d-f8199e8bb580/related/', + unstable__sensitivity: [], + }, + { + id: '2c5e7a7a-4b8b-4290-b434-469922615d29', + title: '20120227-NodeXL-Twitter-bigdata network graph', + indexed_on: '2020-04-11T12:50:28.990216Z', + foreign_landing_url: 'https://www.flickr.com/photos/49503165485@N01/6792756018', + url: 'https://live.staticflickr.com/7046/6792756018_d0ee333dd0_b.jpg', + creator: 'Marc_Smith', + creator_url: 'https://www.flickr.com/photos/49503165485@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'bigdata', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'chart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'map', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'network', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nodexl', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sna', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socialmedia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"20120227-NodeXL-Twitter-bigdata network graph" by Marc_Smith is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/2c5e7a7a-4b8b-4290-b434-469922615d29/thumb/', + detail_url: 'http://localhost:49153/v1/images/2c5e7a7a-4b8b-4290-b434-469922615d29/', + related_url: 'http://localhost:49153/v1/images/2c5e7a7a-4b8b-4290-b434-469922615d29/related/', + unstable__sensitivity: [], + }, + { + id: '4ea5571f-139e-42d6-9c0a-5cffa1c0e820', + title: '20111005-NodeXL-Twitter-Wikisym graph', + indexed_on: '2020-04-17T17:28:20.750080Z', + foreign_landing_url: 'https://www.flickr.com/photos/49503165485@N01/6216434818', + url: 'https://live.staticflickr.com/6166/6216434818_d353e1806a_b.jpg', + creator: 'Marc_Smith', + creator_url: 'https://www.flickr.com/photos/49503165485@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'dataanalysis', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'infovis', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'infoviz', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'network', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nodexl', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sna', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socialmedia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"20111005-NodeXL-Twitter-Wikisym graph" by Marc_Smith is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/4ea5571f-139e-42d6-9c0a-5cffa1c0e820/thumb/', + detail_url: 'http://localhost:49153/v1/images/4ea5571f-139e-42d6-9c0a-5cffa1c0e820/', + related_url: 'http://localhost:49153/v1/images/4ea5571f-139e-42d6-9c0a-5cffa1c0e820/related/', + unstable__sensitivity: [], + }, + { + id: '95575ed6-308a-4cd8-8678-2f707010d3a9', + title: 'STACKED LINE GRAPH', + indexed_on: '2020-04-16T07:52:32.360154Z', + foreign_landing_url: 'https://www.flickr.com/photos/28541331@N00/5659021847', + url: 'https://live.staticflickr.com/5301/5659021847_0921899b1f_b.jpg', + creator: 'Lauren Manning', + creator_url: 'https://www.flickr.com/photos/28541331@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'chart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'color', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'communication', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'data', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'datavisualization', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'design', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'food', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'key', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'line', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'linegraph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rainbow', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'stacked', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'thesis', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'abstract', + accuracy: 0.93504, + unstable__provider: 'clarifai', + }, + { + name: 'art', + accuracy: 0.90776, + unstable__provider: 'clarifai', + }, + { + name: 'color', + accuracy: 0.90872, + unstable__provider: 'clarifai', + }, + { + name: 'design', + accuracy: 0.96199, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.93005, + unstable__provider: 'clarifai', + }, + { + name: 'disjunct', + accuracy: 0.90561, + unstable__provider: 'clarifai', + }, + { + name: 'graphic', + accuracy: 0.92328, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.97592, + unstable__provider: 'clarifai', + }, + { + name: 'stripe', + accuracy: 0.90932, + unstable__provider: 'clarifai', + }, + { + name: 'vector', + accuracy: 0.96627, + unstable__provider: 'clarifai', + }, + ], + attribution: '"STACKED LINE GRAPH" by Lauren Manning is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 790, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/95575ed6-308a-4cd8-8678-2f707010d3a9/thumb/', + detail_url: 'http://localhost:49153/v1/images/95575ed6-308a-4cd8-8678-2f707010d3a9/', + related_url: 'http://localhost:49153/v1/images/95575ed6-308a-4cd8-8678-2f707010d3a9/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=graphs_keep-alive.json5 b/frontend/test/tapes/search/images/q=graphs_keep-alive.json5 new file mode 100644 index 00000000000..002f62ebd13 --- /dev/null +++ b/frontend/test/tapes/search/images/q=graphs_keep-alive.json5 @@ -0,0 +1,1519 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:10.556Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=graphs', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:10 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '18', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '198', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '566db830-8a7e-464b-9511-e2c30bdd53dd', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '75691', + ], + 'last-modified': [ + 'Thu, 19 Sep 2024 05:45:39 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d430bfc274b-ADL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: 'fce1965e-f6b4-4f40-849e-e89d2c8ce27a', + title: 'Tag Graph: Sunrises by time', + indexed_on: '2020-05-07T10:22:27.957034Z', + foreign_landing_url: 'https://www.flickr.com/photos/94832693@N00/4941231', + url: 'https://live.staticflickr.com/3/4941231_4d5f9bbf64_b.jpg', + creator: 'krazydad / jbum', + creator_url: 'https://www.flickr.com/photos/94832693@N00', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sunrise', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Tag Graph: Sunrises by time" by krazydad / jbum is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 512, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/fce1965e-f6b4-4f40-849e-e89d2c8ce27a/thumb/', + detail_url: 'http://localhost:49153/v1/images/fce1965e-f6b4-4f40-849e-e89d2c8ce27a/', + related_url: 'http://localhost:49153/v1/images/fce1965e-f6b4-4f40-849e-e89d2c8ce27a/related/', + unstable__sensitivity: [], + }, + { + id: '408bbd12-8c53-4a0b-900f-d1c5bbc80b46', + title: 'Money Graph', + indexed_on: '2020-04-18T07:04:17.069475Z', + foreign_landing_url: 'https://www.flickr.com/photos/68751915@N05/6551520247', + url: 'https://live.staticflickr.com/7171/6551520247_ae0315efb8_b.jpg', + creator: '401(K) 2013', + creator_url: 'https://www.flickr.com/photos/68751915@N05', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'arrow', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'money', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Money Graph" by 401(K) 2013 is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/408bbd12-8c53-4a0b-900f-d1c5bbc80b46/thumb/', + detail_url: 'http://localhost:49153/v1/images/408bbd12-8c53-4a0b-900f-d1c5bbc80b46/', + related_url: 'http://localhost:49153/v1/images/408bbd12-8c53-4a0b-900f-d1c5bbc80b46/related/', + unstable__sensitivity: [], + }, + { + id: '7db8f1f8-fc50-4700-9263-1ccfa39e2254', + title: 'Conversation Graph', + indexed_on: '2020-04-24T03:31:30.926745Z', + foreign_landing_url: 'https://www.flickr.com/photos/58428285@N00/3337399057', + url: 'https://live.staticflickr.com/3605/3337399057_b6bd7ac138.jpg', + creator: 'cambodia4kidsorg', + creator_url: 'https://www.flickr.com/photos/58428285@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'conversation', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'participate', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Conversation Graph" by cambodia4kidsorg is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 380, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/7db8f1f8-fc50-4700-9263-1ccfa39e2254/thumb/', + detail_url: 'http://localhost:49153/v1/images/7db8f1f8-fc50-4700-9263-1ccfa39e2254/', + related_url: 'http://localhost:49153/v1/images/7db8f1f8-fc50-4700-9263-1ccfa39e2254/related/', + unstable__sensitivity: [], + }, + { + id: 'd56f26f6-b74f-47e8-a971-909dc58b6983', + title: 'Wikipedia link-graph clusters', + indexed_on: '2020-04-17T08:43:20.855600Z', + foreign_landing_url: 'https://www.flickr.com/photos/51035707449@N01/6070900906', + url: 'https://live.staticflickr.com/6068/6070900906_29af75e543_b.jpg', + creator: 'Matt Biddulph', + creator_url: 'https://www.flickr.com/photos/51035707449@N01', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'gephi', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wikipedia', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Wikipedia link-graph clusters" by Matt Biddulph is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/d56f26f6-b74f-47e8-a971-909dc58b6983/thumb/', + detail_url: 'http://localhost:49153/v1/images/d56f26f6-b74f-47e8-a971-909dc58b6983/', + related_url: 'http://localhost:49153/v1/images/d56f26f6-b74f-47e8-a971-909dc58b6983/related/', + unstable__sensitivity: [], + }, + { + id: 'b79a33a3-ebcc-447c-802a-b33e30fe217a', + title: 'Social Media Marketing ROI Graph', + indexed_on: '2018-12-21T12:34:40.573425Z', + foreign_landing_url: 'https://www.flickr.com/photos/33524159@N00/6226402138', + url: 'https://live.staticflickr.com/6044/6226402138_061f4a67ac_b.jpg', + creator: "Alan O'Rourke", + creator_url: 'https://www.flickr.com/photos/33524159@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'coins', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marketing', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'money', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'roi', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socialmedia', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Social Media Marketing ROI Graph" by Alan O\'Rourke is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/b79a33a3-ebcc-447c-802a-b33e30fe217a/thumb/', + detail_url: 'http://localhost:49153/v1/images/b79a33a3-ebcc-447c-802a-b33e30fe217a/', + related_url: 'http://localhost:49153/v1/images/b79a33a3-ebcc-447c-802a-b33e30fe217a/related/', + unstable__sensitivity: [], + }, + { + id: '2c6513d6-c838-4457-bfdf-e638dab58be7', + title: '20120227-NodeXL-Twitter-#NICAR network graph', + indexed_on: '2020-04-11T12:50:28.990216Z', + foreign_landing_url: 'https://www.flickr.com/photos/49503165485@N01/6937396055', + url: 'https://live.staticflickr.com/7177/6937396055_b483ff0d0e_b.jpg', + creator: 'Marc_Smith', + creator_url: 'https://www.flickr.com/photos/49503165485@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'computerassistedreporting', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'network', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nicar', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nicar2012', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nodexl', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socialmedia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'twitter', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"20120227-NodeXL-Twitter-#NICAR network graph" by Marc_Smith is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/2c6513d6-c838-4457-bfdf-e638dab58be7/thumb/', + detail_url: 'http://localhost:49153/v1/images/2c6513d6-c838-4457-bfdf-e638dab58be7/', + related_url: 'http://localhost:49153/v1/images/2c6513d6-c838-4457-bfdf-e638dab58be7/related/', + unstable__sensitivity: [], + }, + { + id: '36ce630c-7600-4b13-89eb-f11f9748f635', + title: '20120129-NodeXL-Twitter-educon network graph', + indexed_on: '2020-04-10T11:31:29.972328Z', + foreign_landing_url: 'https://www.flickr.com/photos/49503165485@N01/6785112263', + url: 'https://live.staticflickr.com/7018/6785112263_561350d914_b.jpg', + creator: 'Marc_Smith', + creator_url: 'https://www.flickr.com/photos/49503165485@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'chart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'educon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'map', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'network', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nodexl', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sna', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socialmedia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"20120129-NodeXL-Twitter-educon network graph" by Marc_Smith is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/36ce630c-7600-4b13-89eb-f11f9748f635/thumb/', + detail_url: 'http://localhost:49153/v1/images/36ce630c-7600-4b13-89eb-f11f9748f635/', + related_url: 'http://localhost:49153/v1/images/36ce630c-7600-4b13-89eb-f11f9748f635/related/', + unstable__sensitivity: [], + }, + { + id: '90e34127-34eb-489d-a0e4-484a3e342e41', + title: 'Tag Graph: Sunrises by time (first version)', + indexed_on: '2018-09-11T14:50:30.013406Z', + foreign_landing_url: 'https://www.flickr.com/photos/94832693@N00/4939188', + url: 'https://live.staticflickr.com/5/4939188_e39a32df0e_b.jpg', + creator: 'krazydad / jbum', + creator_url: 'https://www.flickr.com/photos/94832693@N00', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sunrise', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'time', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'abstract', + accuracy: 0.95421, + unstable__provider: 'clarifai', + }, + { + name: 'background', + accuracy: 0.91713, + unstable__provider: 'clarifai', + }, + { + name: 'design', + accuracy: 0.93408, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.95927, + unstable__provider: 'clarifai', + }, + { + name: 'pattern', + accuracy: 0.94922, + unstable__provider: 'clarifai', + }, + { + name: 'technology', + accuracy: 0.97902, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Tag Graph: Sunrises by time (first version)" by krazydad / jbum is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 512, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/90e34127-34eb-489d-a0e4-484a3e342e41/thumb/', + detail_url: 'http://localhost:49153/v1/images/90e34127-34eb-489d-a0e4-484a3e342e41/', + related_url: 'http://localhost:49153/v1/images/90e34127-34eb-489d-a0e4-484a3e342e41/related/', + unstable__sensitivity: [], + }, + { + id: 'aee15678-3f76-47cc-9200-4e5f625a780d', + title: 'London developers, graphed', + indexed_on: '2020-04-21T19:52:30.468231Z', + foreign_landing_url: 'https://www.flickr.com/photos/51035707449@N01/4683688084', + url: 'https://live.staticflickr.com/4027/4683688084_57a8c576c6_b.jpg', + creator: 'Matt Biddulph', + creator_url: 'https://www.flickr.com/photos/51035707449@N01', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'data', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'developers', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'gephi', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'london', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'slidefodder', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualisation', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"London developers, graphed" by Matt Biddulph is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 881, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/aee15678-3f76-47cc-9200-4e5f625a780d/thumb/', + detail_url: 'http://localhost:49153/v1/images/aee15678-3f76-47cc-9200-4e5f625a780d/', + related_url: 'http://localhost:49153/v1/images/aee15678-3f76-47cc-9200-4e5f625a780d/related/', + unstable__sensitivity: [], + }, + { + id: '94a49695-594f-49d2-8f24-314ffdbedfb8', + title: 'circle graph of traffic', + indexed_on: '2020-04-24T01:35:31.714351Z', + foreign_landing_url: 'https://www.flickr.com/photos/94168846@N00/3305542857', + url: 'https://live.staticflickr.com/3266/3305542857_f3e85e8cda.jpg', + creator: 'jimmiehomeschoolmom', + creator_url: 'https://www.flickr.com/photos/94168846@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'circlegraph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'homeschool', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'math', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'business', + accuracy: 0.96143, + unstable__provider: 'clarifai', + }, + { + name: 'creativity', + accuracy: 0.91451, + unstable__provider: 'clarifai', + }, + { + name: 'data', + accuracy: 0.94114, + unstable__provider: 'clarifai', + }, + { + name: 'design', + accuracy: 0.92876, + unstable__provider: 'clarifai', + }, + { + name: 'diagram', + accuracy: 0.99759, + unstable__provider: 'clarifai', + }, + { + name: 'graph', + accuracy: 0.99626, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.98888, + unstable__provider: 'clarifai', + }, + { + name: 'image', + accuracy: 0.90415, + unstable__provider: 'clarifai', + }, + { + name: 'pie', + accuracy: 0.95642, + unstable__provider: 'clarifai', + }, + { + name: 'presentation', + accuracy: 0.96193, + unstable__provider: 'clarifai', + }, + { + name: 'progress', + accuracy: 0.98695, + unstable__provider: 'clarifai', + }, + { + name: 'round', + accuracy: 0.98732, + unstable__provider: 'clarifai', + }, + { + name: 'shape', + accuracy: 0.94886, + unstable__provider: 'clarifai', + }, + { + name: 'statistics', + accuracy: 0.96206, + unstable__provider: 'clarifai', + }, + { + name: 'summary', + accuracy: 0.91854, + unstable__provider: 'clarifai', + }, + { + name: 'vector', + accuracy: 0.98183, + unstable__provider: 'clarifai', + }, + { + name: 'written report', + accuracy: 0.97441, + unstable__provider: 'clarifai', + }, + ], + attribution: '"circle graph of traffic" by jimmiehomeschoolmom is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 386, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/94a49695-594f-49d2-8f24-314ffdbedfb8/thumb/', + detail_url: 'http://localhost:49153/v1/images/94a49695-594f-49d2-8f24-314ffdbedfb8/', + related_url: 'http://localhost:49153/v1/images/94a49695-594f-49d2-8f24-314ffdbedfb8/related/', + unstable__sensitivity: [], + }, + { + id: '1e0dd888-4e76-40a0-90be-da74182a70eb', + title: 'Facebook network graph', + indexed_on: '2020-05-07T12:16:23.419959Z', + foreign_landing_url: 'https://www.flickr.com/photos/91528873@N00/11696663', + url: 'https://live.staticflickr.com/9/11696663_6d32014142_b.jpg', + creator: 'euphoria', + creator_url: 'https://www.flickr.com/photos/91528873@N00', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'facebook', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'friends', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graphtheory', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'loyola', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'network', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socialnetwork', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socialnetworking', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'svg', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'thefacebook', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Facebook network graph" by euphoria is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 909, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/1e0dd888-4e76-40a0-90be-da74182a70eb/thumb/', + detail_url: 'http://localhost:49153/v1/images/1e0dd888-4e76-40a0-90be-da74182a70eb/', + related_url: 'http://localhost:49153/v1/images/1e0dd888-4e76-40a0-90be-da74182a70eb/related/', + unstable__sensitivity: [], + }, + { + id: '690a4398-c55f-4b67-b3b2-73df5f70ca42', + title: 'Uncanny Valley graph', + indexed_on: '2020-04-09T21:58:18.117259Z', + foreign_landing_url: 'https://www.flickr.com/photos/33643459@N00/6703368991', + url: 'https://live.staticflickr.com/7025/6703368991_87b2d9df7a_b.jpg', + creator: 'Elif Ayiter/Alpha Auer/..../', + creator_url: 'https://www.flickr.com/photos/33643459@N00', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'uncannyvalley', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Uncanny Valley graph" by Elif Ayiter/Alpha Auer/..../ is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 384, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/690a4398-c55f-4b67-b3b2-73df5f70ca42/thumb/', + detail_url: 'http://localhost:49153/v1/images/690a4398-c55f-4b67-b3b2-73df5f70ca42/', + related_url: 'http://localhost:49153/v1/images/690a4398-c55f-4b67-b3b2-73df5f70ca42/related/', + unstable__sensitivity: [], + }, + { + id: '2e2e5469-0814-432e-b742-ea89cf3b73e8', + title: '20120226-NodeXL-Twitter-strataconf network graph large', + indexed_on: '2019-04-18T12:45:58.000782Z', + foreign_landing_url: 'https://www.flickr.com/photos/49503165485@N01/6934127903', + url: 'https://live.staticflickr.com/7041/6934127903_41e46c23c6_b.jpg', + creator: 'Marc_Smith', + creator_url: 'https://www.flickr.com/photos/49503165485@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'chart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'eventgraph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'map', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'network', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nodexl', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sna', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'socialmedia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'strataconf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'twitter', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"20120226-NodeXL-Twitter-strataconf network graph large" by Marc_Smith is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/2e2e5469-0814-432e-b742-ea89cf3b73e8/thumb/', + detail_url: 'http://localhost:49153/v1/images/2e2e5469-0814-432e-b742-ea89cf3b73e8/', + related_url: 'http://localhost:49153/v1/images/2e2e5469-0814-432e-b742-ea89cf3b73e8/related/', + unstable__sensitivity: [], + }, + { + id: '93d73818-0552-4aa5-a51b-cd6c189ce416', + title: 'graph (2)', + indexed_on: '2020-04-11T18:14:28.791564Z', + foreign_landing_url: 'https://www.flickr.com/photos/36096710@N05/6971476389', + url: 'https://live.staticflickr.com/7064/6971476389_3913efa04d.jpg', + creator: 'NSS22', + creator_url: 'https://www.flickr.com/photos/36096710@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'graphs', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"graph (2)" by NSS22 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 386, + thumbnail: 'http://localhost:49153/v1/images/93d73818-0552-4aa5-a51b-cd6c189ce416/thumb/', + detail_url: 'http://localhost:49153/v1/images/93d73818-0552-4aa5-a51b-cd6c189ce416/', + related_url: 'http://localhost:49153/v1/images/93d73818-0552-4aa5-a51b-cd6c189ce416/related/', + unstable__sensitivity: [], + }, + { + id: '9615466c-fb78-4275-bfcf-347917849558', + title: 'graph', + indexed_on: '2020-04-11T18:14:28.791564Z', + foreign_landing_url: 'https://www.flickr.com/photos/36096710@N05/6971476339', + url: 'https://live.staticflickr.com/7059/6971476339_0da38f96d2.jpg', + creator: 'NSS22', + creator_url: 'https://www.flickr.com/photos/36096710@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'graphs', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"graph" by NSS22 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 386, + thumbnail: 'http://localhost:49153/v1/images/9615466c-fb78-4275-bfcf-347917849558/thumb/', + detail_url: 'http://localhost:49153/v1/images/9615466c-fb78-4275-bfcf-347917849558/', + related_url: 'http://localhost:49153/v1/images/9615466c-fb78-4275-bfcf-347917849558/related/', + unstable__sensitivity: [], + }, + { + id: '4edb0e73-0108-4144-b47f-e67edf2fe55c', + title: 'Social Media Marketing ROI Graph - Blue', + indexed_on: '2020-04-17T18:02:21.306474Z', + foreign_landing_url: 'https://www.flickr.com/photos/33524159@N00/6225881707', + url: 'https://live.staticflickr.com/6033/6225881707_9afb3cc3bb_b.jpg', + creator: "Alan O'Rourke", + creator_url: 'https://www.flickr.com/photos/33524159@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'achievement', + accuracy: 0.95924, + unstable__provider: 'clarifai', + }, + { + name: 'business', + accuracy: 0.94811, + unstable__provider: 'clarifai', + }, + { + name: 'coins', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'desktop', + accuracy: 0.91432, + unstable__provider: 'clarifai', + }, + { + name: 'diagram', + accuracy: 0.95737, + unstable__provider: 'clarifai', + }, + { + name: 'economy', + accuracy: 0.94826, + unstable__provider: 'clarifai', + }, + { + name: 'finance', + accuracy: 0.97243, + unstable__provider: 'clarifai', + }, + { + name: 'financial', + accuracy: 0.93225, + unstable__provider: 'clarifai', + }, + { + name: 'gain', + accuracy: 0.9169, + unstable__provider: 'clarifai', + }, + { + name: 'graph', + accuracy: 0.98656, + unstable__provider: 'clarifai', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'growth', + accuracy: 0.98351, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.96044, + unstable__provider: 'clarifai', + }, + { + name: 'investment', + accuracy: 0.97442, + unstable__provider: 'clarifai', + }, + { + name: 'marketing', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'money', + accuracy: 0.95096, + unstable__provider: 'clarifai', + }, + { + name: 'money', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'progress', + accuracy: 0.90061, + unstable__provider: 'clarifai', + }, + { + name: 'roi', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'shares', + accuracy: 0.91255, + unstable__provider: 'clarifai', + }, + { + name: 'socialmedia', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Social Media Marketing ROI Graph - Blue" by Alan O\'Rourke is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/4edb0e73-0108-4144-b47f-e67edf2fe55c/thumb/', + detail_url: 'http://localhost:49153/v1/images/4edb0e73-0108-4144-b47f-e67edf2fe55c/', + related_url: 'http://localhost:49153/v1/images/4edb0e73-0108-4144-b47f-e67edf2fe55c/related/', + unstable__sensitivity: [], + }, + { + id: '55df46c1-0244-4246-abd5-f6a6e9c912bb', + title: 'Cheese Bar Graph', + indexed_on: '2018-09-11T14:50:30.013406Z', + foreign_landing_url: 'https://www.flickr.com/photos/91525158@N00/71232780', + url: 'https://live.staticflickr.com/20/71232780_358ebc1c96_b.jpg', + creator: 'Clint Chilcott', + creator_url: 'https://www.flickr.com/photos/91525158@N00', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'chart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cheese', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'diagram', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'statistics', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'stats', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wisconsin', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'desktop', + accuracy: 0.9085, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.98652, + unstable__provider: 'clarifai', + }, + { + name: 'wood', + accuracy: 0.90416, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Cheese Bar Graph" by Clint Chilcott is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 748, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/55df46c1-0244-4246-abd5-f6a6e9c912bb/thumb/', + detail_url: 'http://localhost:49153/v1/images/55df46c1-0244-4246-abd5-f6a6e9c912bb/', + related_url: 'http://localhost:49153/v1/images/55df46c1-0244-4246-abd5-f6a6e9c912bb/related/', + unstable__sensitivity: [], + }, + { + id: 'ce571b99-7d16-4026-ac5c-6849df306c7f', + title: 'Graph of klick.jÖrg - Die Homepage', + indexed_on: '2020-05-06T00:32:29.412481Z', + foreign_landing_url: 'https://www.flickr.com/photos/12972883@N00/193506552', + url: 'https://live.staticflickr.com/78/193506552_185317156b.jpg', + creator: 'jÖrg', + creator_url: 'https://www.flickr.com/photos/12972883@N00', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'novaforce', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'websitesasgraphs', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Graph of klick.jÖrg - Die Homepage" by jÖrg is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/ce571b99-7d16-4026-ac5c-6849df306c7f/thumb/', + detail_url: 'http://localhost:49153/v1/images/ce571b99-7d16-4026-ac5c-6849df306c7f/', + related_url: 'http://localhost:49153/v1/images/ce571b99-7d16-4026-ac5c-6849df306c7f/related/', + unstable__sensitivity: [], + }, + { + id: '4d01341a-267a-4352-9233-a175384f4836', + title: '20120305-NodeXL-Twitter-pawcon network graph', + indexed_on: '2020-04-11T17:03:31.303988Z', + foreign_landing_url: 'https://www.flickr.com/photos/49503165485@N01/6956981781', + url: 'https://live.staticflickr.com/7045/6956981781_eac86a4e1e_b.jpg', + creator: 'Marc_Smith', + creator_url: 'https://www.flickr.com/photos/49503165485@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2012', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'analytics', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'chart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'map', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'network', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nodexl', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pawcon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'predictive', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'report', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sanfrancisco', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sna', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'twitter', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visualization', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"20120305-NodeXL-Twitter-pawcon network graph" by Marc_Smith is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/4d01341a-267a-4352-9233-a175384f4836/thumb/', + detail_url: 'http://localhost:49153/v1/images/4d01341a-267a-4352-9233-a175384f4836/', + related_url: 'http://localhost:49153/v1/images/4d01341a-267a-4352-9233-a175384f4836/related/', + unstable__sensitivity: [], + }, + { + id: '7264d4a2-01fc-49ba-8d6e-796f2db64ce1', + title: 'MUSIC: 200603-200803 Listening History Graph', + indexed_on: '2020-04-27T15:48:32.258976Z', + foreign_landing_url: 'https://www.flickr.com/photos/31355686@N00/2310453999', + url: 'https://live.staticflickr.com/2250/2310453999_80067371fb_b.jpg', + creator: 'Claire CJS', + creator_url: 'https://www.flickr.com/photos/31355686@N00', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'audioscrobbler', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'clint', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lastfm', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lastfmextrastats', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mp3', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mp3s', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'music', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'musicgraph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'musiclisteninghistory', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'musicstats', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'playlists', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wavegraph', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'winamp', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"MUSIC: 200603-200803 Listening History Graph" by Claire CJS is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 262, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/7264d4a2-01fc-49ba-8d6e-796f2db64ce1/thumb/', + detail_url: 'http://localhost:49153/v1/images/7264d4a2-01fc-49ba-8d6e-796f2db64ce1/', + related_url: 'http://localhost:49153/v1/images/7264d4a2-01fc-49ba-8d6e-796f2db64ce1/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=outsourced+accountant&license=by&extension=jpg&source=flickr_keep-alive.json5 b/frontend/test/tapes/search/images/q=outsourced+accountant&license=by&extension=jpg&source=flickr_keep-alive.json5 new file mode 100644 index 00000000000..df5830a58aa --- /dev/null +++ b/frontend/test/tapes/search/images/q=outsourced+accountant&license=by&extension=jpg&source=flickr_keep-alive.json5 @@ -0,0 +1,626 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:09.255Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=outsourced+accountant&license=by&extension=jpg&source=flickr', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:10 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '199', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '3f3d5316-524f-479c-bda1-ac61878089df', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'MISS', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:47:10 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d3aef487806-MEL', + ], + }, + body: { + result_count: 5, + page_count: 1, + page_size: 20, + page: 1, + results: [ + { + id: 'd4265ed9-b1dd-44c0-8437-f961a342b8d1', + title: 'Restaurant Cleaning Outsourced', + indexed_on: '2020-04-25T09:27:29.822945Z', + foreign_landing_url: 'https://www.flickr.com/photos/31036313@N04/3846977113', + url: 'https://live.staticflickr.com/3549/3846977113_01933bdc66_b.jpg', + creator: 'Frederick Md Publicity', + creator_url: 'https://www.flickr.com/photos/31036313@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'carpet', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'carpetcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'commercialcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'janitor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'janitorialservice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'janitorservice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'maryland', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandcarpetcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandcommercialcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandjanitor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandjantiorservice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'restaurantcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'restaurantcleaningoutsourced', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.97638, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.99186, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.95265, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.9741, + unstable__provider: 'clarifai', + }, + { + name: 'room', + accuracy: 0.91641, + unstable__provider: 'clarifai', + }, + { + name: 'woman', + accuracy: 0.90528, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Restaurant Cleaning Outsourced" by Frederick Md Publicity is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/d4265ed9-b1dd-44c0-8437-f961a342b8d1/thumb/', + detail_url: 'http://localhost:49153/v1/images/d4265ed9-b1dd-44c0-8437-f961a342b8d1/', + related_url: 'http://localhost:49153/v1/images/d4265ed9-b1dd-44c0-8437-f961a342b8d1/related/', + unstable__sensitivity: [], + }, + { + id: '9380171a-844f-42e6-84ce-cd1633cfe07a', + title: 'Restaurant Cleaning Outsourcing', + indexed_on: '2020-04-25T09:27:29.822945Z', + foreign_landing_url: 'https://www.flickr.com/photos/31036313@N04/3846977199', + url: 'https://live.staticflickr.com/3494/3846977199_2c2a169e71_b.jpg', + creator: 'Frederick Md Publicity', + creator_url: 'https://www.flickr.com/photos/31036313@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'carpet', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'carpetcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'commercialcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'janitor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'janitorialservice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'janitorservice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'maryland', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandcarpetcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandcommercialcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandjanitor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandjantiorservice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'restaurantcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'restaurantcleaningoutsourced', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.94661, + unstable__provider: 'clarifai', + }, + { + name: 'commerce', + accuracy: 0.95059, + unstable__provider: 'clarifai', + }, + { + name: 'daylight', + accuracy: 0.90359, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.98267, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.90436, + unstable__provider: 'clarifai', + }, + { + name: 'offense', + accuracy: 0.92921, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.92917, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.98967, + unstable__provider: 'clarifai', + }, + { + name: 'room', + accuracy: 0.95688, + unstable__provider: 'clarifai', + }, + { + name: 'shopping', + accuracy: 0.90086, + unstable__provider: 'clarifai', + }, + { + name: 'stock', + accuracy: 0.97131, + unstable__provider: 'clarifai', + }, + { + name: 'two', + accuracy: 0.90979, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Restaurant Cleaning Outsourcing" by Frederick Md Publicity is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/9380171a-844f-42e6-84ce-cd1633cfe07a/thumb/', + detail_url: 'http://localhost:49153/v1/images/9380171a-844f-42e6-84ce-cd1633cfe07a/', + related_url: 'http://localhost:49153/v1/images/9380171a-844f-42e6-84ce-cd1633cfe07a/related/', + unstable__sensitivity: [], + }, + { + id: '50bb42f6-e92c-4e57-96f6-3c0a5e54b321', + title: 'Creative accounting', + indexed_on: '2020-04-29T03:56:27.010225Z', + foreign_landing_url: 'https://www.flickr.com/photos/35034357491@N01/2930747100', + url: 'https://live.staticflickr.com/3150/2930747100_b4156d77cb_b.jpg', + creator: 'angusf', + creator_url: 'https://www.flickr.com/photos/35034357491@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"Creative accounting" by angusf is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/50bb42f6-e92c-4e57-96f6-3c0a5e54b321/thumb/', + detail_url: 'http://localhost:49153/v1/images/50bb42f6-e92c-4e57-96f6-3c0a5e54b321/', + related_url: 'http://localhost:49153/v1/images/50bb42f6-e92c-4e57-96f6-3c0a5e54b321/related/', + unstable__sensitivity: [], + }, + { + id: '66527e22-317c-4fd7-826a-e1fe5c630b75', + title: 'Lemmings t-shirt - worn by Max', + indexed_on: '2020-04-29T02:25:32.696578Z', + foreign_landing_url: 'https://www.flickr.com/photos/31386874@N00/2906026575', + url: 'https://live.staticflickr.com/3280/2906026575_531ae9654b_b.jpg', + creator: 'New Internationalist', + creator_url: 'https://www.flickr.com/photos/31386874@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'australia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cotton', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fair', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'internationalist', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lemmings', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'new', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'organic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'trade', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tshirt', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adolescent', + accuracy: 0.9593, + unstable__provider: 'clarifai', + }, + { + name: 'casual', + accuracy: 0.9586, + unstable__provider: 'clarifai', + }, + { + name: 'child', + accuracy: 0.91371, + unstable__provider: 'clarifai', + }, + { + name: 'cute', + accuracy: 0.97475, + unstable__provider: 'clarifai', + }, + { + name: 'fashion', + accuracy: 0.92496, + unstable__provider: 'clarifai', + }, + { + name: 'isolated', + accuracy: 0.98839, + unstable__provider: 'clarifai', + }, + { + name: 'looking', + accuracy: 0.9516, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.92129, + unstable__provider: 'clarifai', + }, + { + name: 'pretty', + accuracy: 0.95043, + unstable__provider: 'clarifai', + }, + { + name: 'woman', + accuracy: 0.95985, + unstable__provider: 'clarifai', + }, + { + name: 'young', + accuracy: 0.92423, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Lemmings t-shirt - worn by Max" by New Internationalist is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 1024, + width: 495, + thumbnail: 'http://localhost:49153/v1/images/66527e22-317c-4fd7-826a-e1fe5c630b75/thumb/', + detail_url: 'http://localhost:49153/v1/images/66527e22-317c-4fd7-826a-e1fe5c630b75/', + related_url: 'http://localhost:49153/v1/images/66527e22-317c-4fd7-826a-e1fe5c630b75/related/', + unstable__sensitivity: [], + }, + { + id: 'eb3d3f33-8bd4-4d44-bfb9-55249aa0e079', + title: 'Nasscom 2008', + indexed_on: '2020-04-23T21:42:26.644884Z', + foreign_landing_url: 'https://www.flickr.com/photos/56087830@N00/3238443831', + url: 'https://live.staticflickr.com/3499/3238443831_031d18b610_b.jpg', + creator: 'markhillary', + creator_url: 'https://www.flickr.com/photos/56087830@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2008', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'accounting', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'conference', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'enron', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'india', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jail', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nasscom', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'offshoring', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'outsourcing', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'raju', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ramalinga', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'satyam', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'scandal', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Nasscom 2008" by markhillary is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'tags.name', + ], + mature: false, + height: 1024, + width: 768, + thumbnail: 'http://localhost:49153/v1/images/eb3d3f33-8bd4-4d44-bfb9-55249aa0e079/thumb/', + detail_url: 'http://localhost:49153/v1/images/eb3d3f33-8bd4-4d44-bfb9-55249aa0e079/', + related_url: 'http://localhost:49153/v1/images/eb3d3f33-8bd4-4d44-bfb9-55249aa0e079/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=outsourced+accountant_keep-alive.json5 b/frontend/test/tapes/search/images/q=outsourced+accountant_keep-alive.json5 new file mode 100644 index 00000000000..15ff8d0f3bb --- /dev/null +++ b/frontend/test/tapes/search/images/q=outsourced+accountant_keep-alive.json5 @@ -0,0 +1,1178 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:09.207Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=outsourced+accountant', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:09 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '196', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '848a61d7-6f7c-471a-b7ba-c6911375fccd', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1152', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:27:57 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d3a9eee274b-ADL', + ], + }, + body: { + result_count: 14, + page_count: 1, + page_size: 20, + page: 1, + results: [ + { + id: 'd4265ed9-b1dd-44c0-8437-f961a342b8d1', + title: 'Restaurant Cleaning Outsourced', + indexed_on: '2020-04-25T09:27:29.822945Z', + foreign_landing_url: 'https://www.flickr.com/photos/31036313@N04/3846977113', + url: 'https://live.staticflickr.com/3549/3846977113_01933bdc66_b.jpg', + creator: 'Frederick Md Publicity', + creator_url: 'https://www.flickr.com/photos/31036313@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'carpet', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'carpetcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'commercialcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'janitor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'janitorialservice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'janitorservice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'maryland', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandcarpetcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandcommercialcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandjanitor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandjantiorservice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'restaurantcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'restaurantcleaningoutsourced', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.97638, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.99186, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.95265, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.9741, + unstable__provider: 'clarifai', + }, + { + name: 'room', + accuracy: 0.91641, + unstable__provider: 'clarifai', + }, + { + name: 'woman', + accuracy: 0.90528, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Restaurant Cleaning Outsourced" by Frederick Md Publicity is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/d4265ed9-b1dd-44c0-8437-f961a342b8d1/thumb/', + detail_url: 'http://localhost:49153/v1/images/d4265ed9-b1dd-44c0-8437-f961a342b8d1/', + related_url: 'http://localhost:49153/v1/images/d4265ed9-b1dd-44c0-8437-f961a342b8d1/related/', + unstable__sensitivity: [], + }, + { + id: '9380171a-844f-42e6-84ce-cd1633cfe07a', + title: 'Restaurant Cleaning Outsourcing', + indexed_on: '2020-04-25T09:27:29.822945Z', + foreign_landing_url: 'https://www.flickr.com/photos/31036313@N04/3846977199', + url: 'https://live.staticflickr.com/3494/3846977199_2c2a169e71_b.jpg', + creator: 'Frederick Md Publicity', + creator_url: 'https://www.flickr.com/photos/31036313@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'carpet', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'carpetcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'commercialcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'janitor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'janitorialservice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'janitorservice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'maryland', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandcarpetcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandcommercialcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandjanitor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'marylandjantiorservice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'restaurantcleaning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'restaurantcleaningoutsourced', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.94661, + unstable__provider: 'clarifai', + }, + { + name: 'commerce', + accuracy: 0.95059, + unstable__provider: 'clarifai', + }, + { + name: 'daylight', + accuracy: 0.90359, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.98267, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.90436, + unstable__provider: 'clarifai', + }, + { + name: 'offense', + accuracy: 0.92921, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.92917, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.98967, + unstable__provider: 'clarifai', + }, + { + name: 'room', + accuracy: 0.95688, + unstable__provider: 'clarifai', + }, + { + name: 'shopping', + accuracy: 0.90086, + unstable__provider: 'clarifai', + }, + { + name: 'stock', + accuracy: 0.97131, + unstable__provider: 'clarifai', + }, + { + name: 'two', + accuracy: 0.90979, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Restaurant Cleaning Outsourcing" by Frederick Md Publicity is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/9380171a-844f-42e6-84ce-cd1633cfe07a/thumb/', + detail_url: 'http://localhost:49153/v1/images/9380171a-844f-42e6-84ce-cd1633cfe07a/', + related_url: 'http://localhost:49153/v1/images/9380171a-844f-42e6-84ce-cd1633cfe07a/related/', + unstable__sensitivity: [], + }, + { + id: '25c8846a-e21f-4a09-a203-02e19f62453b', + title: 'Cancelled Blog Account', + indexed_on: '2020-04-17T09:06:20.224976Z', + foreign_landing_url: 'https://www.flickr.com/photos/31250671@N06/6076595803', + url: 'https://live.staticflickr.com/6196/6076595803_c1398c75e3.jpg', + creator: '30 Lines', + creator_url: 'https://www.flickr.com/photos/31250671@N06', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'blogging', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'contentmarketing', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Cancelled Blog Account" by 30 Lines is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 116, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/25c8846a-e21f-4a09-a203-02e19f62453b/thumb/', + detail_url: 'http://localhost:49153/v1/images/25c8846a-e21f-4a09-a203-02e19f62453b/', + related_url: 'http://localhost:49153/v1/images/25c8846a-e21f-4a09-a203-02e19f62453b/related/', + unstable__sensitivity: [], + }, + { + id: '50bb42f6-e92c-4e57-96f6-3c0a5e54b321', + title: 'Creative accounting', + indexed_on: '2020-04-29T03:56:27.010225Z', + foreign_landing_url: 'https://www.flickr.com/photos/35034357491@N01/2930747100', + url: 'https://live.staticflickr.com/3150/2930747100_b4156d77cb_b.jpg', + creator: 'angusf', + creator_url: 'https://www.flickr.com/photos/35034357491@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"Creative accounting" by angusf is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/50bb42f6-e92c-4e57-96f6-3c0a5e54b321/thumb/', + detail_url: 'http://localhost:49153/v1/images/50bb42f6-e92c-4e57-96f6-3c0a5e54b321/', + related_url: 'http://localhost:49153/v1/images/50bb42f6-e92c-4e57-96f6-3c0a5e54b321/related/', + unstable__sensitivity: [], + }, + { + id: 'ec34a40e-897c-4923-ae7a-9481de4104ae', + title: 'Expenditures on general government outsourcing (%GDP), OWID', + indexed_on: '2020-02-21T04:01:12.911660Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=86928699', + url: 'https://upload.wikimedia.org/wikipedia/commons/d/d1/Expenditures_on_general_government_outsourcing_%28%25GDP%29%2C_OWID.svg', + creator: 'Our World In Data', + creator_url: null, + license: 'by', + license_version: '3.0', + license_url: 'https://creativecommons.org/licenses/by/3.0/', + provider: 'wikimedia', + source: 'wikimedia', + category: 'illustration', + filesize: 11487, + filetype: 'svg', + tags: [], + attribution: '"Expenditures on general government outsourcing (%GDP), OWID" by Our World In Data is licensed under CC BY 3.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/3.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 600, + width: 850, + thumbnail: 'http://localhost:49153/v1/images/ec34a40e-897c-4923-ae7a-9481de4104ae/thumb/', + detail_url: 'http://localhost:49153/v1/images/ec34a40e-897c-4923-ae7a-9481de4104ae/', + related_url: 'http://localhost:49153/v1/images/ec34a40e-897c-4923-ae7a-9481de4104ae/related/', + unstable__sensitivity: [], + }, + { + id: '88b15aac-6579-4e06-882c-f59b685837e9', + title: 'Customer support decision tree', + indexed_on: '2020-04-18T04:41:29.669230Z', + foreign_landing_url: 'https://www.flickr.com/photos/38075047@N00/6463738329', + url: 'https://live.staticflickr.com/7143/6463738329_55faa2b606_b.jpg', + creator: 'dgray_xplane', + creator_url: 'https://www.flickr.com/photos/38075047@N00', + license: 'by-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'atom', + accuracy: 0.91802, + unstable__provider: 'clarifai', + }, + { + name: 'business', + accuracy: 0.96519, + unstable__provider: 'clarifai', + }, + { + name: 'chemical', + accuracy: 0.93193, + unstable__provider: 'clarifai', + }, + { + name: 'chemistry', + accuracy: 0.97791, + unstable__provider: 'clarifai', + }, + { + name: 'connectedco', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'connectedcompany', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dachisgroup', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'designing', + accuracy: 0.94432, + unstable__provider: 'clarifai', + }, + { + name: 'diagram', + accuracy: 0.93196, + unstable__provider: 'clarifai', + }, + { + name: 'graph', + accuracy: 0.90043, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.97301, + unstable__provider: 'clarifai', + }, + { + name: 'medicine', + accuracy: 0.93996, + unstable__provider: 'clarifai', + }, + { + name: 'molecular', + accuracy: 0.90814, + unstable__provider: 'clarifai', + }, + { + name: 'particle', + accuracy: 0.95156, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.9062, + unstable__provider: 'clarifai', + }, + { + name: 'research', + accuracy: 0.96416, + unstable__provider: 'clarifai', + }, + { + name: 'science', + accuracy: 0.97746, + unstable__provider: 'clarifai', + }, + { + name: 'technology', + accuracy: 0.96523, + unstable__provider: 'clarifai', + }, + { + name: 'vector', + accuracy: 0.92303, + unstable__provider: 'clarifai', + }, + { + name: 'vectors', + accuracy: 0.92337, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Customer support decision tree" by dgray_xplane is licensed under CC BY-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nd/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 694, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/88b15aac-6579-4e06-882c-f59b685837e9/thumb/', + detail_url: 'http://localhost:49153/v1/images/88b15aac-6579-4e06-882c-f59b685837e9/', + related_url: 'http://localhost:49153/v1/images/88b15aac-6579-4e06-882c-f59b685837e9/related/', + unstable__sensitivity: [], + }, + { + id: 'd5a6a5fe-50af-46ff-b7ae-847e2776c09a', + title: 'Click Here...', + indexed_on: '2020-04-24T00:52:32.400532Z', + foreign_landing_url: 'https://www.flickr.com/photos/35169090@N02/3294310361', + url: 'https://live.staticflickr.com/3228/3294310361_4f67c511a3_b.jpg', + creator: 'Cherry Cyanide', + creator_url: 'https://www.flickr.com/photos/35169090@N02', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'computer', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dissatisfaction', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'job', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mouse', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'unhappiness', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'work', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Click Here..." by Cherry Cyanide is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/d5a6a5fe-50af-46ff-b7ae-847e2776c09a/thumb/', + detail_url: 'http://localhost:49153/v1/images/d5a6a5fe-50af-46ff-b7ae-847e2776c09a/', + related_url: 'http://localhost:49153/v1/images/d5a6a5fe-50af-46ff-b7ae-847e2776c09a/related/', + unstable__sensitivity: [], + }, + { + id: '66527e22-317c-4fd7-826a-e1fe5c630b75', + title: 'Lemmings t-shirt - worn by Max', + indexed_on: '2020-04-29T02:25:32.696578Z', + foreign_landing_url: 'https://www.flickr.com/photos/31386874@N00/2906026575', + url: 'https://live.staticflickr.com/3280/2906026575_531ae9654b_b.jpg', + creator: 'New Internationalist', + creator_url: 'https://www.flickr.com/photos/31386874@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'australia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cotton', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fair', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'internationalist', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lemmings', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'new', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'organic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'trade', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tshirt', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adolescent', + accuracy: 0.9593, + unstable__provider: 'clarifai', + }, + { + name: 'casual', + accuracy: 0.9586, + unstable__provider: 'clarifai', + }, + { + name: 'child', + accuracy: 0.91371, + unstable__provider: 'clarifai', + }, + { + name: 'cute', + accuracy: 0.97475, + unstable__provider: 'clarifai', + }, + { + name: 'fashion', + accuracy: 0.92496, + unstable__provider: 'clarifai', + }, + { + name: 'isolated', + accuracy: 0.98839, + unstable__provider: 'clarifai', + }, + { + name: 'looking', + accuracy: 0.9516, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.92129, + unstable__provider: 'clarifai', + }, + { + name: 'pretty', + accuracy: 0.95043, + unstable__provider: 'clarifai', + }, + { + name: 'woman', + accuracy: 0.95985, + unstable__provider: 'clarifai', + }, + { + name: 'young', + accuracy: 0.92423, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Lemmings t-shirt - worn by Max" by New Internationalist is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 1024, + width: 495, + thumbnail: 'http://localhost:49153/v1/images/66527e22-317c-4fd7-826a-e1fe5c630b75/thumb/', + detail_url: 'http://localhost:49153/v1/images/66527e22-317c-4fd7-826a-e1fe5c630b75/', + related_url: 'http://localhost:49153/v1/images/66527e22-317c-4fd7-826a-e1fe5c630b75/related/', + unstable__sensitivity: [], + }, + { + id: 'b99fcd0e-efcc-4cd3-b047-c846b6136c96', + title: 'Its a dirty job - Day 186 of Project 365', + indexed_on: '2020-04-24T00:44:26.383919Z', + foreign_landing_url: 'https://www.flickr.com/photos/29601732@N06/3291977122', + url: 'https://live.staticflickr.com/3318/3291977122_6f5b8f10fa_b.jpg', + creator: 'purplemattfish', + creator_url: 'https://www.flickr.com/photos/29601732@N06', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '50mm', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cathode', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ccfl', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cold', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cracked', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ef50mmf14', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'faulty', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'florescent', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lamp', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'laptop', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'project365', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'purplemattfish', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'replace', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'screen', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'screwdrivers', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tft', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'weekoffifty', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Its a dirty job - Day 186 of Project 365" by purplemattfish is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 1024, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/b99fcd0e-efcc-4cd3-b047-c846b6136c96/thumb/', + detail_url: 'http://localhost:49153/v1/images/b99fcd0e-efcc-4cd3-b047-c846b6136c96/', + related_url: 'http://localhost:49153/v1/images/b99fcd0e-efcc-4cd3-b047-c846b6136c96/related/', + unstable__sensitivity: [], + }, + { + id: '45592fba-ddf7-4a8f-89d9-016a3322cb7c', + title: '385 jobs for Glasgow', + indexed_on: '2020-04-05T17:24:17.856141Z', + foreign_landing_url: 'https://www.flickr.com/photos/26320652@N02/15422538897', + url: 'https://live.staticflickr.com/3948/15422538897_dcf2c81111_b.jpg', + creator: 'Scottish Government', + creator_url: 'https://www.flickr.com/photos/26320652@N02', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"385 jobs for Glasgow" by Scottish Government is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/45592fba-ddf7-4a8f-89d9-016a3322cb7c/thumb/', + detail_url: 'http://localhost:49153/v1/images/45592fba-ddf7-4a8f-89d9-016a3322cb7c/', + related_url: 'http://localhost:49153/v1/images/45592fba-ddf7-4a8f-89d9-016a3322cb7c/related/', + unstable__sensitivity: [], + }, + { + id: '713e9c8a-690b-4a2c-8ff0-3928354fa44f', + title: '385 jobs for Glasgow', + indexed_on: '2020-04-05T17:24:17.856141Z', + foreign_landing_url: 'https://www.flickr.com/photos/26320652@N02/15609392362', + url: 'https://live.staticflickr.com/5608/15609392362_a430952953_b.jpg', + creator: 'Scottish Government', + creator_url: 'https://www.flickr.com/photos/26320652@N02', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"385 jobs for Glasgow" by Scottish Government is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/713e9c8a-690b-4a2c-8ff0-3928354fa44f/thumb/', + detail_url: 'http://localhost:49153/v1/images/713e9c8a-690b-4a2c-8ff0-3928354fa44f/', + related_url: 'http://localhost:49153/v1/images/713e9c8a-690b-4a2c-8ff0-3928354fa44f/related/', + unstable__sensitivity: [], + }, + { + id: 'eb3d3f33-8bd4-4d44-bfb9-55249aa0e079', + title: 'Nasscom 2008', + indexed_on: '2020-04-23T21:42:26.644884Z', + foreign_landing_url: 'https://www.flickr.com/photos/56087830@N00/3238443831', + url: 'https://live.staticflickr.com/3499/3238443831_031d18b610_b.jpg', + creator: 'markhillary', + creator_url: 'https://www.flickr.com/photos/56087830@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2008', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'accounting', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'conference', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'enron', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'india', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jail', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nasscom', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'offshoring', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'outsourcing', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'raju', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ramalinga', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'satyam', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'scandal', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Nasscom 2008" by markhillary is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'tags.name', + ], + mature: false, + height: 1024, + width: 768, + thumbnail: 'http://localhost:49153/v1/images/eb3d3f33-8bd4-4d44-bfb9-55249aa0e079/thumb/', + detail_url: 'http://localhost:49153/v1/images/eb3d3f33-8bd4-4d44-bfb9-55249aa0e079/', + related_url: 'http://localhost:49153/v1/images/eb3d3f33-8bd4-4d44-bfb9-55249aa0e079/related/', + unstable__sensitivity: [], + }, + { + id: '42efcaf2-c956-4090-935d-eaf52cc62492', + title: 'William Griggs', + indexed_on: '2019-01-23T12:56:57.707259Z', + foreign_landing_url: 'https://www.flickr.com/photos/32640332@N07/4024238471', + url: 'https://live.staticflickr.com/3495/4024238471_3b3cd66eea_b.jpg', + creator: 'Josh Oakes (@joshtheoak)', + creator_url: 'https://www.flickr.com/photos/32640332@N07', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'barcampnashville', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bcn09', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bcn09outsource', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nashville', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tn', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'williamgriggs', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"William Griggs" by Josh Oakes (@joshtheoak) is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/42efcaf2-c956-4090-935d-eaf52cc62492/thumb/', + detail_url: 'http://localhost:49153/v1/images/42efcaf2-c956-4090-935d-eaf52cc62492/', + related_url: 'http://localhost:49153/v1/images/42efcaf2-c956-4090-935d-eaf52cc62492/related/', + unstable__sensitivity: [], + }, + { + id: 'e61a354c-936a-4b89-b250-c17babec3ec3', + title: 'Choking Mr AT&T Robot Man!', + indexed_on: '2020-03-09T02:01:34.709896Z', + foreign_landing_url: 'https://www.flickr.com/photos/8113246@N02/49637146716', + url: 'https://live.staticflickr.com/65535/49637146716_42329d9620_b.jpg', + creator: 'M.P.N.texan', + creator_url: 'https://www.flickr.com/photos/8113246@N02', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'att', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'choking', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'customerservice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'irritation', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'phonecompany', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Choking Mr AT&T Robot Man!" by M.P.N.texan is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/e61a354c-936a-4b89-b250-c17babec3ec3/thumb/', + detail_url: 'http://localhost:49153/v1/images/e61a354c-936a-4b89-b250-c17babec3ec3/', + related_url: 'http://localhost:49153/v1/images/e61a354c-936a-4b89-b250-c17babec3ec3/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=plane&license=by&extension=jpg&source=flickr_keep-alive.json5 b/frontend/test/tapes/search/images/q=plane&license=by&extension=jpg&source=flickr_keep-alive.json5 new file mode 100644 index 00000000000..8eb76df0234 --- /dev/null +++ b/frontend/test/tapes/search/images/q=plane&license=by&extension=jpg&source=flickr_keep-alive.json5 @@ -0,0 +1,1275 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:09.442Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=plane&license=by&extension=jpg&source=flickr', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:09 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '14', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '194', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '3c5f4fa2-b41e-4515-b1dd-5dfdfb78e530', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '84304', + ], + 'last-modified': [ + 'Thu, 19 Sep 2024 03:22:05 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d3c08d6274b-ADL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: '57c323a4-672e-412f-ac62-46a2f6927565', + title: 'Plane', + indexed_on: '2020-05-02T14:16:29.908522Z', + foreign_landing_url: 'https://www.flickr.com/photos/15572047@N00/457266269', + url: 'https://live.staticflickr.com/210/457266269_87eb67ecef_b.jpg', + creator: 'TimothyJ', + creator_url: 'https://www.flickr.com/photos/15572047@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spring', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane" by TimothyJ is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 767, + thumbnail: 'http://localhost:49153/v1/images/57c323a4-672e-412f-ac62-46a2f6927565/thumb/', + detail_url: 'http://localhost:49153/v1/images/57c323a4-672e-412f-ac62-46a2f6927565/', + related_url: 'http://localhost:49153/v1/images/57c323a4-672e-412f-ac62-46a2f6927565/related/', + unstable__sensitivity: [], + }, + { + id: 'e1de5493-864f-407d-b03f-2b53f0820d88', + title: 'Plane!', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905698212', + url: 'https://live.staticflickr.com/6002/5905698212_7a08cbee13_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'niceday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/e1de5493-864f-407d-b03f-2b53f0820d88/thumb/', + detail_url: 'http://localhost:49153/v1/images/e1de5493-864f-407d-b03f-2b53f0820d88/', + related_url: 'http://localhost:49153/v1/images/e1de5493-864f-407d-b03f-2b53f0820d88/related/', + unstable__sensitivity: [], + }, + { + id: 'eb7381c6-12f4-4543-a9d4-5c3408252cb5', + title: 'Plane!', + indexed_on: '2018-12-21T12:34:40.573425Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905704080', + url: 'https://live.staticflickr.com/6022/5905704080_10bbe780e7_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'niceday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/eb7381c6-12f4-4543-a9d4-5c3408252cb5/thumb/', + detail_url: 'http://localhost:49153/v1/images/eb7381c6-12f4-4543-a9d4-5c3408252cb5/', + related_url: 'http://localhost:49153/v1/images/eb7381c6-12f4-4543-a9d4-5c3408252cb5/related/', + unstable__sensitivity: [], + }, + { + id: 'fcd408a8-370f-4966-9b48-1ee5d283824a', + title: 'Plane!', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905711118', + url: 'https://live.staticflickr.com/6013/5905711118_f6e03dda95_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'niceday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/fcd408a8-370f-4966-9b48-1ee5d283824a/thumb/', + detail_url: 'http://localhost:49153/v1/images/fcd408a8-370f-4966-9b48-1ee5d283824a/', + related_url: 'http://localhost:49153/v1/images/fcd408a8-370f-4966-9b48-1ee5d283824a/related/', + unstable__sensitivity: [], + }, + { + id: '5a0e19a8-6614-4e8b-8fad-ba336792bee0', + title: 'Plane!', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905708362', + url: 'https://live.staticflickr.com/6011/5905708362_61233b7e17_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'niceday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/5a0e19a8-6614-4e8b-8fad-ba336792bee0/thumb/', + detail_url: 'http://localhost:49153/v1/images/5a0e19a8-6614-4e8b-8fad-ba336792bee0/', + related_url: 'http://localhost:49153/v1/images/5a0e19a8-6614-4e8b-8fad-ba336792bee0/related/', + unstable__sensitivity: [], + }, + { + id: '1415f2d2-002b-4714-ab6c-aa761d96e4fb', + title: 'Plane!', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905298395', + url: 'https://live.staticflickr.com/6005/5905298395_ebe1c241fc_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'niceday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/1415f2d2-002b-4714-ab6c-aa761d96e4fb/thumb/', + detail_url: 'http://localhost:49153/v1/images/1415f2d2-002b-4714-ab6c-aa761d96e4fb/', + related_url: 'http://localhost:49153/v1/images/1415f2d2-002b-4714-ab6c-aa761d96e4fb/related/', + unstable__sensitivity: [], + }, + { + id: '94d0335e-71e9-4ae5-8201-4927a5c5ab8d', + title: 'Plane!', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905717014', + url: 'https://live.staticflickr.com/5320/5905717014_c11432a329_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'bbmf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/94d0335e-71e9-4ae5-8201-4927a5c5ab8d/thumb/', + detail_url: 'http://localhost:49153/v1/images/94d0335e-71e9-4ae5-8201-4927a5c5ab8d/', + related_url: 'http://localhost:49153/v1/images/94d0335e-71e9-4ae5-8201-4927a5c5ab8d/related/', + unstable__sensitivity: [], + }, + { + id: 'c696155b-d59e-4900-9976-549edaa20b2c', + title: 'plane landing over simpson bay', + indexed_on: '2020-04-25T11:55:28.734753Z', + foreign_landing_url: 'https://www.flickr.com/photos/38437057@N06/3894163436', + url: 'https://live.staticflickr.com/2534/3894163436_03903f260e_b.jpg', + creator: 'steve conry', + creator_url: 'https://www.flickr.com/photos/38437057@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'airports', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'planes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'aircraft', + accuracy: 0.97444, + unstable__provider: 'clarifai', + }, + { + name: 'airplane', + accuracy: 0.98594, + unstable__provider: 'clarifai', + }, + { + name: 'airport', + accuracy: 0.98134, + unstable__provider: 'clarifai', + }, + { + name: 'sky', + accuracy: 0.97456, + unstable__provider: 'clarifai', + }, + { + name: 'transportation system', + accuracy: 0.98822, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.99505, + unstable__provider: 'clarifai', + }, + { + name: 'vacation', + accuracy: 0.94627, + unstable__provider: 'clarifai', + }, + { + name: 'vehicle', + accuracy: 0.96793, + unstable__provider: 'clarifai', + }, + ], + attribution: '"plane landing over simpson bay" by steve conry is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/c696155b-d59e-4900-9976-549edaa20b2c/thumb/', + detail_url: 'http://localhost:49153/v1/images/c696155b-d59e-4900-9976-549edaa20b2c/', + related_url: 'http://localhost:49153/v1/images/c696155b-d59e-4900-9976-549edaa20b2c/related/', + unstable__sensitivity: [], + }, + { + id: 'cd716f3a-ba74-4afa-8b05-d7bfd3f430fd', + title: 'Plane 8', + indexed_on: '2018-11-08T01:45:17.652714Z', + foreign_landing_url: 'https://www.flickr.com/photos/74962633@N00/626617937', + url: 'https://live.staticflickr.com/1301/626617937_d3345e03be_b.jpg', + creator: 'solyanka', + creator_url: 'https://www.flickr.com/photos/74962633@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'aerospacemuseum', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'california', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fuji', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mcclellan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'planes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 's5200', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 's5600', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'usairforce', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane 8" by solyanka is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 721, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/cd716f3a-ba74-4afa-8b05-d7bfd3f430fd/thumb/', + detail_url: 'http://localhost:49153/v1/images/cd716f3a-ba74-4afa-8b05-d7bfd3f430fd/', + related_url: 'http://localhost:49153/v1/images/cd716f3a-ba74-4afa-8b05-d7bfd3f430fd/related/', + unstable__sensitivity: [], + }, + { + id: '286a688f-fd85-437c-8af8-537ebb09dad2', + title: 'Planes at Logan Airport - Constitution Beach - East Boston - 2014-06-01', + indexed_on: '2020-04-04T03:11:21.501477Z', + foreign_landing_url: 'https://www.flickr.com/photos/57325827@N00/14346808056', + url: 'https://live.staticflickr.com/2932/14346808056_6565b3da55_b.jpg', + creator: 'BillDamon', + creator_url: 'https://www.flickr.com/photos/57325827@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'air', + accuracy: 0.9368, + unstable__provider: 'clarifai', + }, + { + name: 'aircraft', + accuracy: 0.98953, + unstable__provider: 'clarifai', + }, + { + name: 'airplane', + accuracy: 0.99545, + unstable__provider: 'clarifai', + }, + { + name: 'airport', + accuracy: 0.98576, + unstable__provider: 'clarifai', + }, + { + name: 'flight', + accuracy: 0.96327, + unstable__provider: 'clarifai', + }, + { + name: 'jet', + accuracy: 0.95283, + unstable__provider: 'clarifai', + }, + { + name: 'sky', + accuracy: 0.9498, + unstable__provider: 'clarifai', + }, + { + name: 'transportation system', + accuracy: 0.98203, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.97165, + unstable__provider: 'clarifai', + }, + { + name: 'vehicle', + accuracy: 0.93713, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Planes at Logan Airport - Constitution Beach - East Boston - 2014-06-01" by BillDamon is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/286a688f-fd85-437c-8af8-537ebb09dad2/thumb/', + detail_url: 'http://localhost:49153/v1/images/286a688f-fd85-437c-8af8-537ebb09dad2/', + related_url: 'http://localhost:49153/v1/images/286a688f-fd85-437c-8af8-537ebb09dad2/related/', + unstable__sensitivity: [], + }, + { + id: '7bb6242a-3d00-4581-a879-cd58dbb47d67', + title: 'Plane watching @ Narita Airport', + indexed_on: '2020-04-05T07:20:29.782382Z', + foreign_landing_url: 'https://www.flickr.com/photos/22539273@N00/15259653482', + url: 'https://live.staticflickr.com/5587/15259653482_aeaf1da194_b.jpg', + creator: '*_*', + creator_url: 'https://www.flickr.com/photos/22539273@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2014', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'airport', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'asia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'chiba', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'japan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'june', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kanto', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lounge', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'narita', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spring', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane watching @ Narita Airport" by *_* is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/7bb6242a-3d00-4581-a879-cd58dbb47d67/thumb/', + detail_url: 'http://localhost:49153/v1/images/7bb6242a-3d00-4581-a879-cd58dbb47d67/', + related_url: 'http://localhost:49153/v1/images/7bb6242a-3d00-4581-a879-cd58dbb47d67/related/', + unstable__sensitivity: [], + }, + { + id: '5024bb4a-4145-473d-b741-18e380de6e60', + title: 'Abandoned Plane', + indexed_on: '2020-04-17T07:11:21.461154Z', + foreign_landing_url: 'https://www.flickr.com/photos/51117559@N03/6043650095', + url: 'https://live.staticflickr.com/6072/6043650095_a6edf57fab_b.jpg', + creator: 'Brett Levin Photography', + creator_url: 'https://www.flickr.com/photos/51117559@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'abandoned', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Abandoned Plane" by Brett Levin Photography is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/5024bb4a-4145-473d-b741-18e380de6e60/thumb/', + detail_url: 'http://localhost:49153/v1/images/5024bb4a-4145-473d-b741-18e380de6e60/', + related_url: 'http://localhost:49153/v1/images/5024bb4a-4145-473d-b741-18e380de6e60/related/', + unstable__sensitivity: [], + }, + { + id: '4e815cf4-834e-4066-b0ed-95d0dfb12b5d', + title: 'Plane!', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905143609', + url: 'https://live.staticflickr.com/5313/5905143609_54fdb28585_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/4e815cf4-834e-4066-b0ed-95d0dfb12b5d/thumb/', + detail_url: 'http://localhost:49153/v1/images/4e815cf4-834e-4066-b0ed-95d0dfb12b5d/', + related_url: 'http://localhost:49153/v1/images/4e815cf4-834e-4066-b0ed-95d0dfb12b5d/related/', + unstable__sensitivity: [], + }, + { + id: '042e9138-d45d-4ca4-9d0e-4bbf637d9653', + title: 'Plane!', + indexed_on: '2020-04-16T22:09:20.331828Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905705322', + url: 'https://live.staticflickr.com/5077/5905705322_06ddaa059a_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/042e9138-d45d-4ca4-9d0e-4bbf637d9653/thumb/', + detail_url: 'http://localhost:49153/v1/images/042e9138-d45d-4ca4-9d0e-4bbf637d9653/', + related_url: 'http://localhost:49153/v1/images/042e9138-d45d-4ca4-9d0e-4bbf637d9653/related/', + unstable__sensitivity: [], + }, + { + id: 'e467e95d-a001-4ede-a7d8-690c1ca4cd98', + title: 'Boeing YC-14 Transport plane', + indexed_on: '2016-11-17T06:50:51.011413Z', + foreign_landing_url: 'https://www.flickr.com/photos/12836528@N00/4378254447', + url: 'https://live.staticflickr.com/4027/4378254447_bc78ac0aec_b.jpg', + creator: 'kevin dooley', + creator_url: 'https://www.flickr.com/photos/12836528@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '1970s', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'airplane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'combat', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'military', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'transport', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tucson', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'unitedstates', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'us', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'yc14', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'air', + accuracy: 0.93995, + unstable__provider: 'clarifai', + }, + { + name: 'cloud', + accuracy: 0.96936, + unstable__provider: 'clarifai', + }, + { + name: 'cloudy', + accuracy: 0.90634, + unstable__provider: 'clarifai', + }, + { + name: 'light', + accuracy: 0.9734, + unstable__provider: 'clarifai', + }, + { + name: 'sight', + accuracy: 0.90518, + unstable__provider: 'clarifai', + }, + { + name: 'sky', + accuracy: 0.99159, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.94554, + unstable__provider: 'clarifai', + }, + { + name: 'winter', + accuracy: 0.90219, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Boeing YC-14 Transport plane" by kevin dooley is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 681, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/e467e95d-a001-4ede-a7d8-690c1ca4cd98/thumb/', + detail_url: 'http://localhost:49153/v1/images/e467e95d-a001-4ede-a7d8-690c1ca4cd98/', + related_url: 'http://localhost:49153/v1/images/e467e95d-a001-4ede-a7d8-690c1ca4cd98/related/', + unstable__sensitivity: [], + }, + { + id: 'be2d6d98-78e6-4f95-bde2-88d216a56e9b', + title: 'Private plane', + indexed_on: '2020-04-07T10:45:32.613222Z', + foreign_landing_url: 'https://www.flickr.com/photos/34789745@N05/8629426364', + url: 'https://live.staticflickr.com/8243/8629426364_ace37e4d69_b.jpg', + creator: 'lau.svensson', + creator_url: 'https://www.flickr.com/photos/34789745@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'airplane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'piper', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'propeller', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'aircraft', + accuracy: 0.99922, + unstable__provider: 'clarifai', + }, + { + name: 'air force', + accuracy: 0.94939, + unstable__provider: 'clarifai', + }, + { + name: 'airplane', + accuracy: 0.99929, + unstable__provider: 'clarifai', + }, + { + name: 'airport', + accuracy: 0.98918, + unstable__provider: 'clarifai', + }, + { + name: 'aviate', + accuracy: 0.9722, + unstable__provider: 'clarifai', + }, + { + name: 'flight', + accuracy: 0.96553, + unstable__provider: 'clarifai', + }, + { + name: 'flying', + accuracy: 0.90809, + unstable__provider: 'clarifai', + }, + { + name: 'military', + accuracy: 0.96498, + unstable__provider: 'clarifai', + }, + { + name: 'sky', + accuracy: 0.91688, + unstable__provider: 'clarifai', + }, + { + name: 'transportation system', + accuracy: 0.98306, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.95938, + unstable__provider: 'clarifai', + }, + { + name: 'vehicle', + accuracy: 0.98859, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Private plane" by lau.svensson is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 765, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/be2d6d98-78e6-4f95-bde2-88d216a56e9b/thumb/', + detail_url: 'http://localhost:49153/v1/images/be2d6d98-78e6-4f95-bde2-88d216a56e9b/', + related_url: 'http://localhost:49153/v1/images/be2d6d98-78e6-4f95-bde2-88d216a56e9b/related/', + unstable__sensitivity: [], + }, + { + id: 'd95b38f8-fb3b-4419-b207-9f777768a8b1', + title: 'Plane!', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905297029', + url: 'https://live.staticflickr.com/6059/5905297029_9ee69be9eb_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'niceday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/d95b38f8-fb3b-4419-b207-9f777768a8b1/thumb/', + detail_url: 'http://localhost:49153/v1/images/d95b38f8-fb3b-4419-b207-9f777768a8b1/', + related_url: 'http://localhost:49153/v1/images/d95b38f8-fb3b-4419-b207-9f777768a8b1/related/', + unstable__sensitivity: [], + }, + { + id: 'efb4cf5a-7140-464e-a4af-bf27ad91a7cb', + title: 'Plane!', + indexed_on: '2020-04-16T22:09:20.331828Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905278041', + url: 'https://live.staticflickr.com/6014/5905278041_0047cf1bd4_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'xh558', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/efb4cf5a-7140-464e-a4af-bf27ad91a7cb/thumb/', + detail_url: 'http://localhost:49153/v1/images/efb4cf5a-7140-464e-a4af-bf27ad91a7cb/', + related_url: 'http://localhost:49153/v1/images/efb4cf5a-7140-464e-a4af-bf27ad91a7cb/related/', + unstable__sensitivity: [], + }, + { + id: 'a2aa7241-0ad7-440c-90be-9d068d038439', + title: 'Plane!', + indexed_on: '2020-04-16T22:09:20.331828Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905299485', + url: 'https://live.staticflickr.com/5039/5905299485_16aabcd50c_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'niceday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/a2aa7241-0ad7-440c-90be-9d068d038439/thumb/', + detail_url: 'http://localhost:49153/v1/images/a2aa7241-0ad7-440c-90be-9d068d038439/', + related_url: 'http://localhost:49153/v1/images/a2aa7241-0ad7-440c-90be-9d068d038439/related/', + unstable__sensitivity: [], + }, + { + id: '05eddd62-5217-4de7-bf6e-662e85d03ee6', + title: 'Plane!', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905853230', + url: 'https://live.staticflickr.com/5279/5905853230_48b88bb166_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'niceday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/05eddd62-5217-4de7-bf6e-662e85d03ee6/thumb/', + detail_url: 'http://localhost:49153/v1/images/05eddd62-5217-4de7-bf6e-662e85d03ee6/', + related_url: 'http://localhost:49153/v1/images/05eddd62-5217-4de7-bf6e-662e85d03ee6/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=plane_keep-alive.json5 b/frontend/test/tapes/search/images/q=plane_keep-alive.json5 new file mode 100644 index 00000000000..554df9354ee --- /dev/null +++ b/frontend/test/tapes/search/images/q=plane_keep-alive.json5 @@ -0,0 +1,1374 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:09.401Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=plane', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:09 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '188', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + 'ac11dc29-0b6b-4786-8c45-f887c140debb', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1150', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:27:59 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d3bca24274a-ADL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: '0b55ccbb-9b8e-47ff-b431-8f7dc610fb89', + title: 'plane', + indexed_on: '2020-05-02T21:56:28.189264Z', + foreign_landing_url: 'https://www.flickr.com/photos/49503017135@N01/543886960', + url: 'https://live.staticflickr.com/1108/543886960_04fd553ba3.jpg', + creator: 'bgblogging', + creator_url: 'https://www.flickr.com/photos/49503017135@N01', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"plane" by bgblogging is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 375, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/0b55ccbb-9b8e-47ff-b431-8f7dc610fb89/thumb/', + detail_url: 'http://localhost:49153/v1/images/0b55ccbb-9b8e-47ff-b431-8f7dc610fb89/', + related_url: 'http://localhost:49153/v1/images/0b55ccbb-9b8e-47ff-b431-8f7dc610fb89/related/', + unstable__sensitivity: [], + }, + { + id: 'b5d64d24-a345-4f1c-a1b7-dec337c3639e', + title: 'Plane wing', + indexed_on: '2020-05-07T16:54:29.337133Z', + foreign_landing_url: 'https://www.flickr.com/photos/83962547@N00/39125833', + url: 'https://live.staticflickr.com/30/39125833_ebe924cbdf.jpg', + creator: 'williamson', + creator_url: 'https://www.flickr.com/photos/83962547@N00', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane wing" by williamson is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 375, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/b5d64d24-a345-4f1c-a1b7-dec337c3639e/thumb/', + detail_url: 'http://localhost:49153/v1/images/b5d64d24-a345-4f1c-a1b7-dec337c3639e/', + related_url: 'http://localhost:49153/v1/images/b5d64d24-a345-4f1c-a1b7-dec337c3639e/related/', + unstable__sensitivity: [], + }, + { + id: '57c323a4-672e-412f-ac62-46a2f6927565', + title: 'Plane', + indexed_on: '2020-05-02T14:16:29.908522Z', + foreign_landing_url: 'https://www.flickr.com/photos/15572047@N00/457266269', + url: 'https://live.staticflickr.com/210/457266269_87eb67ecef_b.jpg', + creator: 'TimothyJ', + creator_url: 'https://www.flickr.com/photos/15572047@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spring', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane" by TimothyJ is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 767, + thumbnail: 'http://localhost:49153/v1/images/57c323a4-672e-412f-ac62-46a2f6927565/thumb/', + detail_url: 'http://localhost:49153/v1/images/57c323a4-672e-412f-ac62-46a2f6927565/', + related_url: 'http://localhost:49153/v1/images/57c323a4-672e-412f-ac62-46a2f6927565/related/', + unstable__sensitivity: [], + }, + { + id: 'e1de5493-864f-407d-b03f-2b53f0820d88', + title: 'Plane!', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905698212', + url: 'https://live.staticflickr.com/6002/5905698212_7a08cbee13_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'niceday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/e1de5493-864f-407d-b03f-2b53f0820d88/thumb/', + detail_url: 'http://localhost:49153/v1/images/e1de5493-864f-407d-b03f-2b53f0820d88/', + related_url: 'http://localhost:49153/v1/images/e1de5493-864f-407d-b03f-2b53f0820d88/related/', + unstable__sensitivity: [], + }, + { + id: 'eb7381c6-12f4-4543-a9d4-5c3408252cb5', + title: 'Plane!', + indexed_on: '2018-12-21T12:34:40.573425Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905704080', + url: 'https://live.staticflickr.com/6022/5905704080_10bbe780e7_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'niceday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/eb7381c6-12f4-4543-a9d4-5c3408252cb5/thumb/', + detail_url: 'http://localhost:49153/v1/images/eb7381c6-12f4-4543-a9d4-5c3408252cb5/', + related_url: 'http://localhost:49153/v1/images/eb7381c6-12f4-4543-a9d4-5c3408252cb5/related/', + unstable__sensitivity: [], + }, + { + id: 'fcd408a8-370f-4966-9b48-1ee5d283824a', + title: 'Plane!', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905711118', + url: 'https://live.staticflickr.com/6013/5905711118_f6e03dda95_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'niceday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/fcd408a8-370f-4966-9b48-1ee5d283824a/thumb/', + detail_url: 'http://localhost:49153/v1/images/fcd408a8-370f-4966-9b48-1ee5d283824a/', + related_url: 'http://localhost:49153/v1/images/fcd408a8-370f-4966-9b48-1ee5d283824a/related/', + unstable__sensitivity: [], + }, + { + id: '5a0e19a8-6614-4e8b-8fad-ba336792bee0', + title: 'Plane!', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905708362', + url: 'https://live.staticflickr.com/6011/5905708362_61233b7e17_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'niceday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/5a0e19a8-6614-4e8b-8fad-ba336792bee0/thumb/', + detail_url: 'http://localhost:49153/v1/images/5a0e19a8-6614-4e8b-8fad-ba336792bee0/', + related_url: 'http://localhost:49153/v1/images/5a0e19a8-6614-4e8b-8fad-ba336792bee0/related/', + unstable__sensitivity: [], + }, + { + id: '1415f2d2-002b-4714-ab6c-aa761d96e4fb', + title: 'Plane!', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905298395', + url: 'https://live.staticflickr.com/6005/5905298395_ebe1c241fc_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'niceday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/1415f2d2-002b-4714-ab6c-aa761d96e4fb/thumb/', + detail_url: 'http://localhost:49153/v1/images/1415f2d2-002b-4714-ab6c-aa761d96e4fb/', + related_url: 'http://localhost:49153/v1/images/1415f2d2-002b-4714-ab6c-aa761d96e4fb/related/', + unstable__sensitivity: [], + }, + { + id: '94d0335e-71e9-4ae5-8201-4927a5c5ab8d', + title: 'Plane!', + indexed_on: '2018-11-08T17:31:32.467511Z', + foreign_landing_url: 'https://www.flickr.com/photos/71128537@N00/5905717014', + url: 'https://live.staticflickr.com/5320/5905717014_c11432a329_b.jpg', + creator: 'thegreatgonzo', + creator_url: 'https://www.flickr.com/photos/71128537@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'bbmf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waddington', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane!" by thegreatgonzo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 680, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/94d0335e-71e9-4ae5-8201-4927a5c5ab8d/thumb/', + detail_url: 'http://localhost:49153/v1/images/94d0335e-71e9-4ae5-8201-4927a5c5ab8d/', + related_url: 'http://localhost:49153/v1/images/94d0335e-71e9-4ae5-8201-4927a5c5ab8d/related/', + unstable__sensitivity: [], + }, + { + id: '47fe7f16-9e05-4c10-8bb7-9d575a30b407', + title: 'A plane...', + indexed_on: '2020-02-21T00:19:10.763766Z', + foreign_landing_url: 'https://www.flickr.com/photos/96039744@N08/31824499387', + url: 'https://live.staticflickr.com/4803/31824499387_654486f2d1_b.jpg', + creator: 'koen_jacobs', + creator_url: 'https://www.flickr.com/photos/96039744@N08', + license: 'by-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'blackandwhite', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tree', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"A plane..." by koen_jacobs is licensed under CC BY-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nd/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/47fe7f16-9e05-4c10-8bb7-9d575a30b407/thumb/', + detail_url: 'http://localhost:49153/v1/images/47fe7f16-9e05-4c10-8bb7-9d575a30b407/', + related_url: 'http://localhost:49153/v1/images/47fe7f16-9e05-4c10-8bb7-9d575a30b407/related/', + unstable__sensitivity: [], + }, + { + id: '244d5758-f84d-4b4a-af49-4db9c9efef5f', + title: 'Technical Museum Berlin - Planes', + indexed_on: '2020-03-27T20:24:26.283308Z', + foreign_landing_url: 'https://www.flickr.com/photos/46783079@N00/16209117668', + url: 'https://live.staticflickr.com/8680/16209117668_0fd9167498_b.jpg', + creator: 'Alf Igel', + creator_url: 'https://www.flickr.com/photos/46783079@N00', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'aircrafts', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'berlin', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'flugzeuge', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'planes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'technicalmuseum', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'technikmuseum', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Technical Museum Berlin - Planes" by Alf Igel is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/244d5758-f84d-4b4a-af49-4db9c9efef5f/thumb/', + detail_url: 'http://localhost:49153/v1/images/244d5758-f84d-4b4a-af49-4db9c9efef5f/', + related_url: 'http://localhost:49153/v1/images/244d5758-f84d-4b4a-af49-4db9c9efef5f/related/', + unstable__sensitivity: [], + }, + { + id: '2f779214-b1ba-4217-a3a1-833bf764fa12', + title: 'MOON & PLANE', + indexed_on: '2020-04-10T22:21:25.729742Z', + foreign_landing_url: 'https://www.flickr.com/photos/77035235@N04/10572919573', + url: 'https://live.staticflickr.com/7355/10572919573_a3bf3df9cf_b.jpg', + creator: 'lebribri', + creator_url: 'https://www.flickr.com/photos/77035235@N04', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'airbus', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'airline', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'astrophotography', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'avion', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'canon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fr', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lune', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'themoon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'unusual', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"MOON & PLANE" by lebribri is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 810, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/2f779214-b1ba-4217-a3a1-833bf764fa12/thumb/', + detail_url: 'http://localhost:49153/v1/images/2f779214-b1ba-4217-a3a1-833bf764fa12/', + related_url: 'http://localhost:49153/v1/images/2f779214-b1ba-4217-a3a1-833bf764fa12/related/', + unstable__sensitivity: [], + }, + { + id: 'c696155b-d59e-4900-9976-549edaa20b2c', + title: 'plane landing over simpson bay', + indexed_on: '2020-04-25T11:55:28.734753Z', + foreign_landing_url: 'https://www.flickr.com/photos/38437057@N06/3894163436', + url: 'https://live.staticflickr.com/2534/3894163436_03903f260e_b.jpg', + creator: 'steve conry', + creator_url: 'https://www.flickr.com/photos/38437057@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'airports', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'planes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'aircraft', + accuracy: 0.97444, + unstable__provider: 'clarifai', + }, + { + name: 'airplane', + accuracy: 0.98594, + unstable__provider: 'clarifai', + }, + { + name: 'airport', + accuracy: 0.98134, + unstable__provider: 'clarifai', + }, + { + name: 'sky', + accuracy: 0.97456, + unstable__provider: 'clarifai', + }, + { + name: 'transportation system', + accuracy: 0.98822, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.99505, + unstable__provider: 'clarifai', + }, + { + name: 'vacation', + accuracy: 0.94627, + unstable__provider: 'clarifai', + }, + { + name: 'vehicle', + accuracy: 0.96793, + unstable__provider: 'clarifai', + }, + ], + attribution: '"plane landing over simpson bay" by steve conry is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/c696155b-d59e-4900-9976-549edaa20b2c/thumb/', + detail_url: 'http://localhost:49153/v1/images/c696155b-d59e-4900-9976-549edaa20b2c/', + related_url: 'http://localhost:49153/v1/images/c696155b-d59e-4900-9976-549edaa20b2c/related/', + unstable__sensitivity: [], + }, + { + id: 'd5f3a8ae-0856-4d7a-8b64-0cffa1de8433', + title: 'North Korea - Antonov plane', + indexed_on: '2020-04-22T15:24:29.287378Z', + foreign_landing_url: 'https://www.flickr.com/photos/51812388@N02/5015889356', + url: 'https://live.staticflickr.com/4126/5015889356_59baa2058a_b.jpg', + creator: 'Roman Harak', + creator_url: 'https://www.flickr.com/photos/51812388@N02', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'air', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'airkoryo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'airport', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'an24', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'antonov', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dprk', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'korea', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'koryo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'north', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pyongyang', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"North Korea - Antonov plane" by Roman Harak is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/d5f3a8ae-0856-4d7a-8b64-0cffa1de8433/thumb/', + detail_url: 'http://localhost:49153/v1/images/d5f3a8ae-0856-4d7a-8b64-0cffa1de8433/', + related_url: 'http://localhost:49153/v1/images/d5f3a8ae-0856-4d7a-8b64-0cffa1de8433/related/', + unstable__sensitivity: [], + }, + { + id: 'cd716f3a-ba74-4afa-8b05-d7bfd3f430fd', + title: 'Plane 8', + indexed_on: '2018-11-08T01:45:17.652714Z', + foreign_landing_url: 'https://www.flickr.com/photos/74962633@N00/626617937', + url: 'https://live.staticflickr.com/1301/626617937_d3345e03be_b.jpg', + creator: 'solyanka', + creator_url: 'https://www.flickr.com/photos/74962633@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'aerospacemuseum', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'california', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fuji', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mcclellan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'planes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 's5200', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 's5600', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'usairforce', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane 8" by solyanka is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 721, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/cd716f3a-ba74-4afa-8b05-d7bfd3f430fd/thumb/', + detail_url: 'http://localhost:49153/v1/images/cd716f3a-ba74-4afa-8b05-d7bfd3f430fd/', + related_url: 'http://localhost:49153/v1/images/cd716f3a-ba74-4afa-8b05-d7bfd3f430fd/related/', + unstable__sensitivity: [], + }, + { + id: '286a688f-fd85-437c-8af8-537ebb09dad2', + title: 'Planes at Logan Airport - Constitution Beach - East Boston - 2014-06-01', + indexed_on: '2020-04-04T03:11:21.501477Z', + foreign_landing_url: 'https://www.flickr.com/photos/57325827@N00/14346808056', + url: 'https://live.staticflickr.com/2932/14346808056_6565b3da55_b.jpg', + creator: 'BillDamon', + creator_url: 'https://www.flickr.com/photos/57325827@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'air', + accuracy: 0.9368, + unstable__provider: 'clarifai', + }, + { + name: 'aircraft', + accuracy: 0.98953, + unstable__provider: 'clarifai', + }, + { + name: 'airplane', + accuracy: 0.99545, + unstable__provider: 'clarifai', + }, + { + name: 'airport', + accuracy: 0.98576, + unstable__provider: 'clarifai', + }, + { + name: 'flight', + accuracy: 0.96327, + unstable__provider: 'clarifai', + }, + { + name: 'jet', + accuracy: 0.95283, + unstable__provider: 'clarifai', + }, + { + name: 'sky', + accuracy: 0.9498, + unstable__provider: 'clarifai', + }, + { + name: 'transportation system', + accuracy: 0.98203, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.97165, + unstable__provider: 'clarifai', + }, + { + name: 'vehicle', + accuracy: 0.93713, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Planes at Logan Airport - Constitution Beach - East Boston - 2014-06-01" by BillDamon is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/286a688f-fd85-437c-8af8-537ebb09dad2/thumb/', + detail_url: 'http://localhost:49153/v1/images/286a688f-fd85-437c-8af8-537ebb09dad2/', + related_url: 'http://localhost:49153/v1/images/286a688f-fd85-437c-8af8-537ebb09dad2/related/', + unstable__sensitivity: [], + }, + { + id: 'a1465f8e-26a4-40e5-ab07-0fa6caefe3b6', + title: 'Plane', + indexed_on: '2020-04-02T10:47:21.909114Z', + foreign_landing_url: 'https://www.flickr.com/photos/69474058@N03/11731068223', + url: 'https://live.staticflickr.com/7454/11731068223_d5368c81a1_b.jpg', + creator: 'Leo P. Hidalgo (@yompyz)', + creator_url: 'https://www.flickr.com/photos/69474058@N03', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '600d', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'aeropuerto', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'airport', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'andalucia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'avion', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'aviones', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'canon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'eos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ileohidalgo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'malaga', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'planes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'random', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rebel', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sun', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sunrise', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 't3i', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'teen', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'yompy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'yompyhere', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'yompyz', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'young', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane" by Leo P. Hidalgo (@yompyz) is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/a1465f8e-26a4-40e5-ab07-0fa6caefe3b6/thumb/', + detail_url: 'http://localhost:49153/v1/images/a1465f8e-26a4-40e5-ab07-0fa6caefe3b6/', + related_url: 'http://localhost:49153/v1/images/a1465f8e-26a4-40e5-ab07-0fa6caefe3b6/related/', + unstable__sensitivity: [], + }, + { + id: '1e32f76b-35e3-4c07-9080-74f3c60bc773', + title: 'Hills, grain elevator, and little yellow plane (really)', + indexed_on: '2020-05-05T22:57:27.920192Z', + foreign_landing_url: 'https://www.flickr.com/photos/88887525@N00/178199167', + url: 'https://live.staticflickr.com/63/178199167_ba4c4be6a8_b.jpg', + creator: 'walla2chick', + creator_url: 'https://www.flickr.com/photos/88887525@N00', + license: 'by-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2802', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'elevator', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'farm', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'light', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'morning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'palouse', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'palousehills', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'shadows', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'steptoebutte', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'usa', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wa', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'washington', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'yellow', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Hills, grain elevator, and little yellow plane (really)" by walla2chick is licensed under CC BY-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 540, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/1e32f76b-35e3-4c07-9080-74f3c60bc773/thumb/', + detail_url: 'http://localhost:49153/v1/images/1e32f76b-35e3-4c07-9080-74f3c60bc773/', + related_url: 'http://localhost:49153/v1/images/1e32f76b-35e3-4c07-9080-74f3c60bc773/related/', + unstable__sensitivity: [], + }, + { + id: '7bb6242a-3d00-4581-a879-cd58dbb47d67', + title: 'Plane watching @ Narita Airport', + indexed_on: '2020-04-05T07:20:29.782382Z', + foreign_landing_url: 'https://www.flickr.com/photos/22539273@N00/15259653482', + url: 'https://live.staticflickr.com/5587/15259653482_aeaf1da194_b.jpg', + creator: '*_*', + creator_url: 'https://www.flickr.com/photos/22539273@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2014', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'airport', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'asia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'chiba', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'japan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'june', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kanto', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lounge', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'narita', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spring', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane watching @ Narita Airport" by *_* is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/7bb6242a-3d00-4581-a879-cd58dbb47d67/thumb/', + detail_url: 'http://localhost:49153/v1/images/7bb6242a-3d00-4581-a879-cd58dbb47d67/', + related_url: 'http://localhost:49153/v1/images/7bb6242a-3d00-4581-a879-cd58dbb47d67/related/', + unstable__sensitivity: [], + }, + { + id: 'd9fde052-e766-499f-932f-12791762ca07', + title: 'Plane', + indexed_on: '2018-12-21T12:34:40.573425Z', + foreign_landing_url: 'https://www.flickr.com/photos/31044643@N00/5982650691', + url: 'https://live.staticflickr.com/6143/5982650691_aee2f157ce_b.jpg', + creator: 'MDV', + creator_url: 'https://www.flickr.com/photos/31044643@N00', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'airplane', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plane', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Plane" by MDV is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 558, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/d9fde052-e766-499f-932f-12791762ca07/thumb/', + detail_url: 'http://localhost:49153/v1/images/d9fde052-e766-499f-932f-12791762ca07/', + related_url: 'http://localhost:49153/v1/images/d9fde052-e766-499f-932f-12791762ca07/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=school+clip+art&license=by&extension=jpg&source=flickr_keep-alive.json5 b/frontend/test/tapes/search/images/q=school+clip+art&license=by&extension=jpg&source=flickr_keep-alive.json5 new file mode 100644 index 00000000000..88cf1388d00 --- /dev/null +++ b/frontend/test/tapes/search/images/q=school+clip+art&license=by&extension=jpg&source=flickr_keep-alive.json5 @@ -0,0 +1,2463 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:10.922Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=school+clip+art&license=by&extension=jpg&source=flickr', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:12 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '198', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '10619ef2-4034-44be-96b0-923d83eed85e', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'MISS', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:47:12 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d455afc5aa4-MEL', + ], + }, + body: { + result_count: 48, + page_count: 1, + page_size: 20, + page: 1, + results: [ + { + id: '80832cf0-8ddf-43d4-9fa5-66bc9eed2f5c', + title: 'Op Art Holiday Card for Aurel Langlois', + indexed_on: '2016-11-17T00:30:36.490046Z', + foreign_landing_url: 'https://www.flickr.com/photos/16077535@N00/5250994810', + url: 'https://live.staticflickr.com/5007/5250994810_550c875d2c_b.jpg', + creator: 'Dan Zen', + creator_url: 'https://www.flickr.com/photos/16077535@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'aurellanglois', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'card', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'friends', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fun', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'gift', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'holiday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'inexpensive', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'op', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'opart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'opartica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'school', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'touchy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'work', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: 0.95869, + unstable__provider: 'clarifai', + }, + { + name: 'blank', + accuracy: 0.90998, + unstable__provider: 'clarifai', + }, + { + name: 'business', + accuracy: 0.94049, + unstable__provider: 'clarifai', + }, + { + name: 'clip', + accuracy: 0.91142, + unstable__provider: 'clarifai', + }, + { + name: 'design', + accuracy: 0.95827, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.93616, + unstable__provider: 'clarifai', + }, + { + name: 'graphic', + accuracy: 0.91273, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.96432, + unstable__provider: 'clarifai', + }, + { + name: 'image', + accuracy: 0.95382, + unstable__provider: 'clarifai', + }, + { + name: 'isolated', + accuracy: 0.92649, + unstable__provider: 'clarifai', + }, + { + name: 'retro', + accuracy: 0.91998, + unstable__provider: 'clarifai', + }, + { + name: 'shape', + accuracy: 0.92872, + unstable__provider: 'clarifai', + }, + { + name: 'square', + accuracy: 0.93083, + unstable__provider: 'clarifai', + }, + { + name: 'vector', + accuracy: 0.91998, + unstable__provider: 'clarifai', + }, + { + name: 'video', + accuracy: 0.93513, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Op Art Holiday Card for Aurel Langlois" by Dan Zen is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 896, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/80832cf0-8ddf-43d4-9fa5-66bc9eed2f5c/thumb/', + detail_url: 'http://localhost:49153/v1/images/80832cf0-8ddf-43d4-9fa5-66bc9eed2f5c/', + related_url: 'http://localhost:49153/v1/images/80832cf0-8ddf-43d4-9fa5-66bc9eed2f5c/related/', + unstable__sensitivity: [], + }, + { + id: '7345dd95-be16-4398-9e91-bf6b78369597', + title: "Newspaper clipping title reads 'Striking Cloakmakers Filled the Streets Coming out of the Manhattan Lyceum After the Meeting.' Article headline reads '50,000 Cloakmakers Involved in Strike.' July 8, 1916.", + indexed_on: '2016-11-17T20:11:52.897787Z', + foreign_landing_url: 'https://www.flickr.com/photos/38445726@N04/5279161439', + url: 'https://live.staticflickr.com/5162/5279161439_93e57e8479_b.jpg', + creator: 'Kheel Center, Cornell University Library', + creator_url: 'https://www.flickr.com/photos/38445726@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'cloakmakers', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cornelluniversitylibrary', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kheelcenterforlabormanagementdocumentationandarchives', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'streetscenes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'strikes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'administration', + accuracy: 0.96984, + unstable__provider: 'clarifai', + }, + { + name: 'adult', + accuracy: 0.99756, + unstable__provider: 'clarifai', + }, + { + name: 'art', + accuracy: 0.93449, + unstable__provider: 'clarifai', + }, + { + name: 'crowd', + accuracy: 0.96739, + unstable__provider: 'clarifai', + }, + { + name: 'group', + accuracy: 0.99621, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.96221, + unstable__provider: 'clarifai', + }, + { + name: 'leader', + accuracy: 0.92126, + unstable__provider: 'clarifai', + }, + { + name: 'lithograph', + accuracy: 0.93221, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.98548, + unstable__provider: 'clarifai', + }, + { + name: 'many', + accuracy: 0.9965, + unstable__provider: 'clarifai', + }, + { + name: 'military', + accuracy: 0.97019, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.97735, + unstable__provider: 'clarifai', + }, + { + name: 'painting', + accuracy: 0.90354, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.99982, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.96782, + unstable__provider: 'clarifai', + }, + { + name: 'print', + accuracy: 0.99882, + unstable__provider: 'clarifai', + }, + { + name: 'soldier', + accuracy: 0.90758, + unstable__provider: 'clarifai', + }, + { + name: 'text', + accuracy: 0.94393, + unstable__provider: 'clarifai', + }, + { + name: 'war', + accuracy: 0.98846, + unstable__provider: 'clarifai', + }, + { + name: 'woman', + accuracy: 0.94227, + unstable__provider: 'clarifai', + }, + ], + attribution: "\"Newspaper clipping title reads 'Striking Cloakmakers Filled the Streets Coming out of the Manhattan Lyceum After the Meeting.' Article headline reads '50,000 Cloakmakers Involved in Strike.' July 8, 1916.\" by Kheel Center, Cornell University Library is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.", + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 720, + thumbnail: 'http://localhost:49153/v1/images/7345dd95-be16-4398-9e91-bf6b78369597/thumb/', + detail_url: 'http://localhost:49153/v1/images/7345dd95-be16-4398-9e91-bf6b78369597/', + related_url: 'http://localhost:49153/v1/images/7345dd95-be16-4398-9e91-bf6b78369597/related/', + unstable__sensitivity: [], + }, + { + id: '9850434f-f24f-4a69-979b-7a58d95f1b51', + title: 'Is this really our school mascot?', + indexed_on: '2020-05-02T06:03:04.997769Z', + foreign_landing_url: 'https://www.flickr.com/photos/57551232@N00/354656887', + url: 'https://live.staticflickr.com/123/354656887_2b66a1434c_m.jpg', + creator: 'lisa.williams', + creator_url: 'https://www.flickr.com/photos/57551232@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"Is this really our school mascot?" by lisa.williams is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 214, + width: 240, + thumbnail: 'http://localhost:49153/v1/images/9850434f-f24f-4a69-979b-7a58d95f1b51/thumb/', + detail_url: 'http://localhost:49153/v1/images/9850434f-f24f-4a69-979b-7a58d95f1b51/', + related_url: 'http://localhost:49153/v1/images/9850434f-f24f-4a69-979b-7a58d95f1b51/related/', + unstable__sensitivity: [], + }, + { + id: 'e7e2b366-cf0e-4009-8a5f-a50b55334d2b', + title: 'School Year Infographic', + indexed_on: '2020-04-04T17:37:20.388932Z', + foreign_landing_url: 'https://www.flickr.com/photos/99345739@N03/14594228528', + url: 'https://live.staticflickr.com/3889/14594228528_e2f03d8354_b.jpg', + creator: 'projectidea', + creator_url: 'https://www.flickr.com/photos/99345739@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"School Year Infographic" by projectidea is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 378, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/e7e2b366-cf0e-4009-8a5f-a50b55334d2b/thumb/', + detail_url: 'http://localhost:49153/v1/images/e7e2b366-cf0e-4009-8a5f-a50b55334d2b/', + related_url: 'http://localhost:49153/v1/images/e7e2b366-cf0e-4009-8a5f-a50b55334d2b/related/', + unstable__sensitivity: [], + }, + { + id: 'a6b3a543-3a75-4ef2-8591-3219cdcb3045', + title: 'The Making of Harry Potter', + indexed_on: '2016-11-17T19:12:36.279134Z', + foreign_landing_url: 'https://www.flickr.com/photos/52957117@N04/7325957478', + url: 'https://live.staticflickr.com/8013/7325957478_f708aee5f3_b.jpg', + creator: 'Dave Catchpole', + creator_url: 'https://www.flickr.com/photos/52957117@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: 242939, + filetype: null, + tags: [ + { + name: 'bros', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'danielradcliffe', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dumbledore', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'emmawatson', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'filch', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'flitwick', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hagrid', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'harry', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hedwig', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'magic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'making', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mcgonagall', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'moody', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ollivanders', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'potter', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rupertgrint', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'snape', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'trelawny', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'warner', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'watford', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wizard', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wizardry', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'architecture', + accuracy: 0.9644, + unstable__provider: 'clarifai', + }, + { + name: 'art', + accuracy: 0.93017, + unstable__provider: 'clarifai', + }, + { + name: 'building', + accuracy: 0.92718, + unstable__provider: 'clarifai', + }, + { + name: 'city', + accuracy: 0.92129, + unstable__provider: 'clarifai', + }, + { + name: 'evening', + accuracy: 0.90888, + unstable__provider: 'clarifai', + }, + { + name: 'light', + accuracy: 0.95259, + unstable__provider: 'clarifai', + }, + { + name: 'religion', + accuracy: 0.93949, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.9648, + unstable__provider: 'clarifai', + }, + ], + attribution: '"The Making of Harry Potter" by Dave Catchpole is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/a6b3a543-3a75-4ef2-8591-3219cdcb3045/thumb/', + detail_url: 'http://localhost:49153/v1/images/a6b3a543-3a75-4ef2-8591-3219cdcb3045/', + related_url: 'http://localhost:49153/v1/images/a6b3a543-3a75-4ef2-8591-3219cdcb3045/related/', + unstable__sensitivity: [], + }, + { + id: 'b572976b-3ed6-4110-95ee-d66801df7d83', + title: 'CIA Bakery Café Logo', + indexed_on: '2020-04-17T01:29:29.433207Z', + foreign_landing_url: 'https://www.flickr.com/photos/48889115061@N01/5958439201', + url: 'https://live.staticflickr.com/6131/5958439201_9141e92d47.jpg', + creator: "Howdy, I'm H. Michael Karshis", + creator_url: 'https://www.flickr.com/photos/48889115061@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'alaindubernard', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bakery', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'branding', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'chef', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'color', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'colour', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cooking', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'culinarycollege', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fresh', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hmichaelkarshis', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hmkarchive', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jacobgriffin', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'logo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'riverwalk', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sanantonio', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'school', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spoons', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'thepearl', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'yum', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: 0.9937, + unstable__provider: 'clarifai', + }, + { + name: 'character', + accuracy: 0.9927, + unstable__provider: 'clarifai', + }, + { + name: 'cheerful', + accuracy: 0.93388, + unstable__provider: 'clarifai', + }, + { + name: 'clip', + accuracy: 0.95647, + unstable__provider: 'clarifai', + }, + { + name: 'cockamamie', + accuracy: 0.99342, + unstable__provider: 'clarifai', + }, + { + name: 'crazy', + accuracy: 0.99466, + unstable__provider: 'clarifai', + }, + { + name: 'cute', + accuracy: 0.98756, + unstable__provider: 'clarifai', + }, + { + name: 'design', + accuracy: 0.91206, + unstable__provider: 'clarifai', + }, + { + name: 'far-out', + accuracy: 0.9964, + unstable__provider: 'clarifai', + }, + { + name: 'funny', + accuracy: 0.99815, + unstable__provider: 'clarifai', + }, + { + name: 'hand', + accuracy: 0.93447, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.9938, + unstable__provider: 'clarifai', + }, + { + name: 'old', + accuracy: 0.90877, + unstable__provider: 'clarifai', + }, + { + name: 'retro', + accuracy: 0.99656, + unstable__provider: 'clarifai', + }, + { + name: 'scribble', + accuracy: 0.9761, + unstable__provider: 'clarifai', + }, + { + name: 'sketch', + accuracy: 0.99655, + unstable__provider: 'clarifai', + }, + { + name: 'traditional', + accuracy: 0.98236, + unstable__provider: 'clarifai', + }, + { + name: 'visuals', + accuracy: 0.90858, + unstable__provider: 'clarifai', + }, + ], + attribution: '"CIA Bakery Café Logo" by Howdy, I\'m H. Michael Karshis is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'tags.name', + ], + mature: false, + height: 500, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/b572976b-3ed6-4110-95ee-d66801df7d83/thumb/', + detail_url: 'http://localhost:49153/v1/images/b572976b-3ed6-4110-95ee-d66801df7d83/', + related_url: 'http://localhost:49153/v1/images/b572976b-3ed6-4110-95ee-d66801df7d83/related/', + unstable__sensitivity: [], + }, + { + id: '1e2ab302-92a8-4263-a052-8b3221b27920', + title: 'The Making of Harry Potter', + indexed_on: '2016-11-16T20:34:46.411303Z', + foreign_landing_url: 'https://www.flickr.com/photos/52957117@N04/7325967408', + url: 'https://live.staticflickr.com/8141/7325967408_5c82f7df39_b.jpg', + creator: 'Dave Catchpole', + creator_url: 'https://www.flickr.com/photos/52957117@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: 274612, + filetype: null, + tags: [ + { + name: 'bros', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'danielradcliffe', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dumbledore', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'emmawatson', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'filch', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'flitwick', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hagrid', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'harry', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hedwig', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'magic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'making', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mcgonagall', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'moody', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ollivanders', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'potter', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rupertgrint', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'snape', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'trelawny', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'warner', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'watford', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wizard', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wizardry', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ancient', + accuracy: 0.93244, + unstable__provider: 'clarifai', + }, + { + name: 'architecture', + accuracy: 0.99163, + unstable__provider: 'clarifai', + }, + { + name: 'art', + accuracy: 0.92418, + unstable__provider: 'clarifai', + }, + { + name: 'building', + accuracy: 0.98085, + unstable__provider: 'clarifai', + }, + { + name: 'castle', + accuracy: 0.90203, + unstable__provider: 'clarifai', + }, + { + name: 'cathedral', + accuracy: 0.93594, + unstable__provider: 'clarifai', + }, + { + name: 'church', + accuracy: 0.96662, + unstable__provider: 'clarifai', + }, + { + name: 'city', + accuracy: 0.95659, + unstable__provider: 'clarifai', + }, + { + name: 'Gothic', + accuracy: 0.90727, + unstable__provider: 'clarifai', + }, + { + name: 'goth like', + accuracy: 0.9146, + unstable__provider: 'clarifai', + }, + { + name: 'old', + accuracy: 0.95164, + unstable__provider: 'clarifai', + }, + { + name: 'outdoors', + accuracy: 0.91104, + unstable__provider: 'clarifai', + }, + { + name: 'religion', + accuracy: 0.96345, + unstable__provider: 'clarifai', + }, + { + name: 'stone', + accuracy: 0.90453, + unstable__provider: 'clarifai', + }, + { + name: 'tourism', + accuracy: 0.90731, + unstable__provider: 'clarifai', + }, + { + name: 'tower', + accuracy: 0.91974, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.97532, + unstable__provider: 'clarifai', + }, + ], + attribution: '"The Making of Harry Potter" by Dave Catchpole is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/1e2ab302-92a8-4263-a052-8b3221b27920/thumb/', + detail_url: 'http://localhost:49153/v1/images/1e2ab302-92a8-4263-a052-8b3221b27920/', + related_url: 'http://localhost:49153/v1/images/1e2ab302-92a8-4263-a052-8b3221b27920/related/', + unstable__sensitivity: [], + }, + { + id: '75487168-466c-44f8-a42d-ecd0f636a808', + title: 'The Making of Harry Potter', + indexed_on: '2016-11-17T19:26:53.220800Z', + foreign_landing_url: 'https://www.flickr.com/photos/52957117@N04/7306682402', + url: 'https://live.staticflickr.com/7090/7306682402_6370f9d315_b.jpg', + creator: 'Dave Catchpole', + creator_url: 'https://www.flickr.com/photos/52957117@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'bros', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'danielradcliffe', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dumbledore', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'emmawatson', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'filch', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'flitwick', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hagrid', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'harry', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hedwig', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'magic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'making', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mcgonagall', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'moody', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ollivanders', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'potter', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rupertgrint', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'snape', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'trelawny', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'warner', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'watford', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wizard', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wizardry', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'architecture', + accuracy: 0.96693, + unstable__provider: 'clarifai', + }, + { + name: 'art', + accuracy: 0.932, + unstable__provider: 'clarifai', + }, + { + name: 'church', + accuracy: 0.90425, + unstable__provider: 'clarifai', + }, + { + name: 'illuminated', + accuracy: 0.90463, + unstable__provider: 'clarifai', + }, + { + name: 'lamp', + accuracy: 0.90618, + unstable__provider: 'clarifai', + }, + { + name: 'light', + accuracy: 0.95966, + unstable__provider: 'clarifai', + }, + { + name: 'religion', + accuracy: 0.95217, + unstable__provider: 'clarifai', + }, + ], + attribution: '"The Making of Harry Potter" by Dave Catchpole is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 1024, + width: 683, + thumbnail: 'http://localhost:49153/v1/images/75487168-466c-44f8-a42d-ecd0f636a808/thumb/', + detail_url: 'http://localhost:49153/v1/images/75487168-466c-44f8-a42d-ecd0f636a808/', + related_url: 'http://localhost:49153/v1/images/75487168-466c-44f8-a42d-ecd0f636a808/related/', + unstable__sensitivity: [], + }, + { + id: 'a5de801e-02df-4d36-98b4-2aeec0720709', + title: 'Bright Ideas Award!', + indexed_on: '2019-05-17T19:22:56.927184Z', + foreign_landing_url: 'https://www.flickr.com/photos/26809429@N02/3532973760', + url: 'https://live.staticflickr.com/3645/3532973760_a92dc720e0_b.jpg', + creator: 'rutlo', + creator_url: 'https://www.flickr.com/photos/26809429@N02', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '1994', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adolescence', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'award', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bonvivant', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'child', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'childhood', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'clip', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'elementary', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'english', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lightbulbs', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'matthewrutledge', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'papers', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rutlo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'scanned', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'school', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'teachers', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Bright Ideas Award!" by rutlo is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'tags.name', + ], + mature: false, + height: 1024, + width: 791, + thumbnail: 'http://localhost:49153/v1/images/a5de801e-02df-4d36-98b4-2aeec0720709/thumb/', + detail_url: 'http://localhost:49153/v1/images/a5de801e-02df-4d36-98b4-2aeec0720709/', + related_url: 'http://localhost:49153/v1/images/a5de801e-02df-4d36-98b4-2aeec0720709/related/', + unstable__sensitivity: [], + }, + { + id: '5ae85554-6006-49e8-953d-4ba22397e86d', + title: "Edith Edmondson's Notebook, 1933", + indexed_on: '2016-11-16T23:22:01.417441Z', + foreign_landing_url: 'https://www.flickr.com/photos/36431706@N04/4748350775', + url: 'https://live.staticflickr.com/4141/4748350775_f275bc5385_b.jpg', + creator: 'estelle & ivy', + creator_url: 'https://www.flickr.com/photos/36431706@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'antique', + accuracy: 0.98191, + unstable__provider: 'clarifai', + }, + { + name: 'text', + accuracy: 0.99124, + unstable__provider: 'clarifai', + }, + { + name: 'writing', + accuracy: 0.98983, + unstable__provider: 'clarifai', + }, + { + name: 'mathematics', + accuracy: 0.97173, + unstable__provider: 'clarifai', + }, + { + name: 'paper', + accuracy: 0.9975, + unstable__provider: 'clarifai', + }, + { + name: 'calligraphy', + accuracy: 0.97207, + unstable__provider: 'clarifai', + }, + { + name: 'document', + accuracy: 0.99555, + unstable__provider: 'clarifai', + }, + { + name: 'manuscript', + accuracy: 0.99463, + unstable__provider: 'clarifai', + }, + { + name: 'poetry', + accuracy: 0.97339, + unstable__provider: 'clarifai', + }, + { + name: 'print', + accuracy: 0.96682, + unstable__provider: 'clarifai', + }, + { + name: 'school', + accuracy: 0.98509, + unstable__provider: 'clarifai', + }, + { + name: 'script', + accuracy: 0.96678, + unstable__provider: 'clarifai', + }, + { + name: 'algebra', + accuracy: 0.98101, + unstable__provider: 'clarifai', + }, + { + name: 'book bindings', + accuracy: 0.98221, + unstable__provider: 'clarifai', + }, + { + name: 'education', + accuracy: 0.98189, + unstable__provider: 'clarifai', + }, + { + name: 'handwriting', + accuracy: 0.99619, + unstable__provider: 'clarifai', + }, + { + name: 'page', + accuracy: 0.99162, + unstable__provider: 'clarifai', + }, + { + name: 'retro', + accuracy: 0.97578, + unstable__provider: 'clarifai', + }, + { + name: 'vintage', + accuracy: 0.98459, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Edith Edmondson\'s Notebook, 1933" by estelle & ivy is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 1024, + width: 800, + thumbnail: 'http://localhost:49153/v1/images/5ae85554-6006-49e8-953d-4ba22397e86d/thumb/', + detail_url: 'http://localhost:49153/v1/images/5ae85554-6006-49e8-953d-4ba22397e86d/', + related_url: 'http://localhost:49153/v1/images/5ae85554-6006-49e8-953d-4ba22397e86d/related/', + unstable__sensitivity: [], + }, + { + id: 'c4a0ae5e-9527-4d8e-b30a-e21711b32997', + title: "Edith Edmondson's Notebook, 1933", + indexed_on: '2020-04-21T23:48:33.978555Z', + foreign_landing_url: 'https://www.flickr.com/photos/36431706@N04/4748354973', + url: 'https://live.staticflickr.com/4073/4748354973_a4f582576a_b.jpg', + creator: 'estelle & ivy', + creator_url: 'https://www.flickr.com/photos/36431706@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'document', + accuracy: 0.99646, + unstable__provider: 'clarifai', + }, + { + name: 'poetry', + accuracy: 0.97879, + unstable__provider: 'clarifai', + }, + { + name: 'school', + accuracy: 0.98167, + unstable__provider: 'clarifai', + }, + { + name: 'script', + accuracy: 0.96009, + unstable__provider: 'clarifai', + }, + { + name: 'writing', + accuracy: 0.9871, + unstable__provider: 'clarifai', + }, + { + name: 'book bindings', + accuracy: 0.9864, + unstable__provider: 'clarifai', + }, + { + name: 'calligraphy', + accuracy: 0.96647, + unstable__provider: 'clarifai', + }, + { + name: 'handwriting', + accuracy: 0.99407, + unstable__provider: 'clarifai', + }, + { + name: 'education', + accuracy: 0.97746, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.9702, + unstable__provider: 'clarifai', + }, + { + name: 'note', + accuracy: 0.97407, + unstable__provider: 'clarifai', + }, + { + name: 'page', + accuracy: 0.98796, + unstable__provider: 'clarifai', + }, + { + name: 'paper', + accuracy: 0.99707, + unstable__provider: 'clarifai', + }, + { + name: 'print', + accuracy: 0.98587, + unstable__provider: 'clarifai', + }, + { + name: 'retro', + accuracy: 0.97269, + unstable__provider: 'clarifai', + }, + { + name: 'vintage', + accuracy: 0.99013, + unstable__provider: 'clarifai', + }, + { + name: 'antique', + accuracy: 0.97599, + unstable__provider: 'clarifai', + }, + { + name: 'manuscript', + accuracy: 0.99359, + unstable__provider: 'clarifai', + }, + { + name: 'text', + accuracy: 0.99285, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Edith Edmondson\'s Notebook, 1933" by estelle & ivy is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 1004, + width: 776, + thumbnail: 'http://localhost:49153/v1/images/c4a0ae5e-9527-4d8e-b30a-e21711b32997/thumb/', + detail_url: 'http://localhost:49153/v1/images/c4a0ae5e-9527-4d8e-b30a-e21711b32997/', + related_url: 'http://localhost:49153/v1/images/c4a0ae5e-9527-4d8e-b30a-e21711b32997/related/', + unstable__sensitivity: [], + }, + { + id: '1bb86674-b532-40b9-a217-afcdc4d6dc61', + title: 'Newspaper photgraphs in the New York Evening Journal show the burned Asch Building interior and exterior, March 27, 1911', + indexed_on: '2020-04-23T07:30:28.253908Z', + foreign_landing_url: 'https://www.flickr.com/photos/38445726@N04/5279144149', + url: 'https://live.staticflickr.com/5165/5279144149_48f48872b9_b.jpg', + creator: 'Kheel Center, Cornell University Library', + creator_url: 'https://www.flickr.com/photos/38445726@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'cornelluniversitylibrary', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kheelcenterforlabormanagementdocumentationandarchives', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'safety', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'shirtwaistmakers', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'workingconditions', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'antique', + accuracy: 0.96668, + unstable__provider: 'clarifai', + }, + { + name: 'art', + accuracy: 0.93987, + unstable__provider: 'clarifai', + }, + { + name: 'bank', + accuracy: 0.90944, + unstable__provider: 'clarifai', + }, + { + name: 'currency', + accuracy: 0.93101, + unstable__provider: 'clarifai', + }, + { + name: 'dollar', + accuracy: 0.90971, + unstable__provider: 'clarifai', + }, + { + name: 'group', + accuracy: 0.93876, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.99462, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.9182, + unstable__provider: 'clarifai', + }, + { + name: 'old', + accuracy: 0.95437, + unstable__provider: 'clarifai', + }, + { + name: 'paper', + accuracy: 0.96317, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.99206, + unstable__provider: 'clarifai', + }, + { + name: 'print', + accuracy: 0.97218, + unstable__provider: 'clarifai', + }, + { + name: 'retro', + accuracy: 0.92984, + unstable__provider: 'clarifai', + }, + { + name: 'vehicle', + accuracy: 0.93871, + unstable__provider: 'clarifai', + }, + { + name: 'vintage', + accuracy: 0.97023, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Newspaper photgraphs in the New York Evening Journal show the burned Asch Building interior and exterior, March 27, 1911" by Kheel Center, Cornell University Library is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 1024, + width: 842, + thumbnail: 'http://localhost:49153/v1/images/1bb86674-b532-40b9-a217-afcdc4d6dc61/thumb/', + detail_url: 'http://localhost:49153/v1/images/1bb86674-b532-40b9-a217-afcdc4d6dc61/', + related_url: 'http://localhost:49153/v1/images/1bb86674-b532-40b9-a217-afcdc4d6dc61/related/', + unstable__sensitivity: [], + }, + { + id: 'df0ebf3f-b9bf-41ea-b94a-29a89c50ff5e', + title: "Edith Edmondson's Notebook,1933", + indexed_on: '2020-04-21T23:48:33.978555Z', + foreign_landing_url: 'https://www.flickr.com/photos/36431706@N04/4748983066', + url: 'https://live.staticflickr.com/4134/4748983066_0f1d78c34e_b.jpg', + creator: 'estelle & ivy', + creator_url: 'https://www.flickr.com/photos/36431706@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'calligraphy', + accuracy: 0.95539, + unstable__provider: 'clarifai', + }, + { + name: 'education', + accuracy: 0.98792, + unstable__provider: 'clarifai', + }, + { + name: 'graphic', + accuracy: 0.95395, + unstable__provider: 'clarifai', + }, + { + name: 'handwriting', + accuracy: 0.99127, + unstable__provider: 'clarifai', + }, + { + name: 'page', + accuracy: 0.9702, + unstable__provider: 'clarifai', + }, + { + name: 'paper', + accuracy: 0.99653, + unstable__provider: 'clarifai', + }, + { + name: 'print', + accuracy: 0.98683, + unstable__provider: 'clarifai', + }, + { + name: 'text', + accuracy: 0.99084, + unstable__provider: 'clarifai', + }, + { + name: 'writing', + accuracy: 0.98269, + unstable__provider: 'clarifai', + }, + { + name: 'book bindings', + accuracy: 0.97024, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.97244, + unstable__provider: 'clarifai', + }, + { + name: 'manuscript', + accuracy: 0.97547, + unstable__provider: 'clarifai', + }, + { + name: 'music', + accuracy: 0.96738, + unstable__provider: 'clarifai', + }, + { + name: 'retro', + accuracy: 0.96658, + unstable__provider: 'clarifai', + }, + { + name: 'vintage', + accuracy: 0.98307, + unstable__provider: 'clarifai', + }, + { + name: 'document', + accuracy: 0.98984, + unstable__provider: 'clarifai', + }, + { + name: 'poetry', + accuracy: 0.97647, + unstable__provider: 'clarifai', + }, + { + name: 'school', + accuracy: 0.98387, + unstable__provider: 'clarifai', + }, + { + name: 'script', + accuracy: 0.96511, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Edith Edmondson\'s Notebook,1933" by estelle & ivy is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 999, + width: 776, + thumbnail: 'http://localhost:49153/v1/images/df0ebf3f-b9bf-41ea-b94a-29a89c50ff5e/thumb/', + detail_url: 'http://localhost:49153/v1/images/df0ebf3f-b9bf-41ea-b94a-29a89c50ff5e/', + related_url: 'http://localhost:49153/v1/images/df0ebf3f-b9bf-41ea-b94a-29a89c50ff5e/related/', + unstable__sensitivity: [], + }, + { + id: 'a3fef6a3-e483-41a7-bb21-dff2b178fdb4', + title: "Edith Edmondson's Notebook, 1933", + indexed_on: '2020-04-21T23:48:33.978555Z', + foreign_landing_url: 'https://www.flickr.com/photos/36431706@N04/4748951752', + url: 'https://live.staticflickr.com/4095/4748951752_340c37b840_b.jpg', + creator: 'estelle & ivy', + creator_url: 'https://www.flickr.com/photos/36431706@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'antique', + accuracy: 0.96332, + unstable__provider: 'clarifai', + }, + { + name: 'handwriting', + accuracy: 0.99217, + unstable__provider: 'clarifai', + }, + { + name: 'paper', + accuracy: 0.99679, + unstable__provider: 'clarifai', + }, + { + name: 'poetry', + accuracy: 0.9862, + unstable__provider: 'clarifai', + }, + { + name: 'school', + accuracy: 0.97156, + unstable__provider: 'clarifai', + }, + { + name: 'script', + accuracy: 0.963, + unstable__provider: 'clarifai', + }, + { + name: 'vintage', + accuracy: 0.96377, + unstable__provider: 'clarifai', + }, + { + name: 'book bindings', + accuracy: 0.9826, + unstable__provider: 'clarifai', + }, + { + name: 'education', + accuracy: 0.97703, + unstable__provider: 'clarifai', + }, + { + name: 'print', + accuracy: 0.95964, + unstable__provider: 'clarifai', + }, + { + name: 'text', + accuracy: 0.99182, + unstable__provider: 'clarifai', + }, + { + name: 'writing', + accuracy: 0.98692, + unstable__provider: 'clarifai', + }, + { + name: 'calligraphy', + accuracy: 0.96716, + unstable__provider: 'clarifai', + }, + { + name: 'document', + accuracy: 0.9972, + unstable__provider: 'clarifai', + }, + { + name: 'sepia pigment', + accuracy: 0.93805, + unstable__provider: 'clarifai', + }, + { + name: 'administration', + accuracy: 0.96167, + unstable__provider: 'clarifai', + }, + { + name: 'handwritten', + accuracy: 0.94299, + unstable__provider: 'clarifai', + }, + { + name: 'manuscript', + accuracy: 0.99431, + unstable__provider: 'clarifai', + }, + { + name: 'page', + accuracy: 0.99069, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Edith Edmondson\'s Notebook, 1933" by estelle & ivy is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 1024, + width: 820, + thumbnail: 'http://localhost:49153/v1/images/a3fef6a3-e483-41a7-bb21-dff2b178fdb4/thumb/', + detail_url: 'http://localhost:49153/v1/images/a3fef6a3-e483-41a7-bb21-dff2b178fdb4/', + related_url: 'http://localhost:49153/v1/images/a3fef6a3-e483-41a7-bb21-dff2b178fdb4/related/', + unstable__sensitivity: [], + }, + { + id: '4d7339cc-c70f-4708-b260-27549e95d7ab', + title: 'News Article - Army Flying Cadet Claude (Cotton) Bridges', + indexed_on: '2016-11-17T09:43:37.698541Z', + foreign_landing_url: 'https://www.flickr.com/photos/40732566413@N01/3300695967', + url: 'https://live.staticflickr.com/3633/3300695967_acb97dd606_b.jpg', + creator: 'grjenkin', + creator_url: 'https://www.flickr.com/photos/40732566413@N01', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: 192205, + filetype: null, + tags: [ + { + name: '419th', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'b17', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bridges', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'claudebridges', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'clipping', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cotton', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'eagerbeaver', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'military', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'news', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wwii', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: 0.93084, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.92442, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.95518, + unstable__provider: 'clarifai', + }, + { + name: 'old', + accuracy: 0.91565, + unstable__provider: 'clarifai', + }, + { + name: 'paper', + accuracy: 0.93727, + unstable__provider: 'clarifai', + }, + { + name: 'picture frame', + accuracy: 0.90724, + unstable__provider: 'clarifai', + }, + { + name: 'print', + accuracy: 0.90988, + unstable__provider: 'clarifai', + }, + { + name: 'vertical', + accuracy: 0.91141, + unstable__provider: 'clarifai', + }, + ], + attribution: '"News Article - Army Flying Cadet Claude (Cotton) Bridges" by grjenkin is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 1024, + width: 425, + thumbnail: 'http://localhost:49153/v1/images/4d7339cc-c70f-4708-b260-27549e95d7ab/thumb/', + detail_url: 'http://localhost:49153/v1/images/4d7339cc-c70f-4708-b260-27549e95d7ab/', + related_url: 'http://localhost:49153/v1/images/4d7339cc-c70f-4708-b260-27549e95d7ab/related/', + unstable__sensitivity: [], + }, + { + id: '2670f7d7-be95-4111-991f-017e30e49da4', + title: 'Army Family Covenant - Ly Family Kids', + indexed_on: '2020-04-15T19:18:22.032542Z', + foreign_landing_url: 'https://www.flickr.com/photos/58297778@N04/5445870602', + url: 'https://live.staticflickr.com/4100/5445870602_7c2fefb6de_b.jpg', + creator: 'expertinfantry', + creator_url: 'https://www.flickr.com/photos/58297778@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'army', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'clip', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'files', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'graphics', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'military', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'posters', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'soldier', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'states', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'strong', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'united', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adolescent', + accuracy: 0.91797, + unstable__provider: 'clarifai', + }, + { + name: 'child', + accuracy: 0.98976, + unstable__provider: 'clarifai', + }, + { + name: 'cute', + accuracy: 0.90997, + unstable__provider: 'clarifai', + }, + { + name: 'elementary school', + accuracy: 0.93449, + unstable__provider: 'clarifai', + }, + { + name: 'family', + accuracy: 0.91925, + unstable__provider: 'clarifai', + }, + { + name: 'fun', + accuracy: 0.92542, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.94795, + unstable__provider: 'clarifai', + }, + { + name: 'love', + accuracy: 0.90216, + unstable__provider: 'clarifai', + }, + { + name: 'togetherness', + accuracy: 0.93837, + unstable__provider: 'clarifai', + }, + { + name: 'woman', + accuracy: 0.95697, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Army Family Covenant - Ly Family Kids" by expertinfantry is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'tags.name', + ], + mature: false, + height: 1024, + width: 690, + thumbnail: 'http://localhost:49153/v1/images/2670f7d7-be95-4111-991f-017e30e49da4/thumb/', + detail_url: 'http://localhost:49153/v1/images/2670f7d7-be95-4111-991f-017e30e49da4/', + related_url: 'http://localhost:49153/v1/images/2670f7d7-be95-4111-991f-017e30e49da4/related/', + unstable__sensitivity: [], + }, + { + id: 'dc2d0a6b-ef1a-44d8-abf6-51c17f44044e', + title: '4', + indexed_on: '2020-04-23T01:59:30.328604Z', + foreign_landing_url: 'https://www.flickr.com/photos/35026043@N03/5180672409', + url: 'https://live.staticflickr.com/1396/5180672409_44c30bfb4c.jpg', + creator: 'Pratham Books', + creator_url: 'https://www.flickr.com/photos/35026043@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'bookexperiment', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'childrensbooks', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'creativecommons', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'illustrations', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'india', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'indianpublishers', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'prathambooks', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'remix', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'reuse', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'animal', + accuracy: 0.90232, + unstable__provider: 'clarifai', + }, + { + name: 'art', + accuracy: 0.94476, + unstable__provider: 'clarifai', + }, + { + name: 'clip', + accuracy: 0.90755, + unstable__provider: 'clarifai', + }, + { + name: 'design', + accuracy: 0.96631, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.91414, + unstable__provider: 'clarifai', + }, + { + name: 'graphic', + accuracy: 0.97508, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.99458, + unstable__provider: 'clarifai', + }, + { + name: 'image', + accuracy: 0.90877, + unstable__provider: 'clarifai', + }, + { + name: 'sketch', + accuracy: 0.98202, + unstable__provider: 'clarifai', + }, + { + name: 'symbol', + accuracy: 0.91014, + unstable__provider: 'clarifai', + }, + { + name: 'vector', + accuracy: 0.98793, + unstable__provider: 'clarifai', + }, + ], + attribution: '"4" by Pratham Books is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 498, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/dc2d0a6b-ef1a-44d8-abf6-51c17f44044e/thumb/', + detail_url: 'http://localhost:49153/v1/images/dc2d0a6b-ef1a-44d8-abf6-51c17f44044e/', + related_url: 'http://localhost:49153/v1/images/dc2d0a6b-ef1a-44d8-abf6-51c17f44044e/related/', + unstable__sensitivity: [], + }, + { + id: 'b5bce761-8b70-42f9-82f1-4ec52d6d2f6f', + title: 'Almost Chinese', + indexed_on: '2020-04-28T08:57:28.268840Z', + foreign_landing_url: 'https://www.flickr.com/photos/68676478@N00/2609896882', + url: 'https://live.staticflickr.com/3104/2609896882_ecd1c21119.jpg', + creator: 'cisc1970', + creator_url: 'https://www.flickr.com/photos/68676478@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'cisc1970', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'usa', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Almost Chinese" by cisc1970 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 374, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/b5bce761-8b70-42f9-82f1-4ec52d6d2f6f/thumb/', + detail_url: 'http://localhost:49153/v1/images/b5bce761-8b70-42f9-82f1-4ec52d6d2f6f/', + related_url: 'http://localhost:49153/v1/images/b5bce761-8b70-42f9-82f1-4ec52d6d2f6f/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=school+clip+art_keep-alive.json5 b/frontend/test/tapes/search/images/q=school+clip+art_keep-alive.json5 new file mode 100644 index 00000000000..55362c2dcbb --- /dev/null +++ b/frontend/test/tapes/search/images/q=school+clip+art_keep-alive.json5 @@ -0,0 +1,1588 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:09.999Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=school+clip+art', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:10 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '199', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '3ebbd12a-db95-4eca-8942-ed0287bc7e1e', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '84313', + ], + 'last-modified': [ + 'Thu, 19 Sep 2024 03:21:57 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d3f8f9c274a-ADL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: '02a65758-2202-4cc6-a3bd-382f7a5557de', + title: 'Back school clip art color', + indexed_on: '2024-03-29T01:59:00.599666Z', + foreign_landing_url: 'https://www.rawpixel.com/image/6330472/image-sticker-public-domain-green', + url: 'https://images.rawpixel.com/editor_1024/czNmcy1wcml2YXRlL3Jhd3BpeGVsX2ltYWdlcy93ZWJzaXRlX2NvbnRlbnQvam9iNjgwLTEwN2EteC5qcGc.jpg', + creator: null, + creator_url: null, + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'rawpixel', + source: 'rawpixel', + category: 'illustration', + filesize: null, + filetype: 'jpg', + tags: [ + { + name: 'back to school', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'back to school clip art', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'back to school clipart', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'board', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'chalkboard', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'clip art', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'clipart', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'color', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'colour', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'sticker', + accuracy: null, + unstable__provider: 'rawpixel', + }, + ], + attribution: '"Back school clip art color" is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 4000, + width: 4000, + thumbnail: 'http://localhost:49153/v1/images/02a65758-2202-4cc6-a3bd-382f7a5557de/thumb/', + detail_url: 'http://localhost:49153/v1/images/02a65758-2202-4cc6-a3bd-382f7a5557de/', + related_url: 'http://localhost:49153/v1/images/02a65758-2202-4cc6-a3bd-382f7a5557de/related/', + unstable__sensitivity: [], + }, + { + id: '18b2e0c5-7e3e-4507-be19-09ee31c1ea51', + title: 'Girl school bags clip art', + indexed_on: '2024-03-29T01:59:00.599666Z', + foreign_landing_url: 'https://www.rawpixel.com/image/10192736/vector-person-cartoon-illustrations', + url: 'https://images.rawpixel.com/editor_1024/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIzLTA0L2pvYjk2NC0wMTRiLXYuanBn.jpg', + creator: null, + creator_url: null, + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'rawpixel', + source: 'rawpixel', + category: 'illustration', + filesize: null, + filetype: 'eps', + tags: [ + { + name: 'asia', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'asian', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'back view', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'blazer', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'bonding', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'cartoon', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'casual clothing', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'character', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'clip art', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'clipart', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'school girl cartoon', + accuracy: null, + unstable__provider: 'rawpixel', + }, + ], + attribution: '"Girl school bags clip art" is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 4000, + width: 2666, + thumbnail: 'http://localhost:49153/v1/images/18b2e0c5-7e3e-4507-be19-09ee31c1ea51/thumb/', + detail_url: 'http://localhost:49153/v1/images/18b2e0c5-7e3e-4507-be19-09ee31c1ea51/', + related_url: 'http://localhost:49153/v1/images/18b2e0c5-7e3e-4507-be19-09ee31c1ea51/related/', + unstable__sensitivity: [], + }, + { + id: 'f7891f07-fb1e-41ea-a81b-023de7d15ba9', + title: 'Back school clip art color', + indexed_on: '2024-03-29T01:59:00.599666Z', + foreign_landing_url: 'https://www.rawpixel.com/image/6329921/image-sticker-public-domain-kid', + url: 'https://images.rawpixel.com/editor_1024/czNmcy1wcml2YXRlL3Jhd3BpeGVsX2ltYWdlcy93ZWJzaXRlX2NvbnRlbnQvam9iNjgwLTEwNy14LmpwZw.jpg', + creator: null, + creator_url: null, + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'rawpixel', + source: 'rawpixel', + category: null, + filesize: null, + filetype: 'jpg', + tags: [ + { + name: 'apple', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'back to school', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'doodle', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'drawing', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'free', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'green', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'illustrations', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'kid', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'line art', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'person', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'sticker', + accuracy: null, + unstable__provider: 'rawpixel', + }, + ], + attribution: '"Back school clip art color" is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 4000, + width: 4000, + thumbnail: 'http://localhost:49153/v1/images/f7891f07-fb1e-41ea-a81b-023de7d15ba9/thumb/', + detail_url: 'http://localhost:49153/v1/images/f7891f07-fb1e-41ea-a81b-023de7d15ba9/', + related_url: 'http://localhost:49153/v1/images/f7891f07-fb1e-41ea-a81b-023de7d15ba9/related/', + unstable__sensitivity: [], + }, + { + id: 'ec54d497-549f-44d2-9a38-f9fc04d7fcd5', + title: 'School bus illustration, clip art', + indexed_on: '2024-03-29T01:59:00.599666Z', + foreign_landing_url: 'https://www.rawpixel.com/image/10096207/image-road-illustrations-public-domain', + url: 'https://images.rawpixel.com/editor_1024/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIzLTA0L2pvYjk3MC1lbGVtZW50LTExMS14LmpwZw.jpg', + creator: null, + creator_url: null, + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'rawpixel', + source: 'rawpixel', + category: null, + filesize: null, + filetype: 'jpg', + tags: [ + { + name: 'architecture', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'car', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'city', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'free', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'hd', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'illustrations', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'road', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'school bus', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'symbol', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'travel', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'yellow', + accuracy: null, + unstable__provider: 'rawpixel', + }, + ], + attribution: '"School bus illustration, clip art" is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 4000, + width: 4000, + thumbnail: 'http://localhost:49153/v1/images/ec54d497-549f-44d2-9a38-f9fc04d7fcd5/thumb/', + detail_url: 'http://localhost:49153/v1/images/ec54d497-549f-44d2-9a38-f9fc04d7fcd5/', + related_url: 'http://localhost:49153/v1/images/ec54d497-549f-44d2-9a38-f9fc04d7fcd5/related/', + unstable__sensitivity: [], + }, + { + id: '655d24a4-670a-44f2-b495-1b66d3376b57', + title: 'Rainbow school bus clip art', + indexed_on: '2024-03-29T01:59:00.599666Z', + foreign_landing_url: 'https://www.rawpixel.com/image/10806505/rainbow-school-bus-clip-art-psd', + url: 'https://images.rawpixel.com/editor_1024/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIzLTA1L2pvYjk2NS1lbGVtZW50LTE4N18zLmpwZw.jpg', + creator: 'Miiruuku', + creator_url: null, + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'rawpixel', + source: 'rawpixel', + category: null, + filesize: null, + filetype: 'psd', + tags: [ + { + name: 'car', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'cartoon', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'collage element', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'education', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'illustration', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'kids', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'line', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'rainbow', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'road', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'school bus', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'travel', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'yellow', + accuracy: null, + unstable__provider: 'rawpixel', + }, + ], + attribution: '"Rainbow school bus clip art" by Miiruuku is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 2667, + width: 4000, + thumbnail: 'http://localhost:49153/v1/images/655d24a4-670a-44f2-b495-1b66d3376b57/thumb/', + detail_url: 'http://localhost:49153/v1/images/655d24a4-670a-44f2-b495-1b66d3376b57/', + related_url: 'http://localhost:49153/v1/images/655d24a4-670a-44f2-b495-1b66d3376b57/related/', + unstable__sensitivity: [], + }, + { + id: '5cb3359e-b8bf-46a8-a148-eba3f47b8426', + title: 'poppy clip art to colour, 14cm', + indexed_on: '2020-04-16T07:26:21.038689Z', + foreign_landing_url: 'https://www.flickr.com/photos/10853679@N03/5651124279', + url: 'https://live.staticflickr.com/5062/5651124279_3066c5f73a.jpg', + creator: 'you get the picture', + creator_url: 'https://www.flickr.com/photos/10853679@N03', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'anzac', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'clipart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'flowertocolor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'flowertocolour', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'freeanzacdayclipart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'freeclipart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'freeflowerclipart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'freeplantclipart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'freepoppyclipart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'freeremembrancedayclipart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'poppytocolor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'poppytocolour', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'redpoppyclipart', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"poppy clip art to colour, 14cm" by you get the picture is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 464, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/5cb3359e-b8bf-46a8-a148-eba3f47b8426/thumb/', + detail_url: 'http://localhost:49153/v1/images/5cb3359e-b8bf-46a8-a148-eba3f47b8426/', + related_url: 'http://localhost:49153/v1/images/5cb3359e-b8bf-46a8-a148-eba3f47b8426/related/', + unstable__sensitivity: [], + }, + { + id: '766bda31-280e-49b1-a046-065634f59143', + title: 'Art Clippings', + indexed_on: '2018-11-07T20:03:57.748699Z', + foreign_landing_url: 'https://www.flickr.com/photos/66178057@N00/5120905', + url: 'https://live.staticflickr.com/3/5120905_eb70413a11.jpg', + creator: 'uncleboatshoes', + creator_url: 'https://www.flickr.com/photos/66178057@N00', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'andrew', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'andrewpeterson', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'artschool', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cca', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'clipping', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fingernail', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jake', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jakelongstreth', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'longstreth', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'peterson', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'school', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Art Clippings" by uncleboatshoes is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 375, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/766bda31-280e-49b1-a046-065634f59143/thumb/', + detail_url: 'http://localhost:49153/v1/images/766bda31-280e-49b1-a046-065634f59143/', + related_url: 'http://localhost:49153/v1/images/766bda31-280e-49b1-a046-065634f59143/related/', + unstable__sensitivity: [], + }, + { + id: '80832cf0-8ddf-43d4-9fa5-66bc9eed2f5c', + title: 'Op Art Holiday Card for Aurel Langlois', + indexed_on: '2016-11-17T00:30:36.490046Z', + foreign_landing_url: 'https://www.flickr.com/photos/16077535@N00/5250994810', + url: 'https://live.staticflickr.com/5007/5250994810_550c875d2c_b.jpg', + creator: 'Dan Zen', + creator_url: 'https://www.flickr.com/photos/16077535@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'aurellanglois', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'card', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'friends', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fun', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'gift', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'holiday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'inexpensive', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'op', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'opart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'opartica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'school', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'touchy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'work', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'art', + accuracy: 0.95869, + unstable__provider: 'clarifai', + }, + { + name: 'blank', + accuracy: 0.90998, + unstable__provider: 'clarifai', + }, + { + name: 'business', + accuracy: 0.94049, + unstable__provider: 'clarifai', + }, + { + name: 'clip', + accuracy: 0.91142, + unstable__provider: 'clarifai', + }, + { + name: 'design', + accuracy: 0.95827, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.93616, + unstable__provider: 'clarifai', + }, + { + name: 'graphic', + accuracy: 0.91273, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.96432, + unstable__provider: 'clarifai', + }, + { + name: 'image', + accuracy: 0.95382, + unstable__provider: 'clarifai', + }, + { + name: 'isolated', + accuracy: 0.92649, + unstable__provider: 'clarifai', + }, + { + name: 'retro', + accuracy: 0.91998, + unstable__provider: 'clarifai', + }, + { + name: 'shape', + accuracy: 0.92872, + unstable__provider: 'clarifai', + }, + { + name: 'square', + accuracy: 0.93083, + unstable__provider: 'clarifai', + }, + { + name: 'vector', + accuracy: 0.91998, + unstable__provider: 'clarifai', + }, + { + name: 'video', + accuracy: 0.93513, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Op Art Holiday Card for Aurel Langlois" by Dan Zen is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 896, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/80832cf0-8ddf-43d4-9fa5-66bc9eed2f5c/thumb/', + detail_url: 'http://localhost:49153/v1/images/80832cf0-8ddf-43d4-9fa5-66bc9eed2f5c/', + related_url: 'http://localhost:49153/v1/images/80832cf0-8ddf-43d4-9fa5-66bc9eed2f5c/related/', + unstable__sensitivity: [], + }, + { + id: '7345dd95-be16-4398-9e91-bf6b78369597', + title: "Newspaper clipping title reads 'Striking Cloakmakers Filled the Streets Coming out of the Manhattan Lyceum After the Meeting.' Article headline reads '50,000 Cloakmakers Involved in Strike.' July 8, 1916.", + indexed_on: '2016-11-17T20:11:52.897787Z', + foreign_landing_url: 'https://www.flickr.com/photos/38445726@N04/5279161439', + url: 'https://live.staticflickr.com/5162/5279161439_93e57e8479_b.jpg', + creator: 'Kheel Center, Cornell University Library', + creator_url: 'https://www.flickr.com/photos/38445726@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'cloakmakers', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cornelluniversitylibrary', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kheelcenterforlabormanagementdocumentationandarchives', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'streetscenes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'strikes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'administration', + accuracy: 0.96984, + unstable__provider: 'clarifai', + }, + { + name: 'adult', + accuracy: 0.99756, + unstable__provider: 'clarifai', + }, + { + name: 'art', + accuracy: 0.93449, + unstable__provider: 'clarifai', + }, + { + name: 'crowd', + accuracy: 0.96739, + unstable__provider: 'clarifai', + }, + { + name: 'group', + accuracy: 0.99621, + unstable__provider: 'clarifai', + }, + { + name: 'illustration', + accuracy: 0.96221, + unstable__provider: 'clarifai', + }, + { + name: 'leader', + accuracy: 0.92126, + unstable__provider: 'clarifai', + }, + { + name: 'lithograph', + accuracy: 0.93221, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.98548, + unstable__provider: 'clarifai', + }, + { + name: 'many', + accuracy: 0.9965, + unstable__provider: 'clarifai', + }, + { + name: 'military', + accuracy: 0.97019, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.97735, + unstable__provider: 'clarifai', + }, + { + name: 'painting', + accuracy: 0.90354, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.99982, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.96782, + unstable__provider: 'clarifai', + }, + { + name: 'print', + accuracy: 0.99882, + unstable__provider: 'clarifai', + }, + { + name: 'soldier', + accuracy: 0.90758, + unstable__provider: 'clarifai', + }, + { + name: 'text', + accuracy: 0.94393, + unstable__provider: 'clarifai', + }, + { + name: 'war', + accuracy: 0.98846, + unstable__provider: 'clarifai', + }, + { + name: 'woman', + accuracy: 0.94227, + unstable__provider: 'clarifai', + }, + ], + attribution: "\"Newspaper clipping title reads 'Striking Cloakmakers Filled the Streets Coming out of the Manhattan Lyceum After the Meeting.' Article headline reads '50,000 Cloakmakers Involved in Strike.' July 8, 1916.\" by Kheel Center, Cornell University Library is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.", + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 720, + thumbnail: 'http://localhost:49153/v1/images/7345dd95-be16-4398-9e91-bf6b78369597/thumb/', + detail_url: 'http://localhost:49153/v1/images/7345dd95-be16-4398-9e91-bf6b78369597/', + related_url: 'http://localhost:49153/v1/images/7345dd95-be16-4398-9e91-bf6b78369597/related/', + unstable__sensitivity: [], + }, + { + id: 'c22f3c1c-0ad2-4204-88bb-fbc6c27d6c86', + title: 'Robert C. Davey School, New Orleans, Louisiana (1910)', + indexed_on: '2023-03-13T01:13:16.114162Z', + foreign_landing_url: 'https://www.flickr.com/photos/40595948@N00/52512909116', + url: 'https://live.staticflickr.com/65535/52512909116_d7a5ebda19_b.jpg', + creator: 'A.Davey', + creator_url: 'https://www.flickr.com/photos/40595948@N00', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: 'photograph', + filesize: null, + filetype: 'jpg', + tags: [], + attribution: '"Robert C. Davey School, New Orleans, Louisiana (1910)" by A.Davey is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 568, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/c22f3c1c-0ad2-4204-88bb-fbc6c27d6c86/thumb/', + detail_url: 'http://localhost:49153/v1/images/c22f3c1c-0ad2-4204-88bb-fbc6c27d6c86/', + related_url: 'http://localhost:49153/v1/images/c22f3c1c-0ad2-4204-88bb-fbc6c27d6c86/related/', + unstable__sensitivity: [], + }, + { + id: '3b4b64a0-f38a-4cbf-ba3b-752da51e190a', + title: 'School Sports', + indexed_on: '2020-04-23T23:39:27.667592Z', + foreign_landing_url: 'https://www.flickr.com/photos/32143124@N03/3273793189', + url: 'https://live.staticflickr.com/3332/3273793189_cf6a4fa104_b.jpg', + creator: 'maureencrosbie', + creator_url: 'https://www.flickr.com/photos/32143124@N03', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'childrensart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'illustration', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'notclipart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'race', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'running', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sack', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'schoolsports', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sports', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sportsday', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"School Sports" by maureencrosbie is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 846, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/3b4b64a0-f38a-4cbf-ba3b-752da51e190a/thumb/', + detail_url: 'http://localhost:49153/v1/images/3b4b64a0-f38a-4cbf-ba3b-752da51e190a/', + related_url: 'http://localhost:49153/v1/images/3b4b64a0-f38a-4cbf-ba3b-752da51e190a/related/', + unstable__sensitivity: [], + }, + { + id: '42fd8eee-abbd-46d8-a1e3-379ee86d7bda', + title: 'Art', + indexed_on: '2019-01-14T16:41:35.381499Z', + foreign_landing_url: 'https://www.flickr.com/photos/32143124@N03/3274603166', + url: 'https://live.staticflickr.com/3333/3274603166_b2fbb8b86b_b.jpg', + creator: 'maureencrosbie', + creator_url: 'https://www.flickr.com/photos/32143124@N03', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'artclass', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'artist', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'childrensart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'illustration', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'notclipart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'painting', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Art" by maureencrosbie is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 1015, + thumbnail: 'http://localhost:49153/v1/images/42fd8eee-abbd-46d8-a1e3-379ee86d7bda/thumb/', + detail_url: 'http://localhost:49153/v1/images/42fd8eee-abbd-46d8-a1e3-379ee86d7bda/', + related_url: 'http://localhost:49153/v1/images/42fd8eee-abbd-46d8-a1e3-379ee86d7bda/related/', + unstable__sensitivity: [], + }, + { + id: '9850434f-f24f-4a69-979b-7a58d95f1b51', + title: 'Is this really our school mascot?', + indexed_on: '2020-05-02T06:03:04.997769Z', + foreign_landing_url: 'https://www.flickr.com/photos/57551232@N00/354656887', + url: 'https://live.staticflickr.com/123/354656887_2b66a1434c_m.jpg', + creator: 'lisa.williams', + creator_url: 'https://www.flickr.com/photos/57551232@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"Is this really our school mascot?" by lisa.williams is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 214, + width: 240, + thumbnail: 'http://localhost:49153/v1/images/9850434f-f24f-4a69-979b-7a58d95f1b51/thumb/', + detail_url: 'http://localhost:49153/v1/images/9850434f-f24f-4a69-979b-7a58d95f1b51/', + related_url: 'http://localhost:49153/v1/images/9850434f-f24f-4a69-979b-7a58d95f1b51/related/', + unstable__sensitivity: [], + }, + { + id: 'f5e2694e-7c16-4e3a-93f4-85a7ca4d64db', + title: 'Paper clip turns into', + indexed_on: '2019-06-24T14:27:23.027884Z', + foreign_landing_url: 'https://www.flickr.com/photos/74764218@N00/870110512', + url: 'https://live.staticflickr.com/1267/870110512_9d08a916d3_b.jpg', + creator: 'whitematter', + creator_url: 'https://www.flickr.com/photos/74764218@N00', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'heart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'it', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'love', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'made', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'myself', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'paperclip', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'stand', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Paper clip turns into" by whitematter is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 1024, + width: 683, + thumbnail: 'http://localhost:49153/v1/images/f5e2694e-7c16-4e3a-93f4-85a7ca4d64db/thumb/', + detail_url: 'http://localhost:49153/v1/images/f5e2694e-7c16-4e3a-93f4-85a7ca4d64db/', + related_url: 'http://localhost:49153/v1/images/f5e2694e-7c16-4e3a-93f4-85a7ca4d64db/related/', + unstable__sensitivity: [], + }, + { + id: '4169eac5-e311-484f-b551-39b4c9895dfc', + title: 'the annual sports budget for the 1941-42 school year at Black Mountain College was $10.55', + indexed_on: '2020-03-23T11:11:55.418570Z', + foreign_landing_url: 'https://www.flickr.com/photos/66267550@N00/23816210129', + url: 'https://live.staticflickr.com/1675/23816210129_8773145c63.jpg', + creator: 'davidsilver', + creator_url: 'https://www.flickr.com/photos/66267550@N00', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'ashevillecitizentimes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blackmountaincollege', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blackmountaincollegemuseumartscentercollections', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dhramseylibrary', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"the annual sports budget for the 1941-42 school year at Black Mountain College was $10.55" by davidsilver is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 500, + width: 478, + thumbnail: 'http://localhost:49153/v1/images/4169eac5-e311-484f-b551-39b4c9895dfc/thumb/', + detail_url: 'http://localhost:49153/v1/images/4169eac5-e311-484f-b551-39b4c9895dfc/', + related_url: 'http://localhost:49153/v1/images/4169eac5-e311-484f-b551-39b4c9895dfc/related/', + unstable__sensitivity: [], + }, + { + id: '35ddcc0d-2d33-4b3b-a76e-575f4b90f5db', + title: 'From babe to school age', + indexed_on: '2020-03-28T23:46:36.293030Z', + foreign_landing_url: 'https://www.flickr.com/photos/46167838@N07/17787039981', + url: 'https://live.staticflickr.com/7667/17787039981_1682ddbc0a.jpg', + creator: 'Creative Carol', + creator_url: 'https://www.flickr.com/photos/46167838@N07', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'clipart', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'offtoschool', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'toddler', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"From babe to school age" by Creative Carol is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 167, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/35ddcc0d-2d33-4b3b-a76e-575f4b90f5db/thumb/', + detail_url: 'http://localhost:49153/v1/images/35ddcc0d-2d33-4b3b-a76e-575f4b90f5db/', + related_url: 'http://localhost:49153/v1/images/35ddcc0d-2d33-4b3b-a76e-575f4b90f5db/related/', + unstable__sensitivity: [], + }, + { + id: 'ea6285b7-f1d5-48e2-ae54-63b2e6b9e046', + title: 'Patina keyring - clip £8.00', + indexed_on: '2020-03-06T22:23:59.422607Z', + foreign_landing_url: 'https://www.flickr.com/photos/31492039@N08/37320793006', + url: 'https://live.staticflickr.com/4484/37320793006_794608ae76_b.jpg', + creator: 'The Glasgow School of Art', + creator_url: 'https://www.flickr.com/photos/31492039@N08', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"Patina keyring - clip £8.00" by The Glasgow School of Art is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 1024, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/ea6285b7-f1d5-48e2-ae54-63b2e6b9e046/thumb/', + detail_url: 'http://localhost:49153/v1/images/ea6285b7-f1d5-48e2-ae54-63b2e6b9e046/', + related_url: 'http://localhost:49153/v1/images/ea6285b7-f1d5-48e2-ae54-63b2e6b9e046/related/', + unstable__sensitivity: [], + }, + { + id: 'e7e2b366-cf0e-4009-8a5f-a50b55334d2b', + title: 'School Year Infographic', + indexed_on: '2020-04-04T17:37:20.388932Z', + foreign_landing_url: 'https://www.flickr.com/photos/99345739@N03/14594228528', + url: 'https://live.staticflickr.com/3889/14594228528_e2f03d8354_b.jpg', + creator: 'projectidea', + creator_url: 'https://www.flickr.com/photos/99345739@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [], + attribution: '"School Year Infographic" by projectidea is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 378, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/e7e2b366-cf0e-4009-8a5f-a50b55334d2b/thumb/', + detail_url: 'http://localhost:49153/v1/images/e7e2b366-cf0e-4009-8a5f-a50b55334d2b/', + related_url: 'http://localhost:49153/v1/images/e7e2b366-cf0e-4009-8a5f-a50b55334d2b/related/', + unstable__sensitivity: [], + }, + { + id: '3c8a1644-d262-41f6-8ae4-cb54ae186165', + title: "'Stapler, Clips... #TP682", + indexed_on: '2020-04-10T00:47:34.827736Z', + foreign_landing_url: 'https://www.flickr.com/photos/30830405@N07/9857669854', + url: 'https://live.staticflickr.com/2842/9857669854_3abe9eea3a_b.jpg', + creator: 'ConnectIrmeli', + creator_url: 'https://www.flickr.com/photos/30830405@N07', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'tp682', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"\'Stapler, Clips... #TP682" by ConnectIrmeli is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 1024, + width: 767, + thumbnail: 'http://localhost:49153/v1/images/3c8a1644-d262-41f6-8ae4-cb54ae186165/thumb/', + detail_url: 'http://localhost:49153/v1/images/3c8a1644-d262-41f6-8ae4-cb54ae186165/', + related_url: 'http://localhost:49153/v1/images/3c8a1644-d262-41f6-8ae4-cb54ae186165/related/', + unstable__sensitivity: [], + }, + { + id: 'd829b5ee-d553-4850-ba32-a5f785f5673b', + title: 'School clipart, building illustration psd', + indexed_on: '2024-03-29T01:59:00.599666Z', + foreign_landing_url: 'https://www.rawpixel.com/image/6834003/image-public-domain-illustrations-free', + url: 'https://images.rawpixel.com/editor_1024/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIyLTA1L2pvYjcyOS0xMzMteC5qcGc.jpg', + creator: null, + creator_url: null, + license: 'cc0', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/zero/1.0/', + provider: 'rawpixel', + source: 'rawpixel', + category: 'illustration', + filesize: null, + filetype: 'jpg', + tags: [ + { + name: 'architecture', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'building', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'clip art', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'clipart', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'color', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'colorful', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'colour', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'school building clip art', + accuracy: null, + unstable__provider: 'rawpixel', + }, + { + name: 'school buildings', + accuracy: null, + unstable__provider: 'rawpixel', + }, + ], + attribution: '"School clipart, building illustration psd" is marked with CC0 1.0. To view the terms, visit https://creativecommons.org/publicdomain/zero/1.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 4000, + width: 4000, + thumbnail: 'http://localhost:49153/v1/images/d829b5ee-d553-4850-ba32-a5f785f5673b/thumb/', + detail_url: 'http://localhost:49153/v1/images/d829b5ee-d553-4850-ba32-a5f785f5673b/', + related_url: 'http://localhost:49153/v1/images/d829b5ee-d553-4850-ba32-a5f785f5673b/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=tree+leaf+nutrition&license=by&extension=jpg&source=flickr_keep-alive.json5 b/frontend/test/tapes/search/images/q=tree+leaf+nutrition&license=by&extension=jpg&source=flickr_keep-alive.json5 new file mode 100644 index 00000000000..43514880dd0 --- /dev/null +++ b/frontend/test/tapes/search/images/q=tree+leaf+nutrition&license=by&extension=jpg&source=flickr_keep-alive.json5 @@ -0,0 +1,3104 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:09.616Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=tree+leaf+nutrition&license=by&extension=jpg&source=flickr', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:10 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '199', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + 'afbdb0e9-18ba-463d-9431-b6237d5b7686', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'MISS', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:47:10 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d3d2e955aa4-MEL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: '046719b8-aea3-4566-99e6-091f2aa792f1', + title: 'Apple tree', + indexed_on: '2020-04-10T07:01:22.876694Z', + foreign_landing_url: 'https://www.flickr.com/photos/10178104@N00/7738645140', + url: 'https://live.staticflickr.com/8422/7738645140_4d7e03f7a8.jpg', + creator: 'Jeena Paradies', + creator_url: 'https://www.flickr.com/photos/10178104@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'apple', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'agriculture', + accuracy: 0.98452, + unstable__provider: 'clarifai', + }, + { + name: 'apple', + accuracy: 0.98071, + unstable__provider: 'clarifai', + }, + { + name: 'branch', + accuracy: 0.95656, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.99438, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99767, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.94921, + unstable__provider: 'clarifai', + }, + { + name: 'grow', + accuracy: 0.95456, + unstable__provider: 'clarifai', + }, + { + name: 'growth', + accuracy: 0.95187, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.97162, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.96813, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.98755, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.99518, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.99128, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.95195, + unstable__provider: 'clarifai', + }, + { + name: 'woodlet', + accuracy: 0.94549, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Apple tree" by Jeena Paradies is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/046719b8-aea3-4566-99e6-091f2aa792f1/thumb/', + detail_url: 'http://localhost:49153/v1/images/046719b8-aea3-4566-99e6-091f2aa792f1/', + related_url: 'http://localhost:49153/v1/images/046719b8-aea3-4566-99e6-091f2aa792f1/related/', + unstable__sensitivity: [], + }, + { + id: '7d19507f-0d2d-4d77-afb9-bda42ac28f49', + title: "Broccolli doesn't grow on trees, you know", + indexed_on: '2020-05-06T12:04:26.515338Z', + foreign_landing_url: 'https://www.flickr.com/photos/53611153@N00/314088675', + url: 'https://live.staticflickr.com/115/314088675_9db40f45a2_b.jpg', + creator: 'Darwin Bell', + creator_url: 'https://www.flickr.com/photos/53611153@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '100', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '25faves', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '30faves30comments300views', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '35faves', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'abigfave', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'aplusphoto', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'broccoli', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'green', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'macro', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mywinners', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'oneaday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'shadow', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'superaplus', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'topf25', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'whiteground', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'broccoli', + accuracy: 0.98925, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.93729, + unstable__provider: 'clarifai', + }, + { + name: 'disjunct', + accuracy: 0.96727, + unstable__provider: 'clarifai', + }, + { + name: 'flora', + accuracy: 0.95249, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.97527, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.96884, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.94383, + unstable__provider: 'clarifai', + }, + { + name: 'ingredients', + accuracy: 0.92446, + unstable__provider: 'clarifai', + }, + { + name: 'isolate', + accuracy: 0.93087, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.97008, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.98283, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.9458, + unstable__provider: 'clarifai', + }, + { + name: 'vegetable', + accuracy: 0.92581, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Broccolli doesn\'t grow on trees, you know" by Darwin Bell is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 1015, + thumbnail: 'http://localhost:49153/v1/images/7d19507f-0d2d-4d77-afb9-bda42ac28f49/thumb/', + detail_url: 'http://localhost:49153/v1/images/7d19507f-0d2d-4d77-afb9-bda42ac28f49/', + related_url: 'http://localhost:49153/v1/images/7d19507f-0d2d-4d77-afb9-bda42ac28f49/related/', + unstable__sensitivity: [], + }, + { + id: 'f25e16fd-e0ca-42fb-9748-41a80fe8e58a', + title: 'mango-tree', + indexed_on: '2016-11-17T00:44:43.250328Z', + foreign_landing_url: 'https://www.flickr.com/photos/40994455@N06/9048857209', + url: 'https://live.staticflickr.com/7329/9048857209_71df782d16_b.jpg', + creator: 'nutrilover', + creator_url: 'https://www.flickr.com/photos/40994455@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'mangoes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mangotreemangiferaindica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'agriculture', + accuracy: 0.9869, + unstable__provider: 'clarifai', + }, + { + name: 'branch', + accuracy: 0.96388, + unstable__provider: 'clarifai', + }, + { + name: 'environment', + accuracy: 0.93503, + unstable__provider: 'clarifai', + }, + { + name: 'fair weather', + accuracy: 0.94293, + unstable__provider: 'clarifai', + }, + { + name: 'farm', + accuracy: 0.96025, + unstable__provider: 'clarifai', + }, + { + name: 'flora', + accuracy: 0.98472, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.97038, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.98734, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.93218, + unstable__provider: 'clarifai', + }, + { + name: 'grow', + accuracy: 0.95021, + unstable__provider: 'clarifai', + }, + { + name: 'growth', + accuracy: 0.98357, + unstable__provider: 'clarifai', + }, + { + name: 'landscape', + accuracy: 0.93472, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.98924, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.98666, + unstable__provider: 'clarifai', + }, + { + name: 'outdoors', + accuracy: 0.98157, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.94956, + unstable__provider: 'clarifai', + }, + { + name: 'plantation', + accuracy: 0.92888, + unstable__provider: 'clarifai', + }, + { + name: 'season', + accuracy: 0.96261, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.99508, + unstable__provider: 'clarifai', + }, + ], + attribution: '"mango-tree" by nutrilover is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/f25e16fd-e0ca-42fb-9748-41a80fe8e58a/thumb/', + detail_url: 'http://localhost:49153/v1/images/f25e16fd-e0ca-42fb-9748-41a80fe8e58a/', + related_url: 'http://localhost:49153/v1/images/f25e16fd-e0ca-42fb-9748-41a80fe8e58a/related/', + unstable__sensitivity: [], + }, + { + id: '7ae0295c-35df-4072-b2a6-1e15c72a93d0', + title: 'Harpullia pendula - fruiting tree', + indexed_on: '2020-04-23T05:04:31.001408Z', + foreign_landing_url: 'https://www.flickr.com/photos/62938898@N00/5234444354', + url: 'https://live.staticflickr.com/5290/5234444354_69963b0e07.jpg', + creator: 'Tatters ✾', + creator_url: 'https://www.flickr.com/photos/62938898@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'arffs', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'arfp', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'auistralianrainforestplants', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'australia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blackarffs', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blackseeds', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'chapelhill', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'coruroy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dryarf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'harpilia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'harpullia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'harpulliapendula', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'littoralarf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nswrfp', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'orangearffs', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'qld', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'qrfp', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sapindaceae', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'subtropicalarf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tulipwood', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wikipedia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'berry', + accuracy: 0.90341, + unstable__provider: 'clarifai', + }, + { + name: 'color', + accuracy: 0.92654, + unstable__provider: 'clarifai', + }, + { + name: 'confection', + accuracy: 0.92203, + unstable__provider: 'clarifai', + }, + { + name: 'crop', + accuracy: 0.92871, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.91088, + unstable__provider: 'clarifai', + }, + { + name: 'fall', + accuracy: 0.9327, + unstable__provider: 'clarifai', + }, + { + name: 'flora', + accuracy: 0.94321, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.99077, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99325, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.97034, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.93801, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.96202, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.99486, + unstable__provider: 'clarifai', + }, + { + name: 'maturation', + accuracy: 0.90109, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.98705, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.91049, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.91552, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.94979, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Harpullia pendula - fruiting tree" by Tatters ✾ is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 375, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/7ae0295c-35df-4072-b2a6-1e15c72a93d0/thumb/', + detail_url: 'http://localhost:49153/v1/images/7ae0295c-35df-4072-b2a6-1e15c72a93d0/', + related_url: 'http://localhost:49153/v1/images/7ae0295c-35df-4072-b2a6-1e15c72a93d0/related/', + unstable__sensitivity: [], + }, + { + id: '9f593328-1be7-4b35-8311-b8248a65f742', + title: 'Kiema Fati: tree entrepreneur', + indexed_on: '2016-11-17T05:30:13.671453Z', + foreign_landing_url: 'https://www.flickr.com/photos/53871588@N05/5505299539', + url: 'https://live.staticflickr.com/5093/5505299539_456111fcde_b.jpg', + creator: 'TREEAID', + creator_url: 'https://www.flickr.com/photos/53871588@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'africa', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'farming', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'harvest', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'leaves', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'trees', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'woman', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'women', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.92777, + unstable__provider: 'clarifai', + }, + { + name: 'agriculture', + accuracy: 0.91278, + unstable__provider: 'clarifai', + }, + { + name: 'farm', + accuracy: 0.94762, + unstable__provider: 'clarifai', + }, + { + name: 'farming', + accuracy: 0.92928, + unstable__provider: 'clarifai', + }, + { + name: 'flora', + accuracy: 0.90424, + unstable__provider: 'clarifai', + }, + { + name: 'flower', + accuracy: 0.90241, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.97611, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.95791, + unstable__provider: 'clarifai', + }, + { + name: 'grow', + accuracy: 0.95516, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.93847, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.97389, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.95594, + unstable__provider: 'clarifai', + }, + { + name: 'outdoors', + accuracy: 0.97036, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.92647, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.96505, + unstable__provider: 'clarifai', + }, + { + name: 'plantation', + accuracy: 0.90094, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.95791, + unstable__provider: 'clarifai', + }, + { + name: 'woman', + accuracy: 0.92721, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Kiema Fati: tree entrepreneur" by TREEAID is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 636, + thumbnail: 'http://localhost:49153/v1/images/9f593328-1be7-4b35-8311-b8248a65f742/thumb/', + detail_url: 'http://localhost:49153/v1/images/9f593328-1be7-4b35-8311-b8248a65f742/', + related_url: 'http://localhost:49153/v1/images/9f593328-1be7-4b35-8311-b8248a65f742/related/', + unstable__sensitivity: [], + }, + { + id: '410dcc66-8548-4eb4-8050-642b8c861422', + title: 'tree tomato and lemon', + indexed_on: '2020-04-24T15:19:32.507187Z', + foreign_landing_url: 'https://www.flickr.com/photos/36842913@N08/3540725167', + url: 'https://live.staticflickr.com/3367/3540725167_945d9ca4ce.jpg', + creator: 'SummerTomato', + creator_url: 'https://www.flickr.com/photos/36842913@N08', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'farmersmarket', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ferrybuilding', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lemons', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sanfrancisco', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tamarillos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'treetomatoes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bright', + accuracy: 0.94019, + unstable__provider: 'clarifai', + }, + { + name: 'citrus', + accuracy: 0.94561, + unstable__provider: 'clarifai', + }, + { + name: 'confection', + accuracy: 0.9369, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.97192, + unstable__provider: 'clarifai', + }, + { + name: 'exotic', + accuracy: 0.92843, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.97524, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.98948, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.99059, + unstable__provider: 'clarifai', + }, + { + name: 'ingredients', + accuracy: 0.92538, + unstable__provider: 'clarifai', + }, + { + name: 'juice', + accuracy: 0.9649, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.99723, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.92781, + unstable__provider: 'clarifai', + }, + { + name: 'lemon', + accuracy: 0.96851, + unstable__provider: 'clarifai', + }, + { + name: 'many', + accuracy: 0.94594, + unstable__provider: 'clarifai', + }, + { + name: 'market', + accuracy: 0.94115, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.97573, + unstable__provider: 'clarifai', + }, + { + name: 'taste', + accuracy: 0.91553, + unstable__provider: 'clarifai', + }, + { + name: 'tropical', + accuracy: 0.98305, + unstable__provider: 'clarifai', + }, + { + name: 'vitamin', + accuracy: 0.94169, + unstable__provider: 'clarifai', + }, + ], + attribution: '"tree tomato and lemon" by SummerTomato is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 367, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/410dcc66-8548-4eb4-8050-642b8c861422/thumb/', + detail_url: 'http://localhost:49153/v1/images/410dcc66-8548-4eb4-8050-642b8c861422/', + related_url: 'http://localhost:49153/v1/images/410dcc66-8548-4eb4-8050-642b8c861422/related/', + unstable__sensitivity: [], + }, + { + id: 'c3dae3fe-ed11-4065-bfd9-f0ff30daf270', + title: 'Pear on a tree', + indexed_on: '2020-04-05T01:56:27.262403Z', + foreign_landing_url: 'https://www.flickr.com/photos/66526627@N00/15053303236', + url: 'https://live.staticflickr.com/5575/15053303236_03ba7573a6_b.jpg', + creator: 'ptc24', + creator_url: 'https://www.flickr.com/photos/66526627@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'panasoniclumixdmctz60', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'apple', + accuracy: 0.95874, + unstable__provider: 'clarifai', + }, + { + name: 'fall', + accuracy: 0.91511, + unstable__provider: 'clarifai', + }, + { + name: 'flora', + accuracy: 0.90318, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.98884, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99167, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.96514, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.96955, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.99419, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.98835, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.92767, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.94258, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.92144, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Pear on a tree" by ptc24 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/c3dae3fe-ed11-4065-bfd9-f0ff30daf270/thumb/', + detail_url: 'http://localhost:49153/v1/images/c3dae3fe-ed11-4065-bfd9-f0ff30daf270/', + related_url: 'http://localhost:49153/v1/images/c3dae3fe-ed11-4065-bfd9-f0ff30daf270/related/', + unstable__sensitivity: [], + }, + { + id: 'f034d95f-06ed-4422-bfa4-57cd9fbbe0bd', + title: 'tree .95', + indexed_on: '2016-11-17T11:22:49.311716Z', + foreign_landing_url: 'https://www.flickr.com/photos/53194155@N00/5089418435', + url: 'https://live.staticflickr.com/4088/5089418435_8c9183397e_b.jpg', + creator: 'fishermansdaughter', + creator_url: 'https://www.flickr.com/photos/53194155@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'apple', + accuracy: 0.99394, + unstable__provider: 'clarifai', + }, + { + name: 'confection', + accuracy: 0.93804, + unstable__provider: 'clarifai', + }, + { + name: 'grow', + accuracy: 0.94068, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.98304, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.96647, + unstable__provider: 'clarifai', + }, + { + name: 'juice', + accuracy: 0.92812, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.9365, + unstable__provider: 'clarifai', + }, + { + name: 'fall', + accuracy: 0.96176, + unstable__provider: 'clarifai', + }, + { + name: 'farming', + accuracy: 0.94822, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.99462, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99483, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.97656, + unstable__provider: 'clarifai', + }, + { + name: 'market', + accuracy: 0.9723, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.97324, + unstable__provider: 'clarifai', + }, + { + name: 'vitamin', + accuracy: 0.93183, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.93175, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.96277, + unstable__provider: 'clarifai', + }, + { + name: 'diet', + accuracy: 0.92787, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.97719, + unstable__provider: 'clarifai', + }, + ], + attribution: '"tree .95" by fishermansdaughter is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/f034d95f-06ed-4422-bfa4-57cd9fbbe0bd/thumb/', + detail_url: 'http://localhost:49153/v1/images/f034d95f-06ed-4422-bfa4-57cd9fbbe0bd/', + related_url: 'http://localhost:49153/v1/images/f034d95f-06ed-4422-bfa4-57cd9fbbe0bd/related/', + unstable__sensitivity: [], + }, + { + id: '29b4d5c3-2ece-46a4-b402-c2ea106d1b9c', + title: 'Fruit Tree - Jeong, Choi', + indexed_on: '2020-05-07T20:05:20.758547Z', + foreign_landing_url: 'https://www.flickr.com/photos/45581782@N00/63132500', + url: 'https://live.staticflickr.com/30/63132500_83ca6cdb0d_b.jpg', + creator: 'psd', + creator_url: 'https://www.flickr.com/photos/45581782@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'japan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'yokohama', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'delicious', + accuracy: 0.93689, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.95712, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.96753, + unstable__provider: 'clarifai', + }, + { + name: 'ingredients', + accuracy: 0.92276, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.94639, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.93677, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.95093, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.91804, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Fruit Tree - Jeong, Choi" by psd is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 768, + thumbnail: 'http://localhost:49153/v1/images/29b4d5c3-2ece-46a4-b402-c2ea106d1b9c/thumb/', + detail_url: 'http://localhost:49153/v1/images/29b4d5c3-2ece-46a4-b402-c2ea106d1b9c/', + related_url: 'http://localhost:49153/v1/images/29b4d5c3-2ece-46a4-b402-c2ea106d1b9c/related/', + unstable__sensitivity: [], + }, + { + id: 'a45cba3c-5f35-4899-aa63-c42c758efe44', + title: 'Pomegranade / Romã (Punica granatum), Asia / Mediterranean region native tree.', + indexed_on: '2020-04-29T08:30:27.467470Z', + foreign_landing_url: 'https://www.flickr.com/photos/41597043@N00/3005382430', + url: 'https://live.staticflickr.com/3210/3005382430_0f7646be58_b.jpg', + creator: 'mauro halpern', + creator_url: 'https://www.flickr.com/photos/41597043@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'u201csolofotosu201d', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'closeup', + accuracy: 0.93063, + unstable__provider: 'clarifai', + }, + { + name: 'color', + accuracy: 0.95557, + unstable__provider: 'clarifai', + }, + { + name: 'confection', + accuracy: 0.98292, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.95057, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.91896, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.98079, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.98962, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.92722, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.92429, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.96447, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.95575, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.92095, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.97366, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.91338, + unstable__provider: 'clarifai', + }, + { + name: 'pomegranate', + accuracy: 0.91953, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.92156, + unstable__provider: 'clarifai', + }, + { + name: 'sweet', + accuracy: 0.9481, + unstable__provider: 'clarifai', + }, + { + name: 'tasty', + accuracy: 0.92818, + unstable__provider: 'clarifai', + }, + { + name: 'tropical', + accuracy: 0.93651, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Pomegranade / Romã (Punica granatum), Asia / Mediterranean region native tree." by mauro halpern is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 812, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/a45cba3c-5f35-4899-aa63-c42c758efe44/thumb/', + detail_url: 'http://localhost:49153/v1/images/a45cba3c-5f35-4899-aa63-c42c758efe44/', + related_url: 'http://localhost:49153/v1/images/a45cba3c-5f35-4899-aa63-c42c758efe44/related/', + unstable__sensitivity: [], + }, + { + id: 'f80daf3f-21b1-47cc-9a36-72c83b972192', + title: 'Apple on the Tree', + indexed_on: '2020-04-13T02:02:32.094590Z', + foreign_landing_url: 'https://www.flickr.com/photos/69655432@N00/7761231628', + url: 'https://live.staticflickr.com/7108/7761231628_131ec27624_b.jpg', + creator: 'Lori L. Stalteri', + creator_url: 'https://www.flickr.com/photos/69655432@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'apple', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'backyard', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'drop', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'garden', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'gardening', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'green', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'massachusetts', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'northeastern', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'organic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'red', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'water', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wet', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'yard', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'apple', + accuracy: 0.99208, + unstable__provider: 'clarifai', + }, + { + name: 'confection', + accuracy: 0.97537, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.98585, + unstable__provider: 'clarifai', + }, + { + name: 'fall', + accuracy: 0.91548, + unstable__provider: 'clarifai', + }, + { + name: 'farming', + accuracy: 0.94856, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.99624, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99715, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.95274, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.98294, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.93855, + unstable__provider: 'clarifai', + }, + { + name: 'juice', + accuracy: 0.97013, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.99444, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.98418, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.99169, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.97868, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.9716, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.96426, + unstable__provider: 'clarifai', + }, + { + name: 'tropical', + accuracy: 0.91872, + unstable__provider: 'clarifai', + }, + { + name: 'vitamin', + accuracy: 0.91676, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Apple on the Tree" by Lori L. Stalteri is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 927, + thumbnail: 'http://localhost:49153/v1/images/f80daf3f-21b1-47cc-9a36-72c83b972192/thumb/', + detail_url: 'http://localhost:49153/v1/images/f80daf3f-21b1-47cc-9a36-72c83b972192/', + related_url: 'http://localhost:49153/v1/images/f80daf3f-21b1-47cc-9a36-72c83b972192/related/', + unstable__sensitivity: [], + }, + { + id: '02beea29-95a7-48b4-8f71-c3ca89216e2a', + title: 'Grand opening of the Sky tree , Tokyo', + indexed_on: '2016-11-17T18:25:34.074836Z', + foreign_landing_url: 'https://www.flickr.com/photos/36093266@N06/7247768708', + url: 'https://live.staticflickr.com/8009/7247768708_c389850197_b.jpg', + creator: 'Ari Helminen', + creator_url: 'https://www.flickr.com/photos/36093266@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'aginorz', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'alotofpeople', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'arihelminen', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'aripekkahelminen', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'asia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'beautifullife', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blogger', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blogi', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'breathtaking', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'finnishphotographer', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fulloflife', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fun', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'grandopeningoftheskytree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'happy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ilovejapan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'japan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'japanese', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'japani', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kaunisphotoblog', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lifeinjapan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mall', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nippon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'photoblog', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'photographer', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'shoppingmall', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'skytree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sony', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tallesttowerintheworld', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tokio', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tokyo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tower', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'travel', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'travelblog', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'u6771u4eacu30b9u30abu30a4u30c4u30eau30fc', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'valokuvaaja', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'valokuvaus', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wwwarihelminencom', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'breakfast', + accuracy: 0.91829, + unstable__provider: 'clarifai', + }, + { + name: 'cold', + accuracy: 0.93609, + unstable__provider: 'clarifai', + }, + { + name: 'cream', + accuracy: 0.95294, + unstable__provider: 'clarifai', + }, + { + name: 'creamy', + accuracy: 0.90001, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.98372, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.93369, + unstable__provider: 'clarifai', + }, + { + name: 'glass', + accuracy: 0.93794, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.98836, + unstable__provider: 'clarifai', + }, + { + name: 'homemade', + accuracy: 0.9083, + unstable__provider: 'clarifai', + }, + { + name: 'icee', + accuracy: 0.90768, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.91985, + unstable__provider: 'clarifai', + }, + { + name: 'ingredients', + accuracy: 0.96744, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.91153, + unstable__provider: 'clarifai', + }, + { + name: 'milk', + accuracy: 0.93305, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.96868, + unstable__provider: 'clarifai', + }, + { + name: 'sugar', + accuracy: 0.94007, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.90999, + unstable__provider: 'clarifai', + }, + { + name: 'yogurt', + accuracy: 0.93041, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Grand opening of the Sky tree , Tokyo" by Ari Helminen is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/02beea29-95a7-48b4-8f71-c3ca89216e2a/thumb/', + detail_url: 'http://localhost:49153/v1/images/02beea29-95a7-48b4-8f71-c3ca89216e2a/', + related_url: 'http://localhost:49153/v1/images/02beea29-95a7-48b4-8f71-c3ca89216e2a/related/', + unstable__sensitivity: [], + }, + { + id: '43eb21c5-e161-4691-b3dc-07d78e245f13', + title: 'Pears on the tree', + indexed_on: '2016-11-17T09:10:49.646139Z', + foreign_landing_url: 'https://www.flickr.com/photos/22118036@N00/2063722858', + url: 'https://live.staticflickr.com/2336/2063722858_99a2cdaec7.jpg', + creator: 'Monica Arellano-Ongpin', + creator_url: 'https://www.flickr.com/photos/22118036@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruta', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'frutta', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pear', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pera', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'agriculture', + accuracy: 0.95328, + unstable__provider: 'clarifai', + }, + { + name: 'apple', + accuracy: 0.99912, + unstable__provider: 'clarifai', + }, + { + name: 'apple tree', + accuracy: 0.95982, + unstable__provider: 'clarifai', + }, + { + name: 'branch', + accuracy: 0.96519, + unstable__provider: 'clarifai', + }, + { + name: 'crop', + accuracy: 0.93787, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.93866, + unstable__provider: 'clarifai', + }, + { + name: 'fall', + accuracy: 0.95549, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.99344, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99904, + unstable__provider: 'clarifai', + }, + { + name: 'grow', + accuracy: 0.95425, + unstable__provider: 'clarifai', + }, + { + name: 'growth', + accuracy: 0.96968, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.98173, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.95248, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.99234, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.99523, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.96598, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.98691, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.95524, + unstable__provider: 'clarifai', + }, + { + name: 'woodlet', + accuracy: 0.98491, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Pears on the tree" by Monica Arellano-Ongpin is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 408, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/43eb21c5-e161-4691-b3dc-07d78e245f13/thumb/', + detail_url: 'http://localhost:49153/v1/images/43eb21c5-e161-4691-b3dc-07d78e245f13/', + related_url: 'http://localhost:49153/v1/images/43eb21c5-e161-4691-b3dc-07d78e245f13/related/', + unstable__sensitivity: [], + }, + { + id: '5313a3f1-99fc-41ac-9500-445de51c4003', + title: 'Apple tree near St. Thomas Church', + indexed_on: '2020-03-29T23:21:30.176912Z', + foreign_landing_url: 'https://www.flickr.com/photos/29136804@N00/20120204988', + url: 'https://live.staticflickr.com/559/20120204988_cb2065de5e_b.jpg', + creator: 'Mary P Madigan', + creator_url: 'https://www.flickr.com/photos/29136804@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'agriculture', + accuracy: 0.94613, + unstable__provider: 'clarifai', + }, + { + name: 'apple tree', + accuracy: 0.98476, + unstable__provider: 'clarifai', + }, + { + name: 'fall', + accuracy: 0.9574, + unstable__provider: 'clarifai', + }, + { + name: 'freshness', + accuracy: 0.96775, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.97109, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.96612, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.97597, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.99748, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99899, + unstable__provider: 'clarifai', + }, + { + name: 'growth', + accuracy: 0.95244, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.98899, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.98848, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.99212, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.9561, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.99268, + unstable__provider: 'clarifai', + }, + { + name: 'apple', + accuracy: 0.99893, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.99156, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.97428, + unstable__provider: 'clarifai', + }, + { + name: 'woodlet', + accuracy: 0.96982, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Apple tree near St. Thomas Church" by Mary P Madigan is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 861, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/5313a3f1-99fc-41ac-9500-445de51c4003/thumb/', + detail_url: 'http://localhost:49153/v1/images/5313a3f1-99fc-41ac-9500-445de51c4003/', + related_url: 'http://localhost:49153/v1/images/5313a3f1-99fc-41ac-9500-445de51c4003/related/', + unstable__sensitivity: [], + }, + { + id: '5e3391e8-1188-4293-a1b1-84fca913422e', + title: 'Jerivá (Syagrus romanzoffiana) fruits CERET S PAULO Brazilian tree', + indexed_on: '2020-04-24T01:01:25.845035Z', + foreign_landing_url: 'https://www.flickr.com/photos/41597043@N00/3298575334', + url: 'https://live.staticflickr.com/3083/3298575334_5401568615_b.jpg', + creator: 'mauro halpern', + creator_url: 'https://www.flickr.com/photos/41597043@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'arecaceae', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'brazil', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ceret', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jerivu00e1', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'syagrusromanzoffiana', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'agriculture', + accuracy: 0.94361, + unstable__provider: 'clarifai', + }, + { + name: 'branch', + accuracy: 0.95822, + unstable__provider: 'clarifai', + }, + { + name: 'confection', + accuracy: 0.94814, + unstable__provider: 'clarifai', + }, + { + name: 'crop', + accuracy: 0.90424, + unstable__provider: 'clarifai', + }, + { + name: 'fall', + accuracy: 0.97304, + unstable__provider: 'clarifai', + }, + { + name: 'flora', + accuracy: 0.92799, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.99318, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99869, + unstable__provider: 'clarifai', + }, + { + name: 'grow', + accuracy: 0.99346, + unstable__provider: 'clarifai', + }, + { + name: 'hanging', + accuracy: 0.90805, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.97503, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.97273, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.98138, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.98295, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.9786, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.94403, + unstable__provider: 'clarifai', + }, + { + name: 'outdoors', + accuracy: 0.90868, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.9443, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.98705, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Jerivá (Syagrus romanzoffiana) fruits CERET S PAULO Brazilian tree" by mauro halpern is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/5e3391e8-1188-4293-a1b1-84fca913422e/thumb/', + detail_url: 'http://localhost:49153/v1/images/5e3391e8-1188-4293-a1b1-84fca913422e/', + related_url: 'http://localhost:49153/v1/images/5e3391e8-1188-4293-a1b1-84fca913422e/related/', + unstable__sensitivity: [], + }, + { + id: '55623572-e56c-4eaf-a494-97720173e96d', + title: 'Apples on a Tree', + indexed_on: '2020-04-17T06:19:21.936673Z', + foreign_landing_url: 'https://www.flickr.com/photos/8176740@N05/6032724858', + url: 'https://live.staticflickr.com/6182/6032724858_8cce0c8343_b.jpg', + creator: 'garryknight', + creator_url: 'https://www.flickr.com/photos/8176740@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'apple', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'canon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'creativecommons', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lightroom', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'london', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mordenhallpark', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'powershot', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'surreywetlands', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sx220hs', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wandletrail', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'apple', + accuracy: 0.95697, + unstable__provider: 'clarifai', + }, + { + name: 'branch', + accuracy: 0.91928, + unstable__provider: 'clarifai', + }, + { + name: 'closeup', + accuracy: 0.91102, + unstable__provider: 'clarifai', + }, + { + name: 'confection', + accuracy: 0.96456, + unstable__provider: 'clarifai', + }, + { + name: 'crop', + accuracy: 0.92154, + unstable__provider: 'clarifai', + }, + { + name: 'flora', + accuracy: 0.94449, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.99036, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99488, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.97365, + unstable__provider: 'clarifai', + }, + { + name: 'grow', + accuracy: 0.92826, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.95386, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.96806, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.97312, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.99656, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.98916, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.91571, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.93284, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.96249, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Apples on a Tree" by garryknight is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/55623572-e56c-4eaf-a494-97720173e96d/thumb/', + detail_url: 'http://localhost:49153/v1/images/55623572-e56c-4eaf-a494-97720173e96d/', + related_url: 'http://localhost:49153/v1/images/55623572-e56c-4eaf-a494-97720173e96d/related/', + unstable__sensitivity: [], + }, + { + id: '1e26673b-a50b-4c41-bfd9-e56db118e237', + title: 'ANP-0118 pear tree (pear fruit to be marketed under the name Lanya®)_MG_5158', + indexed_on: '2020-03-27T22:05:22.952912Z', + foreign_landing_url: 'https://www.flickr.com/photos/113312228@N06/16453025112', + url: 'https://live.staticflickr.com/8663/16453025112_aab84db378_b.jpg', + creator: 'Apple and Pear Australia Ltd', + creator_url: 'https://www.flickr.com/photos/113312228@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'yellow', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'agriculture', + accuracy: 0.96367, + unstable__provider: 'clarifai', + }, + { + name: 'apple', + accuracy: 0.98943, + unstable__provider: 'clarifai', + }, + { + name: 'color', + accuracy: 0.93097, + unstable__provider: 'clarifai', + }, + { + name: 'crop', + accuracy: 0.93356, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.96061, + unstable__provider: 'clarifai', + }, + { + name: 'flora', + accuracy: 0.93422, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.99381, + unstable__provider: 'clarifai', + }, + { + name: 'freshness', + accuracy: 0.94744, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.9978, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.97895, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.96704, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.98522, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.98115, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.98867, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.99398, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.94026, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.97719, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.96023, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.9473, + unstable__provider: 'clarifai', + }, + ], + attribution: '"ANP-0118 pear tree (pear fruit to be marketed under the name Lanya®)_MG_5158" by Apple and Pear Australia Ltd is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 683, + thumbnail: 'http://localhost:49153/v1/images/1e26673b-a50b-4c41-bfd9-e56db118e237/thumb/', + detail_url: 'http://localhost:49153/v1/images/1e26673b-a50b-4c41-bfd9-e56db118e237/', + related_url: 'http://localhost:49153/v1/images/1e26673b-a50b-4c41-bfd9-e56db118e237/related/', + unstable__sensitivity: [], + }, + { + id: '772c7f13-8647-422b-8a03-91dc0c4a5dae', + title: 'Peach tree', + indexed_on: '2020-04-25T01:01:32.015188Z', + foreign_landing_url: 'https://www.flickr.com/photos/95142644@N00/3906999950', + url: 'https://live.staticflickr.com/2426/3906999950_75c671d654_b.jpg', + creator: 'Ruth and Dave', + creator_url: 'https://www.flickr.com/photos/95142644@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'okanagan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'peach', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'confection', + accuracy: 0.91553, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.94945, + unstable__provider: 'clarifai', + }, + { + name: 'fall', + accuracy: 0.97527, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.98989, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99689, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.91868, + unstable__provider: 'clarifai', + }, + { + name: 'grow', + accuracy: 0.90431, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.96142, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.97421, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.97333, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.98062, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.99128, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.94824, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.94531, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.94346, + unstable__provider: 'clarifai', + }, + { + name: 'tropical', + accuracy: 0.9124, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Peach tree" by Ruth and Dave is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 768, + thumbnail: 'http://localhost:49153/v1/images/772c7f13-8647-422b-8a03-91dc0c4a5dae/thumb/', + detail_url: 'http://localhost:49153/v1/images/772c7f13-8647-422b-8a03-91dc0c4a5dae/', + related_url: 'http://localhost:49153/v1/images/772c7f13-8647-422b-8a03-91dc0c4a5dae/related/', + unstable__sensitivity: [], + }, + { + id: '05dbad1d-a602-45b7-914b-8c77e7d5588e', + title: 'Jerivá (Syagrus romanzoffiana) fruits CERET S PAULO Brazilian tree', + indexed_on: '2020-04-29T11:27:33.801269Z', + foreign_landing_url: 'https://www.flickr.com/photos/41597043@N00/3055204251', + url: 'https://live.staticflickr.com/3053/3055204251_981c07b653_b.jpg', + creator: 'mauro halpern', + creator_url: 'https://www.flickr.com/photos/41597043@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'ceret', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jerivu00e1', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'syagrusromanzoffiana', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'exotic', + accuracy: 0.9309, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.9916, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99164, + unstable__provider: 'clarifai', + }, + { + name: 'grow', + accuracy: 0.98813, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.96497, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.9621, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.94656, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.95064, + unstable__provider: 'clarifai', + }, + { + name: 'many', + accuracy: 0.9536, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.93466, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.95169, + unstable__provider: 'clarifai', + }, + { + name: 'palm', + accuracy: 0.9048, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.92981, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.92299, + unstable__provider: 'clarifai', + }, + { + name: 'tropical', + accuracy: 0.978, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Jerivá (Syagrus romanzoffiana) fruits CERET S PAULO Brazilian tree" by mauro halpern is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 768, + thumbnail: 'http://localhost:49153/v1/images/05dbad1d-a602-45b7-914b-8c77e7d5588e/thumb/', + detail_url: 'http://localhost:49153/v1/images/05dbad1d-a602-45b7-914b-8c77e7d5588e/', + related_url: 'http://localhost:49153/v1/images/05dbad1d-a602-45b7-914b-8c77e7d5588e/related/', + unstable__sensitivity: [], + }, + { + id: '352f3b17-c162-4cd2-9c5a-da05f1315642', + title: 'Apples on the tree - the gardens - Greys Court, Rotherfield Greys, Henley-on-Thames, Oxfordshire', + indexed_on: '2020-03-30T03:49:22.764530Z', + foreign_landing_url: 'https://www.flickr.com/photos/10978503@N00/20580801078', + url: 'https://live.staticflickr.com/571/20580801078_c2be39071a_b.jpg', + creator: 'Glen Bowman', + creator_url: 'https://www.flickr.com/photos/10978503@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'health', + accuracy: 0.93947, + unstable__provider: 'clarifai', + }, + { + name: 'apple', + accuracy: 0.97745, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.96676, + unstable__provider: 'clarifai', + }, + { + name: 'diet', + accuracy: 0.94502, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.96199, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.98193, + unstable__provider: 'clarifai', + }, + { + name: 'color', + accuracy: 0.94828, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.90209, + unstable__provider: 'clarifai', + }, + { + name: 'closeup', + accuracy: 0.91826, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.9846, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.97434, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.91655, + unstable__provider: 'clarifai', + }, + { + name: 'refreshment', + accuracy: 0.91618, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Apples on the tree - the gardens - Greys Court, Rotherfield Greys, Henley-on-Thames, Oxfordshire" by Glen Bowman is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/352f3b17-c162-4cd2-9c5a-da05f1315642/thumb/', + detail_url: 'http://localhost:49153/v1/images/352f3b17-c162-4cd2-9c5a-da05f1315642/', + related_url: 'http://localhost:49153/v1/images/352f3b17-c162-4cd2-9c5a-da05f1315642/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=tree+leaf+nutrition_keep-alive.json5 b/frontend/test/tapes/search/images/q=tree+leaf+nutrition_keep-alive.json5 new file mode 100644 index 00000000000..bf0d3cfd245 --- /dev/null +++ b/frontend/test/tapes/search/images/q=tree+leaf+nutrition_keep-alive.json5 @@ -0,0 +1,3389 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:09.608Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=tree+leaf+nutrition', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:09 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '168', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '9bb066a0-52a4-4488-9419-190d867c185f', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1149', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:00 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d3d1c50274a-ADL', + ], + }, + body: { + result_count: 240, + page_count: 12, + page_size: 20, + page: 1, + results: [ + { + id: 'be0fe302-08b9-4be9-886c-e8fb16eed7b2', + title: 'Apples on tree', + indexed_on: '2020-05-06T03:27:26.835175Z', + foreign_landing_url: 'https://www.flickr.com/photos/32454422@N00/221908814', + url: 'https://live.staticflickr.com/79/221908814_ec24e77c1e_b.jpg', + creator: 'Martin LaBar', + creator_url: 'https://www.flickr.com/photos/32454422@N00', + license: 'by-nc', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2for2', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'a1f1', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'apple', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'apples', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'green', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pickenscounty', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'red', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rosaceae', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'southcarolina', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'thecontinuum', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'apple', + accuracy: 0.9996, + unstable__provider: 'clarifai', + }, + { + name: 'confection', + accuracy: 0.91606, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.94512, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.98528, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99372, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.93423, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.9736, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.90012, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.97862, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.93489, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.97163, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.93214, + unstable__provider: 'clarifai', + }, + { + name: 'wet', + accuracy: 0.91114, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Apples on tree" by Martin LaBar is licensed under CC BY-NC 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 946, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/be0fe302-08b9-4be9-886c-e8fb16eed7b2/thumb/', + detail_url: 'http://localhost:49153/v1/images/be0fe302-08b9-4be9-886c-e8fb16eed7b2/', + related_url: 'http://localhost:49153/v1/images/be0fe302-08b9-4be9-886c-e8fb16eed7b2/related/', + unstable__sensitivity: [], + }, + { + id: '69ee456e-fc51-472a-8694-bb2c3ef639cf', + title: 'Orange Tree', + indexed_on: '2018-09-11T14:50:30.013406Z', + foreign_landing_url: 'https://www.flickr.com/photos/87591637@N00/76665500', + url: 'https://live.staticflickr.com/42/76665500_ceb3cef5ab_b.jpg', + creator: 'Steve Webel', + creator_url: 'https://www.flickr.com/photos/87591637@N00', + license: 'by-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'dof', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dynax5d', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'florida', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'floridausatpporange', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'green', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'minolta', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nature', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'orange', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pinellas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'southflorida', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'stpetersburg', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'webel', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'agriculture', + accuracy: 0.97782, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.95078, + unstable__provider: 'clarifai', + }, + { + name: 'flora', + accuracy: 0.92403, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.98068, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99341, + unstable__provider: 'clarifai', + }, + { + name: 'growth', + accuracy: 0.97616, + unstable__provider: 'clarifai', + }, + { + name: 'hanging', + accuracy: 0.91712, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.98807, + unstable__provider: 'clarifai', + }, + { + name: 'juice', + accuracy: 0.95889, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.9929, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.99718, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.99172, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.94644, + unstable__provider: 'clarifai', + }, + { + name: 'outdoors', + accuracy: 0.92795, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.98272, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.95795, + unstable__provider: 'clarifai', + }, + { + name: 'taste', + accuracy: 0.91519, + unstable__provider: 'clarifai', + }, + { + name: 'tropical', + accuracy: 0.97841, + unstable__provider: 'clarifai', + }, + { + name: 'vitamin', + accuracy: 0.94351, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Orange Tree" by Steve Webel is licensed under CC BY-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 681, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/69ee456e-fc51-472a-8694-bb2c3ef639cf/thumb/', + detail_url: 'http://localhost:49153/v1/images/69ee456e-fc51-472a-8694-bb2c3ef639cf/', + related_url: 'http://localhost:49153/v1/images/69ee456e-fc51-472a-8694-bb2c3ef639cf/related/', + unstable__sensitivity: [], + }, + { + id: 'bfccffad-5302-47f1-8f57-f97c4c86d781', + title: 'Ripe Colorful Pomegranate Fruit on Tree Branch', + indexed_on: '2020-03-31T06:55:36.649144Z', + foreign_landing_url: 'https://www.flickr.com/photos/137705051@N07/22704826703', + url: 'https://live.staticflickr.com/5772/22704826703_543f45cc8b_b.jpg', + creator: 'Ms. June Franks', + creator_url: 'https://www.flickr.com/photos/137705051@N07', + license: 'pdm', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/mark/1.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'agriculture', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'background', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'branch', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bright', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'circle', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'close', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'color', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'colorful', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dessert', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'diet', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'eating', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'exotic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'flora', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'foliage', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'food', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fresh', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruits', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'full', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'garden', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'green', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'health', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'healthy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hot', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juicy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'leaf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'light', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lively', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nature', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nutrition', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'organic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'outdoors', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plant', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pomegranate', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'raw', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'red', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ripe', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'round', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'south', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sunny', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sweet', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'symbol', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'traditional', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tropical', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Ripe Colorful Pomegranate Fruit on Tree Branch" by Ms. June Franks is marked with Public Domain Mark 1.0. To view the terms, visit https://creativecommons.org/publicdomain/mark/1.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 703, + width: 1000, + thumbnail: 'http://localhost:49153/v1/images/bfccffad-5302-47f1-8f57-f97c4c86d781/thumb/', + detail_url: 'http://localhost:49153/v1/images/bfccffad-5302-47f1-8f57-f97c4c86d781/', + related_url: 'http://localhost:49153/v1/images/bfccffad-5302-47f1-8f57-f97c4c86d781/related/', + unstable__sensitivity: [], + }, + { + id: '8f41f153-93ba-4410-a94e-98b920606a7f', + title: "Downtime Down Under - You Can't Accuse a Koala of Being a Social Climber Just Because It's Reaching for the Next Eucalyptus Leaf!", + indexed_on: '2019-09-18T08:31:19.315552Z', + foreign_landing_url: 'https://www.flickr.com/photos/8525214@N06/48631061937', + url: 'https://live.staticflickr.com/65535/48631061937_b88b67dcae_b.jpg', + creator: 'antonychammond', + creator_url: 'https://www.flickr.com/photos/8525214@N06', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'animal', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'arborealherbivorousmarsupial', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'australia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'contactgroups', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'easternvictoria', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'koala', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'koalabear', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'martsupial', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nature’splus', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'natureu2019splus', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'phascolarctoscinereus', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'raymondisland', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Downtime Down Under - You Can\'t Accuse a Koala of Being a Social Climber Just Because It\'s Reaching for the Next Eucalyptus Leaf!" by antonychammond is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 843, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/8f41f153-93ba-4410-a94e-98b920606a7f/thumb/', + detail_url: 'http://localhost:49153/v1/images/8f41f153-93ba-4410-a94e-98b920606a7f/', + related_url: 'http://localhost:49153/v1/images/8f41f153-93ba-4410-a94e-98b920606a7f/related/', + unstable__sensitivity: [], + }, + { + id: '046719b8-aea3-4566-99e6-091f2aa792f1', + title: 'Apple tree', + indexed_on: '2020-04-10T07:01:22.876694Z', + foreign_landing_url: 'https://www.flickr.com/photos/10178104@N00/7738645140', + url: 'https://live.staticflickr.com/8422/7738645140_4d7e03f7a8.jpg', + creator: 'Jeena Paradies', + creator_url: 'https://www.flickr.com/photos/10178104@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'apple', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'agriculture', + accuracy: 0.98452, + unstable__provider: 'clarifai', + }, + { + name: 'apple', + accuracy: 0.98071, + unstable__provider: 'clarifai', + }, + { + name: 'branch', + accuracy: 0.95656, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.99438, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99767, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.94921, + unstable__provider: 'clarifai', + }, + { + name: 'grow', + accuracy: 0.95456, + unstable__provider: 'clarifai', + }, + { + name: 'growth', + accuracy: 0.95187, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.97162, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.96813, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.98755, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.99518, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.99128, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.95195, + unstable__provider: 'clarifai', + }, + { + name: 'woodlet', + accuracy: 0.94549, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Apple tree" by Jeena Paradies is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 500, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/046719b8-aea3-4566-99e6-091f2aa792f1/thumb/', + detail_url: 'http://localhost:49153/v1/images/046719b8-aea3-4566-99e6-091f2aa792f1/', + related_url: 'http://localhost:49153/v1/images/046719b8-aea3-4566-99e6-091f2aa792f1/related/', + unstable__sensitivity: [], + }, + { + id: '7d19507f-0d2d-4d77-afb9-bda42ac28f49', + title: "Broccolli doesn't grow on trees, you know", + indexed_on: '2020-05-06T12:04:26.515338Z', + foreign_landing_url: 'https://www.flickr.com/photos/53611153@N00/314088675', + url: 'https://live.staticflickr.com/115/314088675_9db40f45a2_b.jpg', + creator: 'Darwin Bell', + creator_url: 'https://www.flickr.com/photos/53611153@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '100', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '25faves', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '30faves30comments300views', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '35faves', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'abigfave', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'aplusphoto', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'broccoli', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'green', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'macro', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mywinners', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'oneaday', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'shadow', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'superaplus', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'topf25', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'whiteground', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'broccoli', + accuracy: 0.98925, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.93729, + unstable__provider: 'clarifai', + }, + { + name: 'disjunct', + accuracy: 0.96727, + unstable__provider: 'clarifai', + }, + { + name: 'flora', + accuracy: 0.95249, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.97527, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.96884, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.94383, + unstable__provider: 'clarifai', + }, + { + name: 'ingredients', + accuracy: 0.92446, + unstable__provider: 'clarifai', + }, + { + name: 'isolate', + accuracy: 0.93087, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.97008, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.98283, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.9458, + unstable__provider: 'clarifai', + }, + { + name: 'vegetable', + accuracy: 0.92581, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Broccolli doesn\'t grow on trees, you know" by Darwin Bell is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 1015, + thumbnail: 'http://localhost:49153/v1/images/7d19507f-0d2d-4d77-afb9-bda42ac28f49/thumb/', + detail_url: 'http://localhost:49153/v1/images/7d19507f-0d2d-4d77-afb9-bda42ac28f49/', + related_url: 'http://localhost:49153/v1/images/7d19507f-0d2d-4d77-afb9-bda42ac28f49/related/', + unstable__sensitivity: [], + }, + { + id: 'f25e16fd-e0ca-42fb-9748-41a80fe8e58a', + title: 'mango-tree', + indexed_on: '2016-11-17T00:44:43.250328Z', + foreign_landing_url: 'https://www.flickr.com/photos/40994455@N06/9048857209', + url: 'https://live.staticflickr.com/7329/9048857209_71df782d16_b.jpg', + creator: 'nutrilover', + creator_url: 'https://www.flickr.com/photos/40994455@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'mangoes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mangotreemangiferaindica', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'agriculture', + accuracy: 0.9869, + unstable__provider: 'clarifai', + }, + { + name: 'branch', + accuracy: 0.96388, + unstable__provider: 'clarifai', + }, + { + name: 'environment', + accuracy: 0.93503, + unstable__provider: 'clarifai', + }, + { + name: 'fair weather', + accuracy: 0.94293, + unstable__provider: 'clarifai', + }, + { + name: 'farm', + accuracy: 0.96025, + unstable__provider: 'clarifai', + }, + { + name: 'flora', + accuracy: 0.98472, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.97038, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.98734, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.93218, + unstable__provider: 'clarifai', + }, + { + name: 'grow', + accuracy: 0.95021, + unstable__provider: 'clarifai', + }, + { + name: 'growth', + accuracy: 0.98357, + unstable__provider: 'clarifai', + }, + { + name: 'landscape', + accuracy: 0.93472, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.98924, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.98666, + unstable__provider: 'clarifai', + }, + { + name: 'outdoors', + accuracy: 0.98157, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.94956, + unstable__provider: 'clarifai', + }, + { + name: 'plantation', + accuracy: 0.92888, + unstable__provider: 'clarifai', + }, + { + name: 'season', + accuracy: 0.96261, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.99508, + unstable__provider: 'clarifai', + }, + ], + attribution: '"mango-tree" by nutrilover is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/f25e16fd-e0ca-42fb-9748-41a80fe8e58a/thumb/', + detail_url: 'http://localhost:49153/v1/images/f25e16fd-e0ca-42fb-9748-41a80fe8e58a/', + related_url: 'http://localhost:49153/v1/images/f25e16fd-e0ca-42fb-9748-41a80fe8e58a/related/', + unstable__sensitivity: [], + }, + { + id: '7ae0295c-35df-4072-b2a6-1e15c72a93d0', + title: 'Harpullia pendula - fruiting tree', + indexed_on: '2020-04-23T05:04:31.001408Z', + foreign_landing_url: 'https://www.flickr.com/photos/62938898@N00/5234444354', + url: 'https://live.staticflickr.com/5290/5234444354_69963b0e07.jpg', + creator: 'Tatters ✾', + creator_url: 'https://www.flickr.com/photos/62938898@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'arffs', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'arfp', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'auistralianrainforestplants', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'australia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blackarffs', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blackseeds', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'chapelhill', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'coruroy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'dryarf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'harpilia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'harpullia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'harpulliapendula', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'littoralarf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nswrfp', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'orangearffs', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'qld', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'qrfp', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sapindaceae', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'subtropicalarf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tulipwood', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wikipedia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'berry', + accuracy: 0.90341, + unstable__provider: 'clarifai', + }, + { + name: 'color', + accuracy: 0.92654, + unstable__provider: 'clarifai', + }, + { + name: 'confection', + accuracy: 0.92203, + unstable__provider: 'clarifai', + }, + { + name: 'crop', + accuracy: 0.92871, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.91088, + unstable__provider: 'clarifai', + }, + { + name: 'fall', + accuracy: 0.9327, + unstable__provider: 'clarifai', + }, + { + name: 'flora', + accuracy: 0.94321, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.99077, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99325, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.97034, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.93801, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.96202, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.99486, + unstable__provider: 'clarifai', + }, + { + name: 'maturation', + accuracy: 0.90109, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.98705, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.91049, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.91552, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.94979, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Harpullia pendula - fruiting tree" by Tatters ✾ is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 375, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/7ae0295c-35df-4072-b2a6-1e15c72a93d0/thumb/', + detail_url: 'http://localhost:49153/v1/images/7ae0295c-35df-4072-b2a6-1e15c72a93d0/', + related_url: 'http://localhost:49153/v1/images/7ae0295c-35df-4072-b2a6-1e15c72a93d0/related/', + unstable__sensitivity: [], + }, + { + id: '9f593328-1be7-4b35-8311-b8248a65f742', + title: 'Kiema Fati: tree entrepreneur', + indexed_on: '2016-11-17T05:30:13.671453Z', + foreign_landing_url: 'https://www.flickr.com/photos/53871588@N05/5505299539', + url: 'https://live.staticflickr.com/5093/5505299539_456111fcde_b.jpg', + creator: 'TREEAID', + creator_url: 'https://www.flickr.com/photos/53871588@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'africa', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'farming', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'harvest', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'leaves', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'trees', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'woman', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'women', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.92777, + unstable__provider: 'clarifai', + }, + { + name: 'agriculture', + accuracy: 0.91278, + unstable__provider: 'clarifai', + }, + { + name: 'farm', + accuracy: 0.94762, + unstable__provider: 'clarifai', + }, + { + name: 'farming', + accuracy: 0.92928, + unstable__provider: 'clarifai', + }, + { + name: 'flora', + accuracy: 0.90424, + unstable__provider: 'clarifai', + }, + { + name: 'flower', + accuracy: 0.90241, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.97611, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.95791, + unstable__provider: 'clarifai', + }, + { + name: 'grow', + accuracy: 0.95516, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.93847, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.97389, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.95594, + unstable__provider: 'clarifai', + }, + { + name: 'outdoors', + accuracy: 0.97036, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.92647, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.96505, + unstable__provider: 'clarifai', + }, + { + name: 'plantation', + accuracy: 0.90094, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.95791, + unstable__provider: 'clarifai', + }, + { + name: 'woman', + accuracy: 0.92721, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Kiema Fati: tree entrepreneur" by TREEAID is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 636, + thumbnail: 'http://localhost:49153/v1/images/9f593328-1be7-4b35-8311-b8248a65f742/thumb/', + detail_url: 'http://localhost:49153/v1/images/9f593328-1be7-4b35-8311-b8248a65f742/', + related_url: 'http://localhost:49153/v1/images/9f593328-1be7-4b35-8311-b8248a65f742/related/', + unstable__sensitivity: [], + }, + { + id: '410dcc66-8548-4eb4-8050-642b8c861422', + title: 'tree tomato and lemon', + indexed_on: '2020-04-24T15:19:32.507187Z', + foreign_landing_url: 'https://www.flickr.com/photos/36842913@N08/3540725167', + url: 'https://live.staticflickr.com/3367/3540725167_945d9ca4ce.jpg', + creator: 'SummerTomato', + creator_url: 'https://www.flickr.com/photos/36842913@N08', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'farmersmarket', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ferrybuilding', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lemons', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sanfrancisco', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tamarillos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'treetomatoes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bright', + accuracy: 0.94019, + unstable__provider: 'clarifai', + }, + { + name: 'citrus', + accuracy: 0.94561, + unstable__provider: 'clarifai', + }, + { + name: 'confection', + accuracy: 0.9369, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.97192, + unstable__provider: 'clarifai', + }, + { + name: 'exotic', + accuracy: 0.92843, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.97524, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.98948, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.99059, + unstable__provider: 'clarifai', + }, + { + name: 'ingredients', + accuracy: 0.92538, + unstable__provider: 'clarifai', + }, + { + name: 'juice', + accuracy: 0.9649, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.99723, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.92781, + unstable__provider: 'clarifai', + }, + { + name: 'lemon', + accuracy: 0.96851, + unstable__provider: 'clarifai', + }, + { + name: 'many', + accuracy: 0.94594, + unstable__provider: 'clarifai', + }, + { + name: 'market', + accuracy: 0.94115, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.97573, + unstable__provider: 'clarifai', + }, + { + name: 'taste', + accuracy: 0.91553, + unstable__provider: 'clarifai', + }, + { + name: 'tropical', + accuracy: 0.98305, + unstable__provider: 'clarifai', + }, + { + name: 'vitamin', + accuracy: 0.94169, + unstable__provider: 'clarifai', + }, + ], + attribution: '"tree tomato and lemon" by SummerTomato is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 367, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/410dcc66-8548-4eb4-8050-642b8c861422/thumb/', + detail_url: 'http://localhost:49153/v1/images/410dcc66-8548-4eb4-8050-642b8c861422/', + related_url: 'http://localhost:49153/v1/images/410dcc66-8548-4eb4-8050-642b8c861422/related/', + unstable__sensitivity: [], + }, + { + id: '900e8b09-5b01-4688-a17f-a8b4f2446aab', + title: 'Ethiopia - Mature Moringa stenopetala tree - March 2011', + indexed_on: '2020-09-26T12:29:39.901085Z', + foreign_landing_url: 'https://commons.wikimedia.org/w/index.php?curid=18274550', + url: 'https://upload.wikimedia.org/wikipedia/commons/9/97/Ethiopia_-_Mature_Moringa_stenopetala_tree_-_March_2011.jpg', + creator: 'Trees ForTheFuture', + creator_url: 'https://www.flickr.com/people/68632374@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'wikimedia', + source: 'wikimedia', + category: null, + filesize: 903868, + filetype: 'jpg', + tags: [], + attribution: '"Ethiopia - Mature Moringa stenopetala tree - March 2011" by Trees ForTheFuture is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 1632, + width: 1224, + thumbnail: 'http://localhost:49153/v1/images/900e8b09-5b01-4688-a17f-a8b4f2446aab/thumb/', + detail_url: 'http://localhost:49153/v1/images/900e8b09-5b01-4688-a17f-a8b4f2446aab/', + related_url: 'http://localhost:49153/v1/images/900e8b09-5b01-4688-a17f-a8b4f2446aab/related/', + unstable__sensitivity: [], + }, + { + id: 'c3dae3fe-ed11-4065-bfd9-f0ff30daf270', + title: 'Pear on a tree', + indexed_on: '2020-04-05T01:56:27.262403Z', + foreign_landing_url: 'https://www.flickr.com/photos/66526627@N00/15053303236', + url: 'https://live.staticflickr.com/5575/15053303236_03ba7573a6_b.jpg', + creator: 'ptc24', + creator_url: 'https://www.flickr.com/photos/66526627@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'panasoniclumixdmctz60', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'apple', + accuracy: 0.95874, + unstable__provider: 'clarifai', + }, + { + name: 'fall', + accuracy: 0.91511, + unstable__provider: 'clarifai', + }, + { + name: 'flora', + accuracy: 0.90318, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.98884, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99167, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.96514, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.96955, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.99419, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.98835, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.92767, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.94258, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.92144, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Pear on a tree" by ptc24 is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/c3dae3fe-ed11-4065-bfd9-f0ff30daf270/thumb/', + detail_url: 'http://localhost:49153/v1/images/c3dae3fe-ed11-4065-bfd9-f0ff30daf270/', + related_url: 'http://localhost:49153/v1/images/c3dae3fe-ed11-4065-bfd9-f0ff30daf270/related/', + unstable__sensitivity: [], + }, + { + id: 'f034d95f-06ed-4422-bfa4-57cd9fbbe0bd', + title: 'tree .95', + indexed_on: '2016-11-17T11:22:49.311716Z', + foreign_landing_url: 'https://www.flickr.com/photos/53194155@N00/5089418435', + url: 'https://live.staticflickr.com/4088/5089418435_8c9183397e_b.jpg', + creator: 'fishermansdaughter', + creator_url: 'https://www.flickr.com/photos/53194155@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'apple', + accuracy: 0.99394, + unstable__provider: 'clarifai', + }, + { + name: 'confection', + accuracy: 0.93804, + unstable__provider: 'clarifai', + }, + { + name: 'grow', + accuracy: 0.94068, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.98304, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.96647, + unstable__provider: 'clarifai', + }, + { + name: 'juice', + accuracy: 0.92812, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.9365, + unstable__provider: 'clarifai', + }, + { + name: 'fall', + accuracy: 0.96176, + unstable__provider: 'clarifai', + }, + { + name: 'farming', + accuracy: 0.94822, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.99462, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99483, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.97656, + unstable__provider: 'clarifai', + }, + { + name: 'market', + accuracy: 0.9723, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.97324, + unstable__provider: 'clarifai', + }, + { + name: 'vitamin', + accuracy: 0.93183, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.93175, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.96277, + unstable__provider: 'clarifai', + }, + { + name: 'diet', + accuracy: 0.92787, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.97719, + unstable__provider: 'clarifai', + }, + ], + attribution: '"tree .95" by fishermansdaughter is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/f034d95f-06ed-4422-bfa4-57cd9fbbe0bd/thumb/', + detail_url: 'http://localhost:49153/v1/images/f034d95f-06ed-4422-bfa4-57cd9fbbe0bd/', + related_url: 'http://localhost:49153/v1/images/f034d95f-06ed-4422-bfa4-57cd9fbbe0bd/related/', + unstable__sensitivity: [], + }, + { + id: '29b4d5c3-2ece-46a4-b402-c2ea106d1b9c', + title: 'Fruit Tree - Jeong, Choi', + indexed_on: '2020-05-07T20:05:20.758547Z', + foreign_landing_url: 'https://www.flickr.com/photos/45581782@N00/63132500', + url: 'https://live.staticflickr.com/30/63132500_83ca6cdb0d_b.jpg', + creator: 'psd', + creator_url: 'https://www.flickr.com/photos/45581782@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'art', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'japan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'yokohama', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'delicious', + accuracy: 0.93689, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.95712, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.96753, + unstable__provider: 'clarifai', + }, + { + name: 'ingredients', + accuracy: 0.92276, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.94639, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.93677, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.95093, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.91804, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Fruit Tree - Jeong, Choi" by psd is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 1024, + width: 768, + thumbnail: 'http://localhost:49153/v1/images/29b4d5c3-2ece-46a4-b402-c2ea106d1b9c/thumb/', + detail_url: 'http://localhost:49153/v1/images/29b4d5c3-2ece-46a4-b402-c2ea106d1b9c/', + related_url: 'http://localhost:49153/v1/images/29b4d5c3-2ece-46a4-b402-c2ea106d1b9c/related/', + unstable__sensitivity: [], + }, + { + id: '2c18be85-402c-488d-9f84-e48b24ec8164', + title: 'Great beautiful sunlight between a fruit tree plantation.', + indexed_on: '2018-11-09T10:31:06.910129Z', + foreign_landing_url: 'https://www.flickr.com/photos/61616043@N05/39658736312', + url: 'https://live.staticflickr.com/4713/39658736312_b96d74e841_b.jpg', + creator: 'Fotografiecor.nl', + creator_url: 'https://www.flickr.com/photos/61616043@N05', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'agriculture', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'autumn', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'background', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'black', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'botanical', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'branch', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'closeup', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'east', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'farm', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'food', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fresh', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'garden', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'green', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'grow', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'growth', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'health', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'healthy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ingredient', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juglans', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'landscape', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'leaf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'leaves', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'life', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'morning', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'natural', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nature', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nut', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nutrition', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nutshell', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'orchard', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'organic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plant', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'raw', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'regia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ripe', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'season', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'summer', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'trees', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'variosonnart281635', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'vegetarian', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'vitamin', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'walnut', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'young', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Great beautiful sunlight between a fruit tree plantation." by Fotografiecor.nl is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/2c18be85-402c-488d-9f84-e48b24ec8164/thumb/', + detail_url: 'http://localhost:49153/v1/images/2c18be85-402c-488d-9f84-e48b24ec8164/', + related_url: 'http://localhost:49153/v1/images/2c18be85-402c-488d-9f84-e48b24ec8164/related/', + unstable__sensitivity: [], + }, + { + id: 'a45cba3c-5f35-4899-aa63-c42c758efe44', + title: 'Pomegranade / Romã (Punica granatum), Asia / Mediterranean region native tree.', + indexed_on: '2020-04-29T08:30:27.467470Z', + foreign_landing_url: 'https://www.flickr.com/photos/41597043@N00/3005382430', + url: 'https://live.staticflickr.com/3210/3005382430_0f7646be58_b.jpg', + creator: 'mauro halpern', + creator_url: 'https://www.flickr.com/photos/41597043@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'u201csolofotosu201d', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'closeup', + accuracy: 0.93063, + unstable__provider: 'clarifai', + }, + { + name: 'color', + accuracy: 0.95557, + unstable__provider: 'clarifai', + }, + { + name: 'confection', + accuracy: 0.98292, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.95057, + unstable__provider: 'clarifai', + }, + { + name: 'desktop', + accuracy: 0.91896, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.98079, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.98962, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.92722, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.92429, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.96447, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.95575, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.92095, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.97366, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.91338, + unstable__provider: 'clarifai', + }, + { + name: 'pomegranate', + accuracy: 0.91953, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.92156, + unstable__provider: 'clarifai', + }, + { + name: 'sweet', + accuracy: 0.9481, + unstable__provider: 'clarifai', + }, + { + name: 'tasty', + accuracy: 0.92818, + unstable__provider: 'clarifai', + }, + { + name: 'tropical', + accuracy: 0.93651, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Pomegranade / Romã (Punica granatum), Asia / Mediterranean region native tree." by mauro halpern is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 812, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/a45cba3c-5f35-4899-aa63-c42c758efe44/thumb/', + detail_url: 'http://localhost:49153/v1/images/a45cba3c-5f35-4899-aa63-c42c758efe44/', + related_url: 'http://localhost:49153/v1/images/a45cba3c-5f35-4899-aa63-c42c758efe44/related/', + unstable__sensitivity: [], + }, + { + id: 'f80daf3f-21b1-47cc-9a36-72c83b972192', + title: 'Apple on the Tree', + indexed_on: '2020-04-13T02:02:32.094590Z', + foreign_landing_url: 'https://www.flickr.com/photos/69655432@N00/7761231628', + url: 'https://live.staticflickr.com/7108/7761231628_131ec27624_b.jpg', + creator: 'Lori L. Stalteri', + creator_url: 'https://www.flickr.com/photos/69655432@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'apple', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'backyard', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'drop', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'garden', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'gardening', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'green', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'massachusetts', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'northeastern', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'organic', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'red', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'water', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wet', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'yard', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'apple', + accuracy: 0.99208, + unstable__provider: 'clarifai', + }, + { + name: 'confection', + accuracy: 0.97537, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.98585, + unstable__provider: 'clarifai', + }, + { + name: 'fall', + accuracy: 0.91548, + unstable__provider: 'clarifai', + }, + { + name: 'farming', + accuracy: 0.94856, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.99624, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99715, + unstable__provider: 'clarifai', + }, + { + name: 'garden', + accuracy: 0.95274, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.98294, + unstable__provider: 'clarifai', + }, + { + name: 'healthy', + accuracy: 0.93855, + unstable__provider: 'clarifai', + }, + { + name: 'juice', + accuracy: 0.97013, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.99444, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.98418, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.99169, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.97868, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.9716, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.96426, + unstable__provider: 'clarifai', + }, + { + name: 'tropical', + accuracy: 0.91872, + unstable__provider: 'clarifai', + }, + { + name: 'vitamin', + accuracy: 0.91676, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Apple on the Tree" by Lori L. Stalteri is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 927, + thumbnail: 'http://localhost:49153/v1/images/f80daf3f-21b1-47cc-9a36-72c83b972192/thumb/', + detail_url: 'http://localhost:49153/v1/images/f80daf3f-21b1-47cc-9a36-72c83b972192/', + related_url: 'http://localhost:49153/v1/images/f80daf3f-21b1-47cc-9a36-72c83b972192/related/', + unstable__sensitivity: [], + }, + { + id: '02beea29-95a7-48b4-8f71-c3ca89216e2a', + title: 'Grand opening of the Sky tree , Tokyo', + indexed_on: '2016-11-17T18:25:34.074836Z', + foreign_landing_url: 'https://www.flickr.com/photos/36093266@N06/7247768708', + url: 'https://live.staticflickr.com/8009/7247768708_c389850197_b.jpg', + creator: 'Ari Helminen', + creator_url: 'https://www.flickr.com/photos/36093266@N06', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'aginorz', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'alotofpeople', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'arihelminen', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'aripekkahelminen', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'asia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'beautifullife', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blogger', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blogi', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'breathtaking', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'finnishphotographer', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fulloflife', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fun', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'grandopeningoftheskytree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'happy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ilovejapan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'japan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'japanese', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'japani', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kaunisphotoblog', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lifeinjapan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mall', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nippon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'photoblog', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'photographer', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'shoppingmall', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'skytree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sony', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tallesttowerintheworld', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tokio', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tokyo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tower', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'travel', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'travelblog', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'u6771u4eacu30b9u30abu30a4u30c4u30eau30fc', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'valokuvaaja', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'valokuvaus', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wwwarihelminencom', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'breakfast', + accuracy: 0.91829, + unstable__provider: 'clarifai', + }, + { + name: 'cold', + accuracy: 0.93609, + unstable__provider: 'clarifai', + }, + { + name: 'cream', + accuracy: 0.95294, + unstable__provider: 'clarifai', + }, + { + name: 'creamy', + accuracy: 0.90001, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.98372, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.93369, + unstable__provider: 'clarifai', + }, + { + name: 'glass', + accuracy: 0.93794, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.98836, + unstable__provider: 'clarifai', + }, + { + name: 'homemade', + accuracy: 0.9083, + unstable__provider: 'clarifai', + }, + { + name: 'icee', + accuracy: 0.90768, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.91985, + unstable__provider: 'clarifai', + }, + { + name: 'ingredients', + accuracy: 0.96744, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.91153, + unstable__provider: 'clarifai', + }, + { + name: 'milk', + accuracy: 0.93305, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.96868, + unstable__provider: 'clarifai', + }, + { + name: 'sugar', + accuracy: 0.94007, + unstable__provider: 'clarifai', + }, + { + name: 'summer', + accuracy: 0.90999, + unstable__provider: 'clarifai', + }, + { + name: 'yogurt', + accuracy: 0.93041, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Grand opening of the Sky tree , Tokyo" by Ari Helminen is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/02beea29-95a7-48b4-8f71-c3ca89216e2a/thumb/', + detail_url: 'http://localhost:49153/v1/images/02beea29-95a7-48b4-8f71-c3ca89216e2a/', + related_url: 'http://localhost:49153/v1/images/02beea29-95a7-48b4-8f71-c3ca89216e2a/related/', + unstable__sensitivity: [], + }, + { + id: 'ba25e52c-04a8-4958-bca4-de54711290c5', + title: 'Apricot tree with fruits', + indexed_on: '2020-03-31T06:55:36.649144Z', + foreign_landing_url: 'https://www.flickr.com/photos/137705051@N07/23249381361', + url: 'https://live.staticflickr.com/5670/23249381361_5b61bf6a79_b.jpg', + creator: 'Ms. June Franks', + creator_url: 'https://www.flickr.com/photos/137705051@N07', + license: 'pdm', + license_version: '1.0', + license_url: 'https://creativecommons.org/publicdomain/mark/1.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'agriculture', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'apricot', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'austria', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'beautiful', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'branches', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cultivate', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'details', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'floral', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'food', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fresh', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'freshness', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruits', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'garden', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'green', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'harvest', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'juicy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'leaf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'macro', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nature', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nobody', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nutrition', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'orange', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'orchard', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'outdoor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'peach', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plum', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'raw', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ripe', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'season', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sky', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'summer', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'summertime', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sun', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sunshine', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sweet', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'tree', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wachau', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'yellow', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Apricot tree with fruits" by Ms. June Franks is marked with Public Domain Mark 1.0. To view the terms, visit https://creativecommons.org/publicdomain/mark/1.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 1000, + width: 1000, + thumbnail: 'http://localhost:49153/v1/images/ba25e52c-04a8-4958-bca4-de54711290c5/thumb/', + detail_url: 'http://localhost:49153/v1/images/ba25e52c-04a8-4958-bca4-de54711290c5/', + related_url: 'http://localhost:49153/v1/images/ba25e52c-04a8-4958-bca4-de54711290c5/related/', + unstable__sensitivity: [], + }, + { + id: '43eb21c5-e161-4691-b3dc-07d78e245f13', + title: 'Pears on the tree', + indexed_on: '2016-11-17T09:10:49.646139Z', + foreign_landing_url: 'https://www.flickr.com/photos/22118036@N00/2063722858', + url: 'https://live.staticflickr.com/2336/2063722858_99a2cdaec7.jpg', + creator: 'Monica Arellano-Ongpin', + creator_url: 'https://www.flickr.com/photos/22118036@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'fruit', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fruta', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'frutta', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pear', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pera', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'agriculture', + accuracy: 0.95328, + unstable__provider: 'clarifai', + }, + { + name: 'apple', + accuracy: 0.99912, + unstable__provider: 'clarifai', + }, + { + name: 'apple tree', + accuracy: 0.95982, + unstable__provider: 'clarifai', + }, + { + name: 'branch', + accuracy: 0.96519, + unstable__provider: 'clarifai', + }, + { + name: 'crop', + accuracy: 0.93787, + unstable__provider: 'clarifai', + }, + { + name: 'delicious', + accuracy: 0.93866, + unstable__provider: 'clarifai', + }, + { + name: 'fall', + accuracy: 0.95549, + unstable__provider: 'clarifai', + }, + { + name: 'food', + accuracy: 0.99344, + unstable__provider: 'clarifai', + }, + { + name: 'fruit', + accuracy: 0.99904, + unstable__provider: 'clarifai', + }, + { + name: 'grow', + accuracy: 0.95425, + unstable__provider: 'clarifai', + }, + { + name: 'growth', + accuracy: 0.96968, + unstable__provider: 'clarifai', + }, + { + name: 'health', + accuracy: 0.98173, + unstable__provider: 'clarifai', + }, + { + name: 'juicy', + accuracy: 0.95248, + unstable__provider: 'clarifai', + }, + { + name: 'leaf', + accuracy: 0.99234, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.99523, + unstable__provider: 'clarifai', + }, + { + name: 'nutrition', + accuracy: 0.96598, + unstable__provider: 'clarifai', + }, + { + name: 'pasture', + accuracy: 0.98691, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.95524, + unstable__provider: 'clarifai', + }, + { + name: 'woodlet', + accuracy: 0.98491, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Pears on the tree" by Monica Arellano-Ongpin is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 408, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/43eb21c5-e161-4691-b3dc-07d78e245f13/thumb/', + detail_url: 'http://localhost:49153/v1/images/43eb21c5-e161-4691-b3dc-07d78e245f13/', + related_url: 'http://localhost:49153/v1/images/43eb21c5-e161-4691-b3dc-07d78e245f13/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=windy+day+music&license=by&extension=jpg&source=flickr_keep-alive.json5 b/frontend/test/tapes/search/images/q=windy+day+music&license=by&extension=jpg&source=flickr_keep-alive.json5 new file mode 100644 index 00000000000..08d6826d8ab --- /dev/null +++ b/frontend/test/tapes/search/images/q=windy+day+music&license=by&extension=jpg&source=flickr_keep-alive.json5 @@ -0,0 +1,1203 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:11.318Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=windy+day+music&license=by&extension=jpg&source=flickr', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:11 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '19', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '199', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + 'd8b462c8-fca2-4a22-a435-143d2c7f1879', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '84307', + ], + 'last-modified': [ + 'Thu, 19 Sep 2024 03:22:04 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d47cc13274a-ADL', + ], + }, + body: { + result_count: 11, + page_count: 1, + page_size: 20, + page: 1, + results: [ + { + id: '218600d3-0850-44ed-a756-d780ea0daca2', + title: 'windy day', + indexed_on: '2016-11-16T20:23:32.855758Z', + foreign_landing_url: 'https://www.flickr.com/photos/73645804@N00/3275192869', + url: 'https://live.staticflickr.com/3380/3275192869_e04049a17c_b.jpg', + creator: 'woodleywonderworks', + creator_url: 'https://www.flickr.com/photos/73645804@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'light', + accuracy: 0.93931, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.9458, + unstable__provider: 'clarifai', + }, + { + name: 'window', + accuracy: 0.92108, + unstable__provider: 'clarifai', + }, + { + name: 'house', + accuracy: 0.91239, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.94005, + unstable__provider: 'clarifai', + }, + { + name: 'flower', + accuracy: 0.9251, + unstable__provider: 'clarifai', + }, + { + name: 'landscape', + accuracy: 0.94806, + unstable__provider: 'clarifai', + }, + { + name: 'outdoors', + accuracy: 0.90275, + unstable__provider: 'clarifai', + }, + { + name: 'art', + accuracy: 0.90953, + unstable__provider: 'clarifai', + }, + ], + attribution: '"windy day" by woodleywonderworks is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/218600d3-0850-44ed-a756-d780ea0daca2/thumb/', + detail_url: 'http://localhost:49153/v1/images/218600d3-0850-44ed-a756-d780ea0daca2/', + related_url: 'http://localhost:49153/v1/images/218600d3-0850-44ed-a756-d780ea0daca2/related/', + unstable__sensitivity: [], + }, + { + id: 'fe48b9ff-5822-4ecc-b6a0-8f3481d5e403', + title: 'Mountains in Canada. The Golden Ears from Music Building Plaza at WWU on clear day.', + indexed_on: '2020-04-13T03:03:17.165178Z', + foreign_landing_url: 'https://www.flickr.com/photos/90536753@N00/49763417446', + url: 'https://live.staticflickr.com/65535/49763417446_6f91b585f9_b.jpg', + creator: 'theslowlane', + creator_url: 'https://www.flickr.com/photos/90536753@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2020', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bellingham', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'westernwashingtonuniversity', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Mountains in Canada. The Golden Ears from Music Building Plaza at WWU on clear day." by theslowlane is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/fe48b9ff-5822-4ecc-b6a0-8f3481d5e403/thumb/', + detail_url: 'http://localhost:49153/v1/images/fe48b9ff-5822-4ecc-b6a0-8f3481d5e403/', + related_url: 'http://localhost:49153/v1/images/fe48b9ff-5822-4ecc-b6a0-8f3481d5e403/related/', + unstable__sensitivity: [], + }, + { + id: 'd4386b73-63db-475c-8bfe-f2b6ba820588', + title: 'Warm day', + indexed_on: '2020-04-27T15:29:35.430415Z', + foreign_landing_url: 'https://www.flickr.com/photos/77476789@N00/2303996177', + url: 'https://live.staticflickr.com/2420/2303996177_2cac4cb6cf.jpg', + creator: 'the Italian voice', + creator_url: 'https://www.flickr.com/photos/77476789@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '365days', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bed', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bloom', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'day', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'desi', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hot', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'me', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'outside', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pepper', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'periodo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plants', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'relax', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'skin', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spring', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sunbeams', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sunny', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'touch', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'umbrella', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'warm', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'windy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.91548, + unstable__provider: 'clarifai', + }, + { + name: 'festival', + accuracy: 0.91646, + unstable__provider: 'clarifai', + }, + { + name: 'girl', + accuracy: 0.94277, + unstable__provider: 'clarifai', + }, + { + name: 'music', + accuracy: 0.93489, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.96328, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.97776, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.94099, + unstable__provider: 'clarifai', + }, + { + name: 'umbrella', + accuracy: 0.91656, + unstable__provider: 'clarifai', + }, + { + name: 'woman', + accuracy: 0.93352, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Warm day" by the Italian voice is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 375, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/d4386b73-63db-475c-8bfe-f2b6ba820588/thumb/', + detail_url: 'http://localhost:49153/v1/images/d4386b73-63db-475c-8bfe-f2b6ba820588/', + related_url: 'http://localhost:49153/v1/images/d4386b73-63db-475c-8bfe-f2b6ba820588/related/', + unstable__sensitivity: [], + }, + { + id: '1e60497d-512e-483a-a428-8d449b0bf52e', + title: "We're having a heat wave Project 365(3) Day 166", + indexed_on: '2020-04-17T01:01:32.627525Z', + foreign_landing_url: 'https://www.flickr.com/photos/34673186@N03/5949668182', + url: 'https://live.staticflickr.com/6128/5949668182_b0288a52e1_b.jpg', + creator: 'Keith Williamson', + creator_url: 'https://www.flickr.com/photos/34673186@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'hot', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'project365', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'windy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'computer', + accuracy: 0.9231, + unstable__provider: 'clarifai', + }, + { + name: 'electronics', + accuracy: 0.90694, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.93226, + unstable__provider: 'clarifai', + }, + { + name: 'music', + accuracy: 0.90836, + unstable__provider: 'clarifai', + }, + { + name: 'plastic', + accuracy: 0.90655, + unstable__provider: 'clarifai', + }, + { + name: 'security', + accuracy: 0.91869, + unstable__provider: 'clarifai', + }, + { + name: 'technology', + accuracy: 0.9722, + unstable__provider: 'clarifai', + }, + ], + attribution: '"We\'re having a heat wave Project 365(3) Day 166" by Keith Williamson is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/1e60497d-512e-483a-a428-8d449b0bf52e/thumb/', + detail_url: 'http://localhost:49153/v1/images/1e60497d-512e-483a-a428-8d449b0bf52e/', + related_url: 'http://localhost:49153/v1/images/1e60497d-512e-483a-a428-8d449b0bf52e/related/', + unstable__sensitivity: [], + }, + { + id: 'a1472f64-98b1-4081-a0c7-2aa6451ff05a', + title: 'Windy Fountain', + indexed_on: '2016-11-17T03:29:53.955328Z', + foreign_landing_url: 'https://www.flickr.com/photos/41611970@N00/103909377', + url: 'https://live.staticflickr.com/40/103909377_049eab8e15_b.jpg', + creator: 'midiman', + creator_url: 'https://www.flickr.com/photos/41611970@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'arizona', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'asu', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fountain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'music', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'water', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'windy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'architecture', + accuracy: 0.97635, + unstable__provider: 'clarifai', + }, + { + name: 'bath', + accuracy: 0.91989, + unstable__provider: 'clarifai', + }, + { + name: 'building', + accuracy: 0.92466, + unstable__provider: 'clarifai', + }, + { + name: 'city', + accuracy: 0.91754, + unstable__provider: 'clarifai', + }, + { + name: 'dug-out pool', + accuracy: 0.98663, + unstable__provider: 'clarifai', + }, + { + name: 'fountain', + accuracy: 0.99392, + unstable__provider: 'clarifai', + }, + { + name: 'H2O', + accuracy: 0.94831, + unstable__provider: 'clarifai', + }, + { + name: 'hotel', + accuracy: 0.97588, + unstable__provider: 'clarifai', + }, + { + name: 'house', + accuracy: 0.94909, + unstable__provider: 'clarifai', + }, + { + name: 'light', + accuracy: 0.91304, + unstable__provider: 'clarifai', + }, + { + name: 'luxury', + accuracy: 0.95191, + unstable__provider: 'clarifai', + }, + { + name: 'swimming pool', + accuracy: 0.94302, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.94893, + unstable__provider: 'clarifai', + }, + { + name: 'vacation', + accuracy: 0.91238, + unstable__provider: 'clarifai', + }, + { + name: 'water', + accuracy: 0.98212, + unstable__provider: 'clarifai', + }, + { + name: 'wet', + accuracy: 0.95327, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Windy Fountain" by midiman is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/a1472f64-98b1-4081-a0c7-2aa6451ff05a/thumb/', + detail_url: 'http://localhost:49153/v1/images/a1472f64-98b1-4081-a0c7-2aa6451ff05a/', + related_url: 'http://localhost:49153/v1/images/a1472f64-98b1-4081-a0c7-2aa6451ff05a/related/', + unstable__sensitivity: [], + }, + { + id: '66d00418-aeb2-4801-8068-f5b43f198bfe', + title: "society, you're a crazy breed", + indexed_on: '2020-04-27T19:17:31.506159Z', + foreign_landing_url: 'https://www.flickr.com/photos/21257461@N05/2374600706', + url: 'https://live.staticflickr.com/2357/2374600706_4f0f3bc019_b.jpg', + creator: 'db Photography | Demi-Brooke', + creator_url: 'https://www.flickr.com/photos/21257461@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'acer', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'brooke', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'computer', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'crazy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cybershot', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'day', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'demi', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'eddie', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'god', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hat', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jesus', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lyrics', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'march', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'music', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nature', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'photoshop', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'porch', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'society', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sony', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spiritual', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sun', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'vedder', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'weather', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'world', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"society, you\'re a crazy breed" by db Photography | Demi-Brooke is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 903, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/66d00418-aeb2-4801-8068-f5b43f198bfe/thumb/', + detail_url: 'http://localhost:49153/v1/images/66d00418-aeb2-4801-8068-f5b43f198bfe/', + related_url: 'http://localhost:49153/v1/images/66d00418-aeb2-4801-8068-f5b43f198bfe/related/', + unstable__sensitivity: [], + }, + { + id: '3552b0dd-28df-4f9c-9270-5349bedd5e67', + title: 'Deckers Outdoors Booth', + indexed_on: '2020-04-24T14:19:33.563738Z', + foreign_landing_url: 'https://www.flickr.com/photos/28096801@N05/3524994313', + url: 'https://live.staticflickr.com/3338/3524994313_9808ab6473_b.jpg', + creator: 'DieselDemon', + creator_url: 'https://www.flickr.com/photos/28096801@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'bags', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'booth', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'deckersoutdoors', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'illumunati', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'santabarbaragoletacacaliforniacanonrebelxti50mmrelayforlifecancerbishopgarciadiegohighschoolnight', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'teva', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'carnival', + accuracy: 0.98956, + unstable__provider: 'clarifai', + }, + { + name: 'carousel', + accuracy: 0.92457, + unstable__provider: 'clarifai', + }, + { + name: 'city', + accuracy: 0.97767, + unstable__provider: 'clarifai', + }, + { + name: 'commerce', + accuracy: 0.92599, + unstable__provider: 'clarifai', + }, + { + name: 'festival', + accuracy: 0.98464, + unstable__provider: 'clarifai', + }, + { + name: 'group', + accuracy: 0.92422, + unstable__provider: 'clarifai', + }, + { + name: 'landscape', + accuracy: 0.95142, + unstable__provider: 'clarifai', + }, + { + name: 'light', + accuracy: 0.93531, + unstable__provider: 'clarifai', + }, + { + name: 'music', + accuracy: 0.91445, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.99114, + unstable__provider: 'clarifai', + }, + { + name: 'performance', + accuracy: 0.92249, + unstable__provider: 'clarifai', + }, + { + name: 'street', + accuracy: 0.96764, + unstable__provider: 'clarifai', + }, + { + name: 'tourism', + accuracy: 0.94508, + unstable__provider: 'clarifai', + }, + { + name: 'tourist', + accuracy: 0.96152, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.94317, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Deckers Outdoors Booth" by DieselDemon is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 686, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/3552b0dd-28df-4f9c-9270-5349bedd5e67/thumb/', + detail_url: 'http://localhost:49153/v1/images/3552b0dd-28df-4f9c-9270-5349bedd5e67/', + related_url: 'http://localhost:49153/v1/images/3552b0dd-28df-4f9c-9270-5349bedd5e67/related/', + unstable__sensitivity: [], + }, + { + id: '1ef2b81c-8c6b-45b2-bb44-6c3c67bdb09d', + title: 'The King', + indexed_on: '2018-11-09T10:31:06.910129Z', + foreign_landing_url: 'https://www.flickr.com/photos/12357841@N02/29332194767', + url: 'https://live.staticflickr.com/1857/29332194767_ec1ebfdbfc_b.jpg', + creator: 'Me in ME', + creator_url: 'https://www.flickr.com/photos/12357841@N02', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'balloons', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'elvis', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'greatfalls', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hotair', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lewiston', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'maine', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'specialshapehotairballoon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'theking', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"The King" by Me in ME is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 1024, + width: 682, + thumbnail: 'http://localhost:49153/v1/images/1ef2b81c-8c6b-45b2-bb44-6c3c67bdb09d/thumb/', + detail_url: 'http://localhost:49153/v1/images/1ef2b81c-8c6b-45b2-bb44-6c3c67bdb09d/', + related_url: 'http://localhost:49153/v1/images/1ef2b81c-8c6b-45b2-bb44-6c3c67bdb09d/related/', + unstable__sensitivity: [], + }, + { + id: '79365b79-7377-4660-a366-72be3c366906', + title: "'Ripplin Waters' by the Nitty Gritty Dirt Band", + indexed_on: '2020-03-03T06:04:56.329962Z', + foreign_landing_url: 'https://www.flickr.com/photos/78428166@N00/22653762355', + url: 'https://live.staticflickr.com/5641/22653762355_d78bd415f1.jpg', + creator: 'Tobyotter', + creator_url: 'https://www.flickr.com/photos/78428166@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'fdsflickrtoys', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lakemaury', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'poster', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"\'Ripplin Waters\' by the Nitty Gritty Dirt Band" by Tobyotter is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 400, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/79365b79-7377-4660-a366-72be3c366906/thumb/', + detail_url: 'http://localhost:49153/v1/images/79365b79-7377-4660-a366-72be3c366906/', + related_url: 'http://localhost:49153/v1/images/79365b79-7377-4660-a366-72be3c366906/related/', + unstable__sensitivity: [], + }, + { + id: '863183c4-2423-41b8-9054-5534942c6fe8', + title: 'Riverdance!', + indexed_on: '2016-11-17T09:06:37.608470Z', + foreign_landing_url: 'https://www.flickr.com/photos/11399912@N00/2140767676', + url: 'https://live.staticflickr.com/2204/2140767676_8c18f6a945_b.jpg', + creator: 'basykes', + creator_url: 'https://www.flickr.com/photos/11399912@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '365', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '365days', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'day289', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.98263, + unstable__provider: 'clarifai', + }, + { + name: 'festival', + accuracy: 0.94402, + unstable__provider: 'clarifai', + }, + { + name: 'man', + accuracy: 0.95672, + unstable__provider: 'clarifai', + }, + { + name: 'music', + accuracy: 0.91165, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.98013, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.99586, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.98748, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Riverdance!" by basykes is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/863183c4-2423-41b8-9054-5534942c6fe8/thumb/', + detail_url: 'http://localhost:49153/v1/images/863183c4-2423-41b8-9054-5534942c6fe8/', + related_url: 'http://localhost:49153/v1/images/863183c4-2423-41b8-9054-5534942c6fe8/related/', + unstable__sensitivity: [], + }, + { + id: 'd61e3132-2d10-4f46-9bd4-24695018680c', + title: 'Zocalos, zocalos everywhere.', + indexed_on: '2020-02-19T06:09:32.938344Z', + foreign_landing_url: 'https://www.flickr.com/photos/14759783@N04/43464238530', + url: 'https://live.staticflickr.com/1903/43464238530_238861c1ca_b.jpg', + creator: 'young shanahan', + creator_url: 'https://www.flickr.com/photos/14759783@N04', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'antioquia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'colombia', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'colombiasmostcolourfultown', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'colombiasprettiesttown', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'guatape', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'guatapé', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'guatapéthezocalos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'guatapéthezócalos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'guatapu00e9', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'guatapu00e9thezocalos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'guatapu00e9thezu00f3calos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'zocalos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'zócalos', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'zu00f3calos', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Zocalos, zocalos everywhere." by young shanahan is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/d61e3132-2d10-4f46-9bd4-24695018680c/thumb/', + detail_url: 'http://localhost:49153/v1/images/d61e3132-2d10-4f46-9bd4-24695018680c/', + related_url: 'http://localhost:49153/v1/images/d61e3132-2d10-4f46-9bd4-24695018680c/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/frontend/test/tapes/search/images/q=windy+day+music_keep-alive.json5 b/frontend/test/tapes/search/images/q=windy+day+music_keep-alive.json5 new file mode 100644 index 00000000000..4e92ee6f9cd --- /dev/null +++ b/frontend/test/tapes/search/images/q=windy+day+music_keep-alive.json5 @@ -0,0 +1,2041 @@ +{ + meta: { + createdAt: '2024-09-20T02:47:10.142Z', + host: 'https://api.openverse.org', + resHumanReadable: true, + resUncompressed: true, + }, + req: { + headers: { + connection: 'keep-alive', + }, + url: '/v1/images/?q=windy+day+music', + method: 'GET', + body: '', + }, + res: { + status: 200, + headers: { + date: [ + 'Fri, 20 Sep 2024 02:47:10 GMT', + ], + 'content-type': [ + 'application/json', + ], + 'transfer-encoding': [ + 'chunked', + ], + connection: [ + 'keep-alive', + ], + vary: [ + 'Accept-Encoding, Accept, Authorization, origin', + ], + allow: [ + 'GET, HEAD, OPTIONS', + ], + 'x-ratelimit-limit-anon_burst': [ + '20/min', + ], + 'x-ratelimit-available-anon_burst': [ + '17', + ], + 'x-ratelimit-limit-anon_sustained': [ + '200/day', + ], + 'x-ratelimit-available-anon_sustained': [ + '192', + ], + 'x-frame-options': [ + 'DENY', + ], + 'x-content-type-options': [ + 'nosniff', + ], + 'referrer-policy': [ + 'same-origin', + ], + 'cross-origin-opener-policy': [ + 'same-origin', + ], + 'x-request-id': [ + '426c4b07-448b-43b5-b934-77196b340300', + ], + 'content-encoding': [ + 'gzip', + ], + 'cf-cache-status': [ + 'HIT', + ], + age: [ + '1148', + ], + 'last-modified': [ + 'Fri, 20 Sep 2024 02:28:02 GMT', + ], + server: [ + 'cloudflare', + ], + 'cf-ray': [ + '8c5e7d406fb3274b-ADL', + ], + }, + body: { + result_count: 55, + page_count: 3, + page_size: 20, + page: 1, + results: [ + { + id: '83da4eb0-5ed0-4d84-a377-9b257eaed204', + title: 'A Band Plays on a Blustery April Day in Front of the Jefferson Memorial at the Tidal Basin #jefferson #memorial #jeffersonmemorial #music #band #windy #sepia #tidalbasin #dc #washingtondc', + indexed_on: '2020-03-14T09:35:35.917906Z', + foreign_landing_url: 'https://www.flickr.com/photos/126497846@N03/41838633581', + url: 'https://live.staticflickr.com/978/41838633581_48c3e919b1.jpg', + creator: 'hillels', + creator_url: 'https://www.flickr.com/photos/126497846@N03', + license: 'by-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'ifttt', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'instagram', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"A Band Plays on a Blustery April Day in Front of the Jefferson Memorial at the Tidal Basin #jefferson #memorial #jeffersonmemorial #music #band #windy #sepia #tidalbasin #dc #washingtondc" by hillels is licensed under CC BY-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nd/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 313, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/83da4eb0-5ed0-4d84-a377-9b257eaed204/thumb/', + detail_url: 'http://localhost:49153/v1/images/83da4eb0-5ed0-4d84-a377-9b257eaed204/', + related_url: 'http://localhost:49153/v1/images/83da4eb0-5ed0-4d84-a377-9b257eaed204/related/', + unstable__sensitivity: [], + }, + { + id: 'd0f55ff7-0db2-45d7-a0bb-c48356b3d93f', + title: 'Music is my friend - The melodies and rhythms everywhere - They make me feel free ---Rainy, Windy Day - makes me want to stay inside - No, inhale cold air!', + indexed_on: '2020-03-30T19:04:29.292096Z', + foreign_landing_url: 'https://www.flickr.com/photos/69239819@N05/22068470748', + url: 'https://live.staticflickr.com/5781/22068470748_947fe4b9b9_b.jpg', + creator: 'ghm575', + creator_url: 'https://www.flickr.com/photos/69239819@N05', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'topgordon2015', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Music is my friend - The melodies and rhythms everywhere - They make me feel free ---Rainy, Windy Day - makes me want to stay inside - No, inhale cold air!" by ghm575 is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/d0f55ff7-0db2-45d7-a0bb-c48356b3d93f/thumb/', + detail_url: 'http://localhost:49153/v1/images/d0f55ff7-0db2-45d7-a0bb-c48356b3d93f/', + related_url: 'http://localhost:49153/v1/images/d0f55ff7-0db2-45d7-a0bb-c48356b3d93f/related/', + unstable__sensitivity: [], + }, + { + id: 'ecbe42f0-34a4-4328-b69e-d3c212d94162', + title: '20/12/2010 (Day 4.354) - A Windy Bench Monday', + indexed_on: '2019-05-16T15:37:18.371565Z', + foreign_landing_url: 'https://www.flickr.com/photos/95492938@N00/5276701588', + url: 'https://live.staticflickr.com/5005/5276701588_b61c7fa830_b.jpg', + creator: 'Kaptain Kobold', + creator_url: 'https://www.flickr.com/photos/95492938@N00', + license: 'by-nc-sa', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-sa/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '13things', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '169', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '365', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '365days', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '365year4', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'alan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bench', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'catherine', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cei', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'day4354', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'facts', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'grass', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hbm', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hobm', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kaptainkobold', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'maya', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mccabepark', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'oddities', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'p365', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'selfie', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'selfportrait', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'standing', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'timer', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'trees', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'trp', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'widescreen', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wind', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wollongong', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'yourfave', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"20/12/2010 (Day 4.354) - A Windy Bench Monday" by Kaptain Kobold is licensed under CC BY-NC-SA 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-sa/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 576, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/ecbe42f0-34a4-4328-b69e-d3c212d94162/thumb/', + detail_url: 'http://localhost:49153/v1/images/ecbe42f0-34a4-4328-b69e-d3c212d94162/', + related_url: 'http://localhost:49153/v1/images/ecbe42f0-34a4-4328-b69e-d3c212d94162/related/', + unstable__sensitivity: [], + }, + { + id: 'cccae616-6ed0-4d39-ae63-9d9355cfe87d', + title: 'another windy day in Archeon', + indexed_on: '2018-11-07T20:03:57.748699Z', + foreign_landing_url: 'https://www.flickr.com/photos/67196253@N00/155312837', + url: 'https://live.staticflickr.com/47/155312837_e2027e4b2c_b.jpg', + creator: 'hans s', + creator_url: 'https://www.flickr.com/photos/67196253@N00', + license: 'by-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2006', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'archeon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'medieval', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'middeleeuwen', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'music', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"another windy day in Archeon" by hans s is licensed under CC BY-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nd/2.0/.', + fields_matched: [ + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/cccae616-6ed0-4d39-ae63-9d9355cfe87d/thumb/', + detail_url: 'http://localhost:49153/v1/images/cccae616-6ed0-4d39-ae63-9d9355cfe87d/', + related_url: 'http://localhost:49153/v1/images/cccae616-6ed0-4d39-ae63-9d9355cfe87d/related/', + unstable__sensitivity: [], + }, + { + id: '218600d3-0850-44ed-a756-d780ea0daca2', + title: 'windy day', + indexed_on: '2016-11-16T20:23:32.855758Z', + foreign_landing_url: 'https://www.flickr.com/photos/73645804@N00/3275192869', + url: 'https://live.staticflickr.com/3380/3275192869_e04049a17c_b.jpg', + creator: 'woodleywonderworks', + creator_url: 'https://www.flickr.com/photos/73645804@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'light', + accuracy: 0.93931, + unstable__provider: 'clarifai', + }, + { + name: 'tree', + accuracy: 0.9458, + unstable__provider: 'clarifai', + }, + { + name: 'window', + accuracy: 0.92108, + unstable__provider: 'clarifai', + }, + { + name: 'house', + accuracy: 0.91239, + unstable__provider: 'clarifai', + }, + { + name: 'nature', + accuracy: 0.94005, + unstable__provider: 'clarifai', + }, + { + name: 'flower', + accuracy: 0.9251, + unstable__provider: 'clarifai', + }, + { + name: 'landscape', + accuracy: 0.94806, + unstable__provider: 'clarifai', + }, + { + name: 'outdoors', + accuracy: 0.90275, + unstable__provider: 'clarifai', + }, + { + name: 'art', + accuracy: 0.90953, + unstable__provider: 'clarifai', + }, + ], + attribution: '"windy day" by woodleywonderworks is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/218600d3-0850-44ed-a756-d780ea0daca2/thumb/', + detail_url: 'http://localhost:49153/v1/images/218600d3-0850-44ed-a756-d780ea0daca2/', + related_url: 'http://localhost:49153/v1/images/218600d3-0850-44ed-a756-d780ea0daca2/related/', + unstable__sensitivity: [], + }, + { + id: '4edf1961-1254-4845-9c2e-b928e2169976', + title: 'Special, Windy Day', + indexed_on: '2018-11-08T01:45:17.652714Z', + foreign_landing_url: 'https://www.flickr.com/photos/50137930@N00/3242078462', + url: 'https://live.staticflickr.com/3484/3242078462_799fcd710b_b.jpg', + creator: 'wyldanthem', + creator_url: 'https://www.flickr.com/photos/50137930@N00', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2008', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'beach', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bride', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'maryland', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'oceancity', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'veil', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wedding', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Special, Windy Day" by wyldanthem is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/4edf1961-1254-4845-9c2e-b928e2169976/thumb/', + detail_url: 'http://localhost:49153/v1/images/4edf1961-1254-4845-9c2e-b928e2169976/', + related_url: 'http://localhost:49153/v1/images/4edf1961-1254-4845-9c2e-b928e2169976/related/', + unstable__sensitivity: [], + }, + { + id: 'fe48b9ff-5822-4ecc-b6a0-8f3481d5e403', + title: 'Mountains in Canada. The Golden Ears from Music Building Plaza at WWU on clear day.', + indexed_on: '2020-04-13T03:03:17.165178Z', + foreign_landing_url: 'https://www.flickr.com/photos/90536753@N00/49763417446', + url: 'https://live.staticflickr.com/65535/49763417446_6f91b585f9_b.jpg', + creator: 'theslowlane', + creator_url: 'https://www.flickr.com/photos/90536753@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '2020', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bellingham', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'westernwashingtonuniversity', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Mountains in Canada. The Golden Ears from Music Building Plaza at WWU on clear day." by theslowlane is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/fe48b9ff-5822-4ecc-b6a0-8f3481d5e403/thumb/', + detail_url: 'http://localhost:49153/v1/images/fe48b9ff-5822-4ecc-b6a0-8f3481d5e403/', + related_url: 'http://localhost:49153/v1/images/fe48b9ff-5822-4ecc-b6a0-8f3481d5e403/related/', + unstable__sensitivity: [], + }, + { + id: 'b65f318b-edf3-45f6-a0f2-f6143132bdc1', + title: 'Unwinding the Day', + indexed_on: '2020-04-27T22:12:26.316901Z', + foreign_landing_url: 'https://www.flickr.com/photos/21366409@N00/2428459082', + url: 'https://live.staticflickr.com/2380/2428459082_ddf6266627_b.jpg', + creator: 'Storm Crypt', + creator_url: 'https://www.flickr.com/photos/21366409@N00', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'cebu', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cebusugbo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'clouds', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'horizon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'island', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'negros', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'philippines', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sea', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'strait', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sugbo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'summer', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sunset', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visayanislands', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'visayas', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waves', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wowphilippines', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Unwinding the Day" by Storm Crypt is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 731, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/b65f318b-edf3-45f6-a0f2-f6143132bdc1/thumb/', + detail_url: 'http://localhost:49153/v1/images/b65f318b-edf3-45f6-a0f2-f6143132bdc1/', + related_url: 'http://localhost:49153/v1/images/b65f318b-edf3-45f6-a0f2-f6143132bdc1/related/', + unstable__sensitivity: [], + }, + { + id: '8bec9e32-a083-4de0-b94b-d42a0244af87', + title: 'Music of The Night', + indexed_on: '2019-01-16T12:34:17.923864Z', + foreign_landing_url: 'https://www.flickr.com/photos/21731764@N04/2202741117', + url: 'https://live.staticflickr.com/2374/2202741117_92a3bf63e4.jpg', + creator: '·BigGolf·', + creator_url: 'https://www.flickr.com/photos/21731764@N04', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'คนไทย', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'apartment', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'biggolf', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blue', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'building', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'clouds', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cold', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'd80', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'midnight', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'night', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nikon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sky', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'u0e04u0e19u0e44u0e17u0e22', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Music of The Night" by ·BigGolf· is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 335, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/8bec9e32-a083-4de0-b94b-d42a0244af87/thumb/', + detail_url: 'http://localhost:49153/v1/images/8bec9e32-a083-4de0-b94b-d42a0244af87/', + related_url: 'http://localhost:49153/v1/images/8bec9e32-a083-4de0-b94b-d42a0244af87/related/', + unstable__sensitivity: [], + }, + { + id: 'd4386b73-63db-475c-8bfe-f2b6ba820588', + title: 'Warm day', + indexed_on: '2020-04-27T15:29:35.430415Z', + foreign_landing_url: 'https://www.flickr.com/photos/77476789@N00/2303996177', + url: 'https://live.staticflickr.com/2420/2303996177_2cac4cb6cf.jpg', + creator: 'the Italian voice', + creator_url: 'https://www.flickr.com/photos/77476789@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '365days', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bed', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bloom', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'day', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'desi', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hot', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'me', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'outside', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'pepper', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'periodo', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'plants', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'relax', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'skin', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spring', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sunbeams', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sunny', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'touch', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'umbrella', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'warm', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'windy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'adult', + accuracy: 0.91548, + unstable__provider: 'clarifai', + }, + { + name: 'festival', + accuracy: 0.91646, + unstable__provider: 'clarifai', + }, + { + name: 'girl', + accuracy: 0.94277, + unstable__provider: 'clarifai', + }, + { + name: 'music', + accuracy: 0.93489, + unstable__provider: 'clarifai', + }, + { + name: 'one', + accuracy: 0.96328, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.97776, + unstable__provider: 'clarifai', + }, + { + name: 'portrait', + accuracy: 0.94099, + unstable__provider: 'clarifai', + }, + { + name: 'umbrella', + accuracy: 0.91656, + unstable__provider: 'clarifai', + }, + { + name: 'woman', + accuracy: 0.93352, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Warm day" by the Italian voice is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 375, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/d4386b73-63db-475c-8bfe-f2b6ba820588/thumb/', + detail_url: 'http://localhost:49153/v1/images/d4386b73-63db-475c-8bfe-f2b6ba820588/', + related_url: 'http://localhost:49153/v1/images/d4386b73-63db-475c-8bfe-f2b6ba820588/related/', + unstable__sensitivity: [], + }, + { + id: '9728fe8c-925a-47cc-bb5c-22a70bcfa821', + title: 'A day of wind', + indexed_on: '2020-04-07T16:39:29.563458Z', + foreign_landing_url: 'https://www.flickr.com/photos/37335357@N00/8695237095', + url: 'https://live.staticflickr.com/8263/8695237095_16fea30e13_b.jpg', + creator: 'Eyesplash - Summer was a blast, for 6 million view', + creator_url: 'https://www.flickr.com/photos/37335357@N00', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'boats', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'clouds', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'energy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'kite', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'man', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mountains', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ocean', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'rodfrew', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sailing', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sea', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'ship', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sky', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'waves', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'whitecaps', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"A day of wind" by Eyesplash - Summer was a blast, for 6 million view is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/9728fe8c-925a-47cc-bb5c-22a70bcfa821/thumb/', + detail_url: 'http://localhost:49153/v1/images/9728fe8c-925a-47cc-bb5c-22a70bcfa821/', + related_url: 'http://localhost:49153/v1/images/9728fe8c-925a-47cc-bb5c-22a70bcfa821/related/', + unstable__sensitivity: [], + }, + { + id: '1e60497d-512e-483a-a428-8d449b0bf52e', + title: "We're having a heat wave Project 365(3) Day 166", + indexed_on: '2020-04-17T01:01:32.627525Z', + foreign_landing_url: 'https://www.flickr.com/photos/34673186@N03/5949668182', + url: 'https://live.staticflickr.com/6128/5949668182_b0288a52e1_b.jpg', + creator: 'Keith Williamson', + creator_url: 'https://www.flickr.com/photos/34673186@N03', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'hot', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'project365', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'windy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'computer', + accuracy: 0.9231, + unstable__provider: 'clarifai', + }, + { + name: 'electronics', + accuracy: 0.90694, + unstable__provider: 'clarifai', + }, + { + name: 'indoors', + accuracy: 0.93226, + unstable__provider: 'clarifai', + }, + { + name: 'music', + accuracy: 0.90836, + unstable__provider: 'clarifai', + }, + { + name: 'plastic', + accuracy: 0.90655, + unstable__provider: 'clarifai', + }, + { + name: 'security', + accuracy: 0.91869, + unstable__provider: 'clarifai', + }, + { + name: 'technology', + accuracy: 0.9722, + unstable__provider: 'clarifai', + }, + ], + attribution: '"We\'re having a heat wave Project 365(3) Day 166" by Keith Williamson is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 683, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/1e60497d-512e-483a-a428-8d449b0bf52e/thumb/', + detail_url: 'http://localhost:49153/v1/images/1e60497d-512e-483a-a428-8d449b0bf52e/', + related_url: 'http://localhost:49153/v1/images/1e60497d-512e-483a-a428-8d449b0bf52e/related/', + unstable__sensitivity: [], + }, + { + id: '129d99e2-c5c2-43a9-bc2d-3ba8bfc52755', + title: 'Joan Jett & The Black Hearts at the Beale Street Blues Music Festival 2008', + indexed_on: '2019-01-16T12:34:17.923864Z', + foreign_landing_url: 'https://www.flickr.com/photos/71727499@N00/2465389049', + url: 'https://live.staticflickr.com/2263/2465389049_c98125eda1_b.jpg', + creator: 'NBStwo', + creator_url: 'https://www.flickr.com/photos/71727499@N00', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'aero', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'arrays', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'beale', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'das', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'festival', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jett', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'joan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'line', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'music', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'street', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Joan Jett & The Black Hearts at the Beale Street Blues Music Festival 2008" by NBStwo is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/129d99e2-c5c2-43a9-bc2d-3ba8bfc52755/thumb/', + detail_url: 'http://localhost:49153/v1/images/129d99e2-c5c2-43a9-bc2d-3ba8bfc52755/', + related_url: 'http://localhost:49153/v1/images/129d99e2-c5c2-43a9-bc2d-3ba8bfc52755/related/', + unstable__sensitivity: [], + }, + { + id: 'bea9c7fd-0eb6-40da-94ad-344c11211580', + title: 'Joan Jett & the Blackhearts at the Beale Street Blues Music Festival 2008', + indexed_on: '2019-01-16T12:34:17.923864Z', + foreign_landing_url: 'https://www.flickr.com/photos/71727499@N00/2466219864', + url: 'https://live.staticflickr.com/3234/2466219864_f03861e61f_b.jpg', + creator: 'NBStwo', + creator_url: 'https://www.flickr.com/photos/71727499@N00', + license: 'by-nc-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nc-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'aero', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'array', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'beale', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'das', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'festival', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jett', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'joan', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'line', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'music', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'street', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Joan Jett & the Blackhearts at the Beale Street Blues Music Festival 2008" by NBStwo is licensed under CC BY-NC-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/bea9c7fd-0eb6-40da-94ad-344c11211580/thumb/', + detail_url: 'http://localhost:49153/v1/images/bea9c7fd-0eb6-40da-94ad-344c11211580/', + related_url: 'http://localhost:49153/v1/images/bea9c7fd-0eb6-40da-94ad-344c11211580/related/', + unstable__sensitivity: [], + }, + { + id: 'a1472f64-98b1-4081-a0c7-2aa6451ff05a', + title: 'Windy Fountain', + indexed_on: '2016-11-17T03:29:53.955328Z', + foreign_landing_url: 'https://www.flickr.com/photos/41611970@N00/103909377', + url: 'https://live.staticflickr.com/40/103909377_049eab8e15_b.jpg', + creator: 'midiman', + creator_url: 'https://www.flickr.com/photos/41611970@N00', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'arizona', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'asu', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'fountain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'music', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'water', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'windy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'architecture', + accuracy: 0.97635, + unstable__provider: 'clarifai', + }, + { + name: 'bath', + accuracy: 0.91989, + unstable__provider: 'clarifai', + }, + { + name: 'building', + accuracy: 0.92466, + unstable__provider: 'clarifai', + }, + { + name: 'city', + accuracy: 0.91754, + unstable__provider: 'clarifai', + }, + { + name: 'dug-out pool', + accuracy: 0.98663, + unstable__provider: 'clarifai', + }, + { + name: 'fountain', + accuracy: 0.99392, + unstable__provider: 'clarifai', + }, + { + name: 'H2O', + accuracy: 0.94831, + unstable__provider: 'clarifai', + }, + { + name: 'hotel', + accuracy: 0.97588, + unstable__provider: 'clarifai', + }, + { + name: 'house', + accuracy: 0.94909, + unstable__provider: 'clarifai', + }, + { + name: 'light', + accuracy: 0.91304, + unstable__provider: 'clarifai', + }, + { + name: 'luxury', + accuracy: 0.95191, + unstable__provider: 'clarifai', + }, + { + name: 'swimming pool', + accuracy: 0.94302, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.94893, + unstable__provider: 'clarifai', + }, + { + name: 'vacation', + accuracy: 0.91238, + unstable__provider: 'clarifai', + }, + { + name: 'water', + accuracy: 0.98212, + unstable__provider: 'clarifai', + }, + { + name: 'wet', + accuracy: 0.95327, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Windy Fountain" by midiman is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/a1472f64-98b1-4081-a0c7-2aa6451ff05a/thumb/', + detail_url: 'http://localhost:49153/v1/images/a1472f64-98b1-4081-a0c7-2aa6451ff05a/', + related_url: 'http://localhost:49153/v1/images/a1472f64-98b1-4081-a0c7-2aa6451ff05a/related/', + unstable__sensitivity: [], + }, + { + id: '99fe8c92-0213-40d6-abe7-4e22e0c4d0a5', + title: 'the musical wind', + indexed_on: '2020-05-07T20:53:29.666590Z', + foreign_landing_url: 'https://www.flickr.com/photos/35595591@N00/69590217', + url: 'https://live.staticflickr.com/34/69590217_573c1427ee.jpg', + creator: 'haydnseek', + creator_url: 'https://www.flickr.com/photos/35595591@N00', + license: 'by-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '35mmfilm', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'blownaround', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'canonae1', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'colorful', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'haydnseek', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'musicalwind', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'windchimes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'windy', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"the musical wind" by haydnseek is licensed under CC BY-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 458, + width: 500, + thumbnail: 'http://localhost:49153/v1/images/99fe8c92-0213-40d6-abe7-4e22e0c4d0a5/thumb/', + detail_url: 'http://localhost:49153/v1/images/99fe8c92-0213-40d6-abe7-4e22e0c4d0a5/', + related_url: 'http://localhost:49153/v1/images/99fe8c92-0213-40d6-abe7-4e22e0c4d0a5/related/', + unstable__sensitivity: [], + }, + { + id: '03abb5ac-f0b5-480b-96d4-96e8e5fe883e', + title: 'Resting and listening to music', + indexed_on: '2020-04-25T15:05:26.666956Z', + foreign_landing_url: 'https://www.flickr.com/photos/8950560@N08/3950716606', + url: 'https://live.staticflickr.com/3473/3950716606_945aa84ee3_b.jpg', + creator: 'jon_a_ross', + creator_url: 'https://www.flickr.com/photos/8950560@N08', + license: 'by-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'banff', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'forest', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'mountains', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'provincalpark', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'trees', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wet', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wild', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wilderness', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'windy', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Resting and listening to music" by jon_a_ross is licensed under CC BY-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nd/2.0/.', + fields_matched: [ + 'description', + 'title', + 'tags.name', + ], + mature: false, + height: 768, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/03abb5ac-f0b5-480b-96d4-96e8e5fe883e/thumb/', + detail_url: 'http://localhost:49153/v1/images/03abb5ac-f0b5-480b-96d4-96e8e5fe883e/', + related_url: 'http://localhost:49153/v1/images/03abb5ac-f0b5-480b-96d4-96e8e5fe883e/related/', + unstable__sensitivity: [], + }, + { + id: '66d00418-aeb2-4801-8068-f5b43f198bfe', + title: "society, you're a crazy breed", + indexed_on: '2020-04-27T19:17:31.506159Z', + foreign_landing_url: 'https://www.flickr.com/photos/21257461@N05/2374600706', + url: 'https://live.staticflickr.com/2357/2374600706_4f0f3bc019_b.jpg', + creator: 'db Photography | Demi-Brooke', + creator_url: 'https://www.flickr.com/photos/21257461@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'acer', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'brooke', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'computer', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'crazy', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'cybershot', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'day', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'demi', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'eddie', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'god', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hat', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'jesus', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'lyrics', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'march', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'music', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nature', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'nice', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'photoshop', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'porch', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'society', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sony', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'spiritual', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'sun', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'vedder', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'weather', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'world', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"society, you\'re a crazy breed" by db Photography | Demi-Brooke is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 903, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/66d00418-aeb2-4801-8068-f5b43f198bfe/thumb/', + detail_url: 'http://localhost:49153/v1/images/66d00418-aeb2-4801-8068-f5b43f198bfe/', + related_url: 'http://localhost:49153/v1/images/66d00418-aeb2-4801-8068-f5b43f198bfe/related/', + unstable__sensitivity: [], + }, + { + id: 'b2e6b739-f1f1-4cf8-8726-c9ef8e8c61de', + title: 'Street Portrait Challenge 009 Danny', + indexed_on: '2020-04-03T14:25:22.227414Z', + foreign_landing_url: 'https://www.flickr.com/photos/57676038@N06/14038029803', + url: 'https://live.staticflickr.com/5064/14038029803_0d0c99321f_b.jpg', + creator: 'The Urban Scot', + creator_url: 'https://www.flickr.com/photos/57676038@N06', + license: 'by-nd', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by-nd/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: '120cmsoftbox', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: '5dmkiii', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'april2014', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'bessellstudiolighting', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'brighton', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'canon', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'colinstrain', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'danny', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'diptych', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'hat', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'locationlighting', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'musician', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'portraitwithpermission', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'reddoor', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'softbox', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'streetportrait', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'strobe', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'thelanes', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'urbanportrait', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'urbanscotphotography', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wwwfacebookcomurbanscot', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'wwwurbanscotcouk', + accuracy: null, + unstable__provider: 'flickr', + }, + ], + attribution: '"Street Portrait Challenge 009 Danny" by The Urban Scot is licensed under CC BY-ND 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by-nd/2.0/.', + fields_matched: [ + 'description', + ], + mature: false, + height: 803, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/b2e6b739-f1f1-4cf8-8726-c9ef8e8c61de/thumb/', + detail_url: 'http://localhost:49153/v1/images/b2e6b739-f1f1-4cf8-8726-c9ef8e8c61de/', + related_url: 'http://localhost:49153/v1/images/b2e6b739-f1f1-4cf8-8726-c9ef8e8c61de/related/', + unstable__sensitivity: [], + }, + { + id: '3552b0dd-28df-4f9c-9270-5349bedd5e67', + title: 'Deckers Outdoors Booth', + indexed_on: '2020-04-24T14:19:33.563738Z', + foreign_landing_url: 'https://www.flickr.com/photos/28096801@N05/3524994313', + url: 'https://live.staticflickr.com/3338/3524994313_9808ab6473_b.jpg', + creator: 'DieselDemon', + creator_url: 'https://www.flickr.com/photos/28096801@N05', + license: 'by', + license_version: '2.0', + license_url: 'https://creativecommons.org/licenses/by/2.0/', + provider: 'flickr', + source: 'flickr', + category: null, + filesize: null, + filetype: null, + tags: [ + { + name: 'bags', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'booth', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'deckersoutdoors', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'illumunati', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'santabarbaragoletacacaliforniacanonrebelxti50mmrelayforlifecancerbishopgarciadiegohighschoolnight', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'teva', + accuracy: null, + unstable__provider: 'flickr', + }, + { + name: 'carnival', + accuracy: 0.98956, + unstable__provider: 'clarifai', + }, + { + name: 'carousel', + accuracy: 0.92457, + unstable__provider: 'clarifai', + }, + { + name: 'city', + accuracy: 0.97767, + unstable__provider: 'clarifai', + }, + { + name: 'commerce', + accuracy: 0.92599, + unstable__provider: 'clarifai', + }, + { + name: 'festival', + accuracy: 0.98464, + unstable__provider: 'clarifai', + }, + { + name: 'group', + accuracy: 0.92422, + unstable__provider: 'clarifai', + }, + { + name: 'landscape', + accuracy: 0.95142, + unstable__provider: 'clarifai', + }, + { + name: 'light', + accuracy: 0.93531, + unstable__provider: 'clarifai', + }, + { + name: 'music', + accuracy: 0.91445, + unstable__provider: 'clarifai', + }, + { + name: 'people', + accuracy: 0.99114, + unstable__provider: 'clarifai', + }, + { + name: 'performance', + accuracy: 0.92249, + unstable__provider: 'clarifai', + }, + { + name: 'street', + accuracy: 0.96764, + unstable__provider: 'clarifai', + }, + { + name: 'tourism', + accuracy: 0.94508, + unstable__provider: 'clarifai', + }, + { + name: 'tourist', + accuracy: 0.96152, + unstable__provider: 'clarifai', + }, + { + name: 'travel', + accuracy: 0.94317, + unstable__provider: 'clarifai', + }, + ], + attribution: '"Deckers Outdoors Booth" by DieselDemon is licensed under CC BY 2.0. To view a copy of this license, visit https://creativecommons.org/licenses/by/2.0/.', + fields_matched: [ + 'description', + 'tags.name', + ], + mature: false, + height: 686, + width: 1024, + thumbnail: 'http://localhost:49153/v1/images/3552b0dd-28df-4f9c-9270-5349bedd5e67/thumb/', + detail_url: 'http://localhost:49153/v1/images/3552b0dd-28df-4f9c-9270-5349bedd5e67/', + related_url: 'http://localhost:49153/v1/images/3552b0dd-28df-4f9c-9270-5349bedd5e67/related/', + unstable__sensitivity: [], + }, + ], + }, + }, +} \ No newline at end of file diff --git a/packages/js/k6/.gitignore b/packages/js/k6/.gitignore new file mode 100644 index 00000000000..17d5842a2b4 --- /dev/null +++ b/packages/js/k6/.gitignore @@ -0,0 +1 @@ +summary.txt diff --git a/packages/js/k6/README.md b/packages/js/k6/README.md index a1813e325ad..8127bae5287 100644 --- a/packages/js/k6/README.md +++ b/packages/js/k6/README.md @@ -18,6 +18,24 @@ For example, to run all frontend scenarios: ov run frontend all ``` +When developing and testing changes, it's recommended to run k6 scripts only +against your local services. For this reason, the scripts default to using +localhost URLs for the service in test. + +To prevent your local frontend from experiencing throttling, run it alongside +talkback. Start and leave talkback running in one terminal like so: + +```shell +ov just p frontend talkback +``` + +And in another terminal, build and run the frontend, with the API URL option +pointed at the talkback instance: + +```shell +ov just p frontend build && ov env NUXT_PUBLIC_API_URL=http://localhost:49153/ just p frontend start +``` + ## Development tips and guidelines - Code is written in TypeScript. k6's diff --git a/packages/js/k6/justfile b/packages/js/k6/justfile index dc6c2e6090a..a4758069ece 100644 --- a/packages/js/k6/justfile +++ b/packages/js/k6/justfile @@ -1,5 +1,6 @@ # Build and run K6 script by namespace and scenario [positional-arguments] run namespace scenario *extra_args: + #! /usr/bin/env bash pnpm run build --input src/{{ namespace }}/{{ scenario }}.test.ts k6 run "${@:3}" ./dist/{{ namespace }}/{{ scenario }}.test.js diff --git a/packages/js/k6/src/frontend/all.test.ts b/packages/js/k6/src/frontend/all.test.ts index d5a3de506a3..087aebe7bfb 100644 --- a/packages/js/k6/src/frontend/all.test.ts +++ b/packages/js/k6/src/frontend/all.test.ts @@ -1,5 +1,6 @@ import { getOptions } from "./scenarios" export * from "./scenarios" +export { handleSummary } from "../summary" export const options = getOptions("all") diff --git a/packages/js/k6/src/frontend/scenarios.ts b/packages/js/k6/src/frontend/scenarios.ts index bfc4443e0c7..e9f89b9c5d9 100644 --- a/packages/js/k6/src/frontend/scenarios.ts +++ b/packages/js/k6/src/frontend/scenarios.ts @@ -1,14 +1,17 @@ import { check } from "k6" -import { getRandomWord } from "../utils.js" import { http } from "../http.js" +import { + getRandomQueryTerm, + SAMPLE_QUERY_TERMS, +} from "../sample-query-terms.js" import { FRONTEND_URL, PROJECT_ID } from "./constants.js" import type { Options, Scenario } from "k6/options" const STATIC_PAGES = ["about", "sources", "privacy", "sensitive-content"] -const TEST_LOCALES = ["en", "ru", "es", "fa"] +const TEST_LOCALES = ["en", "ru", "es", "ar"] const TEST_PARAMS = "license=by&extension=jpg,mp3&source=flickr,jamendo" const localePrefix = (locale: string) => { @@ -48,25 +51,39 @@ export function visitSearchPages() { for (const MEDIA_TYPE of ["image", "audio"]) { for (const locale of locales) { - const url = new URL( - `${localePrefix(locale)}search/${MEDIA_TYPE}`, - FRONTEND_URL - ) - const params = new URLSearchParams(__ENV.PARAMS) - params.append("q", getRandomWord()) - url.search = params.toString() + const doSearch = (queryTerm: string) => { + const url = new URL( + `${localePrefix(locale)}search/${MEDIA_TYPE}`, + FRONTEND_URL + ) + const params = new URLSearchParams(__ENV.PARAMS) + params.append("q", queryTerm) + url.search = params.toString() + + const response = http.get(url.toString(), { tags: { ovGroup } }) + const result = check( + response, + { "status was 200": (r) => r.status === 200 }, + { ovGroup } + ) - const response = http.get(url.toString(), { tags: { ovGroup } }) - const result = check( - response, - { "status was 200": (r) => r.status === 200 }, - { ovGroup } - ) + if (!result) { + console.error( + `Request failed ⨯ ${url}: ${response.status}\n${response.body}` + ) + } + } - if (!result) { - console.error( - `Request failed ⨯ ${url}: ${response.status}\n${response.body}` - ) + if (__ENV.search_all_sample_query_terms) { + // This option should only be used when generating talkback tapes for the sample queries + // Otherwise, just use `getRandomQueryTerm` and make a specific number of intentional queries + // If consistency is needed, use a pseudo-random number generator to pick a consistently-random + // sample query term based on information from k6/exec (e.g., vu + scenario) + for (const queryTerm of SAMPLE_QUERY_TERMS) { + doSearch(queryTerm) + } + } else { + doSearch(getRandomQueryTerm()) } } } @@ -157,5 +174,8 @@ export function getOptions(group: keyof typeof SCENARIO_GROUPS): Options { name: `Frontend ${group} ${FRONTEND_URL}`, }, userAgent: "OpenverseK6/1.0; https://docs.openverse.org", + thresholds: { + http_req_failed: ["rate<0.01"], + }, } satisfies Options } diff --git a/packages/js/k6/src/frontend/search-en.test.ts b/packages/js/k6/src/frontend/search-en.test.ts index c67bd3dd2ec..6150127b228 100644 --- a/packages/js/k6/src/frontend/search-en.test.ts +++ b/packages/js/k6/src/frontend/search-en.test.ts @@ -1,5 +1,6 @@ import { getOptions } from "./scenarios" export * from "./scenarios" +export { handleSummary } from "../summary" export const options = getOptions("search-en") diff --git a/packages/js/k6/src/frontend/search-locales.test.ts b/packages/js/k6/src/frontend/search-locales.test.ts index 66ecfac7f2e..699405e9c13 100644 --- a/packages/js/k6/src/frontend/search-locales.test.ts +++ b/packages/js/k6/src/frontend/search-locales.test.ts @@ -1,5 +1,6 @@ import { getOptions } from "./scenarios" export * from "./scenarios" +export { handleSummary } from "../summary" export const options = getOptions("search-locales") diff --git a/packages/js/k6/src/frontend/static-en.test.ts b/packages/js/k6/src/frontend/static-en.test.ts index d5954157526..7ce429438f1 100644 --- a/packages/js/k6/src/frontend/static-en.test.ts +++ b/packages/js/k6/src/frontend/static-en.test.ts @@ -1,5 +1,6 @@ import { getOptions } from "./scenarios" export * from "./scenarios" +export { handleSummary } from "../summary" export const options = getOptions("static-en") diff --git a/packages/js/k6/src/frontend/static-locales.test.ts b/packages/js/k6/src/frontend/static-locales.test.ts index 203894c6a09..a05bb11d0d6 100644 --- a/packages/js/k6/src/frontend/static-locales.test.ts +++ b/packages/js/k6/src/frontend/static-locales.test.ts @@ -1,5 +1,6 @@ import { getOptions } from "./scenarios" export * from "./scenarios" +export { handleSummary } from "../summary" export const options = getOptions("static-locales") diff --git a/packages/js/k6/src/jslib-shim.ts b/packages/js/k6/src/jslib-shim.ts new file mode 100644 index 00000000000..ecbe0ec0f5d --- /dev/null +++ b/packages/js/k6/src/jslib-shim.ts @@ -0,0 +1,19 @@ +/** + * Place k6 jslib imports into this module, between the eslint-disable lines. + * + * Declare minimum-viable type definitions for them in typings/jslib.d.ts + * and follow existing examples there as a guide. + * + * Centralising the import of these modules prevents needing to scatter the + * same eslint pragma throughout the k6 tests, and allows us to easily + * document and encourage best practices, like declaring types for these modules. + */ + +/* eslint-disable import/extensions, import/no-unresolved */ +export { + textSummary, + type SummaryData, +} from "https://jslib.k6.io/k6-summary/0.1.0/index.js" +export { randomItem } from "https://jslib.k6.io/k6-utils/1.2.0/index.js" + +/* eslint-enable import/extensions, import/no-unresolved */ diff --git a/packages/js/k6/src/sample-query-terms.ts b/packages/js/k6/src/sample-query-terms.ts new file mode 100644 index 00000000000..734dca3947b --- /dev/null +++ b/packages/js/k6/src/sample-query-terms.ts @@ -0,0 +1,17 @@ +import { randomItem } from "./jslib-shim" + +export const SAMPLE_QUERY_TERMS = [ + "art", + "outsourced accountant", + "plane", + "tree leaf nutrition", + "games", + "school clip art", + "windy day music", + "French government", + "Dom Quixote de la Mancha", + "graphs", + "Juan López", +] + +export const getRandomQueryTerm = () => randomItem(SAMPLE_QUERY_TERMS) diff --git a/packages/js/k6/src/summary.ts b/packages/js/k6/src/summary.ts new file mode 100644 index 00000000000..d8f0be2cd17 --- /dev/null +++ b/packages/js/k6/src/summary.ts @@ -0,0 +1,10 @@ +import { SummaryData, textSummary } from "./jslib-shim" + +export function handleSummary(data: SummaryData) { + console.log(textSummary(data, { enableColors: true })) + + const textSummaryOutPath = __ENV.text_summary ?? "summary.txt" + return { + [textSummaryOutPath]: textSummary(data, { enableColors: false }), + } +} diff --git a/packages/js/k6/src/utils.ts b/packages/js/k6/src/utils.ts deleted file mode 100644 index 7fb6c8e18b5..00000000000 --- a/packages/js/k6/src/utils.ts +++ /dev/null @@ -1,12 +0,0 @@ -// @ts-expect-error https://github.com/grafana/k6-template-typescript/issues/16 -// eslint-disable-next-line import/extensions, import/no-unresolved -import { randomItem } from "https://jslib.k6.io/k6-utils/1.2.0/index.js" - -export const SLEEP_DURATION = 0.1 - -// Use the random words list available locally, but filter any words that end with apostrophe-s -const WORDS = open("/usr/share/dict/words") - .split("\n") - .filter((w) => !w.endsWith("'s")) - -export const getRandomWord = () => randomItem(WORDS) diff --git a/packages/js/k6/typings/jslib.d.ts b/packages/js/k6/typings/jslib.d.ts new file mode 100644 index 00000000000..0d3eb99c423 --- /dev/null +++ b/packages/js/k6/typings/jslib.d.ts @@ -0,0 +1,69 @@ +declare module "https://jslib.k6.io/k6-summary/0.1.0/index.js" { + export type MetricSummary = Record & { + thresholds?: Record + } + export interface Check { + name: string + path: string + id: string + passes: number + fails: number + } + + export interface Group { + groups: Record + checks: Record + name: string + path: string + id: string + } + + export interface SummaryData { + metrics: Record + root_group: Group + } + + export interface TextOptions { + enableColors: boolean + } + + export interface JUnitOptions { + name: string + classname: string + } + + export function textSummary( + data: SummaryData, + options?: Partial + ): string + export function jUnit( + data: SummaryData, + options?: Partial + ): string +} + +declare module "https://jslib.k6.io/k6-utils/1.2.0/index.js" { + export function check( + val: T, + checks: Record Promise | boolean>, + tags?: Record + ): Promise + export function randomIntBetween(min: number, max: number): number + export function randomItem(array: T[]): T + export function randomString(length: number, charset?: string): string + export function uuidv4(): string + export function findBetween( + content: string, + left: string, + right: string, + repeat: boolean + ): string + export function normalDistributionStages( + maxVus: number, + durationSeconds: number, + numberOfStages?: number + ): { duration: string; target: number }[] + export function getCurrentStageIndex(): number + export function tagWithCurrentStageIndex(): void + export function tagWithCurrentStageProfile(): void +}