{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/VerificationParameter", "title": "VerificationParameter", "properties": { "file_types": { "$ref": "#/components/schemas/property_VerificationParameter_file_types" }, "id": { "type": "string" }, "is_required": { "type": "boolean" }, "name": { "type": "string" }, "options": { "$ref": "#/components/schemas/property_VerificationParameter_options" }, "public_question": { "type": "string" }, "type": { "enum": [ "TEXT", "NUMBER", "MULTIPLE_CHOICE", "MULTIPLE_SELECT", "DATE", "FILE" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "valid_regions": { "$ref": "#/components/schemas/property_VerificationParameter_valid_regions" } }, "required": [ "name" ], "type": "object" }