From 08203c7f0c86dabea8c6af29af1264c10fdaeaec Mon Sep 17 00:00:00 2001 From: btkcodedev Date: Mon, 15 Jul 2024 05:45:39 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8Source=20TMDB:=20Make=20Connector=20Co?= =?UTF-8?q?mpatible=20with=20Builder=20(#39109)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../connectors/source-tmdb/README.md | 2 +- .../source-tmdb/acceptance-test-config.yml | 10 +- .../connectors/source-tmdb/metadata.yaml | 7 +- .../connectors/source-tmdb/poetry.lock | 18 +- .../connectors/source-tmdb/pyproject.toml | 4 +- .../source-tmdb/source_tmdb/manifest.yaml | 10351 +++++++++++++++- .../schemas/certification_movie.json | 607 - .../source_tmdb/schemas/certification_tv.json | 398 - .../source_tmdb/schemas/changes_movie.json | 59 - .../source_tmdb/schemas/changes_person.json | 59 - .../source_tmdb/schemas/changes_tv.json | 59 - .../schemas/movies_alternative_titles.json | 49 - .../source_tmdb/schemas/movies_changes.json | 85 - .../source_tmdb/schemas/movies_credits.json | 192 - .../source_tmdb/schemas/movies_details.json | 265 - .../schemas/movies_external_ids.json | 43 - .../source_tmdb/schemas/movies_images.json | 128 - .../source_tmdb/schemas/movies_keywords.json | 41 - .../source_tmdb/schemas/movies_latest.json | 189 - .../source_tmdb/schemas/movies_lists.json | 208 - .../schemas/movies_now_playing.json | 158 - .../source_tmdb/schemas/movies_popular.json | 137 - .../schemas/movies_recommendations.json | 135 - .../schemas/movies_releases_dates.json | 75 - .../source_tmdb/schemas/movies_reviews.json | 122 - .../schemas/movies_similar_movies.json | 135 - .../source_tmdb/schemas/movies_top_rated.json | 327 - .../schemas/movies_translations.json | 456 - .../source_tmdb/schemas/movies_upcoming.json | 158 - .../source_tmdb/schemas/movies_videos.json | 135 - .../schemas/movies_watch_providers.json | 5814 --------- .../schemas/search_collections.json | 67 - .../source_tmdb/schemas/search_companies.json | 60 - .../source_tmdb/schemas/search_keywords.json | 53 - .../source_tmdb/schemas/search_movies.json | 137 - .../source_tmdb/schemas/search_multi.json | 137 - .../source_tmdb/schemas/search_people.json | 189 - .../source_tmdb/schemas/search_tv_shows.json | 138 - .../source_tmdb/schemas/trending.json | 137 - .../source-tmdb/source_tmdb/spec.yaml | 38 - docs/integrations/sources/tmdb-migrations.md | 8 + docs/integrations/sources/tmdb.md | 11 +- 42 files changed, 10095 insertions(+), 11306 deletions(-) delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_movie.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_tv.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_movie.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_person.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_tv.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_alternative_titles.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_changes.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_credits.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_details.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_external_ids.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_images.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_keywords.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_latest.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_lists.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_now_playing.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_popular.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_recommendations.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_releases_dates.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_reviews.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_similar_movies.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_top_rated.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_translations.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_upcoming.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_videos.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_watch_providers.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_collections.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_companies.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_keywords.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_movies.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_multi.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_people.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_tv_shows.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/trending.json delete mode 100644 airbyte-integrations/connectors/source-tmdb/source_tmdb/spec.yaml create mode 100644 docs/integrations/sources/tmdb-migrations.md diff --git a/airbyte-integrations/connectors/source-tmdb/README.md b/airbyte-integrations/connectors/source-tmdb/README.md index fcd4a22e0df9..8ed1075d62e2 100644 --- a/airbyte-integrations/connectors/source-tmdb/README.md +++ b/airbyte-integrations/connectors/source-tmdb/README.md @@ -30,7 +30,7 @@ See `sample_files/sample_config.json` for a sample config file. poetry run source-tmdb spec poetry run source-tmdb check --config secrets/config.json poetry run source-tmdb discover --config secrets/config.json -poetry run source-tmdb read --config secrets/config.json --catalog sample_files/configured_catalog.json +poetry run source-tmdb read --config secrets/config.json --catalog integration_tests/configured_catalog.json ``` ### Running unit tests diff --git a/airbyte-integrations/connectors/source-tmdb/acceptance-test-config.yml b/airbyte-integrations/connectors/source-tmdb/acceptance-test-config.yml index f408a7e6ad9e..08039128d554 100644 --- a/airbyte-integrations/connectors/source-tmdb/acceptance-test-config.yml +++ b/airbyte-integrations/connectors/source-tmdb/acceptance-test-config.yml @@ -14,15 +14,15 @@ acceptance_tests: discovery: tests: - config_path: "secrets/config.json" + backward_compatibility_tests_config: + disable_for_version: "0.1.2" #Type in schema['properties']['results']['items']['properties']['known_for']['items']['properties']['poster_path'] can be optionally null basic_read: tests: - config_path: "secrets/config.json" configured_catalog_path: "integration_tests/configured_catalog.json" - empty_streams: [] - # TODO uncomment this block to specify that the tests should assert the connector outputs the records provided in the input file a file - # expect_records: - # path: "integration_tests/expected_records.jsonl" - # exact_order: no + empty_streams: + - name: trending + bypass_reason: Streams seems to be not responding incremental: bypass_reason: "This connector does not implement incremental sync" # TODO uncomment this block this block if your connector implements incremental sync: diff --git a/airbyte-integrations/connectors/source-tmdb/metadata.yaml b/airbyte-integrations/connectors/source-tmdb/metadata.yaml index 703317ee3000..414d61dc48d9 100644 --- a/airbyte-integrations/connectors/source-tmdb/metadata.yaml +++ b/airbyte-integrations/connectors/source-tmdb/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 6240848f-f795-45eb-8f5e-c7542822fc03 - dockerImageTag: 0.1.7 + dockerImageTag: 1.0.0 dockerRepository: airbyte/source-tmdb githubIssueLabel: source-tmdb icon: tmdb.svg @@ -17,6 +17,11 @@ data: enabled: false oss: enabled: true + releases: + breakingChanges: + 1.0.0: + upgradeDeadline: "2024-07-30" + message: The search_people schema has been changed it's 'type' in schema['properties']['fully_deducted'] to be optionally empty releaseStage: alpha documentationUrl: https://docs.airbyte.com/integrations/sources/tmdb tags: diff --git a/airbyte-integrations/connectors/source-tmdb/poetry.lock b/airbyte-integrations/connectors/source-tmdb/poetry.lock index 13836360394d..b55b9b02d5dd 100644 --- a/airbyte-integrations/connectors/source-tmdb/poetry.lock +++ b/airbyte-integrations/connectors/source-tmdb/poetry.lock @@ -1,14 +1,14 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. [[package]] name = "airbyte-cdk" -version = "1.0.0" +version = "1.8.0" description = "A framework for writing Airbyte Connectors." optional = false python-versions = "<4.0,>=3.9" files = [ - {file = "airbyte_cdk-1.0.0-py3-none-any.whl", hash = "sha256:74cd8d4f9790b9a164731c42236cb015166b5ab2b0754b6a1fd730f223eb4e7f"}, - {file = "airbyte_cdk-1.0.0.tar.gz", hash = "sha256:102b75ce589460be4f75dabd3402ac7aa633c90758558c81d140fd436b76371f"}, + {file = "airbyte_cdk-1.8.0-py3-none-any.whl", hash = "sha256:ca23d7877005fe87ffc4a3a3de29ee55eed625d874eb59b49664b156f9ae9ee2"}, + {file = "airbyte_cdk-1.8.0.tar.gz", hash = "sha256:ac82fbfd6b650b7ed015900748e30fdd2a4c574caa54d1bcc03cb584a17f1533"}, ] [package.dependencies] @@ -17,7 +17,7 @@ backoff = "*" cachetools = "*" cryptography = ">=42.0.5,<43.0.0" Deprecated = ">=1.2,<1.3" -dpath = ">=2.0.1,<2.1.0" +dpath = ">=2.1.6,<3.0.0" genson = "1.2.2" isodate = ">=0.6.1,<0.7.0" Jinja2 = ">=3.1.2,<3.2.0" @@ -399,13 +399,13 @@ dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] [[package]] name = "dpath" -version = "2.0.8" +version = "2.2.0" description = "Filesystem-like pathing and searching for dictionaries" optional = false python-versions = ">=3.7" files = [ - {file = "dpath-2.0.8-py3-none-any.whl", hash = "sha256:f92f595214dd93a00558d75d4b858beee519f4cffca87f02616ad6cd013f3436"}, - {file = "dpath-2.0.8.tar.gz", hash = "sha256:a3440157ebe80d0a3ad794f1b61c571bef125214800ffdb9afc9424e8250fe9b"}, + {file = "dpath-2.2.0-py3-none-any.whl", hash = "sha256:b330a375ded0a0d2ed404440f6c6a715deae5313af40bbb01c8a41d891900576"}, + {file = "dpath-2.2.0.tar.gz", hash = "sha256:34f7e630dc55ea3f219e555726f5da4b4b25f2200319c8e6902c394258dd6a3e"}, ] [[package]] @@ -1334,4 +1334,4 @@ files = [ [metadata] lock-version = "2.0" python-versions = "^3.9,<3.12" -content-hash = "656a09cf041cb51ce84e287501b40bd60394c28750360db74d7c8fc4b7f291f7" +content-hash = "912963301c039ac2f732e49803dddb895253a3f531d279fb210b45c6ea2e435a" diff --git a/airbyte-integrations/connectors/source-tmdb/pyproject.toml b/airbyte-integrations/connectors/source-tmdb/pyproject.toml index 85898be1ae73..5a1d2920bf91 100644 --- a/airbyte-integrations/connectors/source-tmdb/pyproject.toml +++ b/airbyte-integrations/connectors/source-tmdb/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",] build-backend = "poetry.core.masonry.api" [tool.poetry] -version = "0.1.7" +version = "1.0.0" name = "source-tmdb" description = "Source implementation for Tmdb." authors = [ "Airbyte ",] @@ -17,7 +17,7 @@ include = "source_tmdb" [tool.poetry.dependencies] python = "^3.9,<3.12" -airbyte-cdk = "1.0.0" +airbyte-cdk = "^1" [tool.poetry.scripts] source-tmdb = "source_tmdb.run:run" diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/manifest.yaml b/airbyte-integrations/connectors/source-tmdb/source_tmdb/manifest.yaml index fa0697965ba2..643707fe3bf6 100644 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/manifest.yaml +++ b/airbyte-integrations/connectors/source-tmdb/source_tmdb/manifest.yaml @@ -1,300 +1,10065 @@ -version: "0.29.0" +version: 0.79.1 -definitions: - selector: - extractor: - field_path: [] - schema_normalization: Default - requester: - url_base: "https://api.themoviedb.org/3/" - http_method: "GET" - request_parameters: - api_key: "{{ config['api_key'] }}" - language: | - {{ - config['language'] - if parameters['name'] == 'search_collections' or - parameters['name'] == 'search_movies' or - parameters['name'] == 'search_multi' or - parameters['name'] == 'search_people' or - parameters['name'] == 'search_tv_shows' - else '' - }} - query: | - {{ - config['query'] - if parameters['name'] == 'search_collections' or - parameters['name'] == 'search_companies' or - parameters['name'] == 'search_keywords' or - parameters['name'] == 'search_movies' or - parameters['name'] == 'search_multi' or - parameters['name'] == 'search_people' or - parameters['name'] == 'search_tv_shows' - else '' - }} - retriever: - record_selector: - $ref: "#/definitions/selector" - paginator: - type: NoPagination - requester: - $ref: "#/definitions/requester" - - base_stream: - schema_loader: - type: JsonFileSchemaLoader - file_path: "./source_tmdb/schemas/{{ parameters['name'] }}.json" - retriever: - $ref: "#/definitions/retriever" - - page_stream: - schema_loader: - type: JsonFileSchemaLoader - file_path: "./source_tmdb/schemas/{{ parameters['name'] }}.json" - retriever: - record_selector: - $ref: "#/definitions/selector" - paginator: - type: "DefaultPaginator" - pagination_strategy: - type: "PageIncrement" - page_size: 1000 - page_token_option: - type: RequestOption - inject_into: "request_parameter" - field_name: "page" - page_size_option: - inject_into: "request_parameter" - field_name: "" - requester: - $ref: "#/definitions/requester" - - certification_movie_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "certification_movie" - path: "/certification/movie/list" - - certification_tv_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "certification_tv" - path: "/certification/tv/list" - - changes_movie_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "changes_movie" - path: "/movie/changes" - - changes_tv_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "changes_tv" - path: "/tv/changes" - - changes_person_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "changes_person" - path: "/person/changes" - - movies_details_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_details" - path: "/movie/{{ config['movie_id'] }}" - - movies_alternative_titles_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_alternative_titles" - path: "/movie/{{ config['movie_id'] }}/alternative_titles" - - movies_credits_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_credits" - path: "/movie/{{ config['movie_id'] }}/credits" - - movies_external_ids_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_external_ids" - path: "/movie/{{ config['movie_id'] }}/external_ids" - - movies_images_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_images" - path: "/movie/{{ config['movie_id'] }}/images" - - movies_keywords_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_keywords" - path: "/movie/{{ config['movie_id'] }}/keywords" - - movies_lists_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_lists" - path: "/movie/{{ config['movie_id'] }}/lists" - - movies_recommendations_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_recommendations" - path: "/movie/{{ config['movie_id'] }}/recommendations" - - movies_releases_dates_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_releases_dates" - path: "/movie/{{ config['movie_id'] }}/release_dates" - - movies_reviews_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_reviews" - path: "/movie/{{ config['movie_id'] }}/reviews" - - movies_similar_movies_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_similar_movies" - path: "/movie/{{ config['movie_id'] }}/similar" +type: DeclarativeSource - movies_translations_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_translations" - path: "/movie/{{ config['movie_id'] }}/translations" - - movies_videos_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_videos" - path: "/movie/{{ config['movie_id'] }}/videos" - - movies_watch_providers_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_watch_providers" - path: "/movie/{{ config['movie_id'] }}/watch/providers" - - movies_latest_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "movies_latest" - path: "/movie/latest" - - movies_now_playing_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "movies_now_playing" - path: "/movie/now_playing" - - movies_popular_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "movies_popular" - path: "/movie/popular" - - movies_top_rated_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "movies_top_rated" - path: "/movie/top_rated" - - movies_upcoming_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "movies_upcoming" - path: "/movie/upcoming" - - trending_stream: - $ref: "#/definitions/base_stream" - $parameters: - name: "trending" - path: "/trending/all/day" - - search_companies_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "search_companies" - path: "/search/company" - - search_collections_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "search_collections" - path: "/search/collection" - - search_keywords_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "search_keywords" - path: "/search/keyword" - - search_movies_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "search_movies" - path: "/search/movie" +check: + type: CheckStream + stream_names: + - certification_movie - search_multi_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "search_multi" - path: "/search/multi" +definitions: + streams: + certification_movie: + type: DeclarativeStream + name: certification_movie + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /certification/movie/list + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/certification_movie" + certification_tv: + type: DeclarativeStream + name: certification_tv + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /certification/tv/list + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/certification_tv" + changes_movie: + type: DeclarativeStream + name: changes_movie + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/changes + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/changes_movie" + changes_tv: + type: DeclarativeStream + name: changes_tv + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /tv/changes + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/changes_tv" + changes_person: + type: DeclarativeStream + name: changes_person + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /person/changes + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/changes_person" + movies_details: + type: DeclarativeStream + name: movies_details + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }} + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_details" + movies_alternative_titles: + type: DeclarativeStream + name: movies_alternative_titles + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/alternative_titles + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_alternative_titles" + movies_credits: + type: DeclarativeStream + name: movies_credits + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/credits + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_credits" + movies_external_ids: + type: DeclarativeStream + name: movies_external_ids + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/external_ids + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_external_ids" + movies_images: + type: DeclarativeStream + name: movies_images + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/images + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_images" + movies_keywords: + type: DeclarativeStream + name: movies_keywords + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/keywords + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_keywords" + movies_latest: + type: DeclarativeStream + name: movies_latest + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/latest + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_latest" + movies_lists: + type: DeclarativeStream + name: movies_lists + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/lists + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_lists" + movies_now_playing: + type: DeclarativeStream + name: movies_now_playing + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/now_playing + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_now_playing" + movies_popular: + type: DeclarativeStream + name: movies_popular + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/popular + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_popular" + movies_recommendations: + type: DeclarativeStream + name: movies_recommendations + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/recommendations + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_recommendations" + movies_releases_dates: + type: DeclarativeStream + name: movies_releases_dates + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/release_dates + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_releases_dates" + movies_reviews: + type: DeclarativeStream + name: movies_reviews + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/reviews + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_reviews" + movies_similar_movies: + type: DeclarativeStream + name: movies_similar_movies + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/similar + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_similar_movies" + movies_top_rated: + type: DeclarativeStream + name: movies_top_rated + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/top_rated + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_top_rated" + movies_translations: + type: DeclarativeStream + name: movies_translations + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/translations + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_translations" + movies_upcoming: + type: DeclarativeStream + name: movies_upcoming + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/upcoming + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_upcoming" + movies_videos: + type: DeclarativeStream + name: movies_videos + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/videos + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_videos" + movies_watch_providers: + type: DeclarativeStream + name: movies_watch_providers + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /movie/{{ config['movie_id'] }}/watch/providers + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/movies_watch_providers" + trending: + type: DeclarativeStream + name: trending + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /trending/all/day + http_method: GET + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/trending" + search_collections: + type: DeclarativeStream + name: search_collections + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/collection + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + language: "{{ config['language'] }}" + query: "{{ config['query'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/search_collections" + search_companies: + type: DeclarativeStream + name: search_companies + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/company + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + query: "{{ config['query'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/search_companies" + search_keywords: + type: DeclarativeStream + name: search_keywords + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/keyword + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + query: "{{ config['query'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/search_keywords" + search_movies: + type: DeclarativeStream + name: search_movies + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/movie + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + query: "{{ config['query'] }}" + language: "{{ config['language'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/search_movies" + search_multi: + type: DeclarativeStream + name: search_multi + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/multi + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + query: "{{ config['query'] }}" + language: "{{ config['language'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/search_multi" + search_people: + type: DeclarativeStream + name: search_people + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/person + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + query: "{{ config['query'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/search_people" + search_tv_shows: + type: DeclarativeStream + name: search_tv_shows + retriever: + type: SimpleRetriever + requester: + $ref: "#/definitions/base_requester" + path: /search/tv + http_method: GET + request_parameters: + api_key: "{{ config['api_key'] }}" + query: "{{ config['query'] }}" + language: "{{ config['language'] }}" + record_selector: + type: RecordSelector + extractor: + type: DpathExtractor + field_path: [] + paginator: + type: DefaultPaginator + page_token_option: + type: RequestOption + inject_into: request_parameter + field_name: page + page_size_option: + type: RequestOption + inject_into: request_parameter + field_name: "{{ config['nothing'] }}" + pagination_strategy: + type: PageIncrement + page_size: 1000 + schema_loader: + type: InlineSchemaLoader + schema: + $ref: "#/schemas/search_tv_shows" + base_requester: + type: HttpRequester + url_base: https://api.themoviedb.org/3/ - search_people_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "search_people" - path: "/search/person" +streams: + - $ref: "#/definitions/streams/certification_movie" + - $ref: "#/definitions/streams/certification_tv" + - $ref: "#/definitions/streams/changes_movie" + - $ref: "#/definitions/streams/changes_tv" + - $ref: "#/definitions/streams/changes_person" + - $ref: "#/definitions/streams/movies_details" + - $ref: "#/definitions/streams/movies_alternative_titles" + - $ref: "#/definitions/streams/movies_credits" + - $ref: "#/definitions/streams/movies_external_ids" + - $ref: "#/definitions/streams/movies_images" + - $ref: "#/definitions/streams/movies_keywords" + - $ref: "#/definitions/streams/movies_latest" + - $ref: "#/definitions/streams/movies_lists" + - $ref: "#/definitions/streams/movies_now_playing" + - $ref: "#/definitions/streams/movies_popular" + - $ref: "#/definitions/streams/movies_recommendations" + - $ref: "#/definitions/streams/movies_releases_dates" + - $ref: "#/definitions/streams/movies_reviews" + - $ref: "#/definitions/streams/movies_similar_movies" + - $ref: "#/definitions/streams/movies_top_rated" + - $ref: "#/definitions/streams/movies_translations" + - $ref: "#/definitions/streams/movies_upcoming" + - $ref: "#/definitions/streams/movies_videos" + - $ref: "#/definitions/streams/movies_watch_providers" + - $ref: "#/definitions/streams/trending" + - $ref: "#/definitions/streams/search_collections" + - $ref: "#/definitions/streams/search_companies" + - $ref: "#/definitions/streams/search_keywords" + - $ref: "#/definitions/streams/search_movies" + - $ref: "#/definitions/streams/search_multi" + - $ref: "#/definitions/streams/search_people" + - $ref: "#/definitions/streams/search_tv_shows" - search_tv_shows_stream: - $ref: "#/definitions/page_stream" - $parameters: - name: "search_tv_shows" - path: "/search/tv" +spec: + type: Spec + connection_specification: + type: object + $schema: http://json-schema.org/draft-07/schema# + required: + - api_key + - language + - movie_id + - query + properties: + api_key: + type: string + title: Unique key for establishing connection + description: API Key from tmdb account + airbyte_secret: true + order: 0 + language: + type: string + title: Language for filtering + description: >- + Language expressed in ISO 639-1 scheme, Mandate for required streams + (Example en-US) + examples: + - en-US + - en-UK + order: 1 + movie_id: + type: string + title: Movie ID for targeting movies + description: Target movie ID, Mandate for movie streams (Example is 550) + examples: + - 550 + - 560 + order: 2 + query: + type: string + title: Query for search streams + description: Target movie ID, Mandate for search streams + examples: + - Marvel + - DC + order: 3 + additionalProperties: true -streams: - - "#/definitions/certification_movie_stream" - - "#/definitions/certification_tv_stream" - - "#/definitions/changes_movie_stream" - - "#/definitions/changes_tv_stream" - - "#/definitions/changes_person_stream" - - "#/definitions/movies_details_stream" - - "#/definitions/movies_alternative_titles_stream" - - "#/definitions/movies_credits_stream" - - "#/definitions/movies_external_ids_stream" - - "#/definitions/movies_images_stream" - - "#/definitions/movies_keywords_stream" - - "#/definitions/movies_latest_stream" - - "#/definitions/movies_lists_stream" - - "#/definitions/movies_now_playing_stream" - - "#/definitions/movies_popular_stream" - - "#/definitions/movies_recommendations_stream" - - "#/definitions/movies_releases_dates_stream" - - "#/definitions/movies_reviews_stream" - - "#/definitions/movies_similar_movies_stream" - - "#/definitions/movies_top_rated_stream" - - "#/definitions/movies_translations_stream" - - "#/definitions/movies_upcoming_stream" - - "#/definitions/movies_videos_stream" - - "#/definitions/movies_watch_providers_stream" - - "#/definitions/trending_stream" - - "#/definitions/search_collections_stream" - - "#/definitions/search_companies_stream" - - "#/definitions/search_keywords_stream" - - "#/definitions/search_movies_stream" - - "#/definitions/search_multi_stream" - - "#/definitions/search_people_stream" - - "#/definitions/search_tv_shows_stream" +metadata: + autoImportSchema: + certification_movie: false + certification_tv: false + changes_movie: false + changes_tv: false + changes_person: false + movies_details: false + movies_alternative_titles: false + movies_credits: false + movies_external_ids: false + movies_images: false + movies_keywords: false + movies_latest: false + movies_lists: false + movies_now_playing: false + movies_popular: false + movies_recommendations: false + movies_releases_dates: false + movies_reviews: false + movies_similar_movies: false + movies_top_rated: false + movies_translations: false + movies_upcoming: false + movies_videos: false + movies_watch_providers: false + trending: false + search_collections: false + search_companies: false + search_keywords: false + search_movies: false + search_multi: false + search_people: false + search_tv_shows: false -check: - stream_names: - - "trending" +schemas: + certification_movie: + type: object + definitions: {} + $id: https://example.com/object1667208363.json + $schema: http://json-schema.org/draft-07/schema# + properties: + certifications: + type: object + $id: "#root/certifications" + properties: + AU: + type: array + $id: "#root/certifications/AU" + default: [] + items: + type: object + $id: "#root/certifications/AU/items" + properties: + certification: + type: string + $id: "#root/certifications/AU/items/certification" + examples: + - E + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/AU/items/meaning" + examples: + - >- + Exempt from classification. Films that are exempt from + classification must not contain contentious material (i.e. + material that would ordinarily be rated M or higher). + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/AU/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Au + BG: + type: array + $id: "#root/certifications/BG" + default: [] + items: + type: object + $id: "#root/certifications/BG/items" + properties: + certification: + type: string + $id: "#root/certifications/BG/items/certification" + examples: + - A + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/BG/items/meaning" + examples: + - Recommended for children. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/BG/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Bg + BR: + type: array + $id: "#root/certifications/BR" + default: [] + items: + type: object + $id: "#root/certifications/BR/items" + properties: + certification: + type: string + $id: "#root/certifications/BR/items/certification" + examples: + - L + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/BR/items/meaning" + examples: + - >- + General Audiences. Do not expose children to potentially + harmful content. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/BR/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Br + CA: + type: array + $id: "#root/certifications/CA" + default: [] + items: + type: object + $id: "#root/certifications/CA/items" + properties: + certification: + type: string + $id: "#root/certifications/CA/items/certification" + examples: + - 18A + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/CA/items/meaning" + examples: + - >- + Persons under 18 years of age must be accompanied by an + adult. In the Maritimes & Manitoba, children under the age + of 14 are prohibited from viewing the film. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/CA/items/order" + default: 0 + examples: + - 4 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Ca + DE: + type: array + $id: "#root/certifications/DE" + default: [] + items: + type: object + $id: "#root/certifications/DE/items" + properties: + certification: + type: string + $id: "#root/certifications/DE/items/certification" + examples: + - "0" + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/DE/items/meaning" + examples: + - No age restriction. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/DE/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: De + ES: + type: array + $id: "#root/certifications/ES" + default: [] + items: + type: object + $id: "#root/certifications/ES/items" + properties: + certification: + type: string + $id: "#root/certifications/ES/items/certification" + examples: + - APTA + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/ES/items/meaning" + examples: + - General admission. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/ES/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Es + FI: + type: array + $id: "#root/certifications/FI" + default: [] + items: + type: object + $id: "#root/certifications/FI/items" + properties: + certification: + type: string + $id: "#root/certifications/FI/items/certification" + examples: + - S + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/FI/items/meaning" + examples: + - For all ages. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/FI/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Fi + FR: + type: array + $id: "#root/certifications/FR" + default: [] + items: + type: object + $id: "#root/certifications/FR/items" + properties: + certification: + type: string + $id: "#root/certifications/FR/items/certification" + examples: + - U + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/FR/items/meaning" + examples: + - (Tous publics) valid for all audiences. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/FR/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Fr + GB: + type: array + $id: "#root/certifications/GB" + default: [] + items: + type: object + $id: "#root/certifications/GB/items" + properties: + certification: + type: string + $id: "#root/certifications/GB/items/certification" + examples: + - "15" + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/GB/items/meaning" + examples: + - >- + Only those over 15 years are admitted. Nobody younger than + 15 can rent or buy a 15-rated VHS, DVD, Blu-ray Disc, UMD + or game, or watch a film in the cinema with this rating. + Films under this category can contain adult themes, hard + drugs, frequent strong language and limited use of very + strong language, strong violence and strong sex + references, and nudity without graphic detail. Sexual + activity may be portrayed but without any strong detail. + Sexual violence may be shown if discreet and justified by + context. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/GB/items/order" + default: 0 + examples: + - 5 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Gb + IN: + type: array + $id: "#root/certifications/IN" + default: [] + items: + type: object + $id: "#root/certifications/IN/items" + properties: + certification: + type: string + $id: "#root/certifications/IN/items/certification" + examples: + - U + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/IN/items/meaning" + examples: + - >- + Unrestricted Public Exhibition throughout India, suitable + for all age groups. Films under this category should not + upset children over 4. Such films may contain educational, + social or family-oriented themes. Films under this + category may also contain fantasy violence and/or mild bad + language. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/IN/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: In + NL: + type: array + $id: "#root/certifications/NL" + default: [] + items: + type: object + $id: "#root/certifications/NL/items" + properties: + certification: + type: string + $id: "#root/certifications/NL/items/certification" + examples: + - AL + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/NL/items/meaning" + examples: + - All ages. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/NL/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Nl + NZ: + type: array + $id: "#root/certifications/NZ" + default: [] + items: + type: object + $id: "#root/certifications/NZ/items" + properties: + certification: + type: string + $id: "#root/certifications/NZ/items/certification" + examples: + - M + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/NZ/items/meaning" + examples: + - >- + Suitable for (but not restricted to) mature audiences 16 + years and up. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/NZ/items/order" + default: 0 + examples: + - 3 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Nz + PH: + type: array + $id: "#root/certifications/PH" + default: [] + items: + type: object + $id: "#root/certifications/PH/items" + properties: + certification: + type: string + $id: "#root/certifications/PH/items/certification" + examples: + - G + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/PH/items/meaning" + examples: + - General Audiences. Viewers of all ages are admitted. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/PH/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Ph + PT: + type: array + $id: "#root/certifications/PT" + default: [] + items: + type: object + $id: "#root/certifications/PT/items" + properties: + certification: + type: string + $id: "#root/certifications/PT/items/certification" + examples: + - Públicos + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/PT/items/meaning" + examples: + - >- + For all the public (especially designed for children under + 3 years of age). + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/PT/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Pt + US: + type: array + $id: "#root/certifications/US" + default: [] + items: + type: object + $id: "#root/certifications/US/items" + properties: + certification: + type: string + $id: "#root/certifications/US/items/certification" + examples: + - G + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/US/items/meaning" + examples: + - >- + All ages admitted. There is no content that would be + objectionable to most parents. This is one of only two + ratings dating back to 1968 that still exists today. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/US/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Us + required: + - US + - CA + - AU + - DE + - FR + - NZ + - IN + - GB + - NL + - BR + - FI + - BG + - ES + - PH + - PT + title: Certifications + required: + - certifications + title: Root + additionalProperties: true + certification_tv: + type: object + definitions: {} + $id: https://example.com/object1667208548.json + $schema: http://json-schema.org/draft-07/schema# + properties: + certifications: + type: object + $id: "#root/certifications" + properties: + AU: + type: array + $id: "#root/certifications/AU" + default: [] + items: + type: object + $id: "#root/certifications/AU/items" + properties: + certification: + type: string + $id: "#root/certifications/AU/items/certification" + examples: + - P + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/AU/items/meaning" + examples: + - >- + Programming is intended for younger children 2–11; + commercial stations must show at least 30 minutes of + P-rated content each weekday and weekends at all times. No + advertisements may be shown during P-rated programs. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/AU/items/order" + default: 0 + examples: + - 1 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Au + BR: + type: array + $id: "#root/certifications/BR" + default: [] + items: + type: object + $id: "#root/certifications/BR/items" + properties: + certification: + type: string + $id: "#root/certifications/BR/items/certification" + examples: + - L + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/BR/items/meaning" + examples: + - Content is suitable for all audiences. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/BR/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Br + CA: + type: array + $id: "#root/certifications/CA" + default: [] + items: + type: object + $id: "#root/certifications/CA/items" + properties: + certification: + type: string + $id: "#root/certifications/CA/items/certification" + examples: + - Exempt + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/CA/items/meaning" + examples: + - >- + Shows which are exempt from ratings (such as news and + sports programming) will not display an on-screen rating + at all. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/CA/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Ca + DE: + type: array + $id: "#root/certifications/DE" + default: [] + items: + type: object + $id: "#root/certifications/DE/items" + properties: + certification: + type: string + $id: "#root/certifications/DE/items/certification" + examples: + - "0" + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/DE/items/meaning" + examples: + - Can be aired at any time. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/DE/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: De + FR: + type: array + $id: "#root/certifications/FR" + default: [] + items: + type: object + $id: "#root/certifications/FR/items" + properties: + certification: + type: string + $id: "#root/certifications/FR/items/certification" + examples: + - NR + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/FR/items/meaning" + examples: + - No rating information. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/FR/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Fr + GB: + type: array + $id: "#root/certifications/GB" + default: [] + items: + type: object + $id: "#root/certifications/GB/items" + properties: + certification: + type: string + $id: "#root/certifications/GB/items/certification" + examples: + - U + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/GB/items/meaning" + examples: + - >- + The U symbol stands for Universal. A U film should be + suitable for audiences aged four years and over. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/GB/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Gb + KR: + type: array + $id: "#root/certifications/KR" + default: [] + items: + type: object + $id: "#root/certifications/KR/items" + properties: + certification: + type: string + $id: "#root/certifications/KR/items/certification" + examples: + - Exempt + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/KR/items/meaning" + examples: + - >- + This rating is only for knowledge based game shows; + lifestyle shows; documentary shows; news; current topic + discussion shows; education/culture shows; sports that + excludes MMA or other violent sports; and other programs + that Korea Communications Standards Commission recognizes. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/KR/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Kr + RU: + type: array + $id: "#root/certifications/RU" + default: [] + items: + type: object + $id: "#root/certifications/RU/items" + properties: + certification: + type: string + $id: "#root/certifications/RU/items/certification" + examples: + - 18+ + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/RU/items/meaning" + examples: + - Restricted to People 18 or Older. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/RU/items/order" + default: 0 + examples: + - 5 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Ru + TH: + type: array + $id: "#root/certifications/TH" + default: [] + items: + type: object + $id: "#root/certifications/TH/items" + properties: + certification: + type: string + $id: "#root/certifications/TH/items/certification" + examples: + - ส + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/TH/items/meaning" + examples: + - >- + Sor - Educational movies which the public should be + encouraged to see. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/TH/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Th + US: + type: array + $id: "#root/certifications/US" + default: [] + items: + type: object + $id: "#root/certifications/US/items" + properties: + certification: + type: string + $id: "#root/certifications/US/items/certification" + examples: + - NR + pattern: ^.*$ + title: Certification + meaning: + type: string + $id: "#root/certifications/US/items/meaning" + examples: + - No rating information. + pattern: ^.*$ + title: Meaning + order: + type: integer + $id: "#root/certifications/US/items/order" + default: 0 + examples: + - 0 + title: Order + required: + - certification + - meaning + - order + title: Items + title: Us + required: + - RU + - US + - CA + - AU + - FR + - DE + - TH + - KR + - GB + - BR + title: Certifications + required: + - certifications + title: Root + additionalProperties: true + changes_movie: + type: object + definitions: {} + $id: https://example.com/object1667208732.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + examples: + - 1 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: + - "null" + - boolean + $id: "#root/results/items/adult" + default: true + examples: + - false + title: Adult + id: + type: integer + $id: "#root/results/items/id" + default: 0 + examples: + - 412683 + title: Id + required: + - id + - adult + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + examples: + - 10 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + examples: + - 952 + title: Total_results + required: + - results + - page + - total_pages + - total_results + title: Root + additionalProperties: true + changes_tv: + type: object + definitions: {} + $id: https://example.com/object1667208773.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + examples: + - 1 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: + - "null" + - boolean + $id: "#root/results/items/adult" + default: true + examples: + - false + title: Adult + id: + type: integer + $id: "#root/results/items/id" + default: 0 + examples: + - 67563 + title: Id + required: + - id + - adult + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + examples: + - 2 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + examples: + - 122 + title: Total_results + required: + - results + - page + - total_pages + - total_results + title: Root + additionalProperties: true + changes_person: + type: object + definitions: {} + $id: https://example.com/object1667210538.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + examples: + - 1 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: + - "null" + - boolean + $id: "#root/results/items/adult" + default: true + examples: + - false + title: Adult + id: + type: integer + $id: "#root/results/items/id" + default: 0 + examples: + - 1670120 + title: Id + required: + - id + - adult + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + examples: + - 7 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + examples: + - 620 + title: Total_results + required: + - results + - page + - total_pages + - total_results + title: Root + additionalProperties: true + movies_details: + type: object + definitions: {} + $id: https://example.com/object1666852195.json + $schema: http://json-schema.org/draft-07/schema# + properties: + adult: + type: boolean + $id: "#root/adult" + default: true + title: Adult + backdrop_path: + type: + - "null" + - string + $id: "#root/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + belongs_to_collection: + type: + - "null" + - object + $id: "#root/belongs_to_collection" + default: null + title: Belongs_to_collection + budget: + type: integer + $id: "#root/budget" + default: 0 + title: Budget + genres: + type: + - "null" + - array + $id: "#root/genres" + default: [] + items: + type: object + $id: "#root/genres/items" + properties: + id: + type: integer + $id: "#root/genres/items/id" + default: 0 + title: Id + name: + type: string + $id: "#root/genres/items/name" + pattern: ^.*$ + title: Name + title: Items + title: Genres + homepage: + type: + - "null" + - string + $id: "#root/homepage" + pattern: ^.*$ + title: Homepage + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + imdb_id: + type: string + $id: "#root/imdb_id" + pattern: ^.*$ + title: Imdb_id + original_language: + type: string + $id: "#root/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: + - "null" + - string + $id: "#root/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/popularity" + default: 0 + title: Popularity + poster_path: + type: + - string + - "null" + $id: "#root/poster_path" + default: null + title: Poster_path + production_companies: + type: + - "null" + - array + $id: "#root/production_companies" + default: [] + items: + type: object + $id: "#root/production_companies/items" + properties: + id: + type: integer + $id: "#root/production_companies/items/id" + default: 0 + title: Id + logo_path: + type: + - "null" + - string + $id: "#root/production_companies/items/logo_path" + pattern: ^.*$ + title: Logo_path + name: + type: string + $id: "#root/production_companies/items/name" + pattern: ^.*$ + title: Name + origin_country: + type: string + $id: "#root/production_companies/items/origin_country" + pattern: ^.*$ + title: Origin_country + title: Items + title: Production_companies + production_countries: + type: + - "null" + - array + $id: "#root/production_countries" + default: [] + items: + type: object + $id: "#root/production_countries/items" + properties: + iso_3166_1: + type: string + $id: "#root/production_countries/items/iso_3166_1" + pattern: ^.*$ + title: Iso_3166_1 + name: + type: string + $id: "#root/production_countries/items/name" + pattern: ^.*$ + title: Name + title: Items + title: Production_countries + release_date: + type: string + $id: "#root/release_date" + pattern: ^.*$ + title: Release_date + revenue: + type: integer + $id: "#root/revenue" + default: 0 + title: Revenue + runtime: + type: + - "null" + - integer + $id: "#root/runtime" + default: 0 + title: Runtime + spoken_languages: + type: + - "null" + - array + $id: "#root/spoken_languages" + default: [] + items: + type: object + $id: "#root/spoken_languages/items" + properties: + iso_639_1: + type: string + $id: "#root/spoken_languages/items/iso_639_1" + pattern: ^.*$ + title: Iso_639_1 + name: + type: string + $id: "#root/spoken_languages/items/name" + pattern: ^.*$ + title: Name + title: Items + title: Spoken_languages + status: + type: string + $id: "#root/status" + pattern: ^.*$ + title: Status + tagline: + type: + - "null" + - string + $id: "#root/tagline" + pattern: ^.*$ + title: Tagline + title: + type: string + $id: "#root/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/video" + default: true + title: Video + vote_average: + type: number + $id: "#root/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/vote_count" + default: 0 + title: Vote_count + title: Root + additionalProperties: true + movies_alternative_titles: + type: object + definitions: {} + $id: https://example.com/object1666884919.json + $schema: http://json-schema.org/draft-07/schema# + properties: + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + titles: + type: + - array + - "null" + - object + $id: "#root/titles" + default: [] + items: + type: + - array + - "null" + - object + $id: "#root/titles/items" + properties: + type: + type: string + $id: "#root/titles/items/type" + pattern: ^.*$ + title: Type + iso_3166_1: + type: string + $id: "#root/titles/items/iso_3166_1" + pattern: ^.*$ + title: Iso_3166_1 + title: + type: string + $id: "#root/titles/items/title" + pattern: ^.*$ + title: Title + title: Items + title: Titles + title: Root + additionalProperties: true + movies_credits: + type: object + definitions: {} + $id: https://example.com/object1666852792.json + $schema: http://json-schema.org/draft-07/schema# + properties: + cast: + type: array + $id: "#root/cast" + default: [] + items: + type: object + $id: "#root/cast/items" + properties: + adult: + type: boolean + $id: "#root/cast/items/adult" + default: true + title: Adult + cast_id: + type: integer + $id: "#root/cast/items/cast_id" + default: 0 + title: Cast_id + character: + type: string + $id: "#root/cast/items/character" + pattern: ^.*$ + title: Character + credit_id: + type: string + $id: "#root/cast/items/credit_id" + pattern: ^.*$ + title: Credit_id + gender: + type: integer + $id: "#root/cast/items/gender" + default: 0 + title: Gender + id: + type: integer + $id: "#root/cast/items/id" + default: 0 + title: Id + known_for_department: + type: string + $id: "#root/cast/items/known_for_department" + pattern: ^.*$ + title: Known_for_department + name: + type: string + $id: "#root/cast/items/name" + pattern: ^.*$ + title: Name + order: + type: integer + $id: "#root/cast/items/order" + default: 0 + title: Order + original_name: + type: string + $id: "#root/cast/items/original_name" + pattern: ^.*$ + title: Original_name + popularity: + type: number + $id: "#root/cast/items/popularity" + default: 0 + title: Popularity + profile_path: + type: + - "null" + - string + $id: "#root/cast/items/profile_path" + pattern: ^.*$ + title: Profile_path + title: Items + title: Cast + crew: + type: array + $id: "#root/crew" + default: [] + items: + type: object + $id: "#root/crew/items" + properties: + adult: + type: boolean + $id: "#root/crew/items/adult" + default: true + title: Adult + credit_id: + type: string + $id: "#root/crew/items/credit_id" + pattern: ^.*$ + title: Credit_id + department: + type: string + $id: "#root/crew/items/department" + pattern: ^.*$ + title: Department + gender: + type: integer + $id: "#root/crew/items/gender" + default: 0 + title: Gender + id: + type: integer + $id: "#root/crew/items/id" + default: 0 + title: Id + job: + type: string + $id: "#root/crew/items/job" + pattern: ^.*$ + title: Job + known_for_department: + type: string + $id: "#root/crew/items/known_for_department" + pattern: ^.*$ + title: Known_for_department + name: + type: string + $id: "#root/crew/items/name" + pattern: ^.*$ + title: Name + original_name: + type: string + $id: "#root/crew/items/original_name" + pattern: ^.*$ + title: Original_name + popularity: + type: number + $id: "#root/crew/items/popularity" + default: 0 + title: Popularity + profile_path: + type: + - "null" + - string + $id: "#root/crew/items/profile_path" + pattern: ^.*$ + title: Profile_path + title: Items + title: Crew + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + title: Root + additionalProperties: true + movies_external_ids: + type: object + definitions: {} + $id: https://example.com/object1666852857.json + $schema: http://json-schema.org/draft-07/schema# + properties: + facebook_id: + type: string + $id: "#root/facebook_id" + pattern: ^.*$ + title: Facebook_id + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + imdb_id: + type: string + $id: "#root/imdb_id" + pattern: ^.*$ + title: Imdb_id + instagram_id: + type: + - "null" + - string + $id: "#root/instagram_id" + pattern: ^.*$ + title: Instagram_id + twitter_id: + type: + - "null" + - string + $id: "#root/twitter_id" + pattern: ^.*$ + title: Twitter_id + title: Root + additionalProperties: true + movies_images: + type: object + definitions: {} + $id: https://example.com/object1666852902.json + $schema: http://json-schema.org/draft-07/schema# + properties: + backdrops: + type: array + $id: "#root/backdrops" + default: [] + items: + type: object + $id: "#root/backdrops/items" + properties: + aspect_ratio: + type: number + $id: "#root/backdrops/items/aspect_ratio" + default: 0 + title: Aspect_ratio + file_path: + type: string + $id: "#root/backdrops/items/file_path" + pattern: ^.*$ + title: File_path + height: + type: integer + $id: "#root/backdrops/items/height" + default: 0 + title: Height + iso_639_1: + type: + - string + - "null" + $id: "#root/backdrops/items/iso_639_1" + default: null + title: Iso_639_1 + vote_average: + type: + - number + - integer + - string + $id: "#root/backdrops/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/backdrops/items/vote_count" + default: 0 + title: Vote_count + width: + type: integer + $id: "#root/backdrops/items/width" + default: 0 + title: Width + title: Items + title: Backdrops + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + posters: + type: array + $id: "#root/posters" + default: [] + items: + type: object + $id: "#root/posters/items" + properties: + aspect_ratio: + type: number + $id: "#root/posters/items/aspect_ratio" + default: 0 + title: Aspect_ratio + file_path: + type: string + $id: "#root/posters/items/file_path" + pattern: ^.*$ + title: File_path + height: + type: integer + $id: "#root/posters/items/height" + default: 0 + title: Height + iso_639_1: + type: + - "null" + - string + $id: "#root/posters/items/iso_639_1" + pattern: ^.*$ + title: Iso_639_1 + vote_average: + type: + - number + - integer + - string + $id: "#root/posters/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/posters/items/vote_count" + default: 0 + title: Vote_count + width: + type: integer + $id: "#root/posters/items/width" + default: 0 + title: Width + title: Items + title: Posters + title: Root + additionalProperties: true + movies_keywords: + type: object + definitions: {} + $id: https://example.com/object1666852923.json + $schema: http://json-schema.org/draft-07/schema# + properties: + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + keywords: + type: array + $id: "#root/keywords" + default: [] + items: + type: object + $id: "#root/keywords/items" + properties: + id: + type: integer + $id: "#root/keywords/items/id" + default: 0 + title: Id + name: + type: string + $id: "#root/keywords/items/name" + pattern: ^.*$ + title: Name + title: Items + title: Keywords + title: Root + additionalProperties: true + movies_latest: + type: object + definitions: {} + $id: https://example.com/object1666853268.json + $schema: http://json-schema.org/draft-07/schema# + properties: + adult: + type: boolean + $id: "#root/adult" + default: true + title: Adult + backdrop_path: + type: + - string + - "null" + $id: "#root/backdrop_path" + default: null + title: Backdrop_path + belongs_to_collection: + type: + - string + - "null" + $id: "#root/belongs_to_collection" + default: null + title: Belongs_to_collection + budget: + type: integer + $id: "#root/budget" + default: 0 + title: Budget + genres: + type: array + $id: "#root/genres" + default: [] + items: + type: object + $id: "#root/genres/items" + properties: + id: + type: integer + $id: "#root/genres/items/id" + default: 0 + title: Id + name: + type: string + $id: "#root/genres/items/name" + pattern: ^.*$ + title: Name + title: Items + title: Genres + homepage: + type: string + $id: "#root/homepage" + pattern: ^.*$ + title: Homepage + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + imdb_id: + type: + - "null" + - string + $id: "#root/imdb_id" + pattern: ^.*$ + title: Imdb_id + original_language: + type: string + $id: "#root/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/overview" + pattern: ^.*$ + title: Overview + popularity: + type: integer + $id: "#root/popularity" + default: 0 + title: Popularity + poster_path: + type: + - "null" + - string + $id: "#root/poster_path" + pattern: ^.*$ + title: Poster_path + production_companies: + type: array + $id: "#root/production_companies" + default: [] + title: Production_companies + production_countries: + type: array + $id: "#root/production_countries" + default: [] + title: Production_countries + release_date: + type: string + $id: "#root/release_date" + pattern: ^.*$ + title: Release_date + revenue: + type: integer + $id: "#root/revenue" + default: 0 + title: Revenue + runtime: + type: integer + $id: "#root/runtime" + default: 0 + title: Runtime + spoken_languages: + type: array + $id: "#root/spoken_languages" + default: [] + title: Spoken_languages + status: + type: string + $id: "#root/status" + pattern: ^.*$ + title: Status + tagline: + type: string + $id: "#root/tagline" + pattern: ^.*$ + title: Tagline + title: + type: string + $id: "#root/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/video" + default: true + title: Video + vote_average: + type: integer + $id: "#root/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/vote_count" + default: 0 + title: Vote_count + title: Root + additionalProperties: true + movies_lists: + id: 550 + page: 1 + results: + - description: Pick one and then one or two alternates + favorite_count: 0 + id: 7213 + iso_639_1: en + item_count: 1358 + list_type: movie + name: Movie Night + poster_path: /p60VSQL7usdxztIGokJPpHmKWdU.jpg + - description: Your favorite and classic movies of the 1990s + favorite_count: 0 + id: 6968 + iso_639_1: en + item_count: 482 + list_type: movie + name: "1990" + poster_path: /5R68Xn4EG0g5qlaQxpE89zGrtes.jpg + - description: All the movies I own on vhs/dvd/bluray or digital. + favorite_count: 0 + id: 9660 + iso_639_1: en + item_count: 3299 + list_type: movie + name: My Film Collection + poster_path: /3TsnEEkBRfQ1b7Gi2FTsuxHFUZq.jpg + - favorite_count: 0 + id: 8085 + iso_639_1: en + item_count: 23 + list_type: movie + name: Twists and Shouts + poster_path: /drzZQfdyoAq7pXq4EPI2aZKyGD5.jpg + - favorite_count: 0 + id: 12031 + iso_639_1: fr + item_count: 475 + list_type: movie + name: Films + poster_path: null + - description: List maintained by Movie Collection, the iOS app. + favorite_count: 0 + id: 1718 + iso_639_1: en + item_count: 610 + list_type: movie + name: Movie Collection + poster_path: null + - favorite_count: 0 + id: 11052 + iso_639_1: en + item_count: 478 + list_type: movie + name: Movies + poster_path: null + - description: Weekly Box Office Nº1 from 1982 + favorite_count: 0 + id: 5576 + iso_639_1: es + item_count: 647 + list_type: movie + name: Weekly Box Office Nº1 from 1982 + poster_path: /yTpKlgaNw3fEBndyDYPg3hRloR5.jpg + - favorite_count: 0 + id: 4023 + iso_639_1: it + item_count: 1072 + list_type: movie + name: Dvd collection + poster_path: /sHGO5Ct2Vo0KPVnSEmSf3Zo5MIl.jpg + - description: Películas para recomendar + favorite_count: 0 + id: 10354 + iso_639_1: en + item_count: 33 + list_type: movie + name: Peliculones + poster_path: null + - favorite_count: 0 + id: 10141 + iso_639_1: en + item_count: 304 + list_type: movie + name: R3ST + poster_path: null + - favorite_count: 0 + id: 5829 + iso_639_1: de + item_count: 396 + list_type: movie + name: Criss Filme + poster_path: /gnNU653Lm0cCpdYDaOgjTREf6JI.jpg + - description: movies that I've watched + favorite_count: 0 + id: 6357 + iso_639_1: en + item_count: 1690 + list_type: movie + name: watched + poster_path: /7o7fCNaruJGrTjWpmmK2jj8rE7Q.jpg + - favorite_count: 0 + id: 9267 + iso_639_1: en + item_count: 121 + list_type: movie + name: Dangerous Hill Classics + poster_path: /f7KYM1uO8f2duhoSY3Bps55mIe.jpg + - description: List maintained by Movie Collection, the iOS app. + favorite_count: 0 + id: 3136 + iso_639_1: en + item_count: 185 + list_type: movie + name: Movie Collection + poster_path: /koLwUfgmlT2kr0twamPJ8l6eQIp.jpg + - favorite_count: 0 + id: 4557 + iso_639_1: hu + item_count: 591 + list_type: movie + name: Watched + poster_path: /43pgav2uIG0ZNGdcaZX1v073ITv.jpg + - favorite_count: 0 + id: 12467 + iso_639_1: en + item_count: 13 + list_type: movie + name: Bradd + poster_path: null + - favorite_count: 0 + id: 4280 + iso_639_1: it + item_count: 390 + list_type: movie + name: MY COLLECTION + poster_path: /noLXB6fiDAl9uC6O2W26kCDXIFl.jpg + - description: Movies that I have watched. + favorite_count: 0 + id: 10482 + iso_639_1: en + item_count: 567 + list_type: movie + name: Watched + poster_path: null + - description: DVDs I have + favorite_count: 0 + id: 11773 + iso_639_1: en + item_count: 1158 + list_type: movie + name: DVD Collection + poster_path: null + total_pages: 18 + total_results: 358 + additionalProperties: true + movies_now_playing: + type: object + definitions: {} + $id: https://example.com/object1666853486.json + $schema: http://json-schema.org/draft-07/schema# + properties: + dates: + type: object + $id: "#root/dates" + properties: + maximum: + type: string + $id: "#root/dates/maximum" + pattern: ^.*$ + title: Maximum + minimum: + type: string + $id: "#root/dates/minimum" + pattern: ^.*$ + title: Minimum + title: Dates + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: string + $id: "#root/results/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: string + $id: "#root/results/items/poster_path" + pattern: ^.*$ + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: number + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + movies_popular: + type: object + definitions: {} + $id: https://example.com/object1666853522.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: string + $id: "#root/results/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: string + $id: "#root/results/items/poster_path" + pattern: ^.*$ + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: number + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + movies_recommendations: + type: object + definitions: {} + $id: https://example.com/object1666852992.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: + - string + - "null" + $id: "#root/results/items/backdrop_path" + default: null + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: + - string + - "null" + $id: "#root/results/items/poster_path" + default: null + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: + - number + - integer + - string + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + movies_releases_dates: + type: object + definitions: {} + $id: https://example.com/object1666853037.json + $schema: http://json-schema.org/draft-07/schema# + properties: + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + iso_3166_1: + type: string + $id: "#root/results/items/iso_3166_1" + pattern: ^.*$ + title: Iso_3166_1 + release_dates: + type: array + $id: "#root/results/items/release_dates" + default: [] + items: + type: object + $id: "#root/results/items/release_dates/items" + properties: + type: + type: integer + $id: "#root/results/items/release_dates/items/type" + default: 0 + title: Type + certification: + type: string + $id: "#root/results/items/release_dates/items/certification" + pattern: ^.*$ + title: Certification + iso_639_1: + type: string + $id: "#root/results/items/release_dates/items/iso_639_1" + pattern: ^.*$ + title: Iso_639_1 + release_date: + type: string + $id: "#root/results/items/release_dates/items/release_date" + pattern: ^.*$ + title: Release_date + title: Items + title: Release_dates + title: Items + title: Results + title: Root + additionalProperties: true + movies_reviews: + type: object + definitions: {} + $id: https://example.com/object1666853293.json + $schema: http://json-schema.org/draft-07/schema# + properties: + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + author: + type: string + $id: "#root/results/items/author" + pattern: ^.*$ + title: Author + author_details: + type: object + $id: "#root/results/items/author_details" + properties: + avatar_path: + type: + - "null" + - string + $id: "#root/results/items/author_details/avatar_path" + pattern: ^.*$ + title: Avatar_path + name: + type: string + $id: "#root/results/items/author_details/name" + pattern: ^.*$ + title: Name + rating: + type: + - "null" + - string + $id: "#root/results/items/author_details/rating" + default: null + title: Rating + username: + type: string + $id: "#root/results/items/author_details/username" + pattern: ^.*$ + title: Username + title: Author_details + content: + type: string + $id: "#root/results/items/content" + pattern: ^.* + title: Content + created_at: + type: string + $id: "#root/results/items/created_at" + pattern: ^.*$ + title: Created_at + id: + type: string + $id: "#root/results/items/id" + pattern: ^.*$ + title: Id + updated_at: + type: string + $id: "#root/results/items/updated_at" + pattern: ^.*$ + title: Updated_at + url: + type: string + $id: "#root/results/items/url" + pattern: ^.*$ + title: Url + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + movies_similar_movies: + type: object + definitions: {} + $id: https://example.com/object1666853122.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: + - string + - "null" + $id: "#root/results/items/backdrop_path" + default: null + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: + - string + - "null" + $id: "#root/results/items/poster_path" + default: null + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: + - number + - integer + - string + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + movies_top_rated: + page: 1 + results: + - adult: false + backdrop_path: /xBKGJQsAIeweesB79KC89FpBrVr.jpg + genre_ids: + - 18 + - 80 + id: 278 + original_language: en + original_title: The Shawshank Redemption + overview: >- + Framed in the 1940s for the double murder of his wife and her lover, + upstanding banker Andy Dufresne begins a new life at the Shawshank + prison, where he puts his accounting skills to work for an amoral + warden. During his long stretch in prison, Dufresne comes to be + admired by the other inmates -- including an older prisoner named Red + -- for his integrity and unquenchable sense of hope. + popularity: 6.741296 + poster_path: /9O7gLzmreU0nGkIB6K3BsJbzvNv.jpg + release_date: "1994-09-10" + title: The Shawshank Redemption + video: false + vote_average: 8.32 + vote_count: 5238 + - adult: false + backdrop_path: /6bbZ6XyvgfjhQwbplnUh1LSj1ky.jpg + genre_ids: + - 18 + - 10402 + id: 244786 + original_language: en + original_title: Whiplash + overview: >- + Under the direction of a ruthless instructor, a talented young drummer + begins to pursue perfection at any cost, even his humanity. + popularity: 10.776056 + poster_path: /lIv1QinFqz4dlp5U4lQ6HaiskOZ.jpg + release_date: "2014-10-10" + title: Whiplash + video: false + vote_average: 8.29 + vote_count: 2059 + - adult: false + backdrop_path: /6xKCYgH16UuwEGAyroLU6p8HLIn.jpg + genre_ids: + - 18 + - 80 + id: 238 + original_language: en + original_title: The Godfather + overview: >- + The story spans the years from 1945 to 1955 and chronicles the + fictional Italian-American Corleone crime family. When organized crime + family patriarch Vito Corleone barely survives an attempt on his life, + his youngest son, Michael, steps in to take care of the would-be + killers, launching a campaign of bloody revenge. + popularity: 4.554654 + poster_path: /d4KNaTrltq6bpkFS01pYtyXa09m.jpg + release_date: "1972-03-15" + title: The Godfather + video: false + vote_average: 8.26 + vote_count: 3570 + - adult: false + backdrop_path: /djgM2d3e42p9GFQObg6lwK2SVw2.jpg + genre_ids: + - 14 + - 12 + - 16 + - 10751 + id: 129 + original_language: ja + original_title: 千と千尋の神隠し + overview: >- + Spirited Away is an Oscar winning Japanese animated film about a ten + year old girl who wanders away from her parents along a path that + leads to a world ruled by strange and unusual monster-like animals. + Her parents have been changed into pigs along with others inside a + bathhouse full of these creatures. Will she ever see the world how it + once was? + popularity: 6.886678 + poster_path: /ynXoOxmDHNQ4UAy0oU6avW71HVW.jpg + release_date: "2001-07-20" + title: Spirited Away + video: false + vote_average: 8.15 + vote_count: 2000 + - adult: false + backdrop_path: /xu9zaAevzQ5nnrsXN6JcahLnG4i.jpg + genre_ids: + - 12 + - 18 + - 878 + id: 157336 + original_language: en + original_title: Interstellar + overview: >- + Interstellar chronicles the adventures of a group of explorers who + make use of a newly discovered wormhole to surpass the limitations on + human space travel and conquer the vast distances involved in an + interstellar voyage. + popularity: 12.481061 + poster_path: /nBNZadXqJSdt05SHLqgT0HuC5Gm.jpg + release_date: "2014-11-05" + title: Interstellar + video: false + vote_average: 8.12 + vote_count: 5600 + - adult: false + backdrop_path: /gLbBRyS7MBrmVUNce91Hmx9vzqI.jpg + genre_ids: + - 18 + - 80 + id: 240 + original_language: en + original_title: "The Godfather: Part II" + overview: >- + The continuing saga of the Corleone crime family tells the story of a + young Vito Corleone growing up in Sicily and in 1910s New York; and + follows Michael Corleone in the 1950s as he attempts to expand the + family business into Las Vegas, Hollywood and Cuba + popularity: 4.003715 + poster_path: /tHbMIIF51rguMNSastqoQwR0sBs.jpg + release_date: "1974-12-20" + title: "The Godfather: Part II" + video: false + vote_average: 8.1 + vote_count: 1894 + - adult: false + backdrop_path: /ihWaJZCUIon2dXcosjQG2JHJAPN.jpg + genre_ids: + - 18 + - 35 + id: 77338 + original_language: fr + original_title: Intouchables + overview: >- + A true story of two men who should never have met - a quadriplegic + aristocrat who was injured in a paragliding accident and a young man + from the projects. + popularity: 3.698279 + poster_path: /4mFsNQwbD0F237Tx7gAPotd0nbJ.jpg + release_date: "2011-11-02" + title: The Intouchables + video: false + vote_average: 8.1 + vote_count: 2740 + - adult: false + backdrop_path: /fCUIuG7y4YKC3hofZ8wsj7zhCpR.jpg + genre_ids: + - 16 + - 18 + - 10751 + - 10752 + id: 12477 + original_language: ja + original_title: 火垂るの墓 + overview: >- + In the latter part of World War II, a boy and his sister, orphaned + when their mother is killed in the firebombing of Tokyo, are left to + survive on their own in what remains of civilian life in Japan. The + plot follows this boy and his sister as they do their best to survive + in the Japanese countryside, battling hunger, prejudice, and pride in + their own quiet, personal battle. + popularity: 1.001401 + poster_path: /bwVhmPpydv8P7mWfrmL3XVw0MV5.jpg + release_date: "1988-04-16" + title: Grave of the Fireflies + video: false + vote_average: 8.07 + vote_count: 430 + - adult: false + backdrop_path: /rIpSszng8P0DL0TimSzZbpfnvh1.jpg + genre_ids: + - 18 + - 36 + - 10752 + id: 424 + original_language: en + original_title: Schindler's List + overview: >- + Told from the perspective of businessman Oskar Schindler who saved + over a thousand Jewish lives from the Nazis while they worked as + slaves in his factory. Schindler’s List is based on a true story, + illustrated in black and white and controversially filmed in many + original locations. + popularity: 5.372319 + poster_path: /yPisjyLweCl1tbgwgtzBCNCBle.jpg + release_date: "1993-11-29" + title: Schindler's List + video: false + vote_average: 8.07 + vote_count: 2308 + - adult: false + backdrop_path: /tBhp8MGaiL3BXpPCSl5xY397sGH.jpg + genre_ids: + - 18 + - 53 + id: 264644 + original_language: en + original_title: Room + overview: >- + Jack is a young boy of 5 years old who has lived all his life in one + room. He believes everything within it are the only real things in the + world. But what will happen when his Ma suddenly tells him that there + are other things outside of Room? + popularity: 5.593128 + poster_path: /eqFckcHuFCT1FrzLOAvXBb4jHwq.jpg + release_date: "2015-10-16" + title: Room + video: false + vote_average: 8.06 + vote_count: 1179 + - adult: false + backdrop_path: /bORe0eI72D874TMawOOFvqWS6Xe.jpg + genre_ids: + - 35 + - 18 + id: 637 + original_language: it + original_title: La vita è bella + overview: >- + A touching story of an Italian book seller of Jewish ancestry who + lives in his own little fairy tale. His creative and happy life would + come to an abrupt halt when his entire family is deported to a + concentration camp during World War II. While locked up he tries to + convince his son that the whole thing is just a game. + popularity: 5.385594 + poster_path: /f7DImXDebOs148U4uPjI61iDvaK.jpg + release_date: "1997-12-20" + title: Life Is Beautiful + video: false + vote_average: 8.06 + vote_count: 1593 + - adult: false + backdrop_path: /9j4UaRypr19wz0BOofwvkPRm1Se.jpg + genre_ids: + - 10749 + - 18 + - 10402 + id: 369557 + original_language: en + original_title: Sing Street + overview: >- + A boy growing up in Dublin during the 1980s escapes his strained + family life by starting a band to impress the mysterious girl he + likes. + popularity: 3.343073 + poster_path: /s0C78plmx3dFcO3WMnoXCz56FiN.jpg + release_date: "2016-04-15" + title: Sing Street + video: false + vote_average: 8.06 + vote_count: 61 + - adult: false + backdrop_path: /nnMC0BM6XbjIIrT4miYmMtPGcQV.jpg + genre_ids: + - 18 + - 28 + - 80 + - 53 + id: 155 + original_language: en + original_title: The Dark Knight + overview: >- + Batman raises the stakes in his war on crime. With the help of Lt. Jim + Gordon and District Attorney Harvey Dent, Batman sets out to dismantle + the remaining criminal organizations that plague the streets. The + partnership proves to be effective, but they soon find themselves prey + to a reign of chaos unleashed by a rising criminal mastermind known to + the terrified citizens of Gotham as the Joker. + popularity: 8.090715 + poster_path: /1hRoyzDtpgMU7Dz4JF22RANzQO7.jpg + release_date: "2008-07-16" + title: The Dark Knight + video: false + vote_average: 8.06 + vote_count: 7744 + - adult: false + backdrop_path: /8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg + genre_ids: + - 18 + id: 550 + original_language: en + original_title: Fight Club + overview: >- + A ticking-time-bomb insomniac and a slippery soap salesman channel + primal male aggression into a shocking new form of therapy. Their + concept catches on, with underground "fight clubs" forming in every + town, until an eccentric gets in the way and ignites an out-of-control + spiral toward oblivion. + popularity: 6.590102 + poster_path: /811DjJTon9gD6hZ8nCjSitaIXFQ.jpg + release_date: "1999-10-14" + title: Fight Club + video: false + vote_average: 8.05 + vote_count: 5221 + - adult: false + backdrop_path: /mte63qJaVnoxkkXbHkdFujBnBgd.jpg + genre_ids: + - 53 + - 80 + id: 680 + original_language: en + original_title: Pulp Fiction + overview: >- + A burger-loving hit man, his philosophical partner, a drug-addled + gangster's moll and a washed-up boxer converge in this sprawling, + comedic crime caper. Their adventures unfurl in three stories that + ingeniously trip back and forth in time. + popularity: 7.760216 + poster_path: /dM2w364MScsjFf8pfMbaWUcWrR.jpg + release_date: "1994-10-14" + title: Pulp Fiction + video: false + vote_average: 8.04 + vote_count: 4722 + - adult: false + backdrop_path: /dB2rATwfCbsPGfRLIoluBnKdVHb.jpg + genre_ids: + - 12 + - 14 + - 16 + id: 128 + original_language: ja + original_title: もののけ姫 + overview: >- + Ashitaka, a prince of the disappearing Ainu tribe, is cursed by a + demonized boar god and must journey to the west to find a cure. Along + the way, he encounters San, a young human woman fighting to protect + the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka + must find a way to bring balance to this conflict. + popularity: 4.672361 + poster_path: /gzlJkVfWV5VEG5xK25cvFGJgkDz.jpg + release_date: "1997-07-12" + title: Princess Mononoke + video: false + vote_average: 8.04 + vote_count: 954 + - adult: false + backdrop_path: /cqn1ynw78Wan37jzs1Ckm7va97G.jpg + genre_ids: + - 16 + - 10751 + - 10749 + id: 140420 + original_language: en + original_title: Paperman + overview: >- + An urban office worker finds that paper airplanes are instrumental in + meeting a girl in ways he never expected. + popularity: 2.907096 + poster_path: /3TpMBcAYH4cxCw5WoRacWodMTCG.jpg + release_date: "2012-11-02" + title: Paperman + video: false + vote_average: 8.03 + vote_count: 452 + - adult: false + backdrop_path: /xDEOxA01480uLTWuvQCw61VmDBt.jpg + genre_ids: + - 18 + - 80 + id: 769 + original_language: en + original_title: Goodfellas + overview: >- + Henry Hill is a small time gangster, who takes part in a robbery with + Jimmy Conway and Tommy De Vito, two other gangsters who have set their + sights a bit higher. His two partners kill off everyone else involved + in the robbery, and slowly start to climb up through the hierarchy of + the Mob. Henry, however, is badly affected by his partners success, + but will he stoop low enough to bring about the downfall of Jimmy and + Tommy? + popularity: 3.783589 + poster_path: /pwpGfTImTGifEGgLb3s6LRPd4I6.jpg + release_date: "1990-09-12" + title: Goodfellas + video: false + vote_average: 8.02 + vote_count: 1528 + - adult: false + backdrop_path: /ctOEhQiFIHWkiaYp7b0ibSTe5IL.jpg + genre_ids: + - 35 + - 18 + - 10749 + id: 13 + original_language: en + original_title: Forrest Gump + overview: >- + A man with a low IQ has accomplished great things in his life and been + present during significant historic events - in each case, far + exceeding what anyone imagined he could do. Yet, despite all the + things he has attained, his one true love eludes him. 'Forrest Gump' + is the story of a man who rose above his challenges, and who proved + that determination, courage, and love are more important than ability. + popularity: 6.224491 + poster_path: /z4ROnCrL77ZMzT0MsNXY5j25wS2.jpg + release_date: "1994-07-06" + title: Forrest Gump + video: false + vote_average: 8.02 + vote_count: 4279 + - adult: false + backdrop_path: /61vLiK96sbXeHpQiMxI4CuqBA3z.jpg + genre_ids: + - 28 + - 18 + id: 346 + original_language: ja + original_title: 七人の侍 + overview: >- + A veteran samurai, who has fallen on hard times, answers a village's + request for protection from bandits. He gathers 6 other samurai to + help him, and they teach the townspeople how to defend themselves, and + they supply the samurai with three small meals a day. The film + culminates in a giant battle when 40 bandits attack the village. + popularity: 2.93856 + poster_path: /5hqbJSmtAimbaP3XcYshCixuUtk.jpg + release_date: "1954-04-26" + title: Seven Samurai + video: false + vote_average: 8.02 + vote_count: 436 + total_pages: 261 + total_results: 5206 + additionalProperties: true + movies_translations: + id: 550 + translations: + - data: + overview: >- + Джек, страждає хронічним безсонням і відчайдушно намагається + вирватися з нудного життя. Саме тоді він зустрічає Тайлера Дердена, + торговця із збоченою філософією. Тайлер впевнений, що + самовдосконалення - доля слабких, а саморуйнування - єдине, заради + чого варто жити. І ось вже Джек і Тайлер луплять один одному пики на + стоянці перед баром, що приносить їм неабияке задоволення. Залучаючи + інших чоловіків до простих радощів фізичної жорстокості, Джек і + Тайлер засновують таємний Бійцівський Клуб, який має величезний + успіх. Але Джека чекає шокуюче відкриття, здатне змінити все... + title: Бійцівський клуб + english_name: Ukrainian + iso_3166_1: UA + iso_639_1: uk + name: Український + - data: + overview: >- + Ein Yuppie findet beim charismatischen Tyler Durden Unterschlupf, + nachdem seine Wohnung in die Luft gejagt wird. Ein Gerangel zwischen + den beiden entwickelt sich zu einer Schlägerei, die mit der + Erkenntnis endet, dass man sich nach einer ordentlichen Portion + Prügel einfach besser fühlt. Der "Fight Club" ist geboren. Immer + mehr Männer versammeln sich, um sich zu schlagen - und gestärkt in + den Alltag zu gehen. Wie ein Virus greift das Konzept um sich, doch + für Tyler ist der Kampfverein nur die erste Stufe, um die USA in die + Knie zu zwingen. + english_name: German + iso_3166_1: DE + iso_639_1: de + name: Deutsch + - data: + homepage: https://www.welcometofc.com/ + overview: >- + Jack (Edward Norton) é um executivo que trabalha como investigador + de seguros, tem uma boa vida financeira, mas sofre com problemas de + insônia. Para tentar se curar, ele começa a freqüentar terapias em + grupo, mas sua vida vira de cabeça para baixo quando ele conhece + Tyler (Brad Pitt). Com ele, forma um clube da luta, onde pessoas são + amigas, mas se esmurram violentamente em algumas noites. Tudo ganha + propósitos maiores quando as coisas começam a ficar loucas e + surreais. + title: Clube de Combate + english_name: Portuguese + iso_3166_1: PT + iso_639_1: pt + name: Português + - data: + overview: >- + Een verzekeringsinspecteur die aan chronische slapeloosheid lijdt + probeert wanhopig uit zijn oersaaie bestaan te ontsnappen. Bij + toeval ontmoet hij Tyler Durden, een charismatische zeepverkoper met + een bizarre levensfilosofie. Tyler gelooft namelijk dat + "zelfverbetering" enkel voor de zwakken is, het is "zelfvernieling" + die het leven meer waarde geeft. Samen met Tyler organiseert hij de + ultieme vorm van ontspanning: zogeheten "Fight Clubs", waar gewone + jonge mannen het beest in zichzelf loslaten in blotevuistgevechten. + Het bevrijdende effect op de deelnemende mannen doet een vreemd + soort kameraadschap ontstaan, dat al snel gevaarlijke vormen + aanneemt. + english_name: Dutch + iso_3166_1: NL + iso_639_1: nl + name: Nederlands + - data: + overview: >- + Терзаемый хронической бессоницей и отчаянно пытающийся вырваться из + мучительно скучной жизни клерк встречает некоего Тайлера Дардена, + харизматического торговца мылом с извращенной философией. Тайлер + уверен, что самосовершенствование — удел слабых, а саморазрушение — + единственное, ради чего стоит жить. + title: Бойцовский клуб + english_name: Russian + iso_3166_1: RU + iso_639_1: ru + name: Pусский + - data: + overview: >- + Un uomo di trent'anni è insofferente su tutto e la notte non riesce + più a dormire. In cerca di qualche luogo dove scaricare la propria + ansia si mette a frequentare quei corsi dove gruppi di malati gravi + si riuniscono e confessano agli altri le rispettive situazioni. + Mentre si lascia andare alla commozione e al pianto di fronte a + quello che vede, l'uomo fa la conoscenza prima di Marla Singer poi + di Tyler Durden. Lei è una ragazza a sua volta alla deriva, incapace + di scelte o decisioni; lui è un tipo deciso e vigoroso con un'idea + precisa in testa. Tyler fa saltare per aria l'appartamento dell'uomo + e i due vanno a vivere insieme in una casa fatiscente. Deciso a + coinvolgerlo nel suo progetto, Tyler lo fa entrare in un 'Fight + Club', uno stanzone sotterraneo dove ci si riunisce per picchiarsi e + in questo modo sentirsi di nuovo vivi... + title: Fight Club + english_name: Italian + iso_3166_1: IT + iso_639_1: it + name: Italiano + - data: + overview: >- + Dövüş kulübünün ilk kuralı, dövüş kulübü hakkında konuşmamaktır. + Dövüş kulübünün ikinci kuralı da, kulüp hakkında konuşmamaktır... + Filmin baş kişisi, sıradan hayatının girdaplarında bunalımlar + geçiren bir sigorta müfettişi olan Jack, Kanserli olmadığı halde, + uykusuzluğunu yenmek ve hayatına anlam katmak adına, kanserlilere + moral destek sağlayan terapi gruplarına katılır. Orada, Marla Singer + adlı bir kızla garip bir yakınlık kurar. Bir iş gezisi dönüşü ise, + Tyler Durden adlı egzantrik karakterle tanışır. Durden, Jack'in + olmak isteyip de olamadığı adam gibidir. Tyler'ın girişimleriyle bir + yeraltı faaliyeti olarak başlayan dövüş kulübü, Jack'e hayatında + yepyeni kapılar açacaktır... Ve tabii, bu kapılardan ister istemez + Marla geçecektir... Fakat... Tyler Durden gerçekte kimdir? + title: Dövüş Kulübü + english_name: Turkish + iso_3166_1: TR + iso_639_1: tr + name: Türkçe + - data: + overview: >- + Brad Pitt och Edward Norton gör två knockoutbra roller i denna + häpnadsväckande och originella thriller med ironisk underton av + David Fincher, regissören till Seven. Norton spelar Jack, en + kroniskt sömnlös man som desperat försöker fly sitt olidligt tråkiga + liv. Men så möter han Tyler Durden (Pitt) en karismatisk + tvålförsäljare med en snedvriden filosofi. Tyler menar att + självförbättring är för de svaga - det är självdestruktion som + verkligen gör livet värt att leva. Inom kort är Jack och Tyler i + full gång med att mörbulta varandra på en parkeringsplats. Ett + renande slagsmål med en endorfinkick utan dess like. För att + introducera andra män i denna enkla lycka av fysiskt våld bildar + Jack och Tyler en hemlig "Fight Club" som snabbt blir omåttligt + populär. Men en hemsk överraskning väntar Jack, en sanning som + kommer att förändra allt... Filmen innehåller också kommentarer av + David Fincher, Brad Pitt, Edward Norton och Helena Bonham Carter. + title: Fight Club + english_name: Swedish + iso_3166_1: SE + iso_639_1: sv + name: svenska + - data: + overview: >- + Co ty możesz o sobie wiedzieć, jeśli nigdy nie walczyłeś? W tym + niezwykłym, pełnym niespodziewanych zwrotów akcji i nie pozbawionym + swoistego humoru filmie w reżyserii Davida Finchera ("Siedem") + oryginalne i dynamiczne kreacje stworzyli Brad Pitt ("Siedem") i + Edward Norton ("Lęk pierwotny"). Jack (Norton) cierpi na chroniczną + bezsenność i jest całkowicie znudzony swym dotychczasowym życiem. Do + czasu, gdy spotyka charyzmatycznego Tylera Durdena (Pitt) - + sprzedawcę mydła o dość pokrętnej filozofii życia... Uważa on + bowiem, że samo-doskonalenie jest dla słabeuszy, a to co + rzeczywiście sprawia, że warto żyć to samo-destrukcja. + title: Podziemny krąg + english_name: Polish + iso_3166_1: PL + iso_639_1: pl + name: Polski + - data: + overview: >- + Když nemůžete půl roku usnout, celý okolní svět vám začne připadat + jako nekonečný sen. Všechno kolem vás je nedokonalou xeroxovou kopií + sebe sama. Chodíte do práce, díváte se na televizi a jste vděčni za + to, když občas ztratíte vědomí a nevíte o světě. Lidí s podobnými + problémy moc není, ale mladý úspěšný úředník, který si říká Jack, je + jedním z nich. Má slušnou práci, vydělává slušné peníze, ale trpí + nejtěžší formou nespavosti. Na služební cestě se Jack seznámí s + Tylerem Durdenem, který mu nabídne příbytek pod podmínkou, že mu + vrazí pořádnou ránu. Tato "výměna názorů" se oběma zalíbí a brzy + vznikne první Klub rváčů. Místo, kde můžou mladí muži, znechucení + světem, odložit své starosti a stát se na pár minut zvířaty. + title: Klub rváčů + english_name: Czech + iso_3166_1: CZ + iso_639_1: cs + name: Český + - data: + overview: >- + יאפי הסובל מנדודי שינה ועייפות כרונית מתחיל לבקר בסדנאות שיקום של + חולי סרטן, אלכוהוליסטים אנונימיים וארגונים אחרים כדי להגיע להתרגשות + בחייו. שם הוא פוגש צעירה משועממת ומתחזה כמוהו, איתה הוא מפתח קשר של + אהבה/שנאה. במקביל הוא מתחבר אל צעיר ניהיליסט, המתפרנס מייצור סבון + משומן אדם ובז לכל מה שקשור לממסד וחוק. השניים מקימים מועדון אגרוף + בלתי חוקי לאנשים המחפשים פורקן מחוץ למסגרת הבורגנית. הקרבות מזרימים + אדרנלין לדם, אך גם מובילים להקמתה של כת אנרכיסטית, מיליטנטית + ומסוכנת. + title: מועדון קרב + english_name: Hebrew + iso_3166_1: IL + iso_639_1: he + name: עִבְרִית + - data: + overview: >- + Усамљени безимени тридесетогодишњак (Едвард Нортон), запослен као + кординатор за опозив у ауто-компанији, има проблема са несаницом + коју покушава да реши на разне начине. У авиону упознаје Тајлера + Дардена (Бред Пит), произвођача и продавца сапуна, са којим ће се + спријатељити и основати удружење „Борилачки клуб“ које ће од простог + малог друштва где људи после напорног дана долазе да се испразне + постати тајни и добро организован анархистички покрет. + title: Борилачки клуб + english_name: Serbian + iso_3166_1: RS + iso_639_1: sr + name: Srpski + - data: + overview: >- + 空虚な生活を送るヤング・エグゼクティブのジャックは、謎の男テイラーに導かれるまま、謎の秘密組織「ファイト・クラブ」のメンバーになる。そこは鍛え抜かれた男達が己の拳のみを武器に闘いを繰り広げる、壮絶で危険な空間だった。 + title: ファイト・クラブ + english_name: Japanese + iso_3166_1: JP + iso_639_1: ja + name: 日本語 + - data: + overview: >- + Ένα στέλεχος που πάσχει από αϋπνίες βρίσκει τον αληθινό εαυτό του + στα "Fight Club", όπου συμμετέχει σε αγώνες πυγμαχίας με γυμνά + χέρια. Ο ιδρυτής των "Fight Club", ωστόσο, αποδεικνύεται μια + επικίνδυνη προσωπικότητα, που επιδίδεται σε πράξεις τρομοκρατίας + ενάντια στην καθεστηκυία τάξη. + english_name: Greek + iso_3166_1: GR + iso_639_1: el + name: ελληνικά + - data: + overview: >- + Разказвачът (Едуард Нортън) е самотник, чийто живот е безцелен низ + от незначителни случки. Промяната започва едва след запознанството + му с агресивния нихилист Джак (Брад Пит). Той го въвежда в подземния + свят на тъмни сделки и машинации. Разказвача се включва като + участник в кървави боксови двубои, които не му носят очакваното + удовлетворение. Постепенно той осъзнава, че губи контрол над себе + си, откривайки, че мачовете са част от зловещ план? + title: Боен клуб + english_name: Bulgarian + iso_3166_1: BG + iso_639_1: bg + name: български език + - data: + overview: >- + 자동차 회사의 리콜 심사관으로 일하는 주인공(에드워드 노튼)은 일상의 무료함과 공허함 속에서 늘 새로운 탈출을 꿈꾼다. + 그는 비행기에서 자신을 비누 제조업자라고 소개하는 타일러 더든(브래드 피트)을 만난다. 집에 돌아온 주인공은 아파트가 + 누군가에 의해 폭파되었음을 발견하고, 타일러에게 도움을 청해 함께 생활하게 된다. 어느 날 밤 타일러는 주인공에게 자신을 + 때려달라고 부탁한다. 사람은 싸워봐야 진정한 자신을 알 수 있다는 것이다. 결국 이들은 매주 토요일 밤 술집 지하에서 + 맨주먹으로 격투를 벌이는 파이트 클럽을 결성하기에 이르는데... + title: 파이트 클럽 + english_name: Korean + iso_3166_1: KR + iso_639_1: ko + name: 한국어/조선말 + - data: + overview: >- + Keď nemôžete pol roka zaspať, celý okolitý svet vám začne pripadať + ako nekonečný sen. Všetko okolo vás je nedokonalou xeroxovou kópiou + seba samého. Chodíte do práce, pozeráte sa na televíziu a ste vďační + za to, keď občas stratíte vedomie a neviete o svete. Ľudí s + podobnými problémami moc nie je, ale mladý úspešný úradník, ktorý si + hovorí Jack, je jedným z nich. Má slušnú prácu, zarába slušné + peniaze, ale trpí najťažšou formou nespavosti. Na služobnej ceste sa + Jack zoznámi s Tylerom Durdenom, ktorý mu ponúkne príbytok pod + podmienkou, že mu vrazí poriadnu ranu. Táto "výmena názorov" sa obom + zapáči a čoskoro vznikne prvý Klub bitkárov. Miesto, kde môžu mladí + muži, znechutení svetom, odložiť svoje starosti a stať sa na pár + minút zvieratami. + title: Klub bitkárov + english_name: Slovak + iso_3166_1: SK + iso_639_1: sk + name: Slovenčina + - data: {} + english_name: Arabic + iso_3166_1: SA + iso_639_1: ar + name: العربية + - data: + title: Cīņas klubs + english_name: Latvian + iso_3166_1: LV + iso_639_1: lv + name: Latviešu + - data: + overview: >- + Jack (Edward Norton) é um executivo jovem, trabalha como + investigador de seguros, mora confortavelmente, mas ele está ficando + cada vez mais insatisfeito com sua vida medíocre. Para piorar ele + está enfrentando uma terrível crise de insônia, até que encontra uma + cura inusitada para o sua falta de sono ao frequentar grupos de + auto-ajuda. Nesses encontros ele passa a conviver com pessoas + problemáticas como a viciada Marla Singer (Helena Bonham Carter) e a + conhecer estranhos como Tyler Durden (Brad Pitt). Misterioso e cheio + de ideias, Tyler apresenta para Jack um grupo secreto que se + encontra para extravasar suas angústias e tensões através de + violentos combates corporais. + title: Clube da Luta + english_name: Portuguese + iso_3166_1: BR + iso_639_1: pt + name: Português + - data: + title: Döyüshçü Klubu + english_name: Azerbaijani + iso_3166_1: AZ + iso_639_1: az + name: Azərbaycan + - data: + title: Kaklusklubi + english_name: Estonian + iso_3166_1: ET + iso_639_1: et + name: Eesti + - data: + overview: >- + Nemigos kamuojamas Džekas lankosi įvairiuose nelaimėlių + susitikimuose, klausosi jų išpažinčių ir drauge verkia. Jis skraido + lėktuvais, kiekvienąkart tikėdamasis katastrofos. Tačiau kartą + skrisdamas jis sutinka spalvingą asmenybę. Tailerio gyvenimas + nepaprastas - nerūpestingas ir linksmas. Jis kartais linksmai ir + nerūpestingai paprašo trenkti jam į galvą... Džekas neatsisako. + Todėl tarp draugų užverda rimtos muštynės, ir netrukus jiedu įkuria + klubą, kur vaikinai gali muštis iki sąmonės netekimo... + title: Kovos klubas + english_name: Lithuanian + iso_3166_1: LT + iso_639_1: lt + name: "Lietuvi\x9Akai" + - data: + title: Borechki Klub + english_name: Macedonian + iso_3166_1: MK + iso_639_1: mk + - data: + title: Klub boraca + english_name: Croatian + iso_3166_1: HR + iso_639_1: hr + name: Hrvatski + - data: + title: 鬥陣俱樂部 + english_name: Twi + iso_3166_1: TW + iso_639_1: tw + - data: + overview: >- + Un insomniac gata să cedeze și un vânzător de săpun fără scrupule + își canalizează agresiunea masculină într-o formă de terapie nouă și + șocantă. Ideea lor se prinde și „cluburi de luptă” se formează în + fiecare oraș, până când apare un excentric și pornește o spirală + ieșită de sub control către uitare. + title: Clubul de lupte + english_name: Romanian + iso_3166_1: RO + iso_639_1: ro + name: Română + - data: + overview: >- + 傑克(愛德華諾頓飾演)是一個充滿中年危機意識的人,他非常憎恨自己的生活及一切,再加上他患有嚴重的失眠症,所以他常常參加各種團體諮詢會,只為了能接觸人群。在某一個團體諮詢會上,傑克遇上了一個跟他同樣理由來參加的女煙槍,瑪拉(海倫娜寶漢卡特飾演)。 + 在一個商務旅行中,傑克在飛機上遇到賣肥皂的商人-泰勒(布萊德彼特飾演),兩人因緣際會地成了好友,並開始創建了「鬥陣俱樂部」:一個讓彼此不戴護具而互毆的聚會,宗旨在發洩情緒。 + 某夜,泰勒在傑克的公寓中把瑪拉給「上」了,這讓傑克非常忌妒。同時「鬥陣俱樂部」也成了全國性的地下大組織,所有成員都將泰勒視為教父。為了辨識起見,成員還都剃了光頭。 + 傑克對於「鬥陣俱樂部」的現況及泰勒的瘋狂模樣越來越無法忍受,所以他決定疏遠泰勒。但是,此時的「鬥陣俱樂部」成員卻發起全國性的暴動,他們炸毀了不少建築物......,一切的局勢都是傑克始料未及的,他該如何解決這混亂的現狀?「鬥陣俱樂部」又會瘋狂成什麼樣子? + 傑克與泰勒之間的恩恩怨怨會如何了結? + title: 鬥陣俱樂部 + english_name: Mandarin + iso_3166_1: TW + iso_639_1: zh + name: 普通话 + - data: + overview: >- + Un joven hastiado de su gris y monótona vida lucha contra el + insomnio. En un viaje en avión conoce a un carismático vendedor de + jabón que sostiene una teoría muy particular: el perfeccionismo es + cosa de gentes débiles; sólo la autodestrucción hace que la vida + merezca la pena. Ambos deciden entonces fundar un club secreto de + lucha, donde poder descargar sus frustaciones y su ira, que tendrá + un éxito arrollador. + title: El club de la pelea + english_name: Spanish + iso_3166_1: MX + iso_639_1: es + name: Español + - data: + overview: >- + Fight Club ni le prispodoba o (samo)destruktivnem begu posameznika + iz ujetosti potrošniškega nesmisla, temveč (tudi) parabola upora + zoper nezmožnost poistovetenja s prvobitnim moškim/očetovskim + principom — odraža se v sprevrženi percepciji psihosocialnih norm in + nevrotični konfrontaciji ter boju (dobesedno "z golimi pestmi") s + samim seboj. Dodajmo še patološke predstave o ljubezenski zvezi in + vlogi ženske, metaforični upor maskuliniziranega segmenta potlačene + moške dominantnosti, ki v ničemer ne najde prave identifikacije in + opore, zato njegov dezorientirani razcepljeni um primanjkljaj + kompenzira tako, da ustvarja namišljene alegorične osebnosti — ter + izvrstno igralsko zasedbo (Edward Norton, Brad Pitt, Helena Bontham + Carter) — pa dobimo enega najbolj izvirnih (in vplivnih) produktov + ameriške literature in kinematografije zadnjih desetletij. + title: Klub golih pesti + english_name: Slovenian + iso_3166_1: SI + iso_639_1: sl + name: Slovenščina + - data: + overview: >- + ไทเลอร์ (แบรด พิทท์) กล่าวว่า ทุกสิ่งทุกอย่างที่คุณครอบครองอยู่นั้น + ท้ายที่สุดแล้วพวกมันก็จะครอบงำคุณเสีย + แต่ถ้าหากคุณสูญสิ้นทุกสิ่งเมื่อใด + คุณก็จะกล้าทำอะไรต่อมิอะไรได้อย่างไร้กังวลตลอดไป ซึ่ง Fight Club + เปรียบได้กับอิสรภาพแบบนั้น " + title: ดิบดวลดิบ + english_name: Thai + iso_3166_1: TH + iso_639_1: th + name: ภาษาไทย + - data: + homepage: https://www.foxmovies.com/movies/fight-club + overview: >- + A ticking-time-bomb insomniac and a slippery soap salesman channel + primal male aggression into a shocking new form of therapy. Their + concept catches on, with underground "fight clubs" forming in every + town, until an eccentric gets in the way and ignites an + out-of-control spiral toward oblivion. + english_name: English + iso_3166_1: US + iso_639_1: en + name: English + - data: + overview: >- + Un joven sin ilusiones lucha contra su insomnio, consecuencia quizás + de su hastío por su gris y rutinaria vida. En un viaje en avión + conoce a Tyler Durden, un carismático vendedor de jabón que sostiene + una filosofía muy particular: el perfeccionismo es cosa de gentes + débiles; en cambio, la autodestrucción es lo único que hace que + realmente la vida merezca la pena. Ambos deciden entonces formar un + club secreto de lucha donde descargar sus frustaciones y su ira que + tendrá un éxito arrollador. + title: El club de la lucha + english_name: Spanish + iso_3166_1: ES + iso_639_1: es + name: Español + - data: + overview: >- + Le narrateur, sans identité précise, vit seul, travaille seul, dort + seul, mange seul ses plateaux-repas pour une personne comme beaucoup + d'autres personnes seules qui connaissent la misère humaine, morale + et sexuelle. Mais un jour il fait la rencontre de Tyler Durden, une + sorte d'anarchiste entre gourou et philosophe qui prêche l'amour de + son prochain. Ensemble ils vont créer le Fight club, un lieu + clandestin ou l'on peut retrouver sa virilité, l'échange et la + communication. + title: Fight Club + english_name: French + iso_3166_1: FR + iso_639_1: fr + name: Français + - data: + overview: >- + Amerika nagyvárosainak pincéiben egy titkos szervezet működik: ha + egy éjjel az utca összes nyilvános telefonja összetörik, ők jártak + ott; ha egy köztéri szobor óriás fémgömbje legurul talapzatáról, és + szétrombol egy gyorsétkezdét, az az ő művük; ha egy elegáns bank + parkolójának összes autóját rettentően összerondítják a galambok - + az sem véletlen. Vigyáznak a leveleinkre, átveszik + telefonüzeneteinket, kísérnek az utcán: és még csak készülnek a + végső dobásra: a nagy bummra... Pedig az egészet csak két túlzottan + unatkozó jóbarát találta ki: azzal kezdték, hogy rájöttek, nincs + jobb stresszoldó, mint ha alaposan megverik egymást. Pofonokat adni + jó. Pofonokat kapni jó. Számukra ez a boldog élet szabálya. + title: Harcosok klubja + english_name: Hungarian + iso_3166_1: HU + iso_639_1: hu + name: Magyar + - data: + overview: >- + 杰克( 爱德华·诺顿 Edward Norton + 饰)是一个充满中年危机意识的人,他非常憎恨自己的生活及一切,再加上他患有严重的失眠症,所以他常常参加各种团体谘询会,只为了能接触人群。在某一个团体谘询会上,杰克遇上了一个跟他同样理由来参加的女烟枪,玛拉(海伦娜·邦汉·卡特 + Helena Bonham Carter 饰),在莫名激素的影响下,杰克和玛拉一起逃离了谘询会,两人的情愫因而滋生… + 一个偶然的机会,杰克遇到了卖肥皂的商人泰勒(布拉德·皮特 Brad Pitt + 饰),一个浑身充满叛逆、残酷和暴烈的痞子英雄,并因为自己公寓失火而住进了泰勒破旧不堪的家中。两人因缘际会地成为了好朋友,并创立了“搏击俱乐部”:一个让人们不戴护具而徒手搏击,宗旨在于发泄情绪的地下组织。 + title: 搏击俱乐部 + english_name: Mandarin + iso_3166_1: CN + iso_639_1: zh + name: 普通话 + - data: + overview: >- + Nortons evner som stjerneskuespiller viser sig i rollen som Jack, en + kronisk søvnløs der er desperat efter at slippe ud af sit ulideligt + kedelige liv. Da møder han Tyler Durden (Pitt), en karismatisk + sæbesælger med en usædvanlig livsfilosofi. Tyler synes at udvikling + af én selv er for de svage - det er selvdestruktionen der gør livet + værd at leve. Inden længe er Jack og Tyler ved at slå hinanden til + plukfisk på en parkeringsplads, en slåskamp der giver det ultimative + kick. For at introducere andre mænd for de simple glæder ved fysisk + vold, danner Jack og Tyler den hemmelige Fight Club der bliver + voldsomt populær. Men en chokerende overraskelse der vender op og + ned på alt, venter Jack... + title: Fight Club + english_name: Danish + iso_3166_1: DK + iso_639_1: da + name: Dansk + - data: + overview: >- + Jack (Norton) kärsii kroonisesta unettomuudesta ja yrittää + epätoivoisesti paeta sietämättömän tylsää elämäänsä. Työmatkalla hän + tapaa karismaattisen saippuakauppiaan, Tyler Durdenin (Pitt), jolla + on vähintäänkin kieroutunut elämänkatsomus. Tyler uskoo itsetuhon + olevan elämän suola. Ennen pitkää Jack ja Tyler purkavat + patoutumiaan hakkaamalla toisiaan tohjoksi paikallisbaarin + parkkipaikalla, ja huomaavat ankaran nyrkkitappelun tuottavan heille + äärimmäisen hyvänolontunteen. Jotta muutkin miehet pääsisivät + jyvälle tästä fyysisen väkivallan tuottamasta ilosta, Jack ja Tyler + perustavat salaisen tappelukerhon, Fight Clubin, jonka suosio on + valtava. Mutta Jackia odottaa järkyttävä yllätys, joka muuttaa + kaiken. + title: Fight Club + english_name: Finnish + iso_3166_1: FI + iso_639_1: fi + name: suomi + - data: + overview: >- + Jack kjeder seg til han møter Tyler, som mener selvdestruksjon gjør + livet verdt å leve. For å introdusere andre menn for de simple + gleder ved fysisk vold, danner de den hemmelige Fight Club som blir + voldsomt populær. Med Brad Pitt og Edward Norton. + english_name: Norwegian + iso_3166_1: "NO" + iso_639_1: "no" + name: Norsk + - data: + title: ഫൈറ്റ് ക്ലബ്ബ് + english_name: Malayalam + iso_3166_1: IN + iso_639_1: ml + - data: + overview: >- + «راوی» (نورتن)، جوانی پریشان حال پی می برد که به کمک مشت بازی با دست + های برهنه، بیش از هر زمان دیگری احساس زنده بودن می کند. او و «تایلر + دردن» (پیت) که به دوستانی صمیمی تبدیل شده اند، هفته ای یک بار با هم + ملاقات می کنند تا با هم مشت بازی کنند. در حالی که افراد دیگری هم به + باشگاه شان می پیوندند، محفل شان به رغم آن که رازی است بین شرکت کننده + هایش، شهرت و محبوبیت یک باشگاه زیرزمینی را پیدا می کند. + title: باشگاه مشت زنی + english_name: Persian + iso_3166_1: IR + iso_639_1: fa + name: فارسی + additionalProperties: true + movies_upcoming: + type: object + definitions: {} + $id: https://example.com/object1666853600.json + $schema: http://json-schema.org/draft-07/schema# + properties: + dates: + type: object + $id: "#root/dates" + properties: + maximum: + type: string + $id: "#root/dates/maximum" + pattern: ^.*$ + title: Maximum + minimum: + type: string + $id: "#root/dates/minimum" + pattern: ^.*$ + title: Minimum + title: Dates + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: + - "null" + - string + $id: "#root/results/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: string + $id: "#root/results/items/poster_path" + pattern: ^.*$ + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: number + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + movies_videos: + type: object + definitions: {} + $id: https://example.com/object1666853122.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: "null" + $id: "#root/results/items/backdrop_path" + default: null + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: string + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: "null" + $id: "#root/results/items/poster_path" + default: null + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: integer + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + movies_watch_providers: + type: object + definitions: {} + $id: https://example.com/object1666860173.json + $schema: http://json-schema.org/draft-07/schema# + properties: + id: + type: integer + $id: "#root/id" + default: 0 + title: Id + results: + type: object + $id: "#root/results" + properties: + AR: + type: object + $id: "#root/results/AR" + properties: + buy: + type: array + $id: "#root/results/AR/buy" + default: [] + items: + type: object + $id: "#root/results/AR/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/AR/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AR/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AR/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AR/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/AR/flatrate" + default: [] + items: + type: object + $id: "#root/results/AR/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/AR/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AR/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AR/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AR/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/AR/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/AR/rent" + default: [] + items: + type: object + $id: "#root/results/AR/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/AR/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AR/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AR/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AR/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ar + AT: + type: object + $id: "#root/results/AT" + properties: + buy: + type: array + $id: "#root/results/AT/buy" + default: [] + items: + type: object + $id: "#root/results/AT/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/AT/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AT/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AT/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AT/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + link: + type: string + $id: "#root/results/AT/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/AT/rent" + default: [] + items: + type: object + $id: "#root/results/AT/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/AT/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AT/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AT/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AT/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: At + AU: + type: object + $id: "#root/results/AU" + properties: + buy: + type: array + $id: "#root/results/AU/buy" + default: [] + items: + type: object + $id: "#root/results/AU/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/AU/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AU/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AU/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AU/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/AU/flatrate" + default: [] + items: + type: object + $id: "#root/results/AU/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/AU/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AU/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AU/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AU/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/AU/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/AU/rent" + default: [] + items: + type: object + $id: "#root/results/AU/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/AU/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/AU/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/AU/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/AU/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Au + BE: + type: object + $id: "#root/results/BE" + properties: + buy: + type: array + $id: "#root/results/BE/buy" + default: [] + items: + type: object + $id: "#root/results/BE/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/BE/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/BE/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/BE/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/BE/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/BE/flatrate" + default: [] + items: + type: object + $id: "#root/results/BE/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/BE/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/BE/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/BE/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/BE/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/BE/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/BE/rent" + default: [] + items: + type: object + $id: "#root/results/BE/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/BE/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/BE/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/BE/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/BE/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Be + BR: + type: object + $id: "#root/results/BR" + properties: + buy: + type: array + $id: "#root/results/BR/buy" + default: [] + items: + type: object + $id: "#root/results/BR/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/BR/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/BR/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/BR/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/BR/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/BR/flatrate" + default: [] + items: + type: object + $id: "#root/results/BR/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/BR/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/BR/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/BR/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/BR/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/BR/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/BR/rent" + default: [] + items: + type: object + $id: "#root/results/BR/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/BR/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/BR/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/BR/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/BR/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Br + CA: + type: object + $id: "#root/results/CA" + properties: + buy: + type: array + $id: "#root/results/CA/buy" + default: [] + items: + type: object + $id: "#root/results/CA/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/CA/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CA/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CA/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CA/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/CA/flatrate" + default: [] + items: + type: object + $id: "#root/results/CA/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/CA/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CA/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CA/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CA/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/CA/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/CA/rent" + default: [] + items: + type: object + $id: "#root/results/CA/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/CA/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CA/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CA/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CA/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ca + CH: + type: object + $id: "#root/results/CH" + properties: + buy: + type: array + $id: "#root/results/CH/buy" + default: [] + items: + type: object + $id: "#root/results/CH/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/CH/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CH/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CH/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CH/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/CH/flatrate" + default: [] + items: + type: object + $id: "#root/results/CH/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/CH/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CH/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CH/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CH/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/CH/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/CH/rent" + default: [] + items: + type: object + $id: "#root/results/CH/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/CH/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CH/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CH/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CH/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ch + CL: + type: object + $id: "#root/results/CL" + properties: + buy: + type: array + $id: "#root/results/CL/buy" + default: [] + items: + type: object + $id: "#root/results/CL/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/CL/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CL/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CL/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CL/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/CL/flatrate" + default: [] + items: + type: object + $id: "#root/results/CL/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/CL/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CL/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CL/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CL/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/CL/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/CL/rent" + default: [] + items: + type: object + $id: "#root/results/CL/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/CL/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CL/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CL/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CL/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Cl + CO: + type: object + $id: "#root/results/CO" + properties: + buy: + type: array + $id: "#root/results/CO/buy" + default: [] + items: + type: object + $id: "#root/results/CO/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/CO/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CO/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CO/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CO/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/CO/flatrate" + default: [] + items: + type: object + $id: "#root/results/CO/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/CO/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CO/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CO/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CO/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/CO/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/CO/rent" + default: [] + items: + type: object + $id: "#root/results/CO/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/CO/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CO/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CO/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CO/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Co + CZ: + type: object + $id: "#root/results/CZ" + properties: + buy: + type: array + $id: "#root/results/CZ/buy" + default: [] + items: + type: object + $id: "#root/results/CZ/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/CZ/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CZ/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CZ/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CZ/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/CZ/flatrate" + default: [] + items: + type: object + $id: "#root/results/CZ/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/CZ/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CZ/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CZ/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CZ/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/CZ/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/CZ/rent" + default: [] + items: + type: object + $id: "#root/results/CZ/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/CZ/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/CZ/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/CZ/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/CZ/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Cz + DE: + type: object + $id: "#root/results/DE" + properties: + buy: + type: array + $id: "#root/results/DE/buy" + default: [] + items: + type: object + $id: "#root/results/DE/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/DE/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/DE/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/DE/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/DE/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + link: + type: string + $id: "#root/results/DE/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/DE/rent" + default: [] + items: + type: object + $id: "#root/results/DE/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/DE/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/DE/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/DE/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/DE/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: De + DK: + type: object + $id: "#root/results/DK" + properties: + buy: + type: array + $id: "#root/results/DK/buy" + default: [] + items: + type: object + $id: "#root/results/DK/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/DK/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/DK/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/DK/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/DK/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/DK/flatrate" + default: [] + items: + type: object + $id: "#root/results/DK/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/DK/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/DK/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/DK/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/DK/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/DK/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/DK/rent" + default: [] + items: + type: object + $id: "#root/results/DK/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/DK/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/DK/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/DK/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/DK/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Dk + EC: + type: object + $id: "#root/results/EC" + properties: + buy: + type: array + $id: "#root/results/EC/buy" + default: [] + items: + type: object + $id: "#root/results/EC/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/EC/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/EC/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/EC/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/EC/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/EC/flatrate" + default: [] + items: + type: object + $id: "#root/results/EC/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/EC/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/EC/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/EC/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/EC/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/EC/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/EC/rent" + default: [] + items: + type: object + $id: "#root/results/EC/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/EC/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/EC/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/EC/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/EC/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ec + EE: + type: object + $id: "#root/results/EE" + properties: + buy: + type: array + $id: "#root/results/EE/buy" + default: [] + items: + type: object + $id: "#root/results/EE/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/EE/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/EE/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/EE/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/EE/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/EE/flatrate" + default: [] + items: + type: object + $id: "#root/results/EE/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/EE/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/EE/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/EE/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/EE/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/EE/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/EE/rent" + default: [] + items: + type: object + $id: "#root/results/EE/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/EE/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/EE/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/EE/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/EE/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ee + ES: + type: object + $id: "#root/results/ES" + properties: + buy: + type: array + $id: "#root/results/ES/buy" + default: [] + items: + type: object + $id: "#root/results/ES/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/ES/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ES/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ES/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ES/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/ES/flatrate" + default: [] + items: + type: object + $id: "#root/results/ES/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/ES/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ES/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ES/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ES/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/ES/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/ES/rent" + default: [] + items: + type: object + $id: "#root/results/ES/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/ES/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ES/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ES/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ES/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Es + FI: + type: object + $id: "#root/results/FI" + properties: + buy: + type: array + $id: "#root/results/FI/buy" + default: [] + items: + type: object + $id: "#root/results/FI/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/FI/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/FI/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/FI/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/FI/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/FI/flatrate" + default: [] + items: + type: object + $id: "#root/results/FI/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/FI/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/FI/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/FI/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/FI/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/FI/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/FI/rent" + default: [] + items: + type: object + $id: "#root/results/FI/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/FI/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/FI/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/FI/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/FI/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Fi + FR: + type: object + $id: "#root/results/FR" + properties: + buy: + type: array + $id: "#root/results/FR/buy" + default: [] + items: + type: object + $id: "#root/results/FR/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/FR/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/FR/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/FR/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/FR/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/FR/flatrate" + default: [] + items: + type: object + $id: "#root/results/FR/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/FR/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/FR/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/FR/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/FR/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/FR/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/FR/rent" + default: [] + items: + type: object + $id: "#root/results/FR/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/FR/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/FR/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/FR/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/FR/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Fr + GB: + type: object + $id: "#root/results/GB" + properties: + buy: + type: array + $id: "#root/results/GB/buy" + default: [] + items: + type: object + $id: "#root/results/GB/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/GB/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/GB/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/GB/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/GB/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/GB/flatrate" + default: [] + items: + type: object + $id: "#root/results/GB/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/GB/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/GB/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/GB/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/GB/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/GB/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/GB/rent" + default: [] + items: + type: object + $id: "#root/results/GB/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/GB/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/GB/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/GB/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/GB/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Gb + GR: + type: object + $id: "#root/results/GR" + properties: + buy: + type: array + $id: "#root/results/GR/buy" + default: [] + items: + type: object + $id: "#root/results/GR/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/GR/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/GR/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/GR/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/GR/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/GR/flatrate" + default: [] + items: + type: object + $id: "#root/results/GR/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/GR/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/GR/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/GR/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/GR/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/GR/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/GR/rent" + default: [] + items: + type: object + $id: "#root/results/GR/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/GR/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/GR/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/GR/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/GR/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Gr + HU: + type: object + $id: "#root/results/HU" + properties: + buy: + type: array + $id: "#root/results/HU/buy" + default: [] + items: + type: object + $id: "#root/results/HU/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/HU/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/HU/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/HU/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/HU/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/HU/flatrate" + default: [] + items: + type: object + $id: "#root/results/HU/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/HU/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/HU/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/HU/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/HU/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/HU/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/HU/rent" + default: [] + items: + type: object + $id: "#root/results/HU/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/HU/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/HU/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/HU/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/HU/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Hu + ID: + type: object + $id: "#root/results/ID" + properties: + buy: + type: array + $id: "#root/results/ID/buy" + default: [] + items: + type: object + $id: "#root/results/ID/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/ID/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ID/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ID/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ID/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/ID/flatrate" + default: [] + items: + type: object + $id: "#root/results/ID/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/ID/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ID/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ID/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ID/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/ID/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/ID/rent" + default: [] + items: + type: object + $id: "#root/results/ID/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/ID/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ID/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ID/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ID/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Id + IE: + type: object + $id: "#root/results/IE" + properties: + buy: + type: array + $id: "#root/results/IE/buy" + default: [] + items: + type: object + $id: "#root/results/IE/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/IE/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IE/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IE/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IE/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/IE/flatrate" + default: [] + items: + type: object + $id: "#root/results/IE/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/IE/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IE/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IE/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IE/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/IE/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/IE/rent" + default: [] + items: + type: object + $id: "#root/results/IE/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/IE/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IE/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IE/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IE/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ie + IN: + type: object + $id: "#root/results/IN" + properties: + buy: + type: array + $id: "#root/results/IN/buy" + default: [] + items: + type: object + $id: "#root/results/IN/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/IN/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IN/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IN/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IN/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/IN/flatrate" + default: [] + items: + type: object + $id: "#root/results/IN/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/IN/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IN/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IN/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IN/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/IN/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/IN/rent" + default: [] + items: + type: object + $id: "#root/results/IN/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/IN/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IN/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IN/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IN/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: In + IT: + type: object + $id: "#root/results/IT" + properties: + buy: + type: array + $id: "#root/results/IT/buy" + default: [] + items: + type: object + $id: "#root/results/IT/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/IT/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IT/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IT/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IT/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/IT/flatrate" + default: [] + items: + type: object + $id: "#root/results/IT/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/IT/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IT/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IT/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IT/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/IT/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/IT/rent" + default: [] + items: + type: object + $id: "#root/results/IT/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/IT/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/IT/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/IT/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/IT/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: It + JP: + type: object + $id: "#root/results/JP" + properties: + buy: + type: array + $id: "#root/results/JP/buy" + default: [] + items: + type: object + $id: "#root/results/JP/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/JP/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/JP/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/JP/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/JP/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/JP/flatrate" + default: [] + items: + type: object + $id: "#root/results/JP/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/JP/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/JP/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/JP/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/JP/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/JP/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/JP/rent" + default: [] + items: + type: object + $id: "#root/results/JP/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/JP/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/JP/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/JP/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/JP/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Jp + KR: + type: object + $id: "#root/results/KR" + properties: + buy: + type: array + $id: "#root/results/KR/buy" + default: [] + items: + type: object + $id: "#root/results/KR/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/KR/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/KR/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/KR/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/KR/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/KR/flatrate" + default: [] + items: + type: object + $id: "#root/results/KR/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/KR/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/KR/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/KR/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/KR/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/KR/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/KR/rent" + default: [] + items: + type: object + $id: "#root/results/KR/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/KR/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/KR/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/KR/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/KR/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Kr + LT: + type: object + $id: "#root/results/LT" + properties: + buy: + type: array + $id: "#root/results/LT/buy" + default: [] + items: + type: object + $id: "#root/results/LT/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/LT/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/LT/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/LT/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/LT/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/LT/flatrate" + default: [] + items: + type: object + $id: "#root/results/LT/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/LT/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/LT/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/LT/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/LT/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/LT/link" + pattern: ^.*$ + title: Link + title: Lt + LV: + type: object + $id: "#root/results/LV" + properties: + buy: + type: array + $id: "#root/results/LV/buy" + default: [] + items: + type: object + $id: "#root/results/LV/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/LV/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/LV/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/LV/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/LV/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/LV/flatrate" + default: [] + items: + type: object + $id: "#root/results/LV/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/LV/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/LV/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/LV/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/LV/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/LV/link" + pattern: ^.*$ + title: Link + title: Lv + MX: + type: object + $id: "#root/results/MX" + properties: + buy: + type: array + $id: "#root/results/MX/buy" + default: [] + items: + type: object + $id: "#root/results/MX/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/MX/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/MX/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/MX/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/MX/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/MX/flatrate" + default: [] + items: + type: object + $id: "#root/results/MX/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/MX/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/MX/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/MX/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/MX/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/MX/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/MX/rent" + default: [] + items: + type: object + $id: "#root/results/MX/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/MX/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/MX/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/MX/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/MX/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Mx + MY: + type: object + $id: "#root/results/MY" + properties: + buy: + type: array + $id: "#root/results/MY/buy" + default: [] + items: + type: object + $id: "#root/results/MY/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/MY/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/MY/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/MY/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/MY/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/MY/flatrate" + default: [] + items: + type: object + $id: "#root/results/MY/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/MY/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/MY/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/MY/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/MY/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/MY/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/MY/rent" + default: [] + items: + type: object + $id: "#root/results/MY/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/MY/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/MY/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/MY/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/MY/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: My + NL: + type: object + $id: "#root/results/NL" + properties: + buy: + type: array + $id: "#root/results/NL/buy" + default: [] + items: + type: object + $id: "#root/results/NL/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/NL/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NL/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NL/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NL/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/NL/flatrate" + default: [] + items: + type: object + $id: "#root/results/NL/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/NL/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NL/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NL/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NL/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/NL/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/NL/rent" + default: [] + items: + type: object + $id: "#root/results/NL/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/NL/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NL/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NL/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NL/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Nl + "NO": + type: object + $id: "#root/results/NO" + properties: + buy: + type: array + $id: "#root/results/NO/buy" + default: [] + items: + type: object + $id: "#root/results/NO/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/NO/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NO/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NO/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NO/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/NO/flatrate" + default: [] + items: + type: object + $id: "#root/results/NO/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/NO/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NO/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NO/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NO/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/NO/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/NO/rent" + default: [] + items: + type: object + $id: "#root/results/NO/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/NO/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NO/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NO/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NO/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: "No" + NZ: + type: object + $id: "#root/results/NZ" + properties: + buy: + type: array + $id: "#root/results/NZ/buy" + default: [] + items: + type: object + $id: "#root/results/NZ/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/NZ/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NZ/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NZ/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NZ/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/NZ/flatrate" + default: [] + items: + type: object + $id: "#root/results/NZ/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/NZ/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NZ/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NZ/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NZ/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/NZ/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/NZ/rent" + default: [] + items: + type: object + $id: "#root/results/NZ/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/NZ/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/NZ/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/NZ/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/NZ/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Nz + PE: + type: object + $id: "#root/results/PE" + properties: + buy: + type: array + $id: "#root/results/PE/buy" + default: [] + items: + type: object + $id: "#root/results/PE/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/PE/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PE/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PE/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PE/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/PE/flatrate" + default: [] + items: + type: object + $id: "#root/results/PE/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/PE/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PE/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PE/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PE/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/PE/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/PE/rent" + default: [] + items: + type: object + $id: "#root/results/PE/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/PE/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PE/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PE/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PE/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Pe + PH: + type: object + $id: "#root/results/PH" + properties: + buy: + type: array + $id: "#root/results/PH/buy" + default: [] + items: + type: object + $id: "#root/results/PH/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/PH/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PH/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PH/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PH/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/PH/flatrate" + default: [] + items: + type: object + $id: "#root/results/PH/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/PH/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PH/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PH/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PH/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/PH/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/PH/rent" + default: [] + items: + type: object + $id: "#root/results/PH/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/PH/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PH/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PH/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PH/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ph + PL: + type: object + $id: "#root/results/PL" + properties: + buy: + type: array + $id: "#root/results/PL/buy" + default: [] + items: + type: object + $id: "#root/results/PL/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/PL/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PL/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PL/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PL/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/PL/flatrate" + default: [] + items: + type: object + $id: "#root/results/PL/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/PL/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PL/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PL/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PL/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/PL/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/PL/rent" + default: [] + items: + type: object + $id: "#root/results/PL/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/PL/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PL/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PL/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PL/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Pl + PT: + type: object + $id: "#root/results/PT" + properties: + buy: + type: array + $id: "#root/results/PT/buy" + default: [] + items: + type: object + $id: "#root/results/PT/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/PT/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PT/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PT/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PT/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/PT/flatrate" + default: [] + items: + type: object + $id: "#root/results/PT/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/PT/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PT/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PT/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PT/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/PT/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/PT/rent" + default: [] + items: + type: object + $id: "#root/results/PT/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/PT/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/PT/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/PT/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/PT/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Pt + RO: + type: object + $id: "#root/results/RO" + properties: + flatrate: + type: array + $id: "#root/results/RO/flatrate" + default: [] + items: + type: object + $id: "#root/results/RO/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/RO/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/RO/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/RO/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/RO/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/RO/link" + pattern: ^.*$ + title: Link + title: Ro + RU: + type: object + $id: "#root/results/RU" + properties: + buy: + type: array + $id: "#root/results/RU/buy" + default: [] + items: + type: object + $id: "#root/results/RU/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/RU/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/RU/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/RU/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/RU/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/RU/flatrate" + default: [] + items: + type: object + $id: "#root/results/RU/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/RU/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/RU/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/RU/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/RU/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/RU/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/RU/rent" + default: [] + items: + type: object + $id: "#root/results/RU/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/RU/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/RU/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/RU/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/RU/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ru + SE: + type: object + $id: "#root/results/SE" + properties: + buy: + type: array + $id: "#root/results/SE/buy" + default: [] + items: + type: object + $id: "#root/results/SE/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/SE/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/SE/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/SE/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/SE/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/SE/flatrate" + default: [] + items: + type: object + $id: "#root/results/SE/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/SE/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/SE/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/SE/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/SE/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/SE/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/SE/rent" + default: [] + items: + type: object + $id: "#root/results/SE/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/SE/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/SE/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/SE/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/SE/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Se + SG: + type: object + $id: "#root/results/SG" + properties: + buy: + type: array + $id: "#root/results/SG/buy" + default: [] + items: + type: object + $id: "#root/results/SG/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/SG/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/SG/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/SG/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/SG/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/SG/flatrate" + default: [] + items: + type: object + $id: "#root/results/SG/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/SG/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/SG/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/SG/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/SG/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/SG/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/SG/rent" + default: [] + items: + type: object + $id: "#root/results/SG/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/SG/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/SG/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/SG/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/SG/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Sg + TH: + type: object + $id: "#root/results/TH" + properties: + buy: + type: array + $id: "#root/results/TH/buy" + default: [] + items: + type: object + $id: "#root/results/TH/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/TH/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/TH/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/TH/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/TH/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/TH/flatrate" + default: [] + items: + type: object + $id: "#root/results/TH/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/TH/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/TH/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/TH/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/TH/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/TH/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/TH/rent" + default: [] + items: + type: object + $id: "#root/results/TH/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/TH/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/TH/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/TH/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/TH/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Th + TR: + type: object + $id: "#root/results/TR" + properties: + buy: + type: array + $id: "#root/results/TR/buy" + default: [] + items: + type: object + $id: "#root/results/TR/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/TR/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/TR/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/TR/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/TR/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/TR/flatrate" + default: [] + items: + type: object + $id: "#root/results/TR/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/TR/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/TR/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/TR/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/TR/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/TR/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/TR/rent" + default: [] + items: + type: object + $id: "#root/results/TR/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/TR/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/TR/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/TR/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/TR/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Tr + US: + type: object + $id: "#root/results/US" + properties: + buy: + type: array + $id: "#root/results/US/buy" + default: [] + items: + type: object + $id: "#root/results/US/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/US/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/US/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/US/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/US/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/US/flatrate" + default: [] + items: + type: object + $id: "#root/results/US/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/US/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/US/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/US/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/US/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/US/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/US/rent" + default: [] + items: + type: object + $id: "#root/results/US/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/US/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/US/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/US/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/US/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Us + VE: + type: object + $id: "#root/results/VE" + properties: + buy: + type: array + $id: "#root/results/VE/buy" + default: [] + items: + type: object + $id: "#root/results/VE/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/VE/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/VE/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/VE/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/VE/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/VE/flatrate" + default: [] + items: + type: object + $id: "#root/results/VE/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/VE/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/VE/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/VE/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/VE/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/VE/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/VE/rent" + default: [] + items: + type: object + $id: "#root/results/VE/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/VE/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/VE/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/VE/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/VE/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Ve + ZA: + type: object + $id: "#root/results/ZA" + properties: + buy: + type: array + $id: "#root/results/ZA/buy" + default: [] + items: + type: object + $id: "#root/results/ZA/buy/items" + properties: + display_priority: + type: integer + $id: "#root/results/ZA/buy/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ZA/buy/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ZA/buy/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ZA/buy/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Buy + flatrate: + type: array + $id: "#root/results/ZA/flatrate" + default: [] + items: + type: object + $id: "#root/results/ZA/flatrate/items" + properties: + display_priority: + type: integer + $id: "#root/results/ZA/flatrate/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ZA/flatrate/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ZA/flatrate/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ZA/flatrate/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Flatrate + link: + type: string + $id: "#root/results/ZA/link" + pattern: ^.*$ + title: Link + rent: + type: array + $id: "#root/results/ZA/rent" + default: [] + items: + type: object + $id: "#root/results/ZA/rent/items" + properties: + display_priority: + type: integer + $id: "#root/results/ZA/rent/items/display_priority" + default: 0 + title: Display_priority + logo_path: + type: string + $id: "#root/results/ZA/rent/items/logo_path" + pattern: ^.*$ + title: Logo_path + provider_id: + type: integer + $id: "#root/results/ZA/rent/items/provider_id" + default: 0 + title: Provider_id + provider_name: + type: string + $id: "#root/results/ZA/rent/items/provider_name" + pattern: ^.*$ + title: Provider_name + title: Items + title: Rent + title: Za + title: Results + title: Root + additionalProperties: true + trending: + type: object + definitions: {} + $id: https://example.com/object1667211672.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: string + $id: "#root/results/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.* + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: string + $id: "#root/results/items/poster_path" + pattern: ^.*$ + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: number + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + search_collections: + type: object + definitions: {} + $id: https://example.com/object1667209129.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + backdrop_path: + type: string + $id: "#root/results/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + name: + type: string + $id: "#root/results/items/name" + pattern: ^.*$ + title: Name + poster_path: + type: string + $id: "#root/results/items/poster_path" + pattern: ^.*$ + title: Poster_path + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + search_companies: + type: object + definitions: {} + $id: https://example.com/object1667208961.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + logo_path: + type: + - "null" + - string + $id: "#root/results/items/logo_path" + pattern: ^.*$ + title: Logo_path + name: + type: string + $id: "#root/results/items/name" + pattern: ^.*$ + title: Name + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + search_keywords: + type: object + definitions: {} + $id: https://example.com/object1667209167.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + name: + type: string + $id: "#root/results/items/name" + pattern: ^.*$ + title: Name + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + search_movies: + type: object + definitions: {} + $id: https://example.com/object1667209325.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + backdrop_path: + type: + - "null" + - string + $id: "#root/results/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.*$ + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: + - "null" + - string + $id: "#root/results/items/poster_path" + pattern: ^.*$ + title: Poster_path + release_date: + type: string + $id: "#root/results/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/video" + default: true + title: Video + vote_average: + type: number + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + search_multi: + type: object + definitions: {} + $id: https://example.com/object1667210689.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + backdrop_path: + type: + - string + - "null" + $id: "#root/results/items/backdrop_path" + default: null + title: Backdrop_path + first_air_date: + type: string + $id: "#root/results/items/first_air_date" + pattern: ^.*$ + title: First_air_date + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + media_type: + type: string + $id: "#root/results/items/media_type" + pattern: ^.*$ + title: Media_type + name: + type: string + $id: "#root/results/items/name" + pattern: ^.*$ + title: Name + origin_country: + type: array + $id: "#root/results/items/origin_country" + default: [] + items: + type: string + $id: "#root/results/items/origin_country/items" + pattern: ^.*$ + title: Items + title: Origin_country + original_language: + type: string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_name: + type: string + $id: "#root/results/items/original_name" + pattern: ^.*$ + title: Original_name + overview: + type: string + $id: "#root/results/items/overview" + pattern: ^.* + title: Overview + popularity: + type: + - number + - integer + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: + - string + - "null" + $id: "#root/results/items/poster_path" + default: null + title: Poster_path + vote_average: + type: + - number + - integer + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + search_people: + type: object + definitions: {} + $id: https://example.com/object1667210990.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + adult: + type: boolean + $id: "#root/results/items/adult" + default: true + title: Adult + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + known_for: + type: array + $id: "#root/results/items/known_for" + default: [] + items: + type: object + $id: "#root/results/items/known_for/items" + properties: + adult: + type: boolean + $id: "#root/results/items/known_for/items/adult" + default: true + title: Adult + backdrop_path: + type: + - "null" + - string + $id: "#root/results/items/known_for/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + genre_ids: + type: array + $id: "#root/results/items/known_for/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/known_for/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/known_for/items/id" + default: 0 + title: Id + media_type: + type: string + $id: "#root/results/items/known_for/items/media_type" + pattern: ^.*$ + title: Media_type + original_language: + type: string + $id: "#root/results/items/known_for/items/original_language" + pattern: ^.*$ + title: Original_language + original_title: + type: string + $id: "#root/results/items/known_for/items/original_title" + pattern: ^.*$ + title: Original_title + overview: + type: string + $id: "#root/results/items/known_for/items/overview" + pattern: ^.* + title: Overview + popularity: + type: number + $id: "#root/results/items/known_for/items/popularity" + default: 0 + title: Popularity + release_date: + type: string + $id: "#root/results/items/known_for/items/release_date" + pattern: ^.*$ + title: Release_date + title: + type: string + $id: "#root/results/items/known_for/items/title" + pattern: ^.*$ + title: Title + video: + type: boolean + $id: "#root/results/items/known_for/items/video" + default: true + title: Video + vote_average: + type: number + $id: "#root/results/items/known_for/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/known_for/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Known_for + name: + type: string + $id: "#root/results/items/name" + pattern: ^.*$ + title: Name + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + profile_path: + type: + - "null" + - string + $id: "#root/results/items/profile_path" + pattern: ^.*$ + title: Profile_path + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true + search_tv_shows: + type: object + definitions: {} + $id: https://example.com/object1667666886.json + $schema: http://json-schema.org/draft-07/schema# + properties: + page: + type: integer + $id: "#root/page" + default: 0 + title: Page + results: + type: array + $id: "#root/results" + default: [] + items: + type: object + $id: "#root/results/items" + properties: + backdrop_path: + type: + - "null" + - string + $id: "#root/results/items/backdrop_path" + pattern: ^.*$ + title: Backdrop_path + first_air_date: + type: + - "null" + - string + $id: "#root/results/items/first_air_date" + pattern: ^.*$ + title: First_air_date + genre_ids: + type: array + $id: "#root/results/items/genre_ids" + default: [] + items: + type: integer + $id: "#root/results/items/genre_ids/items" + default: 0 + title: Items + title: Genre_ids + id: + type: integer + $id: "#root/results/items/id" + default: 0 + title: Id + name: + type: + - "null" + - string + $id: "#root/results/items/name" + pattern: ^.*$ + title: Name + origin_country: + type: array + $id: "#root/results/items/origin_country" + default: [] + items: + type: + - "null" + - string + $id: "#root/results/items/origin_country/items" + pattern: ^.*$ + title: Items + title: Origin_country + original_language: + type: + - "null" + - string + $id: "#root/results/items/original_language" + pattern: ^.*$ + title: Original_language + original_name: + type: + - "null" + - string + $id: "#root/results/items/original_name" + pattern: ^.*$ + title: Original_name + overview: + type: + - "null" + - string + $id: "#root/results/items/overview" + title: Overview + popularity: + type: number + $id: "#root/results/items/popularity" + default: 0 + title: Popularity + poster_path: + type: + - "null" + - string + $id: "#root/results/items/poster_path" + pattern: ^.*$ + title: Poster_path + vote_average: + type: number + $id: "#root/results/items/vote_average" + default: 0 + title: Vote_average + vote_count: + type: integer + $id: "#root/results/items/vote_count" + default: 0 + title: Vote_count + title: Items + title: Results + total_pages: + type: integer + $id: "#root/total_pages" + default: 0 + title: Total_pages + total_results: + type: integer + $id: "#root/total_results" + default: 0 + title: Total_results + title: Root + additionalProperties: true diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_movie.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_movie.json deleted file mode 100644 index cee425a10460..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_movie.json +++ /dev/null @@ -1,607 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667208363.json", - "title": "Root", - "type": "object", - "required": ["certifications"], - "properties": { - "certifications": { - "$id": "#root/certifications", - "title": "Certifications", - "type": "object", - "required": [ - "US", - "CA", - "AU", - "DE", - "FR", - "NZ", - "IN", - "GB", - "NL", - "BR", - "FI", - "BG", - "ES", - "PH", - "PT" - ], - "properties": { - "US": { - "$id": "#root/certifications/US", - "title": "Us", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/US/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/US/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["G"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/US/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "All ages admitted. There is no content that would be objectionable to most parents. This is one of only two ratings dating back to 1968 that still exists today." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/US/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "CA": { - "$id": "#root/certifications/CA", - "title": "Ca", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/CA/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/CA/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["18A"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/CA/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Persons under 18 years of age must be accompanied by an adult. In the Maritimes & Manitoba, children under the age of 14 are prohibited from viewing the film." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/CA/items/order", - "title": "Order", - "type": "integer", - "examples": [4], - "default": 0 - } - } - } - }, - "AU": { - "$id": "#root/certifications/AU", - "title": "Au", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/AU/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/AU/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["E"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/AU/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Exempt from classification. Films that are exempt from classification must not contain contentious material (i.e. material that would ordinarily be rated M or higher)." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/AU/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "DE": { - "$id": "#root/certifications/DE", - "title": "De", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/DE/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/DE/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["0"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/DE/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["No age restriction."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/DE/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "FR": { - "$id": "#root/certifications/FR", - "title": "Fr", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/FR/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/FR/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["U"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/FR/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["(Tous publics) valid for all audiences."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/FR/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "NZ": { - "$id": "#root/certifications/NZ", - "title": "Nz", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/NZ/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/NZ/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["M"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/NZ/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Suitable for (but not restricted to) mature audiences 16 years and up." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/NZ/items/order", - "title": "Order", - "type": "integer", - "examples": [3], - "default": 0 - } - } - } - }, - "IN": { - "$id": "#root/certifications/IN", - "title": "In", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/IN/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/IN/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["U"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/IN/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Unrestricted Public Exhibition throughout India, suitable for all age groups. Films under this category should not upset children over 4. Such films may contain educational, social or family-oriented themes. Films under this category may also contain fantasy violence and/or mild bad language." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/IN/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "GB": { - "$id": "#root/certifications/GB", - "title": "Gb", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/GB/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/GB/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["15"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/GB/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Only those over 15 years are admitted. Nobody younger than 15 can rent or buy a 15-rated VHS, DVD, Blu-ray Disc, UMD or game, or watch a film in the cinema with this rating. Films under this category can contain adult themes, hard drugs, frequent strong language and limited use of very strong language, strong violence and strong sex references, and nudity without graphic detail. Sexual activity may be portrayed but without any strong detail. Sexual violence may be shown if discreet and justified by context." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/GB/items/order", - "title": "Order", - "type": "integer", - "examples": [5], - "default": 0 - } - } - } - }, - "NL": { - "$id": "#root/certifications/NL", - "title": "Nl", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/NL/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/NL/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["AL"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/NL/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["All ages."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/NL/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "BR": { - "$id": "#root/certifications/BR", - "title": "Br", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/BR/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/BR/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["L"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/BR/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "General Audiences. Do not expose children to potentially harmful content." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/BR/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "FI": { - "$id": "#root/certifications/FI", - "title": "Fi", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/FI/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/FI/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["S"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/FI/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["For all ages."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/FI/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "BG": { - "$id": "#root/certifications/BG", - "title": "Bg", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/BG/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/BG/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["A"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/BG/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["Recommended for children."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/BG/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "ES": { - "$id": "#root/certifications/ES", - "title": "Es", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/ES/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/ES/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["APTA"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/ES/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["General admission."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/ES/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "PH": { - "$id": "#root/certifications/PH", - "title": "Ph", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/PH/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/PH/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["G"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/PH/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "General Audiences. Viewers of all ages are admitted." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/PH/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "PT": { - "$id": "#root/certifications/PT", - "title": "Pt", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/PT/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/PT/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["Públicos"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/PT/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "For all the public (especially designed for children under 3 years of age)." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/PT/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_tv.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_tv.json deleted file mode 100644 index 747281523ccd..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/certification_tv.json +++ /dev/null @@ -1,398 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667208548.json", - "title": "Root", - "type": "object", - "required": ["certifications"], - "properties": { - "certifications": { - "$id": "#root/certifications", - "title": "Certifications", - "type": "object", - "required": ["RU", "US", "CA", "AU", "FR", "DE", "TH", "KR", "GB", "BR"], - "properties": { - "RU": { - "$id": "#root/certifications/RU", - "title": "Ru", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/RU/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/RU/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["18+"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/RU/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["Restricted to People 18 or Older."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/RU/items/order", - "title": "Order", - "type": "integer", - "examples": [5], - "default": 0 - } - } - } - }, - "US": { - "$id": "#root/certifications/US", - "title": "Us", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/US/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/US/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["NR"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/US/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["No rating information."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/US/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "CA": { - "$id": "#root/certifications/CA", - "title": "Ca", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/CA/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/CA/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["Exempt"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/CA/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Shows which are exempt from ratings (such as news and sports programming) will not display an on-screen rating at all." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/CA/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "AU": { - "$id": "#root/certifications/AU", - "title": "Au", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/AU/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/AU/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["P"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/AU/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Programming is intended for younger children 2–11; commercial stations must show at least 30 minutes of P-rated content each weekday and weekends at all times. No advertisements may be shown during P-rated programs." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/AU/items/order", - "title": "Order", - "type": "integer", - "examples": [1], - "default": 0 - } - } - } - }, - "FR": { - "$id": "#root/certifications/FR", - "title": "Fr", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/FR/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/FR/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["NR"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/FR/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["No rating information."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/FR/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "DE": { - "$id": "#root/certifications/DE", - "title": "De", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/DE/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/DE/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["0"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/DE/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["Can be aired at any time."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/DE/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "TH": { - "$id": "#root/certifications/TH", - "title": "Th", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/TH/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/TH/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["ส"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/TH/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "Sor - Educational movies which the public should be encouraged to see." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/TH/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "KR": { - "$id": "#root/certifications/KR", - "title": "Kr", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/KR/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/KR/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["Exempt"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/KR/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "This rating is only for knowledge based game shows; lifestyle shows; documentary shows; news; current topic discussion shows; education/culture shows; sports that excludes MMA or other violent sports; and other programs that Korea Communications Standards Commission recognizes." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/KR/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "GB": { - "$id": "#root/certifications/GB", - "title": "Gb", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/GB/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/GB/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["U"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/GB/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": [ - "The U symbol stands for Universal. A U film should be suitable for audiences aged four years and over." - ], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/GB/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - }, - "BR": { - "$id": "#root/certifications/BR", - "title": "Br", - "type": "array", - "default": [], - "items": { - "$id": "#root/certifications/BR/items", - "title": "Items", - "type": "object", - "required": ["certification", "meaning", "order"], - "properties": { - "certification": { - "$id": "#root/certifications/BR/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "examples": ["L"], - "pattern": "^.*$" - }, - "meaning": { - "$id": "#root/certifications/BR/items/meaning", - "title": "Meaning", - "type": "string", - "default": "", - "examples": ["Content is suitable for all audiences."], - "pattern": "^.*$" - }, - "order": { - "$id": "#root/certifications/BR/items/order", - "title": "Order", - "type": "integer", - "examples": [0], - "default": 0 - } - } - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_movie.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_movie.json deleted file mode 100644 index 304c2ef40893..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_movie.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667208732.json", - "title": "Root", - "type": "object", - "required": ["results", "page", "total_pages", "total_results"], - "properties": { - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "required": ["id", "adult"], - "properties": { - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "examples": [412683], - "default": 0 - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": ["null", "boolean"], - "examples": [false], - "default": true - } - } - } - }, - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "examples": [1], - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "examples": [10], - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "examples": [952], - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_person.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_person.json deleted file mode 100644 index 502820ab85e2..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_person.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667210538.json", - "title": "Root", - "type": "object", - "required": ["results", "page", "total_pages", "total_results"], - "properties": { - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "required": ["id", "adult"], - "properties": { - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "examples": [1670120], - "default": 0 - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": ["null", "boolean"], - "examples": [false], - "default": true - } - } - } - }, - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "examples": [1], - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "examples": [7], - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "examples": [620], - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_tv.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_tv.json deleted file mode 100644 index c69374a964af..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/changes_tv.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667208773.json", - "title": "Root", - "type": "object", - "required": ["results", "page", "total_pages", "total_results"], - "properties": { - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "required": ["id", "adult"], - "properties": { - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "examples": [67563], - "default": 0 - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": ["null", "boolean"], - "examples": [false], - "default": true - } - } - } - }, - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "examples": [1], - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "examples": [2], - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "examples": [122], - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_alternative_titles.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_alternative_titles.json deleted file mode 100644 index fd8dcc1f142d..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_alternative_titles.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666884919.json", - "title": "Root", - "type": "object", - "properties": { - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "titles": { - "$id": "#root/titles", - "title": "Titles", - "type": ["array", "null", "object"], - "default": [], - "items": { - "$id": "#root/titles/items", - "title": "Items", - "type": ["array", "null", "object"], - "properties": { - "iso_3166_1": { - "$id": "#root/titles/items/iso_3166_1", - "title": "Iso_3166_1", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/titles/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "type": { - "$id": "#root/titles/items/type", - "title": "Type", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_changes.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_changes.json deleted file mode 100644 index be71c6b7dfa0..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_changes.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1668092844.json", - "title": "Root", - "type": "object", - "properties": { - "key": { - "$id": "#root/changes/items/key", - "title": "Key", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "items": { - "$id": "#root/changes/items/items", - "title": "Items", - "type": "array", - "default": [], - "items": { - "$id": "#root/changes/items/items/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/changes/items/items/items/id", - "title": "Id", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "action": { - "$id": "#root/changes/items/items/items/action", - "title": "Action", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "time": { - "$id": "#root/changes/items/items/items/time", - "title": "Time", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "iso_639_1": { - "$id": "#root/changes/items/items/items/iso_639_1", - "title": "Iso_639_1", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "iso_3166_1": { - "$id": "#root/changes/items/items/items/iso_3166_1", - "title": "Iso_3166_1", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "value": { - "$id": "#root/changes/items/items/items/value", - "title": "Value", - "type": "object", - "properties": { - "poster": { - "$id": "#root/changes/items/items/items/value/poster", - "title": "Poster", - "type": "object", - "properties": { - "file_path": { - "$id": "#root/changes/items/items/items/value/poster/file_path", - "title": "File_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - } - } - } - } - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_credits.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_credits.json deleted file mode 100644 index 610312ca8df1..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_credits.json +++ /dev/null @@ -1,192 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666852792.json", - "title": "Root", - "type": "object", - "properties": { - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "cast": { - "$id": "#root/cast", - "title": "Cast", - "type": "array", - "default": [], - "items": { - "$id": "#root/cast/items", - "title": "Items", - "type": "object", - "properties": { - "adult": { - "$id": "#root/cast/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "gender": { - "$id": "#root/cast/items/gender", - "title": "Gender", - "type": "integer", - "default": 0 - }, - "id": { - "$id": "#root/cast/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "known_for_department": { - "$id": "#root/cast/items/known_for_department", - "title": "Known_for_department", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "name": { - "$id": "#root/cast/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_name": { - "$id": "#root/cast/items/original_name", - "title": "Original_name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/cast/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "profile_path": { - "$id": "#root/cast/items/profile_path", - "title": "Profile_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "cast_id": { - "$id": "#root/cast/items/cast_id", - "title": "Cast_id", - "type": "integer", - "default": 0 - }, - "character": { - "$id": "#root/cast/items/character", - "title": "Character", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "credit_id": { - "$id": "#root/cast/items/credit_id", - "title": "Credit_id", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "order": { - "$id": "#root/cast/items/order", - "title": "Order", - "type": "integer", - "default": 0 - } - } - } - }, - "crew": { - "$id": "#root/crew", - "title": "Crew", - "type": "array", - "default": [], - "items": { - "$id": "#root/crew/items", - "title": "Items", - "type": "object", - "properties": { - "adult": { - "$id": "#root/crew/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "gender": { - "$id": "#root/crew/items/gender", - "title": "Gender", - "type": "integer", - "default": 0 - }, - "id": { - "$id": "#root/crew/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "known_for_department": { - "$id": "#root/crew/items/known_for_department", - "title": "Known_for_department", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "name": { - "$id": "#root/crew/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_name": { - "$id": "#root/crew/items/original_name", - "title": "Original_name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/crew/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "profile_path": { - "$id": "#root/crew/items/profile_path", - "title": "Profile_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "credit_id": { - "$id": "#root/crew/items/credit_id", - "title": "Credit_id", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "department": { - "$id": "#root/crew/items/department", - "title": "Department", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "job": { - "$id": "#root/crew/items/job", - "title": "Job", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_details.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_details.json deleted file mode 100644 index 952d7122cf75..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_details.json +++ /dev/null @@ -1,265 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666852195.json", - "title": "Root", - "type": "object", - "properties": { - "adult": { - "$id": "#root/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "backdrop_path": { - "$id": "#root/backdrop_path", - "title": "Backdrop_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "belongs_to_collection": { - "$id": "#root/belongs_to_collection", - "title": "Belongs_to_collection", - "type": ["null", "object"], - "default": null - }, - "budget": { - "$id": "#root/budget", - "title": "Budget", - "type": "integer", - "default": 0 - }, - "genres": { - "$id": "#root/genres", - "title": "Genres", - "type": ["null", "array"], - "default": [], - "items": { - "$id": "#root/genres/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/genres/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "name": { - "$id": "#root/genres/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "homepage": { - "$id": "#root/homepage", - "title": "Homepage", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "imdb_id": { - "$id": "#root/imdb_id", - "title": "Imdb_id", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_language": { - "$id": "#root/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_title": { - "$id": "#root/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "overview": { - "$id": "#root/overview", - "title": "Overview", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "poster_path": { - "$id": "#root/poster_path", - "title": "Poster_path", - "type": ["string", "null"], - "default": null - }, - "production_companies": { - "$id": "#root/production_companies", - "title": "Production_companies", - "type": ["null", "array"], - "default": [], - "items": { - "$id": "#root/production_companies/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/production_companies/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/production_companies/items/logo_path", - "title": "Logo_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "name": { - "$id": "#root/production_companies/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "origin_country": { - "$id": "#root/production_companies/items/origin_country", - "title": "Origin_country", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "production_countries": { - "$id": "#root/production_countries", - "title": "Production_countries", - "type": ["null", "array"], - "default": [], - "items": { - "$id": "#root/production_countries/items", - "title": "Items", - "type": "object", - "properties": { - "iso_3166_1": { - "$id": "#root/production_countries/items/iso_3166_1", - "title": "Iso_3166_1", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "name": { - "$id": "#root/production_countries/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "release_date": { - "$id": "#root/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "revenue": { - "$id": "#root/revenue", - "title": "Revenue", - "type": "integer", - "default": 0 - }, - "runtime": { - "$id": "#root/runtime", - "title": "Runtime", - "type": ["null", "integer"], - "default": 0 - }, - "spoken_languages": { - "$id": "#root/spoken_languages", - "title": "Spoken_languages", - "type": ["null", "array"], - "default": [], - "items": { - "$id": "#root/spoken_languages/items", - "title": "Items", - "type": "object", - "properties": { - "iso_639_1": { - "$id": "#root/spoken_languages/items/iso_639_1", - "title": "Iso_639_1", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "name": { - "$id": "#root/spoken_languages/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "status": { - "$id": "#root/status", - "title": "Status", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "tagline": { - "$id": "#root/tagline", - "title": "Tagline", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "video": { - "$id": "#root/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - }, - "vote_count": { - "$id": "#root/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_external_ids.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_external_ids.json deleted file mode 100644 index fd4484d863d4..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_external_ids.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666852857.json", - "title": "Root", - "type": "object", - "properties": { - "imdb_id": { - "$id": "#root/imdb_id", - "title": "Imdb_id", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "facebook_id": { - "$id": "#root/facebook_id", - "title": "Facebook_id", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "instagram_id": { - "$id": "#root/instagram_id", - "title": "Instagram_id", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "twitter_id": { - "$id": "#root/twitter_id", - "title": "Twitter_id", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_images.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_images.json deleted file mode 100644 index 326d7af979b3..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_images.json +++ /dev/null @@ -1,128 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666852902.json", - "title": "Root", - "type": "object", - "properties": { - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "backdrops": { - "$id": "#root/backdrops", - "title": "Backdrops", - "type": "array", - "default": [], - "items": { - "$id": "#root/backdrops/items", - "title": "Items", - "type": "object", - "properties": { - "aspect_ratio": { - "$id": "#root/backdrops/items/aspect_ratio", - "title": "Aspect_ratio", - "type": "number", - "default": 0.0 - }, - "file_path": { - "$id": "#root/backdrops/items/file_path", - "title": "File_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "height": { - "$id": "#root/backdrops/items/height", - "title": "Height", - "type": "integer", - "default": 0 - }, - "iso_639_1": { - "$id": "#root/backdrops/items/iso_639_1", - "title": "Iso_639_1", - "type": ["string", "null"], - "default": null - }, - "vote_average": { - "$id": "#root/backdrops/items/vote_average", - "title": "Vote_average", - "type": ["number", "integer", "string"], - "default": 0 - }, - "vote_count": { - "$id": "#root/backdrops/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "width": { - "$id": "#root/backdrops/items/width", - "title": "Width", - "type": "integer", - "default": 0 - } - } - } - }, - "posters": { - "$id": "#root/posters", - "title": "Posters", - "type": "array", - "default": [], - "items": { - "$id": "#root/posters/items", - "title": "Items", - "type": "object", - "properties": { - "aspect_ratio": { - "$id": "#root/posters/items/aspect_ratio", - "title": "Aspect_ratio", - "type": "number", - "default": 0.0 - }, - "file_path": { - "$id": "#root/posters/items/file_path", - "title": "File_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "height": { - "$id": "#root/posters/items/height", - "title": "Height", - "type": "integer", - "default": 0 - }, - "iso_639_1": { - "$id": "#root/posters/items/iso_639_1", - "title": "Iso_639_1", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "vote_average": { - "$id": "#root/posters/items/vote_average", - "title": "Vote_average", - "type": ["number", "integer", "string"], - "default": 0 - }, - "vote_count": { - "$id": "#root/posters/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "width": { - "$id": "#root/posters/items/width", - "title": "Width", - "type": "integer", - "default": 0 - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_keywords.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_keywords.json deleted file mode 100644 index 83e8980715d1..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_keywords.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666852923.json", - "title": "Root", - "type": "object", - "properties": { - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "keywords": { - "$id": "#root/keywords", - "title": "Keywords", - "type": "array", - "default": [], - "items": { - "$id": "#root/keywords/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/keywords/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "name": { - "$id": "#root/keywords/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_latest.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_latest.json deleted file mode 100644 index bf2a00a01644..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_latest.json +++ /dev/null @@ -1,189 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853268.json", - "title": "Root", - "type": "object", - "properties": { - "adult": { - "$id": "#root/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "backdrop_path": { - "$id": "#root/backdrop_path", - "title": "Backdrop_path", - "type": ["string", "null"], - "default": null - }, - "belongs_to_collection": { - "$id": "#root/belongs_to_collection", - "title": "Belongs_to_collection", - "type": ["string", "null"], - "default": null - }, - "budget": { - "$id": "#root/budget", - "title": "Budget", - "type": "integer", - "default": 0 - }, - "genres": { - "$id": "#root/genres", - "title": "Genres", - "type": "array", - "default": [], - "items": { - "$id": "#root/genres/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/genres/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "name": { - "$id": "#root/genres/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "homepage": { - "$id": "#root/homepage", - "title": "Homepage", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "imdb_id": { - "$id": "#root/imdb_id", - "title": "Imdb_id", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "original_language": { - "$id": "#root/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_title": { - "$id": "#root/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "overview": { - "$id": "#root/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/popularity", - "title": "Popularity", - "type": "integer", - "default": 0 - }, - "poster_path": { - "$id": "#root/poster_path", - "title": "Poster_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "production_companies": { - "$id": "#root/production_companies", - "title": "Production_companies", - "type": "array", - "default": [] - }, - "production_countries": { - "$id": "#root/production_countries", - "title": "Production_countries", - "type": "array", - "default": [] - }, - "release_date": { - "$id": "#root/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "revenue": { - "$id": "#root/revenue", - "title": "Revenue", - "type": "integer", - "default": 0 - }, - "runtime": { - "$id": "#root/runtime", - "title": "Runtime", - "type": "integer", - "default": 0 - }, - "spoken_languages": { - "$id": "#root/spoken_languages", - "title": "Spoken_languages", - "type": "array", - "default": [] - }, - "status": { - "$id": "#root/status", - "title": "Status", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "tagline": { - "$id": "#root/tagline", - "title": "Tagline", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "video": { - "$id": "#root/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/vote_average", - "title": "Vote_average", - "type": "integer", - "default": 0 - }, - "vote_count": { - "$id": "#root/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_lists.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_lists.json deleted file mode 100644 index 89da7dd053f9..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_lists.json +++ /dev/null @@ -1,208 +0,0 @@ -{ - "id": 550, - "page": 1, - "results": [ - { - "description": "Pick one and then one or two alternates", - "favorite_count": 0, - "id": 7213, - "item_count": 1358, - "iso_639_1": "en", - "list_type": "movie", - "name": "Movie Night", - "poster_path": "/p60VSQL7usdxztIGokJPpHmKWdU.jpg" - }, - { - "description": "Your favorite and classic movies of the 1990s", - "favorite_count": 0, - "id": 6968, - "item_count": 482, - "iso_639_1": "en", - "list_type": "movie", - "name": "1990", - "poster_path": "/5R68Xn4EG0g5qlaQxpE89zGrtes.jpg" - }, - { - "description": "All the movies I own on vhs/dvd/bluray or digital.", - "favorite_count": 0, - "id": 9660, - "item_count": 3299, - "iso_639_1": "en", - "list_type": "movie", - "name": "My Film Collection", - "poster_path": "/3TsnEEkBRfQ1b7Gi2FTsuxHFUZq.jpg" - }, - { - "description": "", - "favorite_count": 0, - "id": 8085, - "item_count": 23, - "iso_639_1": "en", - "list_type": "movie", - "name": "Twists and Shouts", - "poster_path": "/drzZQfdyoAq7pXq4EPI2aZKyGD5.jpg" - }, - { - "description": "", - "favorite_count": 0, - "id": 12031, - "item_count": 475, - "iso_639_1": "fr", - "list_type": "movie", - "name": "Films", - "poster_path": null - }, - { - "description": "List maintained by Movie Collection, the iOS app.", - "favorite_count": 0, - "id": 1718, - "item_count": 610, - "iso_639_1": "en", - "list_type": "movie", - "name": "Movie Collection", - "poster_path": null - }, - { - "description": "", - "favorite_count": 0, - "id": 11052, - "item_count": 478, - "iso_639_1": "en", - "list_type": "movie", - "name": "Movies", - "poster_path": null - }, - { - "description": "Weekly Box Office Nº1 from 1982", - "favorite_count": 0, - "id": 5576, - "item_count": 647, - "iso_639_1": "es", - "list_type": "movie", - "name": "Weekly Box Office Nº1 from 1982", - "poster_path": "/yTpKlgaNw3fEBndyDYPg3hRloR5.jpg" - }, - { - "description": "", - "favorite_count": 0, - "id": 4023, - "item_count": 1072, - "iso_639_1": "it", - "list_type": "movie", - "name": "Dvd collection", - "poster_path": "/sHGO5Ct2Vo0KPVnSEmSf3Zo5MIl.jpg" - }, - { - "description": "Películas para recomendar", - "favorite_count": 0, - "id": 10354, - "item_count": 33, - "iso_639_1": "en", - "list_type": "movie", - "name": "Peliculones", - "poster_path": null - }, - { - "description": "", - "favorite_count": 0, - "id": 10141, - "item_count": 304, - "iso_639_1": "en", - "list_type": "movie", - "name": "R3ST", - "poster_path": null - }, - { - "description": "", - "favorite_count": 0, - "id": 5829, - "item_count": 396, - "iso_639_1": "de", - "list_type": "movie", - "name": "Criss Filme", - "poster_path": "/gnNU653Lm0cCpdYDaOgjTREf6JI.jpg" - }, - { - "description": "movies that I've watched", - "favorite_count": 0, - "id": 6357, - "item_count": 1690, - "iso_639_1": "en", - "list_type": "movie", - "name": "watched", - "poster_path": "/7o7fCNaruJGrTjWpmmK2jj8rE7Q.jpg" - }, - { - "description": "", - "favorite_count": 0, - "id": 9267, - "item_count": 121, - "iso_639_1": "en", - "list_type": "movie", - "name": "Dangerous Hill Classics", - "poster_path": "/f7KYM1uO8f2duhoSY3Bps55mIe.jpg" - }, - { - "description": "List maintained by Movie Collection, the iOS app.", - "favorite_count": 0, - "id": 3136, - "item_count": 185, - "iso_639_1": "en", - "list_type": "movie", - "name": "Movie Collection", - "poster_path": "/koLwUfgmlT2kr0twamPJ8l6eQIp.jpg" - }, - { - "description": "", - "favorite_count": 0, - "id": 4557, - "item_count": 591, - "iso_639_1": "hu", - "list_type": "movie", - "name": "Watched", - "poster_path": "/43pgav2uIG0ZNGdcaZX1v073ITv.jpg" - }, - { - "description": "", - "favorite_count": 0, - "id": 12467, - "item_count": 13, - "iso_639_1": "en", - "list_type": "movie", - "name": "Bradd", - "poster_path": null - }, - { - "description": "", - "favorite_count": 0, - "id": 4280, - "item_count": 390, - "iso_639_1": "it", - "list_type": "movie", - "name": "MY COLLECTION", - "poster_path": "/noLXB6fiDAl9uC6O2W26kCDXIFl.jpg" - }, - { - "description": "Movies that I have watched.", - "favorite_count": 0, - "id": 10482, - "item_count": 567, - "iso_639_1": "en", - "list_type": "movie", - "name": "Watched", - "poster_path": null - }, - { - "description": "DVDs I have", - "favorite_count": 0, - "id": 11773, - "item_count": 1158, - "iso_639_1": "en", - "list_type": "movie", - "name": "DVD Collection", - "poster_path": null - } - ], - "total_pages": 18, - "total_results": 358 -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_now_playing.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_now_playing.json deleted file mode 100644 index 87054cdca26e..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_now_playing.json +++ /dev/null @@ -1,158 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853486.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - } - } - } - }, - "dates": { - "$id": "#root/dates", - "title": "Dates", - "type": "object", - "properties": { - "maximum": { - "$id": "#root/dates/maximum", - "title": "Maximum", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "minimum": { - "$id": "#root/dates/minimum", - "title": "Minimum", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_popular.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_popular.json deleted file mode 100644 index 67ae3473ae8c..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_popular.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853522.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - } - } - } - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_recommendations.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_recommendations.json deleted file mode 100644 index ef3808248ed2..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_recommendations.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666852992.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": ["string", "null"], - "default": null - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": ["string", "null"], - "default": null - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": ["number", "integer", "string"], - "default": 0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_releases_dates.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_releases_dates.json deleted file mode 100644 index 6e24834e3d7f..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_releases_dates.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853037.json", - "title": "Root", - "type": "object", - "properties": { - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "iso_3166_1": { - "$id": "#root/results/items/iso_3166_1", - "title": "Iso_3166_1", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_dates": { - "$id": "#root/results/items/release_dates", - "title": "Release_dates", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/release_dates/items", - "title": "Items", - "type": "object", - "properties": { - "certification": { - "$id": "#root/results/items/release_dates/items/certification", - "title": "Certification", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "iso_639_1": { - "$id": "#root/results/items/release_dates/items/iso_639_1", - "title": "Iso_639_1", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_dates/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "type": { - "$id": "#root/results/items/release_dates/items/type", - "title": "Type", - "type": "integer", - "default": 0 - } - } - } - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_reviews.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_reviews.json deleted file mode 100644 index d7130ee3d3b7..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_reviews.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853293.json", - "title": "Root", - "type": "object", - "properties": { - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "author": { - "$id": "#root/results/items/author", - "title": "Author", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "author_details": { - "$id": "#root/results/items/author_details", - "title": "Author_details", - "type": "object", - "properties": { - "name": { - "$id": "#root/results/items/author_details/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "username": { - "$id": "#root/results/items/author_details/username", - "title": "Username", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "avatar_path": { - "$id": "#root/results/items/author_details/avatar_path", - "title": "Avatar_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "rating": { - "$id": "#root/results/items/author_details/rating", - "title": "Rating", - "type": ["null", "string"], - "default": null - } - } - }, - "content": { - "$id": "#root/results/items/content", - "title": "Content", - "type": "string", - "default": "", - "pattern": "^.*" - }, - "created_at": { - "$id": "#root/results/items/created_at", - "title": "Created_at", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "updated_at": { - "$id": "#root/results/items/updated_at", - "title": "Updated_at", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "url": { - "$id": "#root/results/items/url", - "title": "Url", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_similar_movies.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_similar_movies.json deleted file mode 100644 index 5af5feb86db2..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_similar_movies.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853122.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": ["string", "null"], - "default": null - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": ["string", "null"], - "default": null - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": ["number", "integer", "string"], - "default": 0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_top_rated.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_top_rated.json deleted file mode 100644 index 5c415fc648e1..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_top_rated.json +++ /dev/null @@ -1,327 +0,0 @@ -{ - "page": 1, - "results": [ - { - "poster_path": "/9O7gLzmreU0nGkIB6K3BsJbzvNv.jpg", - "adult": false, - "overview": "Framed in the 1940s for the double murder of his wife and her lover, upstanding banker Andy Dufresne begins a new life at the Shawshank prison, where he puts his accounting skills to work for an amoral warden. During his long stretch in prison, Dufresne comes to be admired by the other inmates -- including an older prisoner named Red -- for his integrity and unquenchable sense of hope.", - "release_date": "1994-09-10", - "genre_ids": [18, 80], - "id": 278, - "original_title": "The Shawshank Redemption", - "original_language": "en", - "title": "The Shawshank Redemption", - "backdrop_path": "/xBKGJQsAIeweesB79KC89FpBrVr.jpg", - "popularity": 6.741296, - "vote_count": 5238, - "video": false, - "vote_average": 8.32 - }, - { - "poster_path": "/lIv1QinFqz4dlp5U4lQ6HaiskOZ.jpg", - "adult": false, - "overview": "Under the direction of a ruthless instructor, a talented young drummer begins to pursue perfection at any cost, even his humanity.", - "release_date": "2014-10-10", - "genre_ids": [18, 10402], - "id": 244786, - "original_title": "Whiplash", - "original_language": "en", - "title": "Whiplash", - "backdrop_path": "/6bbZ6XyvgfjhQwbplnUh1LSj1ky.jpg", - "popularity": 10.776056, - "vote_count": 2059, - "video": false, - "vote_average": 8.29 - }, - { - "poster_path": "/d4KNaTrltq6bpkFS01pYtyXa09m.jpg", - "adult": false, - "overview": "The story spans the years from 1945 to 1955 and chronicles the fictional Italian-American Corleone crime family. When organized crime family patriarch Vito Corleone barely survives an attempt on his life, his youngest son, Michael, steps in to take care of the would-be killers, launching a campaign of bloody revenge.", - "release_date": "1972-03-15", - "genre_ids": [18, 80], - "id": 238, - "original_title": "The Godfather", - "original_language": "en", - "title": "The Godfather", - "backdrop_path": "/6xKCYgH16UuwEGAyroLU6p8HLIn.jpg", - "popularity": 4.554654, - "vote_count": 3570, - "video": false, - "vote_average": 8.26 - }, - { - "poster_path": "/ynXoOxmDHNQ4UAy0oU6avW71HVW.jpg", - "adult": false, - "overview": "Spirited Away is an Oscar winning Japanese animated film about a ten year old girl who wanders away from her parents along a path that leads to a world ruled by strange and unusual monster-like animals. Her parents have been changed into pigs along with others inside a bathhouse full of these creatures. Will she ever see the world how it once was?", - "release_date": "2001-07-20", - "genre_ids": [14, 12, 16, 10751], - "id": 129, - "original_title": "千と千尋の神隠し", - "original_language": "ja", - "title": "Spirited Away", - "backdrop_path": "/djgM2d3e42p9GFQObg6lwK2SVw2.jpg", - "popularity": 6.886678, - "vote_count": 2000, - "video": false, - "vote_average": 8.15 - }, - { - "poster_path": "/nBNZadXqJSdt05SHLqgT0HuC5Gm.jpg", - "adult": false, - "overview": "Interstellar chronicles the adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.", - "release_date": "2014-11-05", - "genre_ids": [12, 18, 878], - "id": 157336, - "original_title": "Interstellar", - "original_language": "en", - "title": "Interstellar", - "backdrop_path": "/xu9zaAevzQ5nnrsXN6JcahLnG4i.jpg", - "popularity": 12.481061, - "vote_count": 5600, - "video": false, - "vote_average": 8.12 - }, - { - "poster_path": "/tHbMIIF51rguMNSastqoQwR0sBs.jpg", - "adult": false, - "overview": "The continuing saga of the Corleone crime family tells the story of a young Vito Corleone growing up in Sicily and in 1910s New York; and follows Michael Corleone in the 1950s as he attempts to expand the family business into Las Vegas, Hollywood and Cuba", - "release_date": "1974-12-20", - "genre_ids": [18, 80], - "id": 240, - "original_title": "The Godfather: Part II", - "original_language": "en", - "title": "The Godfather: Part II", - "backdrop_path": "/gLbBRyS7MBrmVUNce91Hmx9vzqI.jpg", - "popularity": 4.003715, - "vote_count": 1894, - "video": false, - "vote_average": 8.1 - }, - { - "poster_path": "/4mFsNQwbD0F237Tx7gAPotd0nbJ.jpg", - "adult": false, - "overview": "A true story of two men who should never have met - a quadriplegic aristocrat who was injured in a paragliding accident and a young man from the projects.", - "release_date": "2011-11-02", - "genre_ids": [18, 35], - "id": 77338, - "original_title": "Intouchables", - "original_language": "fr", - "title": "The Intouchables", - "backdrop_path": "/ihWaJZCUIon2dXcosjQG2JHJAPN.jpg", - "popularity": 3.698279, - "vote_count": 2740, - "video": false, - "vote_average": 8.1 - }, - { - "poster_path": "/bwVhmPpydv8P7mWfrmL3XVw0MV5.jpg", - "adult": false, - "overview": "In the latter part of World War II, a boy and his sister, orphaned when their mother is killed in the firebombing of Tokyo, are left to survive on their own in what remains of civilian life in Japan. The plot follows this boy and his sister as they do their best to survive in the Japanese countryside, battling hunger, prejudice, and pride in their own quiet, personal battle.", - "release_date": "1988-04-16", - "genre_ids": [16, 18, 10751, 10752], - "id": 12477, - "original_title": "火垂るの墓", - "original_language": "ja", - "title": "Grave of the Fireflies", - "backdrop_path": "/fCUIuG7y4YKC3hofZ8wsj7zhCpR.jpg", - "popularity": 1.001401, - "vote_count": 430, - "video": false, - "vote_average": 8.07 - }, - { - "poster_path": "/yPisjyLweCl1tbgwgtzBCNCBle.jpg", - "adult": false, - "overview": "Told from the perspective of businessman Oskar Schindler who saved over a thousand Jewish lives from the Nazis while they worked as slaves in his factory. Schindler’s List is based on a true story, illustrated in black and white and controversially filmed in many original locations.", - "release_date": "1993-11-29", - "genre_ids": [18, 36, 10752], - "id": 424, - "original_title": "Schindler's List", - "original_language": "en", - "title": "Schindler's List", - "backdrop_path": "/rIpSszng8P0DL0TimSzZbpfnvh1.jpg", - "popularity": 5.372319, - "vote_count": 2308, - "video": false, - "vote_average": 8.07 - }, - { - "poster_path": "/eqFckcHuFCT1FrzLOAvXBb4jHwq.jpg", - "adult": false, - "overview": "Jack is a young boy of 5 years old who has lived all his life in one room. He believes everything within it are the only real things in the world. But what will happen when his Ma suddenly tells him that there are other things outside of Room?", - "release_date": "2015-10-16", - "genre_ids": [18, 53], - "id": 264644, - "original_title": "Room", - "original_language": "en", - "title": "Room", - "backdrop_path": "/tBhp8MGaiL3BXpPCSl5xY397sGH.jpg", - "popularity": 5.593128, - "vote_count": 1179, - "video": false, - "vote_average": 8.06 - }, - { - "poster_path": "/f7DImXDebOs148U4uPjI61iDvaK.jpg", - "adult": false, - "overview": "A touching story of an Italian book seller of Jewish ancestry who lives in his own little fairy tale. His creative and happy life would come to an abrupt halt when his entire family is deported to a concentration camp during World War II. While locked up he tries to convince his son that the whole thing is just a game.", - "release_date": "1997-12-20", - "genre_ids": [35, 18], - "id": 637, - "original_title": "La vita è bella", - "original_language": "it", - "title": "Life Is Beautiful", - "backdrop_path": "/bORe0eI72D874TMawOOFvqWS6Xe.jpg", - "popularity": 5.385594, - "vote_count": 1593, - "video": false, - "vote_average": 8.06 - }, - { - "poster_path": "/s0C78plmx3dFcO3WMnoXCz56FiN.jpg", - "adult": false, - "overview": "A boy growing up in Dublin during the 1980s escapes his strained family life by starting a band to impress the mysterious girl he likes.", - "release_date": "2016-04-15", - "genre_ids": [10749, 18, 10402], - "id": 369557, - "original_title": "Sing Street", - "original_language": "en", - "title": "Sing Street", - "backdrop_path": "/9j4UaRypr19wz0BOofwvkPRm1Se.jpg", - "popularity": 3.343073, - "vote_count": 61, - "video": false, - "vote_average": 8.06 - }, - { - "poster_path": "/1hRoyzDtpgMU7Dz4JF22RANzQO7.jpg", - "adult": false, - "overview": "Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.", - "release_date": "2008-07-16", - "genre_ids": [18, 28, 80, 53], - "id": 155, - "original_title": "The Dark Knight", - "original_language": "en", - "title": "The Dark Knight", - "backdrop_path": "/nnMC0BM6XbjIIrT4miYmMtPGcQV.jpg", - "popularity": 8.090715, - "vote_count": 7744, - "video": false, - "vote_average": 8.06 - }, - { - "poster_path": "/811DjJTon9gD6hZ8nCjSitaIXFQ.jpg", - "adult": false, - "overview": "A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.", - "release_date": "1999-10-14", - "genre_ids": [18], - "id": 550, - "original_title": "Fight Club", - "original_language": "en", - "title": "Fight Club", - "backdrop_path": "/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg", - "popularity": 6.590102, - "vote_count": 5221, - "video": false, - "vote_average": 8.05 - }, - { - "poster_path": "/dM2w364MScsjFf8pfMbaWUcWrR.jpg", - "adult": false, - "overview": "A burger-loving hit man, his philosophical partner, a drug-addled gangster's moll and a washed-up boxer converge in this sprawling, comedic crime caper. Their adventures unfurl in three stories that ingeniously trip back and forth in time.", - "release_date": "1994-10-14", - "genre_ids": [53, 80], - "id": 680, - "original_title": "Pulp Fiction", - "original_language": "en", - "title": "Pulp Fiction", - "backdrop_path": "/mte63qJaVnoxkkXbHkdFujBnBgd.jpg", - "popularity": 7.760216, - "vote_count": 4722, - "video": false, - "vote_average": 8.04 - }, - { - "poster_path": "/gzlJkVfWV5VEG5xK25cvFGJgkDz.jpg", - "adult": false, - "overview": "Ashitaka, a prince of the disappearing Ainu tribe, is cursed by a demonized boar god and must journey to the west to find a cure. Along the way, he encounters San, a young human woman fighting to protect the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka must find a way to bring balance to this conflict.", - "release_date": "1997-07-12", - "genre_ids": [12, 14, 16], - "id": 128, - "original_title": "もののけ姫", - "original_language": "ja", - "title": "Princess Mononoke", - "backdrop_path": "/dB2rATwfCbsPGfRLIoluBnKdVHb.jpg", - "popularity": 4.672361, - "vote_count": 954, - "video": false, - "vote_average": 8.04 - }, - { - "poster_path": "/3TpMBcAYH4cxCw5WoRacWodMTCG.jpg", - "adult": false, - "overview": "An urban office worker finds that paper airplanes are instrumental in meeting a girl in ways he never expected.", - "release_date": "2012-11-02", - "genre_ids": [16, 10751, 10749], - "id": 140420, - "original_title": "Paperman", - "original_language": "en", - "title": "Paperman", - "backdrop_path": "/cqn1ynw78Wan37jzs1Ckm7va97G.jpg", - "popularity": 2.907096, - "vote_count": 452, - "video": false, - "vote_average": 8.03 - }, - { - "poster_path": "/pwpGfTImTGifEGgLb3s6LRPd4I6.jpg", - "adult": false, - "overview": "Henry Hill is a small time gangster, who takes part in a robbery with Jimmy Conway and Tommy De Vito, two other gangsters who have set their sights a bit higher. His two partners kill off everyone else involved in the robbery, and slowly start to climb up through the hierarchy of the Mob. Henry, however, is badly affected by his partners success, but will he stoop low enough to bring about the downfall of Jimmy and Tommy?", - "release_date": "1990-09-12", - "genre_ids": [18, 80], - "id": 769, - "original_title": "Goodfellas", - "original_language": "en", - "title": "Goodfellas", - "backdrop_path": "/xDEOxA01480uLTWuvQCw61VmDBt.jpg", - "popularity": 3.783589, - "vote_count": 1528, - "video": false, - "vote_average": 8.02 - }, - { - "poster_path": "/z4ROnCrL77ZMzT0MsNXY5j25wS2.jpg", - "adult": false, - "overview": "A man with a low IQ has accomplished great things in his life and been present during significant historic events - in each case, far exceeding what anyone imagined he could do. Yet, despite all the things he has attained, his one true love eludes him. 'Forrest Gump' is the story of a man who rose above his challenges, and who proved that determination, courage, and love are more important than ability.", - "release_date": "1994-07-06", - "genre_ids": [35, 18, 10749], - "id": 13, - "original_title": "Forrest Gump", - "original_language": "en", - "title": "Forrest Gump", - "backdrop_path": "/ctOEhQiFIHWkiaYp7b0ibSTe5IL.jpg", - "popularity": 6.224491, - "vote_count": 4279, - "video": false, - "vote_average": 8.02 - }, - { - "poster_path": "/5hqbJSmtAimbaP3XcYshCixuUtk.jpg", - "adult": false, - "overview": "A veteran samurai, who has fallen on hard times, answers a village's request for protection from bandits. He gathers 6 other samurai to help him, and they teach the townspeople how to defend themselves, and they supply the samurai with three small meals a day. The film culminates in a giant battle when 40 bandits attack the village.", - "release_date": "1954-04-26", - "genre_ids": [28, 18], - "id": 346, - "original_title": "七人の侍", - "original_language": "ja", - "title": "Seven Samurai", - "backdrop_path": "/61vLiK96sbXeHpQiMxI4CuqBA3z.jpg", - "popularity": 2.93856, - "vote_count": 436, - "video": false, - "vote_average": 8.02 - } - ], - "total_results": 5206, - "total_pages": 261 -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_translations.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_translations.json deleted file mode 100644 index c8247fcccc48..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_translations.json +++ /dev/null @@ -1,456 +0,0 @@ -{ - "id": 550, - "translations": [ - { - "iso_3166_1": "UA", - "iso_639_1": "uk", - "name": "Український", - "english_name": "Ukrainian", - "data": { - "title": "Бійцівський клуб", - "overview": "Джек, страждає хронічним безсонням і відчайдушно намагається вирватися з нудного життя. Саме тоді він зустрічає Тайлера Дердена, торговця із збоченою філософією. Тайлер впевнений, що самовдосконалення - доля слабких, а саморуйнування - єдине, заради чого варто жити. І ось вже Джек і Тайлер луплять один одному пики на стоянці перед баром, що приносить їм неабияке задоволення. Залучаючи інших чоловіків до простих радощів фізичної жорстокості, Джек і Тайлер засновують таємний Бійцівський Клуб, який має величезний успіх. Але Джека чекає шокуюче відкриття, здатне змінити все...", - "homepage": "" - } - }, - { - "iso_3166_1": "DE", - "iso_639_1": "de", - "name": "Deutsch", - "english_name": "German", - "data": { - "title": "", - "overview": "Ein Yuppie findet beim charismatischen Tyler Durden Unterschlupf, nachdem seine Wohnung in die Luft gejagt wird. Ein Gerangel zwischen den beiden entwickelt sich zu einer Schlägerei, die mit der Erkenntnis endet, dass man sich nach einer ordentlichen Portion Prügel einfach besser fühlt. Der \"Fight Club\" ist geboren. Immer mehr Männer versammeln sich, um sich zu schlagen - und gestärkt in den Alltag zu gehen. Wie ein Virus greift das Konzept um sich, doch für Tyler ist der Kampfverein nur die erste Stufe, um die USA in die Knie zu zwingen.", - "homepage": "" - } - }, - { - "iso_3166_1": "PT", - "iso_639_1": "pt", - "name": "Português", - "english_name": "Portuguese", - "data": { - "title": "Clube de Combate", - "overview": "Jack (Edward Norton) é um executivo que trabalha como investigador de seguros, tem uma boa vida financeira, mas sofre com problemas de insônia. Para tentar se curar, ele começa a freqüentar terapias em grupo, mas sua vida vira de cabeça para baixo quando ele conhece Tyler (Brad Pitt). Com ele, forma um clube da luta, onde pessoas são amigas, mas se esmurram violentamente em algumas noites. Tudo ganha propósitos maiores quando as coisas começam a ficar loucas e surreais.", - "homepage": "https://www.welcometofc.com/" - } - }, - { - "iso_3166_1": "NL", - "iso_639_1": "nl", - "name": "Nederlands", - "english_name": "Dutch", - "data": { - "title": "", - "overview": "Een verzekeringsinspecteur die aan chronische slapeloosheid lijdt probeert wanhopig uit zijn oersaaie bestaan te ontsnappen. Bij toeval ontmoet hij Tyler Durden, een charismatische zeepverkoper met een bizarre levensfilosofie. Tyler gelooft namelijk dat \"zelfverbetering\" enkel voor de zwakken is, het is \"zelfvernieling\" die het leven meer waarde geeft. Samen met Tyler organiseert hij de ultieme vorm van ontspanning: zogeheten \"Fight Clubs\", waar gewone jonge mannen het beest in zichzelf loslaten in blotevuistgevechten. Het bevrijdende effect op de deelnemende mannen doet een vreemd soort kameraadschap ontstaan, dat al snel gevaarlijke vormen aanneemt.", - "homepage": "" - } - }, - { - "iso_3166_1": "RU", - "iso_639_1": "ru", - "name": "Pусский", - "english_name": "Russian", - "data": { - "title": "Бойцовский клуб", - "overview": "Терзаемый хронической бессоницей и отчаянно пытающийся вырваться из мучительно скучной жизни клерк встречает некоего Тайлера Дардена, харизматического торговца мылом с извращенной философией. Тайлер уверен, что самосовершенствование — удел слабых, а саморазрушение — единственное, ради чего стоит жить.", - "homepage": "" - } - }, - { - "iso_3166_1": "IT", - "iso_639_1": "it", - "name": "Italiano", - "english_name": "Italian", - "data": { - "title": "Fight Club", - "overview": "Un uomo di trent'anni è insofferente su tutto e la notte non riesce più a dormire. In cerca di qualche luogo dove scaricare la propria ansia si mette a frequentare quei corsi dove gruppi di malati gravi si riuniscono e confessano agli altri le rispettive situazioni. Mentre si lascia andare alla commozione e al pianto di fronte a quello che vede, l'uomo fa la conoscenza prima di Marla Singer poi di Tyler Durden. Lei è una ragazza a sua volta alla deriva, incapace di scelte o decisioni; lui è un tipo deciso e vigoroso con un'idea precisa in testa. Tyler fa saltare per aria l'appartamento dell'uomo e i due vanno a vivere insieme in una casa fatiscente. Deciso a coinvolgerlo nel suo progetto, Tyler lo fa entrare in un 'Fight Club', uno stanzone sotterraneo dove ci si riunisce per picchiarsi e in questo modo sentirsi di nuovo vivi...", - "homepage": "" - } - }, - { - "iso_3166_1": "TR", - "iso_639_1": "tr", - "name": "Türkçe", - "english_name": "Turkish", - "data": { - "title": "Dövüş Kulübü", - "overview": "Dövüş kulübünün ilk kuralı, dövüş kulübü hakkında konuşmamaktır. Dövüş kulübünün ikinci kuralı da, kulüp hakkında konuşmamaktır... Filmin baş kişisi, sıradan hayatının girdaplarında bunalımlar geçiren bir sigorta müfettişi olan Jack, Kanserli olmadığı halde, uykusuzluğunu yenmek ve hayatına anlam katmak adına, kanserlilere moral destek sağlayan terapi gruplarına katılır. Orada, Marla Singer adlı bir kızla garip bir yakınlık kurar. Bir iş gezisi dönüşü ise, Tyler Durden adlı egzantrik karakterle tanışır. Durden, Jack'in olmak isteyip de olamadığı adam gibidir. Tyler'ın girişimleriyle bir yeraltı faaliyeti olarak başlayan dövüş kulübü, Jack'e hayatında yepyeni kapılar açacaktır... Ve tabii, bu kapılardan ister istemez Marla geçecektir... Fakat... Tyler Durden gerçekte kimdir?", - "homepage": "" - } - }, - { - "iso_3166_1": "SE", - "iso_639_1": "sv", - "name": "svenska", - "english_name": "Swedish", - "data": { - "title": "Fight Club", - "overview": "Brad Pitt och Edward Norton gör två knockoutbra roller i denna häpnadsväckande och originella thriller med ironisk underton av David Fincher, regissören till Seven. Norton spelar Jack, en kroniskt sömnlös man som desperat försöker fly sitt olidligt tråkiga liv. Men så möter han Tyler Durden (Pitt) en karismatisk tvålförsäljare med en snedvriden filosofi. Tyler menar att självförbättring är för de svaga - det är självdestruktion som verkligen gör livet värt att leva. Inom kort är Jack och Tyler i full gång med att mörbulta varandra på en parkeringsplats. Ett renande slagsmål med en endorfinkick utan dess like. För att introducera andra män i denna enkla lycka av fysiskt våld bildar Jack och Tyler en hemlig \"Fight Club\" som snabbt blir omåttligt populär. Men en hemsk överraskning väntar Jack, en sanning som kommer att förändra allt... Filmen innehåller också kommentarer av David Fincher, Brad Pitt, Edward Norton och Helena Bonham Carter.", - "homepage": "" - } - }, - { - "iso_3166_1": "PL", - "iso_639_1": "pl", - "name": "Polski", - "english_name": "Polish", - "data": { - "title": "Podziemny krąg", - "overview": "Co ty możesz o sobie wiedzieć, jeśli nigdy nie walczyłeś? W tym niezwykłym, pełnym niespodziewanych zwrotów akcji i nie pozbawionym swoistego humoru filmie w reżyserii Davida Finchera (\"Siedem\") oryginalne i dynamiczne kreacje stworzyli Brad Pitt (\"Siedem\") i Edward Norton (\"Lęk pierwotny\"). Jack (Norton) cierpi na chroniczną bezsenność i jest całkowicie znudzony swym dotychczasowym życiem. Do czasu, gdy spotyka charyzmatycznego Tylera Durdena (Pitt) - sprzedawcę mydła o dość pokrętnej filozofii życia... Uważa on bowiem, że samo-doskonalenie jest dla słabeuszy, a to co rzeczywiście sprawia, że warto żyć to samo-destrukcja.", - "homepage": "" - } - }, - { - "iso_3166_1": "CZ", - "iso_639_1": "cs", - "name": "Český", - "english_name": "Czech", - "data": { - "title": "Klub rváčů", - "overview": "Když nemůžete půl roku usnout, celý okolní svět vám začne připadat jako nekonečný sen. Všechno kolem vás je nedokonalou xeroxovou kopií sebe sama. Chodíte do práce, díváte se na televizi a jste vděčni za to, když občas ztratíte vědomí a nevíte o světě. Lidí s podobnými problémy moc není, ale mladý úspěšný úředník, který si říká Jack, je jedním z nich. Má slušnou práci, vydělává slušné peníze, ale trpí nejtěžší formou nespavosti. Na služební cestě se Jack seznámí s Tylerem Durdenem, který mu nabídne příbytek pod podmínkou, že mu vrazí pořádnou ránu. Tato \"výměna názorů\" se oběma zalíbí a brzy vznikne první Klub rváčů. Místo, kde můžou mladí muži, znechucení světem, odložit své starosti a stát se na pár minut zvířaty.", - "homepage": "" - } - }, - { - "iso_3166_1": "IL", - "iso_639_1": "he", - "name": "עִבְרִית", - "english_name": "Hebrew", - "data": { - "title": "מועדון קרב", - "overview": "יאפי הסובל מנדודי שינה ועייפות כרונית מתחיל לבקר בסדנאות שיקום של חולי סרטן, אלכוהוליסטים אנונימיים וארגונים אחרים כדי להגיע להתרגשות בחייו. שם הוא פוגש צעירה משועממת ומתחזה כמוהו, איתה הוא מפתח קשר של אהבה/שנאה. במקביל הוא מתחבר אל צעיר ניהיליסט, המתפרנס מייצור סבון משומן אדם ובז לכל מה שקשור לממסד וחוק. השניים מקימים מועדון אגרוף בלתי חוקי לאנשים המחפשים פורקן מחוץ למסגרת הבורגנית. הקרבות מזרימים אדרנלין לדם, אך גם מובילים להקמתה של כת אנרכיסטית, מיליטנטית ומסוכנת.", - "homepage": "" - } - }, - { - "iso_3166_1": "RS", - "iso_639_1": "sr", - "name": "Srpski", - "english_name": "Serbian", - "data": { - "title": "Борилачки клуб", - "overview": "Усамљени безимени тридесетогодишњак (Едвард Нортон), запослен као кординатор за опозив у ауто-компанији, има проблема са несаницом коју покушава да реши на разне начине. У авиону упознаје Тајлера Дардена (Бред Пит), произвођача и продавца сапуна, са којим ће се спријатељити и основати удружење „Борилачки клуб“ које ће од простог малог друштва где људи после напорног дана долазе да се испразне постати тајни и добро организован анархистички покрет.", - "homepage": "" - } - }, - { - "iso_3166_1": "JP", - "iso_639_1": "ja", - "name": "日本語", - "english_name": "Japanese", - "data": { - "title": "ファイト・クラブ", - "overview": "空虚な生活を送るヤング・エグゼクティブのジャックは、謎の男テイラーに導かれるまま、謎の秘密組織「ファイト・クラブ」のメンバーになる。そこは鍛え抜かれた男達が己の拳のみを武器に闘いを繰り広げる、壮絶で危険な空間だった。", - "homepage": "" - } - }, - { - "iso_3166_1": "GR", - "iso_639_1": "el", - "name": "ελληνικά", - "english_name": "Greek", - "data": { - "title": "", - "overview": "Ένα στέλεχος που πάσχει από αϋπνίες βρίσκει τον αληθινό εαυτό του στα \"Fight Club\", όπου συμμετέχει σε αγώνες πυγμαχίας με γυμνά χέρια. Ο ιδρυτής των \"Fight Club\", ωστόσο, αποδεικνύεται μια επικίνδυνη προσωπικότητα, που επιδίδεται σε πράξεις τρομοκρατίας ενάντια στην καθεστηκυία τάξη.", - "homepage": "" - } - }, - { - "iso_3166_1": "BG", - "iso_639_1": "bg", - "name": "български език", - "english_name": "Bulgarian", - "data": { - "title": "Боен клуб", - "overview": "Разказвачът (Едуард Нортън) е самотник, чийто живот е безцелен низ от незначителни случки. Промяната започва едва след запознанството му с агресивния нихилист Джак (Брад Пит). Той го въвежда в подземния свят на тъмни сделки и машинации. Разказвача се включва като участник в кървави боксови двубои, които не му носят очакваното удовлетворение. Постепенно той осъзнава, че губи контрол над себе си, откривайки, че мачовете са част от зловещ план?", - "homepage": "" - } - }, - { - "iso_3166_1": "KR", - "iso_639_1": "ko", - "name": "한국어/조선말", - "english_name": "Korean", - "data": { - "title": "파이트 클럽", - "overview": "자동차 회사의 리콜 심사관으로 일하는 주인공(에드워드 노튼)은 일상의 무료함과 공허함 속에서 늘 새로운 탈출을 꿈꾼다. 그는 비행기에서 자신을 비누 제조업자라고 소개하는 타일러 더든(브래드 피트)을 만난다. 집에 돌아온 주인공은 아파트가 누군가에 의해 폭파되었음을 발견하고, 타일러에게 도움을 청해 함께 생활하게 된다. 어느 날 밤 타일러는 주인공에게 자신을 때려달라고 부탁한다. 사람은 싸워봐야 진정한 자신을 알 수 있다는 것이다. 결국 이들은 매주 토요일 밤 술집 지하에서 맨주먹으로 격투를 벌이는 파이트 클럽을 결성하기에 이르는데...", - "homepage": "" - } - }, - { - "iso_3166_1": "SK", - "iso_639_1": "sk", - "name": "Slovenčina", - "english_name": "Slovak", - "data": { - "title": "Klub bitkárov", - "overview": "Keď nemôžete pol roka zaspať, celý okolitý svet vám začne pripadať ako nekonečný sen. Všetko okolo vás je nedokonalou xeroxovou kópiou seba samého. Chodíte do práce, pozeráte sa na televíziu a ste vďační za to, keď občas stratíte vedomie a neviete o svete. Ľudí s podobnými problémami moc nie je, ale mladý úspešný úradník, ktorý si hovorí Jack, je jedným z nich. Má slušnú prácu, zarába slušné peniaze, ale trpí najťažšou formou nespavosti. Na služobnej ceste sa Jack zoznámi s Tylerom Durdenom, ktorý mu ponúkne príbytok pod podmienkou, že mu vrazí poriadnu ranu. Táto \"výmena názorov\" sa obom zapáči a čoskoro vznikne prvý Klub bitkárov. Miesto, kde môžu mladí muži, znechutení svetom, odložiť svoje starosti a stať sa na pár minút zvieratami.", - "homepage": "" - } - }, - { - "iso_3166_1": "SA", - "iso_639_1": "ar", - "name": "العربية", - "english_name": "Arabic", - "data": { - "title": "", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "LV", - "iso_639_1": "lv", - "name": "Latviešu", - "english_name": "Latvian", - "data": { - "title": "Cīņas klubs", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "BR", - "iso_639_1": "pt", - "name": "Português", - "english_name": "Portuguese", - "data": { - "title": "Clube da Luta", - "overview": "Jack (Edward Norton) é um executivo jovem, trabalha como investigador de seguros, mora confortavelmente, mas ele está ficando cada vez mais insatisfeito com sua vida medíocre. Para piorar ele está enfrentando uma terrível crise de insônia, até que encontra uma cura inusitada para o sua falta de sono ao frequentar grupos de auto-ajuda. Nesses encontros ele passa a conviver com pessoas problemáticas como a viciada Marla Singer (Helena Bonham Carter) e a conhecer estranhos como Tyler Durden (Brad Pitt). Misterioso e cheio de ideias, Tyler apresenta para Jack um grupo secreto que se encontra para extravasar suas angústias e tensões através de violentos combates corporais.", - "homepage": "" - } - }, - { - "iso_3166_1": "AZ", - "iso_639_1": "az", - "name": "Azərbaycan", - "english_name": "Azerbaijani", - "data": { - "title": "Döyüshçü Klubu", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "ET", - "iso_639_1": "et", - "name": "Eesti", - "english_name": "Estonian", - "data": { - "title": "Kaklusklubi", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "LT", - "iso_639_1": "lt", - "name": "Lietuviškai", - "english_name": "Lithuanian", - "data": { - "title": "Kovos klubas", - "overview": "Nemigos kamuojamas Džekas lankosi įvairiuose nelaimėlių susitikimuose, klausosi jų išpažinčių ir drauge verkia. Jis skraido lėktuvais, kiekvienąkart tikėdamasis katastrofos. Tačiau kartą skrisdamas jis sutinka spalvingą asmenybę. Tailerio gyvenimas nepaprastas - nerūpestingas ir linksmas. Jis kartais linksmai ir nerūpestingai paprašo trenkti jam į galvą... Džekas neatsisako. Todėl tarp draugų užverda rimtos muštynės, ir netrukus jiedu įkuria klubą, kur vaikinai gali muštis iki sąmonės netekimo...", - "homepage": "" - } - }, - { - "iso_3166_1": "MK", - "iso_639_1": "mk", - "name": "", - "english_name": "Macedonian", - "data": { - "title": "Borechki Klub", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "HR", - "iso_639_1": "hr", - "name": "Hrvatski", - "english_name": "Croatian", - "data": { - "title": "Klub boraca", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "TW", - "iso_639_1": "tw", - "name": "", - "english_name": "Twi", - "data": { - "title": "鬥陣俱樂部", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "RO", - "iso_639_1": "ro", - "name": "Română", - "english_name": "Romanian", - "data": { - "title": "Clubul de lupte", - "overview": "Un insomniac gata să cedeze și un vânzător de săpun fără scrupule își canalizează agresiunea masculină într-o formă de terapie nouă și șocantă. Ideea lor se prinde și „cluburi de luptă” se formează în fiecare oraș, până când apare un excentric și pornește o spirală ieșită de sub control către uitare.", - "homepage": "" - } - }, - { - "iso_3166_1": "TW", - "iso_639_1": "zh", - "name": "普通话", - "english_name": "Mandarin", - "data": { - "title": "鬥陣俱樂部", - "overview": "傑克(愛德華諾頓飾演)是一個充滿中年危機意識的人,他非常憎恨自己的生活及一切,再加上他患有嚴重的失眠症,所以他常常參加各種團體諮詢會,只為了能接觸人群。在某一個團體諮詢會上,傑克遇上了一個跟他同樣理由來參加的女煙槍,瑪拉(海倫娜寶漢卡特飾演)。 在一個商務旅行中,傑克在飛機上遇到賣肥皂的商人-泰勒(布萊德彼特飾演),兩人因緣際會地成了好友,並開始創建了「鬥陣俱樂部」:一個讓彼此不戴護具而互毆的聚會,宗旨在發洩情緒。 某夜,泰勒在傑克的公寓中把瑪拉給「上」了,這讓傑克非常忌妒。同時「鬥陣俱樂部」也成了全國性的地下大組織,所有成員都將泰勒視為教父。為了辨識起見,成員還都剃了光頭。 傑克對於「鬥陣俱樂部」的現況及泰勒的瘋狂模樣越來越無法忍受,所以他決定疏遠泰勒。但是,此時的「鬥陣俱樂部」成員卻發起全國性的暴動,他們炸毀了不少建築物......,一切的局勢都是傑克始料未及的,他該如何解決這混亂的現狀?「鬥陣俱樂部」又會瘋狂成什麼樣子? 傑克與泰勒之間的恩恩怨怨會如何了結?", - "homepage": "" - } - }, - { - "iso_3166_1": "MX", - "iso_639_1": "es", - "name": "Español", - "english_name": "Spanish", - "data": { - "title": "El club de la pelea", - "overview": "Un joven hastiado de su gris y monótona vida lucha contra el insomnio. En un viaje en avión conoce a un carismático vendedor de jabón que sostiene una teoría muy particular: el perfeccionismo es cosa de gentes débiles; sólo la autodestrucción hace que la vida merezca la pena. Ambos deciden entonces fundar un club secreto de lucha, donde poder descargar sus frustaciones y su ira, que tendrá un éxito arrollador.", - "homepage": "" - } - }, - { - "iso_3166_1": "SI", - "iso_639_1": "sl", - "name": "Slovenščina", - "english_name": "Slovenian", - "data": { - "title": "Klub golih pesti", - "overview": "Fight Club ni le prispodoba o (samo)destruktivnem begu posameznika iz ujetosti potrošniškega nesmisla, temveč (tudi) parabola upora zoper nezmožnost poistovetenja s prvobitnim moškim/očetovskim principom — odraža se v sprevrženi percepciji psihosocialnih norm in nevrotični konfrontaciji ter boju (dobesedno \"z golimi pestmi\") s samim seboj. Dodajmo še patološke predstave o ljubezenski zvezi in vlogi ženske, metaforični upor maskuliniziranega segmenta potlačene moške dominantnosti, ki v ničemer ne najde prave identifikacije in opore, zato njegov dezorientirani razcepljeni um primanjkljaj kompenzira tako, da ustvarja namišljene alegorične osebnosti — ter izvrstno igralsko zasedbo (Edward Norton, Brad Pitt, Helena Bontham Carter) — pa dobimo enega najbolj izvirnih (in vplivnih) produktov ameriške literature in kinematografije zadnjih desetletij.", - "homepage": "" - } - }, - { - "iso_3166_1": "TH", - "iso_639_1": "th", - "name": "ภาษาไทย", - "english_name": "Thai", - "data": { - "title": "ดิบดวลดิบ", - "overview": "ไทเลอร์ (แบรด พิทท์) กล่าวว่า ทุกสิ่งทุกอย่างที่คุณครอบครองอยู่นั้น ท้ายที่สุดแล้วพวกมันก็จะครอบงำคุณเสีย แต่ถ้าหากคุณสูญสิ้นทุกสิ่งเมื่อใด คุณก็จะกล้าทำอะไรต่อมิอะไรได้อย่างไร้กังวลตลอดไป ซึ่ง Fight Club เปรียบได้กับอิสรภาพแบบนั้น \"", - "homepage": "" - } - }, - { - "iso_3166_1": "US", - "iso_639_1": "en", - "name": "English", - "english_name": "English", - "data": { - "title": "", - "overview": "A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.", - "homepage": "https://www.foxmovies.com/movies/fight-club" - } - }, - { - "iso_3166_1": "ES", - "iso_639_1": "es", - "name": "Español", - "english_name": "Spanish", - "data": { - "title": "El club de la lucha", - "overview": "Un joven sin ilusiones lucha contra su insomnio, consecuencia quizás de su hastío por su gris y rutinaria vida. En un viaje en avión conoce a Tyler Durden, un carismático vendedor de jabón que sostiene una filosofía muy particular: el perfeccionismo es cosa de gentes débiles; en cambio, la autodestrucción es lo único que hace que realmente la vida merezca la pena. Ambos deciden entonces formar un club secreto de lucha donde descargar sus frustaciones y su ira que tendrá un éxito arrollador.", - "homepage": "" - } - }, - { - "iso_3166_1": "FR", - "iso_639_1": "fr", - "name": "Français", - "english_name": "French", - "data": { - "title": "Fight Club", - "overview": "Le narrateur, sans identité précise, vit seul, travaille seul, dort seul, mange seul ses plateaux-repas pour une personne comme beaucoup d'autres personnes seules qui connaissent la misère humaine, morale et sexuelle. Mais un jour il fait la rencontre de Tyler Durden, une sorte d'anarchiste entre gourou et philosophe qui prêche l'amour de son prochain. Ensemble ils vont créer le Fight club, un lieu clandestin ou l'on peut retrouver sa virilité, l'échange et la communication.", - "homepage": "" - } - }, - { - "iso_3166_1": "HU", - "iso_639_1": "hu", - "name": "Magyar", - "english_name": "Hungarian", - "data": { - "title": "Harcosok klubja", - "overview": "Amerika nagyvárosainak pincéiben egy titkos szervezet működik: ha egy éjjel az utca összes nyilvános telefonja összetörik, ők jártak ott; ha egy köztéri szobor óriás fémgömbje legurul talapzatáról, és szétrombol egy gyorsétkezdét, az az ő művük; ha egy elegáns bank parkolójának összes autóját rettentően összerondítják a galambok - az sem véletlen. Vigyáznak a leveleinkre, átveszik telefonüzeneteinket, kísérnek az utcán: és még csak készülnek a végső dobásra: a nagy bummra... Pedig az egészet csak két túlzottan unatkozó jóbarát találta ki: azzal kezdték, hogy rájöttek, nincs jobb stresszoldó, mint ha alaposan megverik egymást. Pofonokat adni jó. Pofonokat kapni jó. Számukra ez a boldog élet szabálya.", - "homepage": "" - } - }, - { - "iso_3166_1": "CN", - "iso_639_1": "zh", - "name": "普通话", - "english_name": "Mandarin", - "data": { - "title": "搏击俱乐部", - "overview": "杰克( 爱德华·诺顿 Edward Norton 饰)是一个充满中年危机意识的人,他非常憎恨自己的生活及一切,再加上他患有严重的失眠症,所以他常常参加各种团体谘询会,只为了能接触人群。在某一个团体谘询会上,杰克遇上了一个跟他同样理由来参加的女烟枪,玛拉(海伦娜·邦汉·卡特 Helena Bonham Carter 饰),在莫名激素的影响下,杰克和玛拉一起逃离了谘询会,两人的情愫因而滋生… 一个偶然的机会,杰克遇到了卖肥皂的商人泰勒(布拉德·皮特 Brad Pitt 饰),一个浑身充满叛逆、残酷和暴烈的痞子英雄,并因为自己公寓失火而住进了泰勒破旧不堪的家中。两人因缘际会地成为了好朋友,并创立了“搏击俱乐部”:一个让人们不戴护具而徒手搏击,宗旨在于发泄情绪的地下组织。", - "homepage": "" - } - }, - { - "iso_3166_1": "DK", - "iso_639_1": "da", - "name": "Dansk", - "english_name": "Danish", - "data": { - "title": "Fight Club", - "overview": "Nortons evner som stjerneskuespiller viser sig i rollen som Jack, en kronisk søvnløs der er desperat efter at slippe ud af sit ulideligt kedelige liv. Da møder han Tyler Durden (Pitt), en karismatisk sæbesælger med en usædvanlig livsfilosofi. Tyler synes at udvikling af én selv er for de svage - det er selvdestruktionen der gør livet værd at leve. Inden længe er Jack og Tyler ved at slå hinanden til plukfisk på en parkeringsplads, en slåskamp der giver det ultimative kick. For at introducere andre mænd for de simple glæder ved fysisk vold, danner Jack og Tyler den hemmelige Fight Club der bliver voldsomt populær. Men en chokerende overraskelse der vender op og ned på alt, venter Jack...", - "homepage": "" - } - }, - { - "iso_3166_1": "FI", - "iso_639_1": "fi", - "name": "suomi", - "english_name": "Finnish", - "data": { - "title": "Fight Club", - "overview": "Jack (Norton) kärsii kroonisesta unettomuudesta ja yrittää epätoivoisesti paeta sietämättömän tylsää elämäänsä. Työmatkalla hän tapaa karismaattisen saippuakauppiaan, Tyler Durdenin (Pitt), jolla on vähintäänkin kieroutunut elämänkatsomus. Tyler uskoo itsetuhon olevan elämän suola. Ennen pitkää Jack ja Tyler purkavat patoutumiaan hakkaamalla toisiaan tohjoksi paikallisbaarin parkkipaikalla, ja huomaavat ankaran nyrkkitappelun tuottavan heille äärimmäisen hyvänolontunteen. Jotta muutkin miehet pääsisivät jyvälle tästä fyysisen väkivallan tuottamasta ilosta, Jack ja Tyler perustavat salaisen tappelukerhon, Fight Clubin, jonka suosio on valtava. Mutta Jackia odottaa järkyttävä yllätys, joka muuttaa kaiken.", - "homepage": "" - } - }, - { - "iso_3166_1": "NO", - "iso_639_1": "no", - "name": "Norsk", - "english_name": "Norwegian", - "data": { - "title": "", - "overview": "Jack kjeder seg til han møter Tyler, som mener selvdestruksjon gjør livet verdt å leve. For å introdusere andre menn for de simple gleder ved fysisk vold, danner de den hemmelige Fight Club som blir voldsomt populær. Med Brad Pitt og Edward Norton.", - "homepage": "" - } - }, - { - "iso_3166_1": "IN", - "iso_639_1": "ml", - "name": "", - "english_name": "Malayalam", - "data": { - "title": "ഫൈറ്റ് ക്ലബ്ബ്", - "overview": "", - "homepage": "" - } - }, - { - "iso_3166_1": "IR", - "iso_639_1": "fa", - "name": "فارسی", - "english_name": "Persian", - "data": { - "title": "باشگاه مشت زنی", - "overview": "«راوی» (نورتن)، جوانی پریشان حال پی می برد که به کمک مشت بازی با دست های برهنه، بیش از هر زمان دیگری احساس زنده بودن می کند. او و «تایلر دردن» (پیت) که به دوستانی صمیمی تبدیل شده اند، هفته ای یک بار با هم ملاقات می کنند تا با هم مشت بازی کنند. در حالی که افراد دیگری هم به باشگاه شان می پیوندند، محفل شان به رغم آن که رازی است بین شرکت کننده هایش، شهرت و محبوبیت یک باشگاه زیرزمینی را پیدا می کند.", - "homepage": "" - } - } - ] -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_upcoming.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_upcoming.json deleted file mode 100644 index b279372a6f2b..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_upcoming.json +++ /dev/null @@ -1,158 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853600.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - } - } - } - }, - "dates": { - "$id": "#root/dates", - "title": "Dates", - "type": "object", - "properties": { - "maximum": { - "$id": "#root/dates/maximum", - "title": "Maximum", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "minimum": { - "$id": "#root/dates/minimum", - "title": "Minimum", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_videos.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_videos.json deleted file mode 100644 index e86a8df6c4ec..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_videos.json +++ /dev/null @@ -1,135 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666853122.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": "null", - "default": null - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "string", - "default": 0 - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": "null", - "default": null - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": "integer", - "default": 0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_watch_providers.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_watch_providers.json deleted file mode 100644 index 6b0e0112bd30..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/movies_watch_providers.json +++ /dev/null @@ -1,5814 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1666860173.json", - "title": "Root", - "type": "object", - "properties": { - "id": { - "$id": "#root/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "object", - "properties": { - "AR": { - "$id": "#root/results/AR", - "title": "Ar", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/AR/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/AR/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AR/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AR/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AR/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AR/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AR/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/AR/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AR/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AR/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AR/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AR/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AR/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/AR/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AR/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AR/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AR/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AR/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AR/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "AT": { - "$id": "#root/results/AT", - "title": "At", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/AT/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/AT/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AT/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AT/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AT/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AT/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AT/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/AT/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AT/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AT/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AT/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AT/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AT/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "AU": { - "$id": "#root/results/AU", - "title": "Au", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/AU/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/AU/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AU/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AU/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AU/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AU/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AU/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/AU/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AU/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AU/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AU/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AU/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AU/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/AU/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/AU/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/AU/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/AU/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/AU/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/AU/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "BE": { - "$id": "#root/results/BE", - "title": "Be", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/BE/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/BE/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/BE/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/BE/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/BE/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/BE/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/BE/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/BE/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/BE/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/BE/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/BE/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/BE/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/BE/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/BE/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/BE/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/BE/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/BE/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/BE/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/BE/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "BR": { - "$id": "#root/results/BR", - "title": "Br", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/BR/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/BR/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/BR/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/BR/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/BR/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/BR/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/BR/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/BR/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/BR/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/BR/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/BR/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/BR/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/BR/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/BR/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/BR/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/BR/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/BR/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/BR/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/BR/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "CA": { - "$id": "#root/results/CA", - "title": "Ca", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/CA/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/CA/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CA/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CA/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CA/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CA/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CA/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/CA/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CA/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CA/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CA/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CA/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CA/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/CA/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CA/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CA/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CA/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CA/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CA/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "CH": { - "$id": "#root/results/CH", - "title": "Ch", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/CH/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/CH/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CH/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CH/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CH/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CH/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CH/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/CH/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CH/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CH/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CH/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CH/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CH/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/CH/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CH/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CH/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CH/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CH/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CH/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "CL": { - "$id": "#root/results/CL", - "title": "Cl", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/CL/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/CL/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CL/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CL/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CL/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CL/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CL/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/CL/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CL/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CL/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CL/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CL/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CL/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/CL/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CL/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CL/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CL/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CL/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CL/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "CO": { - "$id": "#root/results/CO", - "title": "Co", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/CO/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/CO/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CO/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CO/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CO/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CO/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CO/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/CO/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CO/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CO/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CO/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CO/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CO/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/CO/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CO/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CO/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CO/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CO/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CO/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "CZ": { - "$id": "#root/results/CZ", - "title": "Cz", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/CZ/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/CZ/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CZ/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CZ/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CZ/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CZ/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CZ/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/CZ/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CZ/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CZ/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CZ/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CZ/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CZ/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/CZ/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/CZ/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/CZ/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/CZ/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/CZ/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/CZ/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "DE": { - "$id": "#root/results/DE", - "title": "De", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/DE/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/DE/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/DE/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/DE/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/DE/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/DE/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/DE/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/DE/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/DE/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/DE/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/DE/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/DE/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/DE/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "DK": { - "$id": "#root/results/DK", - "title": "Dk", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/DK/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/DK/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/DK/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/DK/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/DK/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/DK/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/DK/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/DK/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/DK/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/DK/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/DK/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/DK/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/DK/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/DK/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/DK/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/DK/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/DK/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/DK/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/DK/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "EC": { - "$id": "#root/results/EC", - "title": "Ec", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/EC/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/EC/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/EC/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/EC/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/EC/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/EC/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/EC/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/EC/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/EC/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/EC/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/EC/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/EC/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/EC/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/EC/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/EC/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/EC/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/EC/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/EC/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/EC/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "EE": { - "$id": "#root/results/EE", - "title": "Ee", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/EE/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/EE/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/EE/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/EE/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/EE/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/EE/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/EE/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/EE/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/EE/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/EE/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/EE/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/EE/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/EE/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/EE/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/EE/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/EE/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/EE/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/EE/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/EE/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "ES": { - "$id": "#root/results/ES", - "title": "Es", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/ES/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/ES/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ES/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ES/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ES/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ES/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ES/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/ES/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ES/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ES/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ES/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ES/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ES/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/ES/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ES/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ES/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ES/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ES/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ES/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "FI": { - "$id": "#root/results/FI", - "title": "Fi", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/FI/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/FI/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/FI/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/FI/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/FI/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/FI/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/FI/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/FI/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/FI/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/FI/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/FI/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/FI/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/FI/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/FI/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/FI/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/FI/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/FI/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/FI/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/FI/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "FR": { - "$id": "#root/results/FR", - "title": "Fr", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/FR/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/FR/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/FR/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/FR/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/FR/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/FR/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/FR/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/FR/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/FR/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/FR/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/FR/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/FR/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/FR/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/FR/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/FR/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/FR/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/FR/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/FR/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/FR/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "GB": { - "$id": "#root/results/GB", - "title": "Gb", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/GB/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/GB/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/GB/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/GB/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/GB/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/GB/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/GB/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/GB/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/GB/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/GB/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/GB/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/GB/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/GB/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/GB/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/GB/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/GB/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/GB/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/GB/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/GB/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "GR": { - "$id": "#root/results/GR", - "title": "Gr", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/GR/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/GR/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/GR/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/GR/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/GR/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/GR/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/GR/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/GR/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/GR/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/GR/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/GR/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/GR/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/GR/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/GR/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/GR/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/GR/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/GR/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/GR/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/GR/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "HU": { - "$id": "#root/results/HU", - "title": "Hu", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/HU/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/HU/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/HU/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/HU/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/HU/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/HU/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/HU/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/HU/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/HU/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/HU/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/HU/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/HU/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/HU/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/HU/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/HU/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/HU/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/HU/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/HU/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/HU/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "ID": { - "$id": "#root/results/ID", - "title": "Id", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/ID/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/ID/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ID/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ID/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ID/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ID/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ID/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/ID/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ID/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ID/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ID/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ID/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ID/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/ID/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ID/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ID/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ID/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ID/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ID/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "IE": { - "$id": "#root/results/IE", - "title": "Ie", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/IE/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/IE/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IE/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IE/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IE/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IE/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IE/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/IE/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IE/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IE/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IE/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IE/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IE/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/IE/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IE/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IE/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IE/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IE/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IE/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "IN": { - "$id": "#root/results/IN", - "title": "In", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/IN/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/IN/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IN/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IN/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IN/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IN/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IN/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/IN/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IN/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IN/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IN/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IN/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IN/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/IN/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IN/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IN/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IN/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IN/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IN/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "IT": { - "$id": "#root/results/IT", - "title": "It", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/IT/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/IT/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IT/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IT/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IT/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IT/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IT/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/IT/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IT/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IT/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IT/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IT/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IT/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/IT/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/IT/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/IT/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/IT/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/IT/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/IT/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "JP": { - "$id": "#root/results/JP", - "title": "Jp", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/JP/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/JP/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/JP/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/JP/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/JP/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/JP/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/JP/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/JP/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/JP/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/JP/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/JP/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/JP/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/JP/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/JP/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/JP/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/JP/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/JP/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/JP/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/JP/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "KR": { - "$id": "#root/results/KR", - "title": "Kr", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/KR/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/KR/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/KR/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/KR/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/KR/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/KR/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/KR/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/KR/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/KR/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/KR/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/KR/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/KR/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/KR/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/KR/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/KR/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/KR/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/KR/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/KR/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/KR/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "LT": { - "$id": "#root/results/LT", - "title": "Lt", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/LT/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/LT/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/LT/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/LT/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/LT/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/LT/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/LT/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/LT/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/LT/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/LT/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/LT/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/LT/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/LT/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "LV": { - "$id": "#root/results/LV", - "title": "Lv", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/LV/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/LV/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/LV/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/LV/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/LV/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/LV/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/LV/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/LV/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/LV/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/LV/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/LV/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/LV/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/LV/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "MX": { - "$id": "#root/results/MX", - "title": "Mx", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/MX/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/MX/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/MX/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/MX/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/MX/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/MX/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/MX/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/MX/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/MX/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/MX/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/MX/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/MX/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/MX/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/MX/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/MX/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/MX/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/MX/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/MX/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/MX/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "MY": { - "$id": "#root/results/MY", - "title": "My", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/MY/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/MY/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/MY/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/MY/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/MY/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/MY/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/MY/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/MY/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/MY/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/MY/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/MY/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/MY/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/MY/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/MY/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/MY/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/MY/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/MY/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/MY/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/MY/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "NL": { - "$id": "#root/results/NL", - "title": "Nl", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/NL/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/NL/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NL/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NL/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NL/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NL/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NL/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/NL/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NL/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NL/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NL/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NL/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NL/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/NL/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NL/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NL/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NL/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NL/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NL/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "NO": { - "$id": "#root/results/NO", - "title": "No", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/NO/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/NO/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NO/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NO/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NO/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NO/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NO/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/NO/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NO/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NO/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NO/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NO/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NO/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/NO/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NO/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NO/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NO/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NO/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NO/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "NZ": { - "$id": "#root/results/NZ", - "title": "Nz", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/NZ/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/NZ/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NZ/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NZ/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NZ/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NZ/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NZ/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/NZ/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NZ/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NZ/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NZ/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NZ/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NZ/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/NZ/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/NZ/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/NZ/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/NZ/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/NZ/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/NZ/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "PE": { - "$id": "#root/results/PE", - "title": "Pe", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/PE/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/PE/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PE/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PE/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PE/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PE/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PE/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/PE/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PE/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PE/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PE/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PE/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PE/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/PE/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PE/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PE/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PE/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PE/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PE/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "PH": { - "$id": "#root/results/PH", - "title": "Ph", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/PH/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/PH/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PH/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PH/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PH/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PH/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PH/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/PH/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PH/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PH/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PH/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PH/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PH/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/PH/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PH/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PH/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PH/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PH/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PH/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "PL": { - "$id": "#root/results/PL", - "title": "Pl", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/PL/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/PL/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PL/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PL/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PL/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PL/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PL/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/PL/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PL/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PL/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PL/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PL/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PL/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/PL/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PL/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PL/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PL/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PL/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PL/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "PT": { - "$id": "#root/results/PT", - "title": "Pt", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/PT/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/PT/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PT/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PT/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PT/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PT/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PT/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/PT/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PT/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PT/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PT/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PT/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PT/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/PT/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/PT/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/PT/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/PT/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/PT/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/PT/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "RO": { - "$id": "#root/results/RO", - "title": "Ro", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/RO/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/RO/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/RO/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/RO/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/RO/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/RO/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/RO/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "RU": { - "$id": "#root/results/RU", - "title": "Ru", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/RU/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/RU/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/RU/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/RU/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/RU/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/RU/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/RU/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/RU/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/RU/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/RU/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/RU/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/RU/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/RU/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/RU/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/RU/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/RU/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/RU/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/RU/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/RU/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "SE": { - "$id": "#root/results/SE", - "title": "Se", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/SE/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/SE/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/SE/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/SE/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/SE/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/SE/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/SE/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/SE/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/SE/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/SE/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/SE/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/SE/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/SE/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/SE/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/SE/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/SE/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/SE/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/SE/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/SE/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "SG": { - "$id": "#root/results/SG", - "title": "Sg", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/SG/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/SG/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/SG/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/SG/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/SG/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/SG/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/SG/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/SG/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/SG/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/SG/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/SG/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/SG/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/SG/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/SG/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/SG/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/SG/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/SG/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/SG/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/SG/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "TH": { - "$id": "#root/results/TH", - "title": "Th", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/TH/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/TH/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/TH/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/TH/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/TH/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/TH/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/TH/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/TH/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/TH/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/TH/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/TH/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/TH/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/TH/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/TH/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/TH/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/TH/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/TH/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/TH/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/TH/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "TR": { - "$id": "#root/results/TR", - "title": "Tr", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/TR/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "buy": { - "$id": "#root/results/TR/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/TR/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/TR/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/TR/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/TR/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/TR/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/TR/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/TR/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/TR/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/TR/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/TR/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/TR/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/TR/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/TR/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/TR/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/TR/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/TR/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/TR/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "US": { - "$id": "#root/results/US", - "title": "Us", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/US/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/US/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/US/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/US/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/US/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/US/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/US/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/US/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/US/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/US/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/US/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/US/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/US/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/US/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/US/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/US/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/US/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/US/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/US/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "VE": { - "$id": "#root/results/VE", - "title": "Ve", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/VE/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "flatrate": { - "$id": "#root/results/VE/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/VE/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/VE/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/VE/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/VE/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/VE/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "rent": { - "$id": "#root/results/VE/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/VE/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/VE/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/VE/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/VE/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/VE/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/VE/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/VE/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/VE/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/VE/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/VE/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/VE/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - }, - "ZA": { - "$id": "#root/results/ZA", - "title": "Za", - "type": "object", - "properties": { - "link": { - "$id": "#root/results/ZA/link", - "title": "Link", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "rent": { - "$id": "#root/results/ZA/rent", - "title": "Rent", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ZA/rent/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ZA/rent/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ZA/rent/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ZA/rent/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ZA/rent/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "buy": { - "$id": "#root/results/ZA/buy", - "title": "Buy", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ZA/buy/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ZA/buy/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ZA/buy/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ZA/buy/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ZA/buy/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "flatrate": { - "$id": "#root/results/ZA/flatrate", - "title": "Flatrate", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/ZA/flatrate/items", - "title": "Items", - "type": "object", - "properties": { - "display_priority": { - "$id": "#root/results/ZA/flatrate/items/display_priority", - "title": "Display_priority", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/ZA/flatrate/items/logo_path", - "title": "Logo_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "provider_id": { - "$id": "#root/results/ZA/flatrate/items/provider_id", - "title": "Provider_id", - "type": "integer", - "default": 0 - }, - "provider_name": { - "$id": "#root/results/ZA/flatrate/items/provider_name", - "title": "Provider_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - } - } - } - } - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_collections.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_collections.json deleted file mode 100644 index c3178425cbc8..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_collections.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667209129.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "name": { - "$id": "#root/results/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_companies.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_companies.json deleted file mode 100644 index bdf989a693cd..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_companies.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667208961.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "logo_path": { - "$id": "#root/results/items/logo_path", - "title": "Logo_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "name": { - "$id": "#root/results/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_keywords.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_keywords.json deleted file mode 100644 index ce82950a74bc..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_keywords.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667209167.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "name": { - "$id": "#root/results/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_movies.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_movies.json deleted file mode 100644 index bba41033bc8d..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_movies.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667209325.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - } - } - } - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_multi.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_multi.json deleted file mode 100644 index 2bfcc5128f16..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_multi.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667210689.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": ["string", "null"], - "default": null - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": ["number", "integer"], - "default": 0 - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*" - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": ["string", "null"], - "default": null - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": ["number", "integer"], - "default": 0 - }, - "media_type": { - "$id": "#root/results/items/media_type", - "title": "Media_type", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "first_air_date": { - "$id": "#root/results/items/first_air_date", - "title": "First_air_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "origin_country": { - "$id": "#root/results/items/origin_country", - "title": "Origin_country", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/origin_country/items", - "title": "Items", - "type": "string", - "default": "", - "pattern": "^.*$" - } - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [] - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "name": { - "$id": "#root/results/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_name": { - "$id": "#root/results/items/original_name", - "title": "Original_name", - "type": "string", - "default": "", - "pattern": "^.*$" - } - } - } - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_people.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_people.json deleted file mode 100644 index 62f31d32864d..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_people.json +++ /dev/null @@ -1,189 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667210990.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "profile_path": { - "$id": "#root/results/items/profile_path", - "title": "Profile_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "known_for": { - "$id": "#root/results/items/known_for", - "title": "Known_for", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/known_for/items", - "title": "Items", - "type": "object", - "properties": { - "poster_path": { - "$id": "#root/results/items/known_for/items/poster_path", - "title": "Poster_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "adult": { - "$id": "#root/results/items/known_for/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "overview": { - "$id": "#root/results/items/known_for/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*" - }, - "release_date": { - "$id": "#root/results/items/known_for/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_title": { - "$id": "#root/results/items/known_for/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "genre_ids": { - "$id": "#root/results/items/known_for/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/known_for/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/known_for/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "media_type": { - "$id": "#root/results/items/known_for/items/media_type", - "title": "Media_type", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_language": { - "$id": "#root/results/items/known_for/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/results/items/known_for/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "backdrop_path": { - "$id": "#root/results/items/known_for/items/backdrop_path", - "title": "Backdrop_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/results/items/known_for/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "vote_count": { - "$id": "#root/results/items/known_for/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "video": { - "$id": "#root/results/items/known_for/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/known_for/items/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - } - } - } - }, - "name": { - "$id": "#root/results/items/name", - "title": "Name", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - } - } - } - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_tv_shows.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_tv_shows.json deleted file mode 100644 index a45e1ff8588d..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/search_tv_shows.json +++ /dev/null @@ -1,138 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667666886.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "first_air_date": { - "$id": "#root/results/items/first_air_date", - "title": "First_air_date", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "origin_country": { - "$id": "#root/results/items/origin_country", - "title": "Origin_country", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/origin_country/items", - "title": "Items", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - } - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "name": { - "$id": "#root/results/items/name", - "title": "Name", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - }, - "original_name": { - "$id": "#root/results/items/original_name", - "title": "Original_name", - "type": ["null", "string"], - "default": "", - "pattern": "^.*$" - } - } - } - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/trending.json b/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/trending.json deleted file mode 100644 index e895925782c7..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/schemas/trending.json +++ /dev/null @@ -1,137 +0,0 @@ -{ - "definitions": {}, - "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://example.com/object1667211672.json", - "title": "Root", - "type": "object", - "properties": { - "page": { - "$id": "#root/page", - "title": "Page", - "type": "integer", - "default": 0 - }, - "results": { - "$id": "#root/results", - "title": "Results", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items", - "title": "Items", - "type": "object", - "properties": { - "adult": { - "$id": "#root/results/items/adult", - "title": "Adult", - "type": "boolean", - "default": true - }, - "backdrop_path": { - "$id": "#root/results/items/backdrop_path", - "title": "Backdrop_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "genre_ids": { - "$id": "#root/results/items/genre_ids", - "title": "Genre_ids", - "type": "array", - "default": [], - "items": { - "$id": "#root/results/items/genre_ids/items", - "title": "Items", - "type": "integer", - "default": 0 - } - }, - "id": { - "$id": "#root/results/items/id", - "title": "Id", - "type": "integer", - "default": 0 - }, - "original_language": { - "$id": "#root/results/items/original_language", - "title": "Original_language", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "original_title": { - "$id": "#root/results/items/original_title", - "title": "Original_title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "overview": { - "$id": "#root/results/items/overview", - "title": "Overview", - "type": "string", - "default": "", - "pattern": "^.*" - }, - "poster_path": { - "$id": "#root/results/items/poster_path", - "title": "Poster_path", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "release_date": { - "$id": "#root/results/items/release_date", - "title": "Release_date", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "title": { - "$id": "#root/results/items/title", - "title": "Title", - "type": "string", - "default": "", - "pattern": "^.*$" - }, - "video": { - "$id": "#root/results/items/video", - "title": "Video", - "type": "boolean", - "default": true - }, - "vote_average": { - "$id": "#root/results/items/vote_average", - "title": "Vote_average", - "type": "number", - "default": 0.0 - }, - "vote_count": { - "$id": "#root/results/items/vote_count", - "title": "Vote_count", - "type": "integer", - "default": 0 - }, - "popularity": { - "$id": "#root/results/items/popularity", - "title": "Popularity", - "type": "number", - "default": 0.0 - } - } - } - }, - "total_pages": { - "$id": "#root/total_pages", - "title": "Total_pages", - "type": "integer", - "default": 0 - }, - "total_results": { - "$id": "#root/total_results", - "title": "Total_results", - "type": "integer", - "default": 0 - } - } -} diff --git a/airbyte-integrations/connectors/source-tmdb/source_tmdb/spec.yaml b/airbyte-integrations/connectors/source-tmdb/source_tmdb/spec.yaml deleted file mode 100644 index 0b99b10e10cb..000000000000 --- a/airbyte-integrations/connectors/source-tmdb/source_tmdb/spec.yaml +++ /dev/null @@ -1,38 +0,0 @@ -documentationUrl: https://docs.airbyte.com/integrations/sources/tmdb -connectionSpecification: - $schema: http://json-schema.org/draft-07/schema# - title: Tmdb Spec - type: object - required: - - api_key - - movie_id - - query - - language - additionalProperties: true - properties: - api_key: - title: Unique key for establishing connection - type: string - description: API Key from tmdb account - airbyte_secret: true - movie_id: - title: Movie ID for targeting movies - type: string - description: Target movie ID, Mandate for movie streams (Example is 550) - examples: - - 550 - - 560 - query: - title: Query for search streams - type: string - description: Target movie ID, Mandate for search streams - examples: - - Marvel - - DC - language: - title: Language for filtering - type: string - description: Language expressed in ISO 639-1 scheme, Mandate for required streams (Example en-US) - examples: - - en-US - - en-UK diff --git a/docs/integrations/sources/tmdb-migrations.md b/docs/integrations/sources/tmdb-migrations.md new file mode 100644 index 000000000000..4a1fa5ed05d8 --- /dev/null +++ b/docs/integrations/sources/tmdb-migrations.md @@ -0,0 +1,8 @@ +# TMDb Migration Guide + +## Upgrading to 1.0.0 + +Version 1.0.0 has a schema change. + +The search_people schema has been changed it's 'type' in schema['properties']['results']['items']['properties']['known_for']['items']['properties']['poster_path'] to be optionally empty +The search_tv_shows schema has been changed it's pattern in schema['properties']['results']['items']['properties']['overview'] to contain both strings and spaces. \ No newline at end of file diff --git a/docs/integrations/sources/tmdb.md b/docs/integrations/sources/tmdb.md index 91b5498b7a4c..324d9f73fde1 100644 --- a/docs/integrations/sources/tmdb.md +++ b/docs/integrations/sources/tmdb.md @@ -94,15 +94,16 @@ TMDb's [API reference](https://developers.themoviedb.org/3/getting-started/intro
Expand to review -| Version | Date | Pull Request | Subject | -| :------ | :--------- | :------------------------------------------------------ | :------------- | +| Version | Date | Pull Request | Subject | +| :------ | :--------- | :------------------------------------------------------- | :------------- | +| 1.0.0 | 2024-07-15 | [39109](https://github.com/airbytehq/airbyte/pull/39109) | Make compatible with builder, fix schema | | 0.1.7 | 2024-07-13 | [41511](https://github.com/airbytehq/airbyte/pull/41511) | Update dependencies | | 0.1.6 | 2024-07-09 | [41181](https://github.com/airbytehq/airbyte/pull/41181) | Update dependencies | | 0.1.5 | 2024-07-06 | [40959](https://github.com/airbytehq/airbyte/pull/40959) | Update dependencies | | 0.1.4 | 2024-06-26 | [40273](https://github.com/airbytehq/airbyte/pull/40273) | Update dependencies | | 0.1.3 | 2024-06-22 | [40095](https://github.com/airbytehq/airbyte/pull/40095) | Update dependencies | -| 0.1.2 | 2024-06-06 | [39305](https://github.com/airbytehq/airbyte/pull/39305) | [autopull] Upgrade base image to v1.2.2 | -| 0.1.1 | 2024-05-21 | [38496](https://github.com/airbytehq/airbyte/pull/38496) | [autopull] base image + poetry + up_to_date | -| 0.1.0 | 2022-10-27 | [Init](https://github.com/airbytehq/airbyte/pull/18561) | Initial commit | +| 0.1.2 | 2024-06-06 | [39305](https://github.com/airbytehq/airbyte/pull/39305) | [autopull] Upgrade base image to v1.2.2 | +| 0.1.1 | 2024-05-21 | [38496](https://github.com/airbytehq/airbyte/pull/38496) | [autopull] base image + poetry + up_to_date | +| 0.1.0 | 2022-10-27 | [Init](https://github.com/airbytehq/airbyte/pull/18561) | Initial commit |