OutputDeserializableTo Configurations Yaml View¶
TL;DR — Copy this schema-derived YAML scaffold, replace placeholder values, and use the table view for field descriptions.
When to use¶
Use this page when you need a starting YAML shape for this hook configuration and want all generated fields in one block.
YAML configuration¶
The scaffold follows the generated schema order. String placeholders are quoted, optional lists render as [], and numeric placeholders use schema minimums when they exist.
Minimal example¶
AssertionConfiguration:
OutputName: 'value'
Deserialize:
Deserializer: 'Binary'
SpecificType:
TypeFullName: 'value'
AssemblyName: 'value'
Realistic example¶
Start with the minimal scaffold, replace placeholder values with project values, and combine it with the surrounding hook entry shown on the overview page.
Edge cases¶
- Optional arrays are emitted as
[]; add entries only when the hook needs that collection. - Placeholder-style strings are quoted so YAML parsers keep them as scalar values.