{
  "openapi" : "3.0.3",
  "info" : {
    "title" : "Juel ReST API",
    "license" : {
      "name" : "© null-null null. All rights reserved"
    },
    "version" : "7.2.0-alpha.7"
  },
  "servers" : [ {
    "url" : "/"
  } ],
  "tags" : [ {
    "name" : "juel-expression-resolver-controller",
    "description" : "Juel Expression Resolver Controller"
  } ],
  "paths" : {
    "/v1/juel" : {
      "post" : {
        "tags" : [ "juel-expression-resolver-controller" ],
        "summary" : "resolveExpression",
        "operationId" : "resolveExpression",
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "type" : "object"
              }
            }
          }
        },
        "responses" : {
          "200" : {
            "description" : "OK",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "object"
                }
              }
            }
          },
          "201" : {
            "description" : "Created"
          },
          "401" : {
            "description" : "Unauthorized"
          },
          "403" : {
            "description" : "Forbidden"
          },
          "404" : {
            "description" : "Not Found"
          }
        },
        "security" : [ {
          "oauth" : [ ]
        } ]
      }
    }
  },
  "components" : {
    "securitySchemes" : {
      "oauth" : {
        "type" : "oauth2",
        "description" : "Authorizing with SSO",
        "flows" : {
          "implicit" : {
            "authorizationUrl" : "http://activiti-keycloak:8180/auth/realms/activiti/protocol/openid-connect/auth",
            "scopes" : { }
          }
        }
      }
    }
  },
  "extensions" : {
    "service-url-prefix" : ""
  }
}