From 31e3a51800b7c37166725216f16a85f3b00c92c0 Mon Sep 17 00:00:00 2001 From: Tobias Petry Date: Mon, 26 Aug 2024 21:12:43 +0200 Subject: [PATCH] Add mysqlexplain provider (#765) --- providers/mysqlexplain.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 providers/mysqlexplain.yml diff --git a/providers/mysqlexplain.yml b/providers/mysqlexplain.yml new file mode 100644 index 00000000..d3309cf9 --- /dev/null +++ b/providers/mysqlexplain.yml @@ -0,0 +1,15 @@ +--- +- provider_name: MySQL Visual Explain + provider_url: https://mysqlexplain.com + endpoints: + - schemes: + - https://mysqlexplain.com/explain/* + - https://embed.mysqlexplain.com/explain/* + url: https://api.mysqlexplain.com/v2/oembed.json + example_urls: + - https://api.mysqlexplain.com/v2/oembed.json?url=https%3A%2F%2Fmysqlexplain.com%2Fexplain%2F01j2ef1bj7efr97m5v140rnxyz + formats: + - json + discovery: true + notes: Provider only supports the 'rich' type. +...