You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
schema.AllOf.Add(new JSchema
{Description="Path is required when using the Custom step type.",If=new JSchema
{Properties={{"StepType",new JSchema {Const= Configuration.StepType.Custom.ToString()}}},Required={"StepType"}},Then=new JSchema
{Required={"Path"}}});
Produces
"allOf": [
{
"description": "Path is required when using the Custom step type."
}
]
This ultimately was my mistake because I had chosen Draft 06 version instead of the required 07.
Knowing that would it be possible to have an exception thrown when If, Else or Then are not null and Draft 07 is not in use?
The text was updated successfully, but these errors were encountered:
Using 3.0.16
Produces
This ultimately was my mistake because I had chosen Draft 06 version instead of the required 07.
Knowing that would it be possible to have an exception thrown when If, Else or Then are not null and Draft 07 is not in use?
The text was updated successfully, but these errors were encountered: