Component schema hygiene
- Last Updated: February 11, 2026
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
Component schema hygiene is the practice of defining schemas in a structured, explicit, and reusable way. Poor schema hygiene can lead to ambiguous documentation and unpredictable tooling behavior, which leads to reduced maintainability. This topic explains best practices for maintaining clean and consistent component schemas in API specifications.
Common anti-patterns and preferred approaches
The following table lists common anti-patterns, their preferred alternatives, and the
rationale for adopting best practices:
| Anti-pattern | Preferred approach | Rationale |
|---|---|---|
Implicit object {} with no type |
Use type: object with
properties and
title |
Improves clarity and supports downstream code generation |
| Missing property types | Define explicit types such as type:
string |
Prevents fallback to generic types |
| Nested anonymous objects | Extract to a named component with a
title |
Promotes reuse and cleaner documentation |
Overuse of additionalProperties:
true |
Use explicit properties or constrained maps | Avoids “anything goes” behavior in tooling |
| No examples | Add example: or examples:
with realistic payloads |
Helps agents and developers understand usage |
Provide examples for complex objects
Always include at least one of the following for complex objects:
exampleexamplesx-*extension with realistic payload snippets
Note: Examples improve reasoning for automated agents and help developers
understand expected data structures.