Closed OlehPalanskyi closed 3 months ago
Hi, I saw that I made some mistakes when adding field types to the schema.yml. I fixed and tested it.
Now it works well
indexer_alert_config: type: object minProperties: 1 patternProperties: "^.+$": oneOf: - type: [boolean, string, integer] - type: array items: type: object properties: name: { type: string , minLength: 1 } value: { type: [boolean, string, integer] , minLength: 1 } "^.+$": { type: [boolean, string, integer], minLength: 1 } - type: object properties: "^.+$": { type: [boolean, string, integer], minLength: 1 }
indexer_alert_config: rule: - name: true (boolean type) value: name - name: index value: index - name: query value: filter
indexer_alert_config: rule: - name: name (string type) value: name - name: index value: index - name: query value: filter
Sorry about that
make test-docker
Thanks for the correction. Please add the changelog entry, conforming to the required pattern shown in the older, existing changelog entries.
Description
Hi, I saw that I made some mistakes when adding field types to the schema.yml. I fixed and tested it.
Now it works well
Sorry about that
Checklist
make test-docker
with my changes.