{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ValidationOptionsForCreate", "title": "ValidationOptionsForCreate", "additionalProperties": false, "description": "The level of validation to return from the API. If no values are provided, the default would return `WARNING` and `ERROR` level validation results.", "properties": { "levels": { "items": { "enum": [ "WARNING", "ERROR" ], "type": "string" }, "maxItems": 2, "type": "array" } }, "type": "object" }