swf-runtime 1.0.0-alpha9

Runtime engine for Serverless Workflow DSL — execute, validate, and orchestrate workflows
Documentation
document:
  dsl: 1.0.0-alpha5
  namespace: test
  name: call-http-shorthand-endpoint
  version: '0.1.0'
do:
  - tryGetPet:
      try:
      - getPet:
          call: http
          with:
            headers:
              content-type: application/json
            method: get
            endpoint: ${ "http://localhost:9876/pets/\(.petId)" }
      catch:
        errors:
          with:
            type: https://serverlessworkflow.io/spec/1.0.0/errors/communication
            status: 404