Skip to main content

json_protocol

Creates, updates, deletes, gets or lists a json_protocol resource.

Overview

Namejson_protocol
TypeResource
Idcloudflare.browser_rendering.json_protocol

Fields

The following fields are returned by SELECT queries:

Chrome DevTools Protocol schema.

NameDatatypeDescription
commandsarrayAvailable commands.
dependenciesarrayDomain dependencies.
domainstringDomain name.
eventsarrayAvailable events.
experimentalbooleanWhether this domain is experimental.
typesarrayType definitions.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectaccount_id, session_idReturns the complete Chrome DevTools Protocol schema including all domains, commands, events, and types. This schema describes the entire CDP API surface.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
session_idstringThe session ID.

SELECT examples

Returns the complete Chrome DevTools Protocol schema including all domains, commands, events, and types. This schema describes the entire CDP API surface.

SELECT
commands,
dependencies,
domain,
events,
experimental,
types
FROM cloudflare.browser_rendering.json_protocol
WHERE account_id = '{{ account_id }}' -- required
AND session_id = '{{ session_id }}' -- required
;