json_protocol
Creates, updates, deletes, gets or lists a json_protocol resource.
Overview
| Name | json_protocol |
| Type | Resource |
| Id | cloudflare.browser_rendering.json_protocol |
Fields
The following fields are returned by SELECT queries:
- list
Chrome DevTools Protocol schema.
| Name | Datatype | Description |
|---|---|---|
commands | array | Available commands. |
dependencies | array | Domain dependencies. |
domain | string | Domain name. |
events | array | Available events. |
experimental | boolean | Whether this domain is experimental. |
types | array | Type definitions. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | account_id, session_id | Returns 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The Cloudflare account ID. |
session_id | string | The session ID. |
SELECT examples
- list
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
;