Is there any good command-line tooling available to verify that a #JSONSchema, #YAMLSchema or an #OpenAPI spec is consistent? All I can find is tooling that verifies data against a schema or OpenAPI spec, but I want a CI check which ensures that the schema or OpenAPI spec in itself is consistent, e.g. that all referenced components exist.
Next Question: assume this scanner also supports a YAML configuration file. How would you prefer to configure which workers are ran by default?
A. Explicitly listing each worker name as a YAML Array.
worker_set:
- foo
- bar
- baz
B. Selectively enabling/disabling workers, in addition to the default set of core workers, as a YAML Hash:
worker_set:
foo: true
bar: false
baz: true
C. Both