getProcedureStep
Retrieve specific step details from a procedure using procedure and step IDs. Enables AI systems to access structured eRegulations data for accurate administrative procedure queries.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
procedureId | Yes | ID of the procedure | |
stepId | Yes | ID of the step within the procedure |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"procedureId": {
"description": "ID of the procedure",
"type": "number"
},
"stepId": {
"description": "ID of the step within the procedure",
"type": "number"
}
},
"required": [
"procedureId",
"stepId"
],
"type": "object"
}