Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 665 Bytes

meta_spec.md

File metadata and controls

24 lines (16 loc) · 665 Bytes

Meta spec

Meta properties of the entire job. The metaspec are root level key values and aren't contained in a json object.

The schema of the metaSpec is as shown below. Bold implies that the property is required.

  • name(String): Unique name (per user) of the adaptor. No spaces.
  • schedulerPattern(String): Cron like pattern for long running jobs. More information on constructing the pattern can be found from here

Example:

{
    "name": "myAdaptor",
    "schedulePattern": "0 * * * * ?"
    
    "inputSpec": { },
    "parseSpec": { }
}