get_resource_action_schema
Retrieve the JSON Schema for a specific resource action to define and validate data structures in blockchain queries using the Seitrace API.
Instructions
Get the JSON Schema for a specific resource action.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | ||
resource | Yes |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"description": "Provide resource and action.",
"properties": {
"action": {
"type": "string"
},
"resource": {
"type": "string"
}
},
"required": [
"resource",
"action"
],
"type": "object"
}