rules_examples
Fetch ASD-STE100 rule content and examples, filtering by rule ID, section, category, or content type. Use pagination to navigate large result sets and locate relevant compliance examples.
Instructions
Return content items across rules, optionally scoped and filtered.
Parameters
id_:
When given, only consider the rule with this exact id
(case-insensitive).
section:
When given, only consider rules in this exact section
(case-insensitive).
category:
When given, only consider rules in this exact category
(case-insensitive).
kind:
When given, only return content items of this type (e.g.
"ste_example").
max_results:
The maximum number of matching content items to return (default 25).
offset:
The number of matching content items to skip before returning
results, for pagination (default 0).
Returns
RulesExamplesResult
results holds the (possibly empty) page of matching content
items, in document order, after applying offset and
max_results. total is the full match count before
pagination, and truncated tells the caller whether more
content items exist beyond this page. Unfiltered, the ruleset
can hold well over a thousand content items, so pagination
matters here even though the ruleset itself only has a few
dozen rules.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id_ | No | Only consider the rule with this exact id (case-insensitive). | |
| kind | No | Only return content items of this exact type, e.g. 'ste_example'. | |
| offset | No | The number of matching entries to skip before returning results, for pagination. | |
| section | No | Only consider rules in this exact section (case-insensitive). | |
| category | No | Only consider rules in this exact category (case-insensitive). | |
| max_results | No | The maximum number of matching entries to return. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| total | Yes | ||
| offset | Yes | ||
| results | No | ||
| truncated | Yes | ||
| max_results | Yes |