Closed Sancus closed 1 month ago
Right now, the YAML files appear to need every possible property specified, including empty lists for the include/exclude filters.
https://github.com/thunderbird/thunderbird-notifications/blob/main/yaml/example.yaml#L13
This makes the YAML difficult to edit and read, instead the conversion script should add empty values when outputting JSON for any properties that are required in the schema but aren't used in the YAML source.
Solved by using schema generated from pydantic model (#19). (PR coming shortly)
Closed by https://github.com/thunderbird/thunderbird-notifications/pull/28
Right now, the YAML files appear to need every possible property specified, including empty lists for the include/exclude filters.
https://github.com/thunderbird/thunderbird-notifications/blob/main/yaml/example.yaml#L13
This makes the YAML difficult to edit and read, instead the conversion script should add empty values when outputting JSON for any properties that are required in the schema but aren't used in the YAML source.