{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ScheduledRequestSubmit", "title": "ScheduledRequestSubmit", "type": "object", "required": [ "jobDefinitionName" ], "properties": { "jobDefinitionName": { "type": "string" }, "jobPackageName": { "type": "string" }, "submissionNotes": { "type": "string" }, "parameterList": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } } } }