// Test inputs for bytes schema validation export const bytesSchemaInputs = [ { name: 'bytes-valid-basic', lexicon: { lexicon: 1, id: 'test.bytes.basic', defs: { main: { type: 'bytes', }, }, }, }, { name: 'bytes-valid-with-constraints', lexicon: { lexicon: 1, id: 'test.bytes.constraints', defs: { main: { type: 'bytes', minLength: 10, maxLength: 20, }, }, }, }, { name: 'bytes-valid-with-description', lexicon: { lexicon: 1, id: 'test.bytes.description', defs: { main: { type: 'bytes', description: 'Binary data', }, }, }, }, { name: 'bytes-invalid-max-less-than-min', lexicon: { lexicon: 1, id: 'test.bytes.badlength', defs: { main: { type: 'bytes', minLength: 20, maxLength: 10, }, }, }, }, { name: 'bytes-invalid-negative-min', lexicon: { lexicon: 1, id: 'test.bytes.negmin', defs: { main: { type: 'bytes', minLength: -1, }, }, }, }, { name: 'bytes-invalid-negative-max', lexicon: { lexicon: 1, id: 'test.bytes.negmax', defs: { main: { type: 'bytes', maxLength: -5, }, }, }, }, ];