Sean Marlow
Sean Marlow
Writing tests against SLES11 which uses SysV Init I found two issues with the service module: is_enabled fails because the service files are in a different directory (/etc/init.d/rc?.d/ instead of...
If a discriminator is set for a list of oneOf schemas only the matching schema should be validated against and therefore useful errors can be provided: schema ``` requestBody: content:...
If you have a list oneOf types validator defaults them to object and fails: schema ``` utctime: oneOf: - type: string enum: [always, now] - type: string format: date-time ```...
If you have multiple types (oneOf) of items in an array only the first is validated against: schema ``` conditions: type: array items: oneOf: - type: object required: - image...