ok figured it out invoke target with JSONL file as --input <FILE>
The file Format Should be SCHEMA record and then the data record
{"type": "SCHEMA", "stream": "users", "key_properties": ["id"], "schema": {"required": ["id"], "type": "object", "properties": {"id": {"type": "integer"}}}}
{"type": "RECORD", "stream": "users", "record": {"id": 1, "name": "Chris"}}
{"type": "RECORD", "stream": "users", "record": {"id": 2, "name": "Mike"}}
Find more details on Messages here -- >
https://hub.meltano.com/singer/spec/#messages